Add oneui4-icons

This commit is contained in:
blahai 2025-04-03 17:55:54 +03:00
parent d39f17f069
commit d3da7df023
Signed by: blahai
SSH key fingerprint: SHA256:ZfCryi+V64yG+vC1ZIIsqgvBCmA31tTi7RJ6M8CvpRc

View file

@ -0,0 +1,32 @@
{
lib,
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation {
pname = "oneui4-icons";
version = "unstable";
src = fetchFromGitHub {
owner = "mjkim0727";
repo = "OneUI4-Icons";
rev = "4ed5ceb912e758a8f7095f2008c84ffd7155bc14";
sha256 = "sha256-f5t7VGPmD+CjZyWmhTtuhQjV87hCkKSCBksJzFa1x1Y=";
};
patchPhase = ''
# Remove broken symlinks
find . -xtype l -delete
'';
installPhase = ''
install -d $out/share/icons
cp -dr --no-preserve=mode OneUI{,-dark,-light} $out/share/icons/
'';
meta = {
description = "One UI Icons for Linux ";
homepage = "https://github.com/mjkim0727/OneUI4-Icons";
license = lib.licenses.gpl3;
};
}