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