Treewide: regroup all themes under data/themes

This commit is contained in:
c0bw3b
2019-11-24 21:59:01 +01:00
parent d8c37ed93f
commit 1e93a70f04
18 changed files with 38 additions and 38 deletions
+37
View File
@@ -0,0 +1,37 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gtk-engine-murrine }:
stdenv.mkDerivation rec {
pname = "theme-vertex";
version = "20170128";
src = fetchFromGitHub {
owner = "horst3180";
repo = "vertex-theme";
rev = version;
sha256 = "0c9mhrs95ahz37djrv176vn41ywvj26ilwmnr1h9171giv6hid98";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
configureFlags = [ "--disable-unity" ];
postInstall = ''
mkdir -p $out/share/plank/themes
cp -r extra/*-Plank $out/share/plank/themes
mkdir -p $out/share/doc/$pname/Chrome
cp -r extra/Chrome/*.crx $out/share/doc/$pname/Chrome
cp -r extra/Firefox $out/share/doc/$pname
cp AUTHORS README.md $out/share/doc/$pname/
'';
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "Theme for GTK 3, GTK 2, Gnome-Shell, and Cinnamon";
license = licenses.gpl3;
platforms = platforms.unix;
maintainers = with maintainers; [ rycee romildo ];
};
}