nix-home/packages/common/suwako-cursors/default.nix

7 lines
157 B
Nix
Raw Normal View History

2023-10-15 12:17:12 +00:00
{ runCommandLocal, unzip }:
runCommandLocal "suwako-cursors" { } ''
mkdir -p $out/share/icons
${unzip}/bin/unzip ${./Suwako.zip} -d $out/share/icons
''