forked from pub-solar/infra
10 lines
247 B
Nix
10 lines
247 B
Nix
{ stdenvNoCC, element-stickers, maunium-stickerpicker }:
|
|
stdenvNoCC.mkDerivation {
|
|
src = maunium-stickerpicker;
|
|
name = "element-stickers";
|
|
buildPhase = ''
|
|
mv web $out/
|
|
cp ${element-stickers}/uploaded-packs/*.json $out/packs/
|
|
'';
|
|
}
|