shithub: orca

ref: 7531dbe191cee7e6eb4a85b50da142cd61e85ff3
dir: orca/default.nix

View raw version
# 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
  '';
}