bscpkgs/garlic/ds/osu/bw.nix

24 lines
335 B
Nix
Raw Normal View History

2021-03-01 19:00:58 +08:00
{
stdenv
, python3
, gzip
}:
resultTree:
stdenv.mkDerivation {
name = "osu-bw.json.gz";
preferLocalBuild = true;
src = ./bw.py;
phases = [ "unpackPhase" "installPhase" ];
unpackPhase = ''
cp $src bw.py
'';
buildInputs = [ python3 gzip ];
installPhase = ''
python bw.py ${resultTree} | gzip > $out
'';
}