tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
gtk-engine-bluecurve: init at 1.0
gnidorah
8 years ago
b5c94380
eba93076
+23
2 changed files
expand all
collapse all
unified
split
pkgs
misc
themes
gtk2
gtk-engine-bluecurve
default.nix
top-level
all-packages.nix
+21
pkgs/misc/themes/gtk2/gtk-engine-bluecurve/default.nix
···
1
1
+
{ stdenv, fetchurl, pkgconfig, intltool, gtk2 }:
2
2
+
3
3
+
stdenv.mkDerivation {
4
4
+
name = "gtk-engine-bluecurve-1.0";
5
5
+
6
6
+
src = fetchurl {
7
7
+
url = "http://ftp.gnome.org/pub/gnome/teams/art.gnome.org/archive/themes/gtk2/GTK2-Wonderland-Engine-1.0.tar.bz2";
8
8
+
sha256 = "1nim3lhmbs5mw1hh76d9258c1p923854x2j6i30gmny812c7qjnm";
9
9
+
};
10
10
+
11
11
+
nativeBuildInputs = [ pkgconfig intltool ];
12
12
+
13
13
+
buildInputs = [ gtk2 ];
14
14
+
15
15
+
meta = {
16
16
+
description = "Original Bluecurve engine from Red Hat's artwork package";
17
17
+
license = stdenv.lib.licenses.gpl2;
18
18
+
platforms = stdenv.lib.platforms.linux;
19
19
+
maintainers = [ stdenv.lib.maintainers.gnidorah ];
20
20
+
};
21
21
+
}
+2
pkgs/top-level/all-packages.nix
···
17655
17655
17656
17656
gtk_engines = callPackage ../misc/themes/gtk2/gtk-engines { };
17657
17657
17658
17658
+
gtk-engine-bluecurve = callPackage ../misc/themes/gtk2/gtk-engine-bluecurve { };
17659
17659
+
17658
17660
gtk-engine-murrine = callPackage ../misc/themes/gtk2/gtk-engine-murrine { };
17659
17661
17660
17662
gnome_themes_standard = gnome3.gnome_themes_standard;