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