nixos-icons: 2021-02-24 -> 0-unstable-2024-04-10
This commit is contained in:
parent
24012c772d
commit
39f376f4a6
1 changed files with 21 additions and 7 deletions
|
@ -1,25 +1,39 @@
|
|||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, imagemagick
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "nixos-icons";
|
||||
version = "2021-02-24";
|
||||
version = "0-unstable-2024-04-10";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "NixOS";
|
||||
repo = "nixos-artwork";
|
||||
rev = "488c22aad523c709c44169d3e88d34b4691c20dc";
|
||||
sha256 = "ZoanCzn4pqGB1fyMzMyGQVT0eIhNdL7ZHJSn1VZWVRs=";
|
||||
rev = "f84c13adae08e860a7c3f76ab3a9bef916d276cc";
|
||||
hash = "sha256-lO/2dLGK2f9pzLHudRIs4PUcGUliy7kfyt9r4CbhbVg=";
|
||||
};
|
||||
|
||||
sourceRoot = "${finalAttrs.src.name}/icons";
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
nativeBuildInputs = [
|
||||
imagemagick
|
||||
];
|
||||
|
||||
makeFlags = [
|
||||
"DESTDIR=${placeholder "out"}"
|
||||
"prefix="
|
||||
"prefix=${placeholder "out"}"
|
||||
];
|
||||
}
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Icons of the Nix logo, in Freedesktop Icon Directory Layout";
|
||||
homepage = "https://github.com/NixOS/nixos-artwork";
|
||||
license = licenses.cc-by-40;
|
||||
maintainers = with maintainers; [];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue