vifm: 0.13 -> 0.14 (#380559)
[NixPkgs.git] / pkgs / by-name / nu / numix-gtk-theme / package.nix
blob9cd859e9906d8cd5239630d7dfa2d4d3311415ca
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   sassc,
6   glib,
7   libxml2,
8   gdk-pixbuf,
9   gtk-engine-murrine,
10   gitUpdater,
13 stdenv.mkDerivation rec {
14   pname = "numix-gtk-theme";
15   version = "unstable-2021-06-08";
17   src = fetchFromGitHub {
18     repo = "numix-gtk-theme";
19     owner = "numixproject";
20     rev = "ad4b345cb19edba96bec72d6dc97ed1b568755a8";
21     hash = "sha256-7KX5xC6Gr6azqL2qyc8rYb3q9UhcGco2uEfltsQ+mgo=";
22   };
24   nativeBuildInputs = [
25     sassc
26     glib
27     libxml2
28     gdk-pixbuf
29   ];
31   propagatedUserEnvPkgs = [ gtk-engine-murrine ];
33   postPatch = ''
34     substituteInPlace Makefile --replace '$(DESTDIR)'/usr $out
35     patchShebangs .
36   '';
38   passthru.updateScript = gitUpdater { };
40   meta = {
41     description = "Modern flat theme with a combination of light and dark elements (GNOME, Unity, Xfce and Openbox)";
42     homepage = "https://numixproject.github.io";
43     license = lib.licenses.gpl3Plus;
44     platforms = lib.platforms.all;
45     maintainers = [ lib.maintainers.romildo ];
46   };