3f3cefbc50
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. This update was made based on information from https://repology.org/metapackage/greybird/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - directory tree listing: https://gist.github.com/49f269acfed0477087452f5f821f1b20
27 lines
852 B
Nix
27 lines
852 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, sass, glib, libxml2, gdk_pixbuf, librsvg, gtk-engine-murrine }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
pname = "greybird";
|
|
version = "3.22.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "shimmerproject";
|
|
repo = "${pname}";
|
|
rev = "v${version}";
|
|
sha256 = "118k0bb780h54i2vn5my5r6vbkk134899xwp4aigw5a289xzryvb";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook sass glib libxml2 gdk_pixbuf librsvg ];
|
|
|
|
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
|
|
|
|
meta = {
|
|
description = "Grey and blue theme (Gtk, Xfce, Emerald, Metacity, Mutter, Unity)";
|
|
homepage = https://github.com/shimmerproject/Greybird;
|
|
license = with stdenv.lib.licenses; [ gpl2Plus cc-by-nc-sa-30 ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = [ stdenv.lib.maintainers.romildo ];
|
|
};
|
|
}
|