Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
52 lines
917 B
Nix
52 lines
917 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchgit,
|
|
alsa-lib,
|
|
ladspaH,
|
|
libjack2,
|
|
fftw,
|
|
zita-alsa-pcmi,
|
|
qt5,
|
|
pkg-config,
|
|
autoreconfHook,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "ams";
|
|
version = "unstable-2019-04-27";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.code.sf.net/p/alsamodular/ams.git";
|
|
sha256 = "0qdyz5llpa94f3qx1xi1mz97vl5jyrj1mqff28p5g9i5rxbbk8z9";
|
|
rev = "3250bbcfea331c4fcb9845305eebded80054973d";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
qt5.wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
ladspaH
|
|
libjack2
|
|
fftw
|
|
zita-alsa-pcmi
|
|
]
|
|
++ (with qt5; [
|
|
qtbase
|
|
qttools
|
|
]);
|
|
|
|
meta = with lib; {
|
|
description = "Realtime modular synthesizer for ALSA";
|
|
mainProgram = "ams";
|
|
homepage = "https://alsamodular.sourceforge.net";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ sjfloat ];
|
|
};
|
|
}
|