Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, stdenv, fetchFromGitHub, meson, ninja, sassc, gdk-pixbuf, librsvg, gtk_engines, gtk-engine-murrine }:
2
3stdenv.mkDerivation rec {
4 pname = "amber-theme";
5 version = "3.38-1";
6
7 src = fetchFromGitHub {
8 owner = "lassekongo83";
9 repo = pname;
10 rev = "v${version}";
11 sha256 = "sha256-OrdBeAD+gdIu6u8ESE9PtqYadSuJ8nx1Z8fB4D9y4W4=";
12 };
13
14 nativeBuildInputs = [ meson ninja sassc ];
15
16 buildInputs = [ gdk-pixbuf librsvg gtk_engines ];
17
18 propagatedUserEnvPkgs = [ gtk-engine-murrine ];
19
20 meta = with lib; {
21 description = "GTK, gnome-shell and Xfce theme based on Ubuntu Ambiance";
22 homepage = "https://github.com/lassekongo83/amber-theme";
23 license = licenses.gpl3Only;
24 platforms = platforms.linux;
25 maintainers = [ maintainers.romildo ];
26 };
27}