lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v192 33 lines 897 B view raw
1{ stdenv, fetchFromGitHub, autoreconfHook, gtk3, pkgconfig }: 2 3stdenv.mkDerivation rec { 4 name = "theme-vertex-${version}"; 5 version = "20150718"; 6 7 src = fetchFromGitHub { 8 owner = "horst3180"; 9 repo = "Vertex-theme"; 10 rev = version; 11 sha256 = "19mmybfkx3mrbm9vr78c7xiyazmyzji1n6669466svjr3jy87546"; 12 }; 13 14 buildInputs = [ autoreconfHook gtk3 pkgconfig ]; 15 16 configureFlags = "--disable-unity"; 17 18 postInstall = '' 19 mkdir -p $out/share/doc/theme-vertex 20 cp AUTHORS COPYING README.md $out/share/doc/theme-vertex/ 21 22 mkdir -p $out/share/doc/theme-vertex/extra 23 cp -r extra/{Chrome,Firefox} $out/share/doc/theme-vertex/extra 24 ''; 25 26 meta = with stdenv.lib; { 27 inherit (src.meta) homepage; 28 description = "Theme for GTK 3, GTK 2, Gnome-Shell, and Cinnamon"; 29 license = licenses.gpl3; 30 maintainer = [ maintainers.rycee ]; 31 platforms = platforms.unix; 32 }; 33}