1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-11 15:15:36 +00:00
nixpkgs/pkgs/applications/audio/yoshimi/default.nix

45 lines
1.3 KiB
Nix
Raw Normal View History

2017-12-12 16:43:50 +00:00
{ stdenv, fetchurl, alsaLib, boost, cairo, cmake, fftwSinglePrec, fltk, pcre
2016-02-27 19:29:44 +00:00
, libjack2, libsndfile, libXdmcp, readline, lv2, mesa, minixml, pkgconfig, zlib, xorg
2014-01-19 11:31:16 +00:00
}:
assert stdenv ? glibc;
stdenv.mkDerivation rec {
name = "yoshimi-${version}";
2018-01-05 22:10:51 +00:00
version = "1.5.6";
src = fetchurl {
url = "mirror://sourceforge/yoshimi/${name}.tar.bz2";
2018-01-05 22:10:51 +00:00
sha256 = "0bjfhfslpa2hjrc9h38m7dlr62953w9n4cvkgvfy495cbym12dak";
};
2014-01-19 11:31:16 +00:00
buildInputs = [
2016-02-27 19:29:44 +00:00
alsaLib boost cairo fftwSinglePrec fltk libjack2 libsndfile libXdmcp readline lv2 mesa
2017-12-12 16:43:50 +00:00
minixml zlib xorg.libpthreadstubs pcre
2014-01-19 11:31:16 +00:00
];
nativeBuildInputs = [ cmake pkgconfig ];
2017-03-01 17:37:45 +00:00
patchPhase = ''
2017-12-12 16:43:50 +00:00
substituteInPlace src/Misc/Config.cpp --replace /usr $out
substituteInPlace src/Misc/Bank.cpp --replace /usr $out
2017-03-01 17:37:45 +00:00
'';
preConfigure = "cd src";
2017-03-01 17:37:45 +00:00
cmakeFlags = [ "-DFLTK_MATH_LIBRARY=${stdenv.glibc.out}/lib/libm.so" ];
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 ];
};
}