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

This commit is contained in:
Rouven Seifert 2023-05-02 09:37:27 +02:00
parent 9c7c80faa8
commit 9647ad3dc8
No known key found for this signature in database
GPG Key ID: B95E8FE6B11C4D09
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,39 @@
{ lib, stdenvNoCC, fetchFromGitHub, jdupes }:
stdenvNoCC.mkDerivation {
pname = "dracula-icon-theme";
version = "unstable-2021-07-21";
src = fetchFromGitHub {
owner = "m4thewz";
repo = "dracula-icons";
rev = "2d3c83caa8664e93d956cfa67a0f21418b5cdad8";
hash = "sha256-GY+XxTM22jyNq8kaB81zNfHRhfXujArFcyzDa8kjxCQ=";
};
nativeBuildInputs = [
jdupes
];
dontDropIconThemeCache = true;
dontPatchELF = true;
dontRewriteSymlinks = true;
installPhase = ''
runHook preInstall
mkdir -p $out/share/icons/Dracula
cp -a * $out/share/icons/Dracula/
jdupes --quiet --link-soft --recurse $out/share
runHook postInstall
'';
meta = with lib; {
description = "Dracula Icon theme";
homepage = "https://github.com/m4thewz/dracula-icons";
platforms = platforms.linux;
license = licenses.gpl3Only;
maintainers = with maintainers; [ therealr5 ];
};
}

View File

@ -27867,6 +27867,8 @@ with pkgs;
dotcolon-fonts = callPackage ../data/fonts/dotcolon-fonts { };
dracula-icon-theme = callPackage ../data/icons/dracula-icon-theme { };
e17gtk = callPackage ../data/themes/e17gtk { };
eb-garamond = callPackage ../data/fonts/eb-garamond { };