summary refs log tree commit diff
path: root/pkgs/data/misc/nixos-artwork/icons.nix
blob: caab674393a18cbb4b1d11527d19d2c965146981 (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=" ];
  nativeBuildInputs = [ imagemagick ];
}