tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
oranchelo-icon-theme: init at 0.8.0.1
Owen Shepherd
4 years ago
64f91849
39acd7f2
+39
2 changed files
expand all
collapse all
unified
split
pkgs
data
icons
oranchelo-icon-theme
default.nix
top-level
all-packages.nix
+37
pkgs/data/icons/oranchelo-icon-theme/default.nix
···
1
1
+
{ lib, stdenv, fetchFromGitHub, gtk3, plasma5Packages, hicolor-icon-theme }:
2
2
+
3
3
+
stdenv.mkDerivation rec {
4
4
+
pname = "oranchelo-icon-theme";
5
5
+
version = "0.8.0.1";
6
6
+
7
7
+
src = fetchFromGitHub {
8
8
+
owner = "OrancheloTeam";
9
9
+
repo = pname;
10
10
+
rev = "096c8c8d550ac9a85f5f34f3f30243e6f198df2d";
11
11
+
sha256 = "sha256-TKi42SA33pGKdrPtGTpvxFbOP+5N93Y4BvO4CRTveLM=";
12
12
+
};
13
13
+
14
14
+
nativeBuildInputs = [
15
15
+
gtk3
16
16
+
];
17
17
+
18
18
+
propagatedBuildInputs = [
19
19
+
plasma5Packages.breeze-icons
20
20
+
hicolor-icon-theme
21
21
+
];
22
22
+
23
23
+
dontDropIconThemeCache = true;
24
24
+
25
25
+
installPhase = ''
26
26
+
mkdir -p $out/share/icons
27
27
+
cp -r $Oranchelo* $out/share/icons/
28
28
+
'';
29
29
+
30
30
+
meta = with lib; {
31
31
+
description = "Oranchelo icon theme";
32
32
+
homepage = "https://github.com/OrancheloTeam/oranchelo-icon-theme";
33
33
+
license = licenses.gpl3Only;
34
34
+
platforms = platforms.linux;
35
35
+
maintainers = with maintainers; [ _414owen ];
36
36
+
};
37
37
+
}
+2
pkgs/top-level/all-packages.nix
···
20949
20949
20950
20950
openzone-cursors = callPackage ../data/themes/openzone { };
20951
20951
20952
20952
+
oranchelo-icon-theme = callPackage ../data/icons/oranchelo-icon-theme { };
20953
20953
+
20952
20954
orbitron = callPackage ../data/fonts/orbitron { };
20953
20955
20954
20956
orchis = callPackage ../data/themes/orchis { };