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)
40 lines
1.2 KiB
Nix
40 lines
1.2 KiB
Nix
{ stdenv, fetchurl, alsaLib, boost, cairo, cmake, fftwSinglePrec, fltk
|
|
, libjack2, libsndfile, libXdmcp, readline, lv2, mesa, minixml, pkgconfig, zlib, xorg
|
|
}:
|
|
|
|
assert stdenv ? glibc;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "yoshimi-${version}";
|
|
version = "1.3.8.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/yoshimi/${name}.tar.bz2";
|
|
sha256 = "0wl4ln6v1nkkx56kfah23chyrhga2vi93i82g0s200c4s4184xr8";
|
|
};
|
|
|
|
buildInputs = [
|
|
alsaLib boost cairo fftwSinglePrec fltk libjack2 libsndfile libXdmcp readline lv2 mesa
|
|
minixml zlib xorg.libpthreadstubs
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
preConfigure = "cd src";
|
|
|
|
cmakeFlags = [ "-DFLTK_MATH_LIBRARY=${stdenv.glibc.out}/lib/libm.so -DCMAKE_INSTALL_DATAROOTDIR=$out" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "High quality software synthesizer based on ZynAddSubFX";
|
|
longDescription = ''
|
|
Yoshimi delivers the same synthesizer capabilities as
|
|
ZynAddSubFX along with very good Jack and Alsa midi/audio
|
|
functionality on Linux
|
|
'';
|
|
homepage = http://yoshimi.sourceforge.net;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|