Merge pull request #23964 from benley/nixos-manual-launcher

nixos: nix snowflake logo for the nixos manual launcher
This commit is contained in:
Graham Christensen
2017-07-16 16:28:30 -04:00
committed by GitHub
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 ];
}