mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
3ee043da54
Also add linux as a platform. Patches from: https://github.com/gbin/gbin-overlay/tree/master/media-sound/pianobooster
34 lines
892 B
Nix
34 lines
892 B
Nix
{ stdenv, fetchurl, alsaLib, cmake, mesa, makeWrapper, qt4 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pianobooster-${version}";
|
|
version = "0.6.4b";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/pianobooster/pianobooster-src-0.6.4b.tar.gz";
|
|
sha256 = "1xwyap0288xcl0ihjv52vv4ijsjl0yq67scc509aia4plmlm6l35";
|
|
};
|
|
|
|
patches = [
|
|
./pianobooster-0.6.4b-cmake.patch
|
|
./pianobooster-0.6.4b-cmake-gcc4.7.patch
|
|
];
|
|
|
|
preConfigure = "cd src";
|
|
|
|
buildInputs = [ alsaLib cmake makeWrapper mesa qt4 ];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/pianobooster \
|
|
--prefix LD_LIBRARY_PATH : ${mesa}/lib
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A MIDI file player that teaches you how to play the piano";
|
|
homepage = http://pianobooster.sourceforge.net;
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|