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

23 lines
669 B
Nix
Raw Normal View History

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