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

@@ -1,7 +1,7 @@
{ lib, stdenv }:
stdenv.mkDerivation rec {
pname = "ocbwoy3-nixos-icons";
pname = "kris-nixos-icons";
version = "1.0.0";
src = ./.;
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
description = "OCbwoy3's Custom Icons for NixOS";
description = "Kris's Custom Icons for NixOS";
homepage = "https://tangled.sh/@kris.darkworld.download/nix?ref=main";
license = licenses.mit;
maintainers = with maintainers; [ ];

View File

Before

Width:  |  Height:  |  Size: 8.4 KiB

After

Width:  |  Height:  |  Size: 8.4 KiB

View File

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 40 KiB

View File

@@ -0,0 +1,14 @@
{ stdenvNoCC }:
stdenvNoCC.mkDerivation {
pname = "kris-nonnix-fonts";
version = "1";
src = ../../../asset/fonts/nonnix;
installPhase = ''
runHook preInstall
install -Dm644 *.ttf -t "$out/share/fonts/truetype"
runHook postInstall
'';
}