You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
782 B
27 lines
782 B
{ stdenv, fetchFromGitHub, cairo, fftw, gtkmm2, lv2, lvtk, pkgconfig |
|
, wafHook }: |
|
|
|
stdenv.mkDerivation rec { |
|
pname = "ams-lv2"; |
|
version = "1.2.2"; |
|
|
|
src = fetchFromGitHub { |
|
owner = "blablack"; |
|
repo = "ams-lv2"; |
|
rev = version; |
|
sha256 = "1lz2mvk4gqsyf92yxd3aaldx0d0qi28h4rnnvsaz4ls0ccqm80nk"; |
|
}; |
|
|
|
nativeBuildInputs = [ pkgconfig wafHook ]; |
|
buildInputs = [ cairo fftw gtkmm2 lv2 lvtk ]; |
|
|
|
meta = with stdenv.lib; { |
|
description = "An LV2 port of the internal modules found in Alsa Modular Synth"; |
|
homepage = http://objectivewave.wordpress.com/ams-lv2; |
|
license = licenses.gpl3; |
|
maintainers = [ maintainers.goibhniu ]; |
|
platforms = platforms.linux; |
|
# Build uses `-msse` and `-mfpmath=sse` |
|
badPlatforms = [ "aarch64-linux" ]; |
|
}; |
|
}
|
|
|