about summary refs log tree commit diff
path: root/pkgs/tools/wayland/wpaperd/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/wayland/wpaperd/default.nix')
-rw-r--r--pkgs/tools/wayland/wpaperd/default.nix47
1 files changed, 0 insertions, 47 deletions
diff --git a/pkgs/tools/wayland/wpaperd/default.nix b/pkgs/tools/wayland/wpaperd/default.nix
deleted file mode 100644
index dc7ce198e8e7b..0000000000000
--- a/pkgs/tools/wayland/wpaperd/default.nix
+++ /dev/null
@@ -1,47 +0,0 @@
-{ lib, rustPlatform, fetchFromGitHub, pkg-config, libxkbcommon }:
-
-rustPlatform.buildRustPackage rec {
-  pname = "wpaperd";
-  version = "0.3.0";
-
-  src = fetchFromGitHub {
-    owner = "danyspin97";
-    repo = pname;
-    rev = version;
-    sha256 = "cgjHCSBrkX3aoz42qBS/1JUGhc7sZKarKByntp7ubaQ=";
-  };
-
-  nativeBuildInputs = [
-    pkg-config
-  ];
-  buildInputs = [
-    libxkbcommon
-  ];
-
-  cargoLock = {
-    lockFile = ./Cargo.lock;
-    outputHashes = {
-      "smithay-client-toolkit-0.16.0" = "iPDL7pxTez4EnIBaUH25lLSWpu3RRL2QBF9pfdTDsP8=";
-    };
-  };
-
-  postPatch = ''
-    rm Cargo.lock
-    ln -s ${./Cargo.lock} Cargo.lock
-  '';
-
-  meta = with lib; {
-    description = "Minimal wallpaper daemon for Wayland";
-    longDescription = ''
-      It allows the user to choose a different image for each output (aka for each monitor)
-      just as swaybg. Moreover, a directory can be chosen and wpaperd will randomly choose
-      an image from it. Optionally, the user can set a duration, after which the image
-      displayed will be changed with another random one.
-    '';
-    homepage = "https://github.com/danyspin97/wpaperd";
-    license = licenses.gpl3Plus;
-    platforms = platforms.linux;
-    maintainers = with maintainers; [ DPDmancul ];
-    mainProgram = "wpaperd";
-  };
-}