ref: b1ebc6412e1b0e40fc4ee2f6c3c67428a3e1480f
dir: /default.nix/
# nix-env -i -f ./default.nix
{ nixpkgs ? import <nixpkgs> {} }:
with nixpkgs; stdenv.mkDerivation rec {
name = "orca";
src = ./.;
buildInputs = [ ncurses portmidi ];
enableParallelBuilding = true;
buildPhase = ''
patchShebangs ./tool
make
'';
installPhase = ''
mkdir -p $out/bin
cp build/orca $out/bin/orca
'';
}