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
63 lines
1005 B
Nix
63 lines
1005 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
ladspaH,
|
|
libjack2,
|
|
liblo,
|
|
alsa-lib,
|
|
libX11,
|
|
libsndfile,
|
|
libSM,
|
|
libsamplerate,
|
|
libtool,
|
|
autoconf,
|
|
automake,
|
|
xorgproto,
|
|
libICE,
|
|
pkg-config,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dssi";
|
|
version = "1.1.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/dssi/dssi/${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "0kl1hzhb7cykzkrqcqgq1dk4xcgrcxv0jja251aq4z4l783jpj7j";
|
|
};
|
|
|
|
patches = [
|
|
./dssi-liblo.patch
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
autoconf
|
|
automake
|
|
pkg-config
|
|
];
|
|
buildInputs = [
|
|
ladspaH
|
|
libjack2
|
|
liblo
|
|
alsa-lib
|
|
libX11
|
|
libsndfile
|
|
libSM
|
|
libsamplerate
|
|
libtool
|
|
xorgproto
|
|
libICE
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Plugin SDK for virtual instruments";
|
|
maintainers = with maintainers; [
|
|
raskin
|
|
];
|
|
platforms = platforms.linux;
|
|
license = licenses.lgpl21;
|
|
downloadPage = "https://sourceforge.net/projects/dssi/files/dssi/";
|
|
};
|
|
}
|