forked from mirrors/nixpkgs
dracula-icon-theme: init at unstable-2021-07-21
This commit is contained in:
parent
9c7c80faa8
commit
9647ad3dc8
39
pkgs/data/icons/dracula-icon-theme/default.nix
Normal file
39
pkgs/data/icons/dracula-icon-theme/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue