lol

nixos-icons: 2021-02-24 -> 0-unstable-2024-04-10

OPNA2608 39f376f4 24012c77

+21 -7
+21 -7
pkgs/data/misc/nixos-artwork/icons.nix
··· 1 1 { stdenv 2 + , lib 2 3 , fetchFromGitHub 3 4 , imagemagick 4 5 }: 5 6 6 - stdenv.mkDerivation { 7 + stdenv.mkDerivation (finalAttrs: { 7 8 pname = "nixos-icons"; 8 - version = "2021-02-24"; 9 + version = "0-unstable-2024-04-10"; 9 10 10 11 src = fetchFromGitHub { 11 12 owner = "NixOS"; 12 13 repo = "nixos-artwork"; 13 - rev = "488c22aad523c709c44169d3e88d34b4691c20dc"; 14 - sha256 = "ZoanCzn4pqGB1fyMzMyGQVT0eIhNdL7ZHJSn1VZWVRs="; 14 + rev = "f84c13adae08e860a7c3f76ab3a9bef916d276cc"; 15 + hash = "sha256-lO/2dLGK2f9pzLHudRIs4PUcGUliy7kfyt9r4CbhbVg="; 15 16 }; 16 17 18 + sourceRoot = "${finalAttrs.src.name}/icons"; 19 + 20 + strictDeps = true; 21 + 17 22 nativeBuildInputs = [ 18 23 imagemagick 19 24 ]; 20 25 21 26 makeFlags = [ 22 - "DESTDIR=${placeholder "out"}" 23 - "prefix=" 27 + "prefix=${placeholder "out"}" 24 28 ]; 25 - } 29 + 30 + enableParallelBuilding = true; 31 + 32 + meta = with lib; { 33 + description = "Icons of the Nix logo, in Freedesktop Icon Directory Layout"; 34 + homepage = "https://github.com/NixOS/nixos-artwork"; 35 + license = licenses.cc-by-40; 36 + maintainers = with maintainers; []; 37 + platforms = platforms.all; 38 + }; 39 + })