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