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
47 lines
987 B
Nix
47 lines
987 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libmt32emu";
|
|
version = "2.7.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "munt";
|
|
repo = "munt";
|
|
rev = "${pname}_${lib.replaceStrings [ "." ] [ "_" ] version}";
|
|
sha256 = "sha256-wXIvdGoup/AOQggkeXvtbi3pXhyKUKWmyt/ZbGzufds=";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-Dmunt_WITH_MT32EMU_SMF2WAV=OFF"
|
|
"-Dmunt_WITH_MT32EMU_QT=OFF"
|
|
];
|
|
|
|
postFixup = ''
|
|
substituteInPlace "$dev"/lib/pkgconfig/mt32emu.pc \
|
|
--replace '=''${exec_prefix}//' '=/' \
|
|
--replace "$dev/$dev/" "$dev/"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://munt.sourceforge.net/";
|
|
description = "Library to emulate Roland MT-32, CM-32L, CM-64 and LAPC-I devices";
|
|
license = with licenses; [ lgpl21Plus ];
|
|
maintainers = with maintainers; [ OPNA2608 ];
|
|
platforms = platforms.unix; # Not tested on ReactOS yet :)
|
|
};
|
|
}
|