d08395713b
Signed-off-by: Austin Seipp <aseipp@pobox.com>
41 lines
1.3 KiB
Nix
41 lines
1.3 KiB
Nix
{ stdenv, fetchurl }:
|
|
|
|
assert (stdenv.system == "x86_64-linux") || (stdenv.system == "i686-linux");
|
|
let
|
|
bits = stdenv.lib.optionalString (stdenv.system == "x86_64-linux") "64";
|
|
|
|
libPath = stdenv.lib.makeLibraryPath
|
|
[ stdenv.gcc.libc stdenv.gcc.gcc ] + ":${stdenv.gcc.gcc}/lib64";
|
|
patchLib = x: "patchelf --set-rpath ${libPath} ${x}";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "fmod-${version}";
|
|
version = "4.44.34";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.fmod.org/download/fmodex/api/Linux/fmodapi44434linux.tar.gz";
|
|
sha256 = "057dvawckw3laavfkzvakyrw5lnvvfabs8myibjc95ap1awacb8x";
|
|
};
|
|
|
|
dontStrip = true;
|
|
buildPhase = "true";
|
|
installPhase = ''
|
|
mkdir -p $out/lib $out/include/fmodex
|
|
|
|
cd api/inc && cp * $out/include/fmodex && cd ../lib
|
|
cp libfmodex${bits}-${version}.so $out/lib/libfmodex.so
|
|
cp libfmodexL${bits}-${version}.so $out/lib/libfmodexL.so
|
|
|
|
${patchLib "$out/lib/libfmodex.so"}
|
|
${patchLib "$out/lib/libfmodexL.so"}
|
|
'';
|
|
|
|
meta = {
|
|
description = "Programming library and toolkit for the creation and playback of interactive audio";
|
|
homepage = "http://www.fmod.org/";
|
|
license = stdenv.lib.licenses.unfreeRedistributable;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
|
};
|
|
}
|