Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
48 lines
1006 B
Nix
48 lines
1006 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchgit,
|
|
ncurses,
|
|
portmidi,
|
|
}:
|
|
stdenv.mkDerivation {
|
|
pname = "orca-c";
|
|
version = "unstable-2021-02-13";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.sr.ht/~rabbits/orca";
|
|
rev = "5ba56ca67baae3db140f8b7a2b2fc46bbac5602f";
|
|
sha256 = "sha256-bbIH0kyHRTcMGXV3WdBQIH1br0FyIzKKL88wqpGZ0NY=";
|
|
};
|
|
|
|
buildInputs = [
|
|
ncurses
|
|
portmidi
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs tool
|
|
sed -i tool \
|
|
-e 's@ncurses_dir=.*@ncurses_dir="${ncurses}"@' \
|
|
-e 's@portmidi_dir=.*@portmidi_dir="${portmidi}"@' tool
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin
|
|
install build/orca $out/bin/orca
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Esoteric programming language designed to quickly create procedural sequencers";
|
|
homepage = "https://git.sr.ht/~rabbits/orca";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ netcrns ];
|
|
mainProgram = "orca";
|
|
};
|
|
}
|