889482aab3
GitOrigin-RevId: f2537a505d45c31fe5d9c27ea9829b6f4c4e6ac5
42 lines
839 B
Nix
42 lines
839 B
Nix
{ stdenv
|
|
, lib
|
|
, fetchurl
|
|
, autoreconfHook
|
|
, pkg-config
|
|
, libopenmpt
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libopenmpt-modplug";
|
|
version = "0.8.9.0-openmpt1";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
src = fetchurl {
|
|
url = "https://lib.openmpt.org/files/libopenmpt-modplug/libopenmpt-modplug-${version}.tar.gz";
|
|
sha256 = "sha256-7M4aDuz9sLWCTKuJwnDc5ZWWKVosF8KwQyFez018T/c=";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
libopenmpt
|
|
];
|
|
|
|
configureFlags = [
|
|
"--enable-libmodplug"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A libmodplug emulation layer based on libopenmpt";
|
|
homepage = "https://lib.openmpt.org/libopenmpt/";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ OPNA2608 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|