tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
beauty-line-icon-theme: init at 0.0.1
Gabriel Volpe
4 years ago
4f7156d5
c98cf3c3
+43
2 changed files
expand all
collapse all
unified
split
pkgs
data
icons
beauty-line-icon-theme
default.nix
top-level
all-packages.nix
+39
pkgs/data/icons/beauty-line-icon-theme/default.nix
···
1
1
+
{ lib, stdenv, fetchzip, breeze-icons, gtk3, gnome-icon-theme, hicolor-icon-theme, mint-x-icons, pantheon }:
2
2
+
3
3
+
stdenv.mkDerivation rec {
4
4
+
pname = "BeautyLine";
5
5
+
version = "0.0.1";
6
6
+
7
7
+
src = fetchzip {
8
8
+
name = "${pname}-${version}";
9
9
+
url = "https://github.com/gvolpe/BeautyLine/releases/download/${version}/BeautyLine.tar.gz";
10
10
+
sha256 = "030bjk333fr9wm1nc740q8i31rfsgf3vg6cvz36xnvavx3q363l7";
11
11
+
};
12
12
+
13
13
+
nativeBuildInputs = [ gtk3 ];
14
14
+
15
15
+
# ubuntu-mono is also required but missing in ubuntu-themes (please add it if it is packaged at some point)
16
16
+
propagatedBuildInputs = [
17
17
+
breeze-icons
18
18
+
gnome-icon-theme
19
19
+
hicolor-icon-theme
20
20
+
mint-x-icons
21
21
+
pantheon.elementary-icon-theme
22
22
+
];
23
23
+
24
24
+
dontDropIconThemeCache = true;
25
25
+
26
26
+
installPhase = ''
27
27
+
mkdir -p $out/share/icons/${pname}
28
28
+
cp -r * $out/share/icons/${pname}/
29
29
+
gtk-update-icon-cache $out/share/icons/${pname}
30
30
+
'';
31
31
+
32
32
+
meta = with lib; {
33
33
+
description = "BeautyLine icon theme";
34
34
+
homepage = "https://www.gnome-look.org/p/1425426/";
35
35
+
platforms = platforms.linux;
36
36
+
license = [ licenses.publicDomain ];
37
37
+
maintainers = with maintainers; [ gvolpe ];
38
38
+
};
39
39
+
}
+4
pkgs/top-level/all-packages.nix
···
1603
1603
1604
1604
bat-extras = recurseIntoAttrs (callPackages ../tools/misc/bat-extras { });
1605
1605
1606
1606
+
beauty-line-icon-theme = callPackage ../data/icons/beauty-line-icon-theme {
1607
1607
+
inherit (plasma5Packages) breeze-icons;
1608
1608
+
};
1609
1609
+
1606
1610
bc = callPackage ../tools/misc/bc { };
1607
1611
1608
1612
bdf2psf = callPackage ../tools/misc/bdf2psf { };