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

27 lines
844 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 {
name = "${pname}-${version}";
2017-02-24 10:22:42 +01:00
pname = "greybird";
2017-06-14 02:17:13 +02:00
version = "3.22.4";
2016-05-03 11:45:17 +02:00
src = fetchFromGitHub {
owner = "shimmerproject";
2016-11-25 08:08:03 +01:00
repo = "${pname}";
2017-04-18 18:54:31 +02:00
rev = "v${version}";
2017-06-14 02:17:13 +02:00
sha256 = "1xh6vi4rmxmkrgy9qskcl8q6014qnsn19xjjwbmwf8n6yr07scl3";
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 ];
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
};
}