3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/audio/zita-resampler/default.nix

39 lines
990 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2015-05-06 01:08:11 +01:00
stdenv.mkDerivation rec {
pname = "zita-resampler";
2021-03-10 08:23:04 +00:00
version = "1.8.0";
2015-05-06 01:08:11 +01:00
src = fetchurl {
url = "http://kokkinizita.linuxaudio.org/linuxaudio/downloads/${pname}-${version}.tar.bz2";
2021-03-10 08:23:04 +00:00
sha256 = "sha256-5XRPI8VN0Vs/eDpoe9h57uKmkKRUWhW0nEzwN6pGSqI=";
2015-05-06 01:08:11 +01:00
};
makeFlags = [
"PREFIX=$(out)"
"SUFFIX="
];
postPatch = ''
2018-10-07 16:35:03 +01:00
cd source
2021-11-09 22:00:59 +00:00
substituteInPlace Makefile \
--replace 'ldconfig' ""
'' + lib.optionalString (!stdenv.targetPlatform.isx86_64) ''
substituteInPlace Makefile \
--replace '-DENABLE_SSE2' ""
2015-05-06 01:08:11 +01:00
'';
fixupPhase = ''
ln -s $out/lib/libzita-resampler.so.$version $out/lib/libzita-resampler.so.1
'';
meta = {
description = "Resample library by Fons Adriaensen";
2019-09-09 00:38:31 +01:00
version = version;
homepage = "http://kokkinizita.linuxaudio.org/linuxaudio/downloads/index.html";
license = lib.licenses.gpl2;
maintainers = [ lib.maintainers.magnetophon ];
platforms = lib.platforms.linux;
2015-05-06 01:08:11 +01:00
};
}