Files
nixpkgs/pkgs/by-name/br/brutefir/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

46 lines
869 B
Nix

{
lib,
stdenv,
fetchurl,
alsa-lib,
fftw,
fftwFloat,
flex,
libjack2,
}:
stdenv.mkDerivation rec {
pname = "brutefir";
version = "1.0o";
src = fetchurl {
url = "https://torger.se/anders/files/brutefir-${version}.tar.gz";
sha256 = "caae4a933b53b55b29d6cb7e2803e20819f31def6d0e4e12f9a48351e6dbbe9f";
};
nativeBuildInputs = [ flex ];
buildInputs = [
alsa-lib
fftw
fftwFloat
libjack2
];
postPatch = "substituteInPlace bfconf.c --replace /usr/local $out";
installFlags = [ "INSTALL_PREFIX=$(out)" ];
meta = with lib; {
homepage = "https://torger.se/anders/brutefir.html";
description = "Software convolution engine";
license = licenses.gpl2Only;
maintainers = with maintainers; [ auchter ];
platforms = [
"x86_64-linux"
"i686-linux"
];
mainProgram = "brutefir";
};
}