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

28 lines
781 B
Nix
Raw Normal View History

2019-10-10 11:15:08 -04:00
{ stdenv, fetchFromGitHub, meson, ninja, sassc, gdk-pixbuf, librsvg, gtk_engines, gtk-engine-murrine }:
stdenv.mkDerivation rec {
pname = "amber-theme";
2020-01-09 04:57:09 -05:00
version = "3.34-2";
2019-10-10 11:15:08 -04:00
src = fetchFromGitHub {
owner = "lassekongo83";
repo = pname;
rev = "v${version}";
2020-01-09 04:57:09 -05:00
sha256 = "0809l4r1qrzs9z04kcs1j962dpsvgpwpksnxs09md5722mynn65l";
2019-10-10 11:15:08 -04:00
};
nativeBuildInputs = [ meson ninja sassc ];
buildInputs = [ gdk-pixbuf librsvg gtk_engines ];
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
meta = with stdenv.lib; {
description = "GTK, gnome-shell and Xfce theme based on Ubuntu Ambiance";
2020-01-09 04:57:09 -05:00
homepage = "https://github.com/lassekongo83/amber-theme";
2019-10-10 11:15:08 -04:00
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = [ maintainers.romildo ];
};
}