4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
46 lines
1.5 KiB
Nix
46 lines
1.5 KiB
Nix
{ lib, stdenv, fetchFromGitHub , alsaLib, boost, cairo, cmake, fftwSinglePrec, fltk, pcre
|
|
, libjack2, libsndfile, libXdmcp, readline, lv2, libGLU, libGL, minixml, pkgconfig, zlib, xorg
|
|
}:
|
|
|
|
assert stdenv ? glibc;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "yoshimi";
|
|
# Fix build with lv2 1.18: https://github.com/Yoshimi/yoshimi/pull/102/commits/86996cbb235f0fe138ae814a6758c2c8ba1c2a38
|
|
version = "unstable-2020-05-10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Yoshimi";
|
|
repo = pname;
|
|
rev = "86996cbb235f0fe138ae814a6758c2c8ba1c2a38";
|
|
sha256 = "0bgcc5fbgwpdjircq00wlii30pakf45yzligpbnf02a554hh4j01";
|
|
};
|
|
buildInputs = [
|
|
alsaLib boost cairo fftwSinglePrec fltk libjack2 libsndfile libXdmcp readline lv2 libGLU libGL
|
|
minixml zlib xorg.libpthreadstubs pcre
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
patchPhase = ''
|
|
substituteInPlace src/Misc/Config.cpp --replace /usr $out
|
|
substituteInPlace src/Misc/Bank.cpp --replace /usr $out
|
|
'';
|
|
|
|
preConfigure = "cd src";
|
|
|
|
cmakeFlags = [ "-DFLTK_MATH_LIBRARY=${stdenv.glibc.out}/lib/libm.so" ];
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|