summary refs log tree commit diff
path: root/pkgs/tools/wayland
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2022-10-18 21:45:58 -0300
committerGitHub <noreply@github.com>2022-10-18 21:45:58 -0300
commitf2fb245007b9ed70cca7dfcc31ddd28a4c6f8432 (patch)
tree1051b73c58f9eb86df1bc14f96ef402dcc4e4211 /pkgs/tools/wayland
parentedba6d1a861692598b3bad93c0475cffc6773976 (diff)
parent35bd7ecf251591476917a7b6c99056ca5dda3288 (diff)
Merge pull request #196339 from AndersonTorres/hyprland
hyprwm: refactor
Diffstat (limited to 'pkgs/tools/wayland')
-rw-r--r--pkgs/tools/wayland/hyprpaper/default.nix60
1 files changed, 0 insertions, 60 deletions
diff --git a/pkgs/tools/wayland/hyprpaper/default.nix b/pkgs/tools/wayland/hyprpaper/default.nix
deleted file mode 100644
index 20c329f1512c4..0000000000000
--- a/pkgs/tools/wayland/hyprpaper/default.nix
+++ /dev/null
@@ -1,60 +0,0 @@
-{ lib
-, stdenv
-, fetchFromGitHub
-, cmake
-, pkg-config
-, libjpeg
-, mesa
-, pango
-, wayland
-, wayland-protocols
-, wayland-scanner
-}:
-
-stdenv.mkDerivation rec {
-  pname = "hyprpaper";
-  version = "unstable-2022-07-24";
-
-  src = fetchFromGitHub {
-    owner = "hyprwm";
-    repo = pname;
-    rev = "f75fcf01d1f652d55f79032a40d821d2ff78520e";
-    sha256 = "sha256-M2g4NeDoYt32j02cimCR4vWzAzauIzQVQaWgBWXDAtk=";
-  };
-
-  nativeBuildInputs = [
-    cmake
-    pkg-config
-    wayland-scanner
-  ];
-
-  buildInputs = [
-    libjpeg
-    mesa
-    pango
-    wayland
-    wayland-protocols
-  ];
-
-  prePatch = ''
-    substituteInPlace src/main.cpp \
-      --replace GIT_COMMIT_HASH '"${src.rev}"'
-  '';
-
-  preConfigure = ''
-    make protocols
-  '';
-
-  installPhase = ''
-    mkdir -p $out/bin
-    install -m755 ./hyprpaper $out/bin
-  '';
-
-  meta = with lib; {
-    homepage = "https://github.com/hyprwm/hyprpaper";
-    description = "A blazing fast wayland wallpaper utility";
-    license = licenses.bsd3;
-    platforms = platforms.linux;
-    maintainers = with maintainers; [ wozeparrot ];
-  };
-}