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
30 lines
686 B
Nix
30 lines
686 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "midicsv";
|
|
version = "1.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.fourmilab.ch/webtools/midicsv/midicsv-${version}.tar.gz";
|
|
sha256 = "1vvhk2nf9ilfw0wchmxy8l13hbw9cnpz079nsx5srsy4nnd78nkw";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace Makefile \
|
|
--replace /usr/local $out \
|
|
--replace gcc "${stdenv.cc.targetPrefix}cc"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Losslessly translate MIDI to CSV and back";
|
|
homepage = "https://www.fourmilab.ch/webtools/midicsv/";
|
|
license = licenses.publicDomain;
|
|
maintainers = with maintainers; [ orivej ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|