mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 17:34:04 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
77 lines
1.4 KiB
Nix
77 lines
1.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, alsa-lib
|
|
, boost
|
|
, cairo
|
|
, cmake
|
|
, fftwSinglePrec
|
|
, fltk
|
|
, libGLU
|
|
, libjack2
|
|
, libsndfile
|
|
, libXdmcp
|
|
, lv2
|
|
, minixml
|
|
, pcre
|
|
, pkg-config
|
|
, readline
|
|
, xorg
|
|
, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "yoshimi";
|
|
version = "2.3.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Yoshimi";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-uBivCygpvJ6psgqW3FOHaW5IzUq8vrC2uk4KRv6L2oY=";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/src";
|
|
|
|
postPatch = ''
|
|
substituteInPlace Misc/Config.cpp --replace /usr $out
|
|
substituteInPlace Misc/Bank.cpp --replace /usr $out
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
boost
|
|
cairo
|
|
fftwSinglePrec
|
|
fltk
|
|
libGLU
|
|
libjack2
|
|
libsndfile
|
|
libXdmcp
|
|
lv2
|
|
minixml
|
|
pcre
|
|
readline
|
|
xorg.libpthreadstubs
|
|
zlib
|
|
];
|
|
|
|
cmakeFlags = [ "-DFLTK_MATH_LIBRARY=${stdenv.cc.libc}/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 = "https://yoshimi.github.io/";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ ];
|
|
mainProgram = "yoshimi";
|
|
};
|
|
}
|