2018-09-17 07:36:53 -07:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, which, sassc, glib, libxml2, gdk_pixbuf, librsvg, gtk-engine-murrine }:
|
2016-05-03 02:45:17 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-02-24 01:22:42 -08:00
|
|
|
pname = "greybird";
|
2019-02-10 07:38:12 -08:00
|
|
|
version = "3.22.10";
|
2016-05-03 02:45:17 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "shimmerproject";
|
2019-02-10 07:38:12 -08:00
|
|
|
repo = pname;
|
2017-04-18 09:54:31 -07:00
|
|
|
rev = "v${version}";
|
2019-02-10 07:38:12 -08:00
|
|
|
sha256 = "1g1mnzxqwlbymq8npd2j294f8dzf9fw9nicd4pajmscg2vk71da9";
|
2016-05-03 02:45:17 -07:00
|
|
|
};
|
|
|
|
|
2018-09-17 07:36:53 -07:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
which
|
|
|
|
sassc
|
|
|
|
glib
|
|
|
|
libxml2
|
|
|
|
];
|
2016-08-18 07:23:05 -07:00
|
|
|
|
2018-09-17 07:36:53 -07:00
|
|
|
buildInputs = [
|
|
|
|
gdk_pixbuf
|
|
|
|
librsvg
|
|
|
|
];
|
2017-12-19 14:08:29 -08:00
|
|
|
|
2018-09-17 07:36:53 -07: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 14:31:56 -07:00
|
|
|
homepage = https://github.com/shimmerproject/Greybird;
|
2018-09-18 04:29:28 -07:00
|
|
|
license = with licenses; [ gpl2Plus ]; # or alternatively: cc-by-nc-sa-30
|
2018-09-17 07:36:53 -07:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.romildo ];
|
2016-05-03 02:45:17 -07:00
|
|
|
};
|
|
|
|
}
|