nixpkgs/pkgs/misc/themes/greybird/default.nix

40 lines
938 B
Nix
Raw Normal View History

2018-09-17 15:36:53 +01:00
{ stdenv, fetchFromGitHub, autoreconfHook, which, sassc, glib, libxml2, gdk_pixbuf, librsvg, gtk-engine-murrine }:
2016-05-03 10:45:17 +01:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
2017-02-24 09:22:42 +00:00
pname = "greybird";
2018-09-17 15:36:53 +01:00
version = "3.22.9";
2016-05-03 10:45:17 +01:00
src = fetchFromGitHub {
owner = "shimmerproject";
2016-11-25 07:08:03 +00:00
repo = "${pname}";
2017-04-18 17:54:31 +01:00
rev = "v${version}";
2018-09-17 15:36:53 +01:00
sha256 = "0mixs47v0jvqpmfsv0k0d0l24y4w35krah8mgnwamr0b8spmazz3";
2016-05-03 10:45:17 +01:00
};
2018-09-17 15:36:53 +01:00
nativeBuildInputs = [
autoreconfHook
which
sassc
glib
libxml2
];
2016-08-18 15:23:05 +01:00
2018-09-17 15:36:53 +01:00
buildInputs = [
gdk_pixbuf
librsvg
];
2018-09-17 15:36:53 +01:00
propagatedUserEnvPkgs = [
gtk-engine-murrine
];
meta = with stdenv.lib; {
description = "Grey and blue theme from the Shimmer Project for GTK+-based environments";
2016-09-14 22:31:56 +01:00
homepage = https://github.com/shimmerproject/Greybird;
license = with licenses; [ gpl2Plus ]; # or alternatively: cc-by-nc-sa-30
2018-09-17 15:36:53 +01:00
platforms = platforms.linux;
maintainers = [ maintainers.romildo ];
2016-05-03 10:45:17 +01:00
};
}