summary refs log tree commit diff
path: root/pkgs/tools/X11
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2023-09-27 18:40:33 +0000
committerAlyssa Ross <hi@alyssa.is>2023-09-27 18:40:41 +0000
commit030c5028b07afcedce7c5956015c629486cc79d9 (patch)
tree4c3cb9c6cff0e30919a97fc0c1d3203446696f4e /pkgs/tools/X11
parent4b852f7ef3cb92277f212ba7dc168da1073e65cc (diff)
parent04c0744afbab2369baf4f134c544db3f24164d80 (diff)
downloadnixpkgs-030c5028b07afcedce7c5956015c629486cc79d9.tar
nixpkgs-030c5028b07afcedce7c5956015c629486cc79d9.tar.gz
nixpkgs-030c5028b07afcedce7c5956015c629486cc79d9.tar.bz2
nixpkgs-030c5028b07afcedce7c5956015c629486cc79d9.tar.lz
nixpkgs-030c5028b07afcedce7c5956015c629486cc79d9.tar.xz
nixpkgs-030c5028b07afcedce7c5956015c629486cc79d9.tar.zst
nixpkgs-030c5028b07afcedce7c5956015c629486cc79d9.zip
Rebase onto c1a53897ad4290a1cbfa02fbe6f3869577b93744
Signed-off-by: Alyssa Ross <hi@alyssa.is>
Diffstat (limited to 'pkgs/tools/X11')
-rw-r--r--pkgs/tools/X11/sunpaper/default.nix50
1 files changed, 0 insertions, 50 deletions
diff --git a/pkgs/tools/X11/sunpaper/default.nix b/pkgs/tools/X11/sunpaper/default.nix
deleted file mode 100644
index 116b0225ab0..00000000000
--- a/pkgs/tools/X11/sunpaper/default.nix
+++ /dev/null
@@ -1,50 +0,0 @@
-{ lib
-, stdenvNoCC
-, fetchFromGitHub
-, sunwait
-, wallutils
-}:
-
-stdenvNoCC.mkDerivation rec {
-  pname = "sunpaper";
-  version = "2.0";
-
-  src = fetchFromGitHub {
-    owner = "hexive";
-    repo = "sunpaper";
-    rev = "v${version}";
-    sha256 = "sha256-8s7SS79wCS0nRR7IpkshP5QWJqqKEeBu6EtFPDM+2cM=";
-  };
-
-  buildInputs = [
-    wallutils
-    sunwait
-  ];
-
-  postPatch = ''
-    substituteInPlace sunpaper.sh \
-      --replace "sunwait" "${sunwait}/bin/sunwait" \
-      --replace "setwallpaper" "${wallutils}/bin/setwallpaper" \
-      --replace '$HOME/sunpaper/images/' "$out/share/sunpaper/images/"
-  '';
-
-  installPhase = ''
-    mkdir -p "$out/bin" "$out/share/sunpaper/images"
-    cp sunpaper.sh $out/bin/sunpaper
-    cp -R images $out/share/sunpaper/
-  '';
-
-  doInstallCheck = true;
-
-  installCheckPhase = ''
-    $out/bin/sunpaper --help > /dev/null
-  '';
-
-  meta = with lib; {
-    description = "A utility to change wallpaper based on local weather, sunrise and sunset times";
-    homepage = "https://github.com/hexive/sunpaper";
-    license = lib.licenses.unfree;
-    maintainers = with maintainers; [ jevy ];
-    platforms = platforms.unix;
-  };
-}