nixos: nix snowflake logo for the nixos manual launcher

This commit is contained in:
Benjamin Staffin
2017-03-16 17:48:09 -04:00
parent 14315cf4f5
commit c2b0cb5db6
3 changed files with 16 additions and 3 deletions
+13
View File
@@ -0,0 +1,13 @@
{ stdenv, fetchFromGitHub, imagemagick }:
stdenv.mkDerivation {
name = "nixos-icons-2017-03-16";
srcs = fetchFromGitHub {
owner = "nixos";
repo = "nixos-artwork";
rev = "783ca1249fc4cfe523ad4e541f37e2229891bc8b";
sha256 = "0wp08b1gh2chs1xri43wziznyjcplx0clpsrb13wzyscv290ay5a";
};
makeFlags = [ "DESTDIR=$(out)" "prefix=" ];
buildInputs = [ imagemagick ];
}