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

27 lines
844 B
Nix
Raw Normal View History

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