2023-10-09 19:29:22 +00:00
|
|
|
{ lib, stdenv, fetchurl, ladspaH, libjack2, liblo, alsa-lib, libX11, libsndfile, libSM
|
2021-02-05 17:12:51 +00:00
|
|
|
, libsamplerate, libtool, autoconf, automake, xorgproto, libICE, pkg-config
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "dssi";
|
|
|
|
version = "1.1.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/project/dssi/dssi/${version}/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = "0kl1hzhb7cykzkrqcqgq1dk4xcgrcxv0jja251aq4z4l783jpj7j";
|
|
|
|
};
|
|
|
|
|
2022-10-21 18:38:19 +00:00
|
|
|
nativeBuildInputs = [ autoconf automake pkg-config ];
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs =
|
2023-10-09 19:29:22 +00:00
|
|
|
[ ladspaH libjack2 liblo alsa-lib libX11 libsndfile libSM
|
2022-10-21 18:38:19 +00:00
|
|
|
libsamplerate libtool xorgproto libICE
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A plugin SDK for virtual instruments";
|
|
|
|
maintainers = with maintainers;
|
|
|
|
[
|
|
|
|
raskin
|
|
|
|
];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.lgpl21;
|
|
|
|
downloadPage = "https://sourceforge.net/projects/dssi/files/dssi/";
|
|
|
|
};
|
|
|
|
}
|