3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/misc/themes/greybird/default.nix

27 lines
877 B
Nix
Raw Normal View History

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}";
2016-09-14 22:31:56 +01:00
pname = "Greybird";
version = "2016-09-13";
2016-05-03 10:45:17 +01:00
src = fetchFromGitHub {
repo = "${pname}";
owner = "shimmerproject";
2016-09-14 22:31:56 +01:00
rev = "1942afc8732f904a1139fd41d7afd74263b87887";
sha256 = "0qawc7rx5s3mnk5awvlbp6k5m9aj5krb1lasmgl2cb9fk09khf2v";
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 ];
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
};
}