1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
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}";
2017-02-24 09:22:42 +00:00
pname = "greybird";
2017-03-06 10:26:07 +00:00
version = "2017-02-26";
2016-05-03 10:45:17 +01:00
src = fetchFromGitHub {
owner = "shimmerproject";
2016-11-25 07:08:03 +00:00
repo = "${pname}";
2017-03-06 10:26:07 +00:00
rev = "66c222c25c43603e73d3521e0e91ffb268214229";
sha256 = "1q0nc02d7kwaxjb8d2rvwc3yf3v46r44zsighwjnmczpw7y3j6h8";
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
};
}