Adding Piano Booster, a MIDI file player that teaches you how to play the piano.
svn path=/nixpkgs/trunk/; revision=33880
This commit is contained in:
parent
1a355ca2ea
commit
bf3b6be157
22
pkgs/applications/audio/pianobooster/default.nix
Normal file
22
pkgs/applications/audio/pianobooster/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ stdenv, fetchurl, alsaLib, cmake, 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";
|
||||
};
|
||||
|
||||
preConfigure = "cd src";
|
||||
|
||||
buildInputs = [ alsaLib cmake qt4 ];
|
||||
|
||||
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;
|
||||
maintainers = [ maintainers.goibhniu ];
|
||||
};
|
||||
}
|
@ -7257,6 +7257,8 @@ let
|
||||
|
||||
pdftk = callPackage ../tools/typesetting/pdftk { };
|
||||
|
||||
pianobooster = callPackage ../applications/audio/pianobooster { };
|
||||
|
||||
pidgin = callPackage ../applications/networking/instant-messengers/pidgin {
|
||||
openssl = if (getConfig ["pidgin" "openssl"] true) then openssl else null;
|
||||
gnutls = if (getConfig ["pidgin" "gnutls"] false) then gnutls else null;
|
||||
|
Loading…
Reference in New Issue
Block a user