2016-05-20 15:52:31 +01:00
|
|
|
{ stdenv, fetchFromGitHub, sass, glib, libxml2, gdk_pixbuf
|
|
|
|
, gtk-engine-murrine
|
|
|
|
}:
|
2015-03-05 00:00:25 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-05-20 15:52:31 +01:00
|
|
|
version = "2016-05-19";
|
2015-03-05 06:23:18 +00:00
|
|
|
name = "numix-gtk-theme-${version}";
|
2016-05-20 15:52:31 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "numix-gtk-theme";
|
|
|
|
owner = "numixproject";
|
|
|
|
rev = "266945047ad8c148d36d0d1f00b39730b84482a9";
|
|
|
|
sha256 = "108qjqwn9shqjkbadyw79y1wbq5ndv30x7xw5wjmbcss5jikr3v1";
|
2015-03-05 00:00:25 +00:00
|
|
|
};
|
|
|
|
|
2016-05-20 15:52:31 +01:00
|
|
|
nativeBuildInputs = [ sass glib libxml2 gdk_pixbuf ];
|
|
|
|
|
|
|
|
buildInputs = [ gtk-engine-murrine ];
|
2015-03-05 00:00:25 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
2016-05-20 15:52:31 +01:00
|
|
|
make install DESTDIR="$out"
|
2015-03-05 00:00:25 +00:00
|
|
|
'';
|
2016-05-20 15:52:31 +01:00
|
|
|
|
2015-03-05 00:00:25 +00:00
|
|
|
meta = {
|
2016-05-20 15:52:31 +01:00
|
|
|
description = "Modern flat theme with a combination of light and dark elements (GNOME, Unity, Xfce and Openbox)";
|
2015-03-05 00:00:25 +00:00
|
|
|
homepage = https://numixproject.org;
|
2016-05-20 15:52:31 +01:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2015-03-05 06:23:18 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2016-05-20 15:52:31 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.romildo ];
|
2015-03-05 00:00:25 +00:00
|
|
|
};
|
|
|
|
}
|