My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/misc/themes/vertex/default.nix

33 lines
898 B

{ stdenv, fetchFromGitHub, autoreconfHook, gtk3, pkgconfig }:
stdenv.mkDerivation rec {
name = "theme-vertex-${version}";
version = "20160329";
src = fetchFromGitHub {
owner = "horst3180";
repo = "Vertex-theme";
rev = version;
sha256 = "1zafnbxn9hgi4lmi254iw9jyhifcqijxa7cymwjpyy0jfa6sm1qj";
};
buildInputs = [ autoreconfHook gtk3 pkgconfig ];
configureFlags = "--disable-unity";
postInstall = ''
mkdir -p $out/share/doc/theme-vertex
cp AUTHORS COPYING README.md $out/share/doc/theme-vertex/
mkdir -p $out/share/doc/theme-vertex/extra
cp -r extra/{Chrome,Firefox} $out/share/doc/theme-vertex/extra
'';
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "Theme for GTK 3, GTK 2, Gnome-Shell, and Cinnamon";
license = licenses.gpl3;
maintainers = [ maintainers.rycee ];
platforms = platforms.unix;
};
}