mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
34 lines
942 B
Nix
34 lines
942 B
Nix
{ lib, stdenv, fetchFromGitHub, cairo, fftw, gtkmm2, lv2, lvtk, pkg-config
|
|
, wafHook, python3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ams-lv2";
|
|
version = "1.2.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "blablack";
|
|
repo = "ams-lv2";
|
|
rev = version;
|
|
sha256 = "1lz2mvk4gqsyf92yxd3aaldx0d0qi28h4rnnvsaz4ls0ccqm80nk";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config wafHook python3 ];
|
|
buildInputs = [ cairo fftw gtkmm2 lv2 lvtk ];
|
|
|
|
postPatch = ''
|
|
# U was removed in python 3.11 because it had no effect
|
|
substituteInPlace waflib/*.py \
|
|
--replace "m='rU" "m='r"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "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;
|
|
# Build uses `-msse` and `-mfpmath=sse`
|
|
badPlatforms = [ "aarch64-linux" ];
|
|
};
|
|
}
|