nixpkgs/pkgs/misc/themes/numix/default.nix

33 lines
877 B
Nix
Raw Normal View History

2019-05-22 13:03:39 +02:00
{ stdenv, fetchFromGitHub, sass, glib, libxml2, gdk-pixbuf
2016-05-20 16:52:31 +02:00
, gtk-engine-murrine
}:
stdenv.mkDerivation rec {
2017-10-07 02:25:14 +02:00
version = "2.6.7";
pname = "numix-gtk-theme";
2016-05-20 16:52:31 +02:00
src = fetchFromGitHub {
repo = "numix-gtk-theme";
owner = "numixproject";
2017-10-07 02:25:14 +02:00
rev = version;
2017-11-02 21:45:19 +01:00
sha256 = "12mw0kr0kkvg395qlbsvkvaqccr90cmxw5rrsl236zh43kj8grb7";
};
2019-05-22 13:03:39 +02:00
nativeBuildInputs = [ sass glib libxml2 gdk-pixbuf ];
2016-05-20 16:52:31 +02:00
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
postPatch = ''
substituteInPlace Makefile --replace '$(DESTDIR)'/usr $out
patchShebangs .
'';
2016-05-20 16:52:31 +02:00
meta = {
2016-05-20 16:52:31 +02:00
description = "Modern flat theme with a combination of light and dark elements (GNOME, Unity, Xfce and Openbox)";
2018-09-08 00:32:30 +02:00
homepage = https://numixproject.github.io;
2016-05-20 16:52:31 +02:00
license = stdenv.lib.licenses.gpl3Plus;
platforms = stdenv.lib.platforms.all;
2016-05-20 16:52:31 +02:00
maintainers = [ stdenv.lib.maintainers.romildo ];
};
}