about summary refs log tree commit diff
path: root/pkgs/data/misc/nixos-artwork/icons.nix
blob: cee6e600cbe0a130f1adc2d4264aa5ee67d0e279 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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 ];
}