28 lines
698 B
Nix
28 lines
698 B
Nix
{ lib, stdenv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ocbwoy3-system-icons";
|
|
version = "1.0.0";
|
|
src = ./.;
|
|
|
|
nativeBuildInputs = [ ];
|
|
|
|
buildInputs = [ ];
|
|
|
|
# my (possible) bpd is killing me wtf
|
|
installPhase = ''
|
|
mkdir -p $out/share/icons/hicolor/{128x128,256x256,512x512}/apps
|
|
for size in 128x128 256x256 512x512; do
|
|
cp ./gay-boykisser.png $out/share/icons/hicolor/$size/apps/gay-boykisser.png
|
|
cp ./boykisser.png $out/share/icons/hicolor/$size/apps/boykisser.png
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "OCbwoy3's custom icons for NixOS";
|
|
homepage = "https://github.com/ocbwoy3/config";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|