nixpkgs/pkgs/by-name/so/soxr/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
716 B
Nix
Raw Normal View History

2021-01-15 05:42:41 +00:00
{
lib,
stdenv,
fetchurl,
cmake,
}:
stdenv.mkDerivation rec {
pname = "soxr";
version = "0.1.3";
src = fetchurl {
url = "mirror://sourceforge/soxr/soxr-${version}-Source.tar.xz";
sha256 = "12aql6svkplxq5fjycar18863hcq84c5kx8g6f4rj0lcvigw24di";
};
patches = [
# Remove once https://sourceforge.net/p/soxr/code/merge-requests/5/ is merged.
./arm64-check.patch
];
2023-05-17 21:03:28 +00:00
outputs = [
"out"
"dev"
"doc"
];
2015-10-07 21:12:30 +00:00
2015-09-24 23:14:58 +00:00
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "Audio resampling library";
homepage = "https://soxr.sourceforge.net";
license = licenses.lgpl21Plus;
platforms = platforms.unix ++ platforms.windows;
maintainers = [ ];
};
}