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 {
|
2017-02-24 09:46:21 +00:00
|
|
|
version = "2017-02-15";
|
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";
|
2017-02-24 09:46:21 +00:00
|
|
|
rev = "f25d7e04353543e03fd155f4d9dfa80fc6b551f2";
|
|
|
|
sha256 = "0n57airi1kgg754099sdq40bb0mbp4my385fvslnsjv5d4h8jhvq";
|
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
|
|
|
|
2016-05-27 02:01:45 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile --replace '$(DESTDIR)'/usr $out
|
2016-12-07 20:45:25 +00:00
|
|
|
patchShebangs .
|
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
|
|
|
};
|
|
|
|
}
|