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