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

28 lines
783 B
Nix
Raw Normal View History

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