summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-03-10 22:20:35 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-03-10 22:20:35 +0000
commitd58c5e2821018930d253ef090ced322cf4dd53e3 (patch)
tree5895fc700e36be5faca3efe976f30bb0168c5af4 /pkgs/development/libraries
parente7ed35ecd84edfc427bfd22b47ee29f80d603b98 (diff)
Adding GMU, a music player for small portable devices, written in SDL.
svn path=/nixpkgs/trunk/; revision=26266
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/tremor/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/libraries/tremor/default.nix b/pkgs/development/libraries/tremor/default.nix
new file mode 100644
index 0000000000000..3709172911eca
--- /dev/null
+++ b/pkgs/development/libraries/tremor/default.nix
@@ -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";
+  };
+}