12 lines
224 B
Nix
12 lines
224 B
Nix
|
{
|
||
|
stdenv,
|
||
|
python3,
|
||
|
}:
|
||
|
stdenv.mkDerivation (finalAttrs: {
|
||
|
pname = "hare-as";
|
||
|
version = "1.0";
|
||
|
unpackPhase = ":";
|
||
|
buildInputs = [ python3 ];
|
||
|
installPhase = "install -m755 -D ${./hare-as.py} $out/bin/hare-as";
|
||
|
})
|