nixpkgs/pkgs/applications/audio/mda-lv2/default.nix

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

23 lines
673 B
Nix
Raw Normal View History

2023-09-03 00:24:44 +00:00
{ lib, stdenv, fetchurl, fftwSinglePrec, lv2, pkg-config, wafHook, python3 }:
2013-02-24 10:26:32 +00:00
stdenv.mkDerivation rec {
pname = "mda-lv2";
2021-01-20 04:47:34 +00:00
version = "1.2.6";
2013-02-24 10:26:32 +00:00
src = fetchurl {
url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
2021-01-20 04:47:34 +00:00
sha256 = "sha256-zWYRcCSuBJzzrKg/npBKcCdyJOI6lp9yqcXQEKSYV9s=";
2013-02-24 10:26:32 +00:00
};
2023-09-03 00:24:44 +00:00
nativeBuildInputs = [ pkg-config wafHook python3 ];
buildInputs = [ fftwSinglePrec lv2 ];
2013-02-24 10:26:32 +00:00
meta = with lib; {
2023-08-06 15:24:53 +00:00
homepage = "http://drobilla.net/software/mda-lv2.html";
2013-02-24 10:26:32 +00:00
description = "An LV2 port of the MDA plugins by Paul Kellett";
license = licenses.gpl2Plus;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux;
};
}