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

28 lines
792 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cairo, fftw, gtkmm2, lv2, lvtk, pkgconfig
2020-12-10 09:58:44 +00:00
, wafHook, python3 }:
stdenv.mkDerivation rec {
pname = "ams-lv2";
version = "1.2.2";
2017-01-22 19:24:27 +00:00
src = fetchFromGitHub {
owner = "blablack";
repo = "ams-lv2";
rev = version;
sha256 = "1lz2mvk4gqsyf92yxd3aaldx0d0qi28h4rnnvsaz4ls0ccqm80nk";
};
2020-12-10 09:58:44 +00:00
nativeBuildInputs = [ pkgconfig wafHook python3 ];
buildInputs = [ cairo fftw gtkmm2 lv2 lvtk ];
meta = with lib; {
description = "An LV2 port of the internal modules found in Alsa Modular Synth";
homepage = "https://github.com/blablack/ams-lv2";
license = licenses.gpl3;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux;
2018-12-09 21:29:01 +00:00
# Build uses `-msse` and `-mfpmath=sse`
badPlatforms = [ "aarch64-linux" ];
};
}