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

33 lines
863 B
Nix
Raw Normal View History

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