2016-08-18 14:23:05 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, sass, glib, libxml2, gdk_pixbuf, librsvg, gtk-engine-murrine }:
|
2016-05-03 09:45:17 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "${pname}-${version}";
|
2017-02-24 09:22:42 +00:00
|
|
|
pname = "greybird";
|
|
|
|
version = "2017-02-17";
|
2016-05-03 09:45:17 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "shimmerproject";
|
2016-11-25 07:08:03 +00:00
|
|
|
repo = "${pname}";
|
2017-02-24 09:22:42 +00:00
|
|
|
rev = "46afa0f1566207c07ce15633d3a4ca12075afcb7";
|
|
|
|
sha256 = "0sxpj8k0dlgh1k1w1hnpy94rvh7h6mj9vrhldmhc128kncdcxk3j";
|
2016-05-03 09:45:17 +00:00
|
|
|
};
|
|
|
|
|
2016-08-18 14:23:05 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook sass glib libxml2 gdk_pixbuf librsvg ];
|
|
|
|
|
2016-05-03 09:45:17 +00:00
|
|
|
buildInputs = [ gtk-engine-murrine ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Grey and blue theme (Gtk, Xfce, Emerald, Metacity, Mutter, Unity)";
|
2016-09-14 21:31:56 +00:00
|
|
|
homepage = https://github.com/shimmerproject/Greybird;
|
2016-05-03 09:45:17 +00:00
|
|
|
license = with stdenv.lib.licenses; [ gpl2Plus cc-by-nc-sa-30 ];
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2016-09-14 21:31:56 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.romildo ];
|
2016-05-03 09:45:17 +00:00
|
|
|
};
|
|
|
|
}
|