mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
bd01fad0ed
In line with the Nixpkgs manual. A mechanical change, done with this command: find pkgs -name "*.nix" | \ while read f; do \ sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \ done I manually skipped some: * Descriptions starting with an abbreviation, a user name or package name * Frequently generated expressions (haskell-packages.nix)
38 lines
1.2 KiB
Nix
38 lines
1.2 KiB
Nix
{ stdenv, fetchurl, alsaLib, autoconf, automake, dssi, gtk, libjack2,
|
|
ladspaH, ladspaPlugins, liblo, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "xsynth-dssi-${version}";
|
|
version = "0.9.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/dssi/${name}.tar.gz";
|
|
sha256 = "00nwv2pqjbmxqdc6xdm0cljq6z05lv4y6bibmhz1kih9lm0lklnk";
|
|
};
|
|
|
|
buildInputs = [ alsaLib autoconf automake dssi gtk libjack2 ladspaH
|
|
ladspaPlugins liblo pkgconfig ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
mkdir -p $out/lib
|
|
cp src/Xsynth_gtk $out/bin
|
|
cp src/.libs/* $out/lib
|
|
'';
|
|
|
|
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.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|