7 lines
157 B
Nix
7 lines
157 B
Nix
{ runCommandLocal, unzip }:
|
|
runCommandLocal "suwako-cursors" { } ''
|
|
mkdir -p $out/share/icons
|
|
${unzip}/bin/unzip ${./Suwako.zip} -d $out/share/icons
|
|
''
|
|
|