Author: cillian
Date: Sun Apr 22 16:55:12 2012
New Revision: 33880
URL: https://nixos.org/websvn/nix/?rev=33880&sc=1

Log:
Adding Piano Booster, a MIDI file player that teaches you how to play the piano.

Added:
   nixpkgs/trunk/pkgs/applications/audio/pianobooster/
   nixpkgs/trunk/pkgs/applications/audio/pianobooster/default.nix
Modified:
   nixpkgs/trunk/pkgs/top-level/all-packages.nix

Added: nixpkgs/trunk/pkgs/applications/audio/pianobooster/default.nix
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ nixpkgs/trunk/pkgs/applications/audio/pianobooster/default.nix      Sun Apr 
22 16:55:12 2012        (r33880)
@@ -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 ];
+  };
+}

Modified: nixpkgs/trunk/pkgs/top-level/all-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/all-packages.nix       Sun Apr 22 16:31:21 
2012        (r33879)
+++ nixpkgs/trunk/pkgs/top-level/all-packages.nix       Sun Apr 22 16:55:12 
2012        (r33880)
@@ -7257,6 +7257,8 @@
 
   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;
_______________________________________________
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits

Reply via email to