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