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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
782 B
Nix
Raw Normal View History

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