summaryrefslogtreecommitdiffstats
path: root/krebs
diff options
context:
space:
mode:
authorlassulus <lass@aidsballs.de>2015-10-17 15:50:19 +0200
committerlassulus <lass@aidsballs.de>2015-10-17 15:50:19 +0200
commitda15200d4f3876dae504ca5475f22707e2cb49af (patch)
treed991c334d774edc7154c13b1ed1901f7552db55a /krebs
parent72d15b226620c5d3248dd545748cff6c0bfcc049 (diff)
krebs 5: remove (deprecated) realwallpaper.nix
Diffstat (limited to 'krebs')
-rw-r--r--krebs/5pkgs/realwallpaper.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/krebs/5pkgs/realwallpaper.nix b/krebs/5pkgs/realwallpaper.nix
deleted file mode 100644
index 4fea977e..00000000
--- a/krebs/5pkgs/realwallpaper.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ stdenv, fetchgit, xplanet, imagemagick, curl, file }:
-
-stdenv.mkDerivation {
- name = "realwallpaper";
-
- src = fetchgit {
- url = https://github.com/Lassulus/realwallpaper;
- rev = "c2778c3c235fc32edc8115d533a0d0853ab101c5";
- sha256 = "0yhbjz19zk8sj5dsvccm6skkqq2vardn1yi70qmd5li7qvp17mvs";
- };
-
- phases = [
- "unpackPhase"
- "installPhase"
- ];
-
- buildInputs = [
- xplanet
- imagemagick
- curl
- file
- ];
-
- installPhase = ''
- mkdir -p $out
- cp realwallpaper.sh $out/realwallpaper.sh
- '';
-}