e2fd06ad1d
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/ams-lv2/versions
28 lines
801 B
Nix
28 lines
801 B
Nix
{ stdenv, fetchFromGitHub, cairo, fftw, gtkmm2, lv2, lvtk, pkgconfig, python3
|
|
, wafHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ams-lv2-${version}";
|
|
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" ];
|
|
};
|
|
}
|