mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-19 17:39:34 +00:00
36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
|
{ stdenv, fetchurl, alsaLib, autoconf, automake, dssi, gtk, ladspaH,
|
||
|
ladspaPlugins, liblo, pkgconfig }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "xsynth-dssi-${version}";
|
||
|
version = "0.9.4";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "mirror://sourceforge/xsynth-dssi/${name}.tar.gz";
|
||
|
sha256 = "00nwv2pqjbmxqdc6xdm0cljq6z05lv4y6bibmhz1kih9lm0lklnk";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ alsaLib autoconf automake dssi gtk ladspaH
|
||
|
ladspaPlugins liblo pkgconfig ];
|
||
|
|
||
|
installPhase = ''
|
||
|
ensureDir $out/bin
|
||
|
cp src/Xsynth_gtk $out/bin
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "classic-analog (VCOs-VCF-VCA) style software synthesizer";
|
||
|
longDescription = ''
|
||
|
Xsynth-DSSI is a classic-analog (VCOs-VCF-VCA) style software
|
||
|
synthesizer which operates as a plugin for the DSSI Soft Synth
|
||
|
Interface. DSSI is a plugin API for software instruments (soft
|
||
|
synths) with user interfaces, permitting them to be hosted
|
||
|
in-process by audio applications.
|
||
|
'';
|
||
|
homepage = http://dssi.sourceforge.net/download.html#Xsynth-DSSI;
|
||
|
license = licenses.gpl2+;
|
||
|
platforms = platforms.linux;
|
||
|
maintainers = [ maintainers.goibhniu ];
|
||
|
};
|
||
|
}
|