mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 12:43:52 +00:00
46 lines
1.4 KiB
Nix
46 lines
1.4 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, alsa-lib, freepats }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wildmidi";
|
|
version = "0.4.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Mindwerks";
|
|
repo = "wildmidi";
|
|
rev = "${pname}-${version}";
|
|
sha256 = "sha256-5El8aDpAgjrW0/4lphZEF+Hfv9Xr7J4DMk1b/Tb+0TU=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ alsa-lib stdenv.cc.libc/*couldn't find libm*/ ];
|
|
|
|
preConfigure = ''
|
|
substituteInPlace CMakeLists.txt \
|
|
--replace /etc/wildmidi $out/etc
|
|
# https://github.com/Mindwerks/wildmidi/issues/236
|
|
substituteInPlace src/wildmidi.pc.in \
|
|
--replace '$'{exec_prefix}/@CMAKE_INSTALL_LIBDIR@ @CMAKE_INSTALL_FULL_LIBDIR@ \
|
|
--replace '$'{exec_prefix}/@CMAKE_INSTALL_INCLUDEDIR@ @CMAKE_INSTALL_FULL_INCLUDEDIR@
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir "$out"/etc
|
|
echo "dir ${freepats}" > "$out"/etc/wildmidi.cfg
|
|
echo "source ${freepats}/freepats.cfg" >> "$out"/etc/wildmidi.cfg
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Software MIDI player and library";
|
|
longDescription = ''
|
|
WildMIDI is a simple software midi player which has a core softsynth
|
|
library that can be use with other applications.
|
|
'';
|
|
homepage = "https://wildmidi.sourceforge.net/";
|
|
# The library is LGPLv3, the wildmidi executable is GPLv3
|
|
license = licenses.lgpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|