nixpkgs/pkgs/misc/themes/greybird/default.nix

27 lines
883 B
Nix
Raw Normal View History

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 {
pname = "Greybird";
2016-08-18 16:23:05 +02:00
version = "2016-08-16";
2016-05-03 11:45:17 +02:00
name = "${pname}-${version}";
src = fetchFromGitHub {
repo = "${pname}";
owner = "shimmerproject";
2016-08-18 16:23:05 +02:00
rev = "fcaa400df68b1a29bb9dc8eb9c772a241f17c9ea";
sha256 = "02f2zlkhi2als39ajq3v91iik708g5a9iyl3cvd65n80gr4jifmr";
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)";
homepage = http://shimmerproject.org/our-projects/greybird/;
license = with stdenv.lib.licenses; [ gpl2Plus cc-by-nc-sa-30 ];
maintainers = [ stdenv.lib.maintainers.romildo ];
platforms = stdenv.lib.platforms.linux;
2016-05-03 11:45:17 +02:00
};
}