Adding GMU, a music player for small portable devices, written in SDL.

svn path=/nixpkgs/trunk/; revision=26266
This commit is contained in:
Lluís Batlle i Rossell
2011-03-10 22:20:35 +00:00
parent e7ed35ecd8
commit d58c5e2821
3 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{ stdenv, fetchsvn, autoconf, automake, libtool, pkgconfig, libogg }:
stdenv.mkDerivation rec {
name = "tremor-svn-${src.rev}";
src = fetchsvn {
url = http://svn.xiph.org/trunk/Tremor;
rev = "17866";
sha256 = "161411cbefa1527da7a8fc087e78d8e21d19143d3a6eb42fb281e5026aad7568";
};
buildInputs = [ autoconf automake libtool pkgconfig ];
propagatedBuildInputs = [ libogg ];
preConfigure = "autoreconf -vfi";
meta = {
homepage = http://xiph.org/tremor/;
description = "Fixed-point version of the Ogg Vorbis decoder";
license = "BSD";
};
}