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 {
|
2017-02-24 09:22:42 +00:00
|
|
|
pname = "greybird";
|
2019-02-10 15:38:12 +00:00
|
|
|
version = "3.22.10";
|
2016-05-03 10:45:17 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "shimmerproject";
|
2019-02-10 15:38:12 +00:00
|
|
|
repo = pname;
|
2017-04-18 17:54:31 +01:00
|
|
|
rev = "v${version}";
|
2019-02-10 15:38:12 +00:00
|
|
|
sha256 = "1g1mnzxqwlbymq8npd2j294f8dzf9fw9nicd4pajmscg2vk71da9";
|
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
|
|
|
|
];
|
2017-12-19 22:08:29 +00:00
|
|
|
|
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;
|
2018-09-18 12:29:28 +01:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|