Ver 1.0
This commit is contained in:
parent
b6b87d5aed
commit
9c72a71585
3546 changed files with 18655 additions and 0 deletions
35
Ressources/package/gtk-theme/default.nix
Normal file
35
Ressources/package/gtk-theme/default.nix
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
lib,
|
||||
stdenvNoCC,
|
||||
}:
|
||||
stdenvNoCC.mkDerivation rec {
|
||||
pname = "diinki-aero-gtk-theme";
|
||||
version = "1.0.0";
|
||||
|
||||
src = ./source/diinki-aero;
|
||||
|
||||
dontBuild = true;
|
||||
dontConfigure = true;
|
||||
|
||||
# Name of the theme directory as GTK will see it under share/themes/
|
||||
themeName = "diinki-aero";
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p "$out/share/themes/${themeName}"
|
||||
cp -R ./* "$out/share/themes/${themeName}/"
|
||||
|
||||
# optional: ensure readable perms
|
||||
chmod -R a+rX "$out/share/themes/${themeName}"
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Diinki Aero GTK theme";
|
||||
homepage = null;
|
||||
license = licenses.gpl3Only;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue