Ver 1.0
This commit is contained in:
parent
b6b87d5aed
commit
9c72a71585
3546 changed files with 18655 additions and 0 deletions
32
Ressources/package/icon-theme/default.nix
Normal file
32
Ressources/package/icon-theme/default.nix
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
lib,
|
||||
stdenvNoCC,
|
||||
}:
|
||||
stdenvNoCC.mkDerivation rec {
|
||||
pname = "crystal-remix-diinki-icon-theme";
|
||||
version = "1.0.0";
|
||||
|
||||
src = ./source/crystal-remix-icon-theme-diinki-version;
|
||||
|
||||
dontBuild = true;
|
||||
dontConfigure = true;
|
||||
|
||||
themeName = "crystal-remix-icon-theme-diinki-version";
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p "$out/share/icons/${themeName}"
|
||||
cp -R ./* "$out/share/icons/${themeName}/"
|
||||
|
||||
chmod -R a+rX "$out/share/icons/${themeName}"
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Crystal Remix (Diinki version) icon theme";
|
||||
platforms = platforms.linux;
|
||||
license = licenses.gpl3Only;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue