stockholm/krebs/5pkgs/realwallpaper/default.nix

25 lines
479 B
Nix
Raw Normal View History

2015-10-15 13:26:47 +00:00
{ stdenv, fetchgit, xplanet, imagemagick, curl, file }:
stdenv.mkDerivation {
name = "realwallpaper";
src = fetchgit {
url = https://github.com/Lassulus/realwallpaper;
2017-04-15 15:13:40 +00:00
rev = "b8408cfb295b6ce5b965309b30358ca6c6409efd";
sha256 = "0yyl8hhqshw9bx04xs8glvir3c0qzvfrwzmbvyg318mnz5xalcl0";
2015-10-15 13:26:47 +00:00
};
phases = [
"unpackPhase"
"installPhase"
];
buildInputs = [
];
installPhase = ''
mkdir -p $out
cp realwallpaper.sh $out/realwallpaper.sh
'';
}