summaryrefslogtreecommitdiffstats
path: root/krebs
diff options
context:
space:
mode:
authorlassulus <lass@aidsballs.de>2015-10-15 15:26:47 +0200
committerlassulus <lass@aidsballs.de>2015-10-15 15:26:47 +0200
commitfb945f741d709ec198cbf534ad0da2c623abac76 (patch)
tree3eb98b7281eed356ea49db81784ff204ea3a2757 /krebs
parentba5479b4cda8bc70fc67e6e0d90d90aa7a7b9dab (diff)
krebs 5: move realwallpaper to folder
Diffstat (limited to 'krebs')
-rw-r--r--krebs/5pkgs/realwallpaper/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/krebs/5pkgs/realwallpaper/default.nix b/krebs/5pkgs/realwallpaper/default.nix
new file mode 100644
index 00000000..4fea977e
--- /dev/null
+++ b/krebs/5pkgs/realwallpaper/default.nix
@@ -0,0 +1,28 @@
+{ 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
+ '';
+}