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