arashi: init at 25.08.3 (#433774)

This commit is contained in:
Wolfgang Walther
2025-08-16 08:36:50 +00:00
committed by GitHub
2 changed files with 39 additions and 0 deletions
+6
View File
@@ -21647,6 +21647,12 @@
{ fingerprint = "C0A7 A9BB 115B C857 4D75 EA99 BBB7 A680 1DF1 E03F"; }
];
};
ritascarlet = {
email = "sashasafonov080@gmail.com";
github = "ritascarlet";
githubId = 137996547;
name = "Alex Safonov";
};
ritiek = {
name = "Ritiek Malhotra";
email = "ritiekmalhotra123@gmail.com";
+33
View File
@@ -0,0 +1,33 @@
{
lib,
stdenvNoCC,
fetchFromGitHub,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "arashi";
version = "25.08.3";
src = fetchFromGitHub {
owner = "0hStormy";
repo = "Arashi";
tag = finalAttrs.version;
hash = "sha256-wmYsAfgdwn6ZLF70avNmjoU5VZNBZdV7dPSe8ycNdHE=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/share/icons/Arashi
cp -r . $out/share/icons/Arashi/
runHook postInstall
'';
meta = {
description = "Arashi icon theme";
homepage = "https://github.com/0hStormy/Arashi";
license = lib.licenses.cc-by-sa-40;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ ritascarlet ];
};
})