This commit is contained in:
Kris
2026-03-28 20:49:12 +02:00
parent 69e881d729
commit 8ed9bd9618
28 changed files with 207 additions and 276 deletions

View File

@@ -0,0 +1,28 @@
{ lib, stdenv }:
stdenv.mkDerivation rec {
pname = "kris-nixos-icons";
version = "1.0.0";
src = ./.;
nativeBuildInputs = [ ];
buildInputs = [ ];
installPhase = ''
mkdir -p $out/share/icons/hicolor/{128x128,256x256,512x512,scalable}/apps
mkdir -p $out/share/icons/arashi/{128x128,256x256,512x512,scalable}/apps
for size in 128x128 256x256 512x512 scalable; do
cp ./games/deltarune.png $out/share/icons/hicolor/$size/apps/ralsei.png
cp ./games/deltarune.png $out/share/icons/arashi/$size/apps/steam_icon_1690940.png
cp ./games/cs2.png $out/share/icons/arashi/$size/apps/steam_icon_730.png
done
'';
meta = with lib; {
description = "Kris's Custom Icons for NixOS";
homepage = "https://tangled.sh/@kris.darkworld.download/nix?ref=main";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB