2017-08-07 09:37:11 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, parallel, sassc, inkscape, libxml2, glib, gdk_pixbuf, librsvg, gtk-engine-murrine, gnome3 }:
|
2016-06-18 11:33:29 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "adapta-gtk-theme-${version}";
|
2018-09-28 19:30:32 +00:00
|
|
|
version = "3.94.0.149";
|
2016-06-18 11:33:29 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-11-04 22:03:04 +00:00
|
|
|
owner = "adapta-project";
|
|
|
|
repo = "adapta-gtk-theme";
|
2016-07-15 13:50:42 +00:00
|
|
|
rev = version;
|
2018-09-28 19:30:32 +00:00
|
|
|
sha256 = "1rb07yv4iz4yp6cnigzy690mw3w6fcf7szlcbbna6wnjaf1rbf2i";
|
2016-06-18 11:33:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
preferLocalBuild = true;
|
2016-12-03 00:26:27 +00:00
|
|
|
|
2017-08-07 09:37:11 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
pkgconfig
|
|
|
|
parallel
|
|
|
|
sassc
|
|
|
|
inkscape
|
|
|
|
libxml2
|
|
|
|
glib.dev
|
2018-02-25 02:23:58 +00:00
|
|
|
gnome3.gnome-shell
|
2017-08-07 09:37:11 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gdk_pixbuf
|
|
|
|
librsvg
|
|
|
|
];
|
2016-07-15 13:50:42 +00:00
|
|
|
|
2017-12-19 22:08:29 +00:00
|
|
|
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
|
|
|
|
|
2016-07-15 13:50:42 +00:00
|
|
|
postPatch = "patchShebangs .";
|
2016-06-18 11:33:29 +00:00
|
|
|
|
2017-08-07 09:37:11 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-gtk_legacy"
|
|
|
|
"--disable-gtk_next"
|
|
|
|
"--disable-unity"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-12-31 12:46:56 +00:00
|
|
|
description = "An adaptive Gtk+ theme based on Material Design Guidelines";
|
2017-11-04 22:03:04 +00:00
|
|
|
homepage = https://github.com/adapta-project/adapta-gtk-theme;
|
2017-08-07 09:37:11 +00:00
|
|
|
license = with licenses; [ gpl2 cc-by-sa-30 ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.romildo ];
|
|
|
|
};
|
2016-06-18 11:33:29 +00:00
|
|
|
}
|