dracula-icon-theme: init at unstable-2021-07-21

+41
+39
pkgs/data/icons/dracula-icon-theme/default.nix
··· 1 + { lib, stdenvNoCC, fetchFromGitHub, jdupes }: 2 + 3 + stdenvNoCC.mkDerivation { 4 + pname = "dracula-icon-theme"; 5 + version = "unstable-2021-07-21"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "m4thewz"; 9 + repo = "dracula-icons"; 10 + rev = "2d3c83caa8664e93d956cfa67a0f21418b5cdad8"; 11 + hash = "sha256-GY+XxTM22jyNq8kaB81zNfHRhfXujArFcyzDa8kjxCQ="; 12 + }; 13 + 14 + nativeBuildInputs = [ 15 + jdupes 16 + ]; 17 + 18 + dontDropIconThemeCache = true; 19 + 20 + dontPatchELF = true; 21 + dontRewriteSymlinks = true; 22 + 23 + installPhase = '' 24 + runHook preInstall 25 + mkdir -p $out/share/icons/Dracula 26 + cp -a * $out/share/icons/Dracula/ 27 + jdupes --quiet --link-soft --recurse $out/share 28 + 29 + runHook postInstall 30 + ''; 31 + 32 + meta = with lib; { 33 + description = "Dracula Icon theme"; 34 + homepage = "https://github.com/m4thewz/dracula-icons"; 35 + platforms = platforms.linux; 36 + license = licenses.gpl3Only; 37 + maintainers = with maintainers; [ therealr5 ]; 38 + }; 39 + }
+2
pkgs/top-level/all-packages.nix
··· 27867 27867 27868 27868 dotcolon-fonts = callPackage ../data/fonts/dotcolon-fonts { }; 27869 27869 27870 + dracula-icon-theme = callPackage ../data/icons/dracula-icon-theme { }; 27871 + 27870 27872 e17gtk = callPackage ../data/themes/e17gtk { }; 27871 27873 27872 27874 eb-garamond = callPackage ../data/fonts/eb-garamond { };