orca-c: use `postPatch` instead of overriding `patchPhase`
[NixPkgs.git] / pkgs / applications / audio / orca-c / default.nix
blob088e7f97e4ed85a4361e422d68d0386bd849749e
1 { lib, stdenv, fetchgit, ncurses, portmidi }:
2 stdenv.mkDerivation {
3   pname = "orca-c";
5   version = "git-2021-02-13";
7   src = fetchgit {
8     url = "https://git.sr.ht/~rabbits/orca";
9     rev = "5ba56ca67baae3db140f8b7a2b2fc46bbac5602f";
10     sha256 = "sha256-bbIH0kyHRTcMGXV3WdBQIH1br0FyIzKKL88wqpGZ0NY=";
11   };
13   buildInputs = [ ncurses portmidi ];
15   postPatch = ''
16     patchShebangs tool
17   '';
19   installPhase = ''
20     mkdir -p $out/bin
21     install build/orca $out/bin/orca
22   '';
24   meta = with lib; {
25     description = "An esoteric programming language designed to quickly create procedural sequencers";
26     homepage = "https://git.sr.ht/~rabbits/orca";
27     license = licenses.mit;
28     platforms = platforms.all;
29     maintainers = with maintainers; [ netcrns ];
30   };