Skip to content

Commit

Permalink
nixos-icons: 2017-03-16 -> 2021-02-24
Browse files Browse the repository at this point in the history
Adds a white variant of the nixos logo
  • Loading branch information
worldofpeace committed Feb 24, 2021
1 parent 11cd34c commit 8a89af8
Showing 1 changed file with 19 additions and 7 deletions.
26 changes: 19 additions & 7 deletions pkgs/data/misc/nixos-artwork/icons.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,25 @@
{ stdenv, fetchFromGitHub, imagemagick }:
{ stdenv
, fetchFromGitHub
, imagemagick
}:

stdenv.mkDerivation {
name = "nixos-icons-2017-03-16";
srcs = fetchFromGitHub {
pname = "nixos-icons";
version = "2021-02-24";

src = fetchFromGitHub {
owner = "NixOS";
repo = "nixos-artwork";
rev = "783ca1249fc4cfe523ad4e541f37e2229891bc8b";
sha256 = "0wp08b1gh2chs1xri43wziznyjcplx0clpsrb13wzyscv290ay5a";
rev = "488c22aad523c709c44169d3e88d34b4691c20dc";
sha256 = "ZoanCzn4pqGB1fyMzMyGQVT0eIhNdL7ZHJSn1VZWVRs=";
};
makeFlags = [ "DESTDIR=$(out)" "prefix=" ];
nativeBuildInputs = [ imagemagick ];

nativeBuildInputs = [
imagemagick
];

makeFlags = [
"DESTDIR=${placeholder "out"}"
"prefix="
];
}

0 comments on commit 8a89af8

Please sign in to comment.