summary refs log tree commit diff
path: root/pkgs/development/libraries/libmowgli
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2008-03-03 10:55:20 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2008-03-03 10:55:20 +0000
commitf30f36104b92f4e578157c003ea93f05409353e6 (patch)
treef70961efa9b6f47b6af47dccab2c2de34b463640 /pkgs/development/libraries/libmowgli
parent25f81f6438d973d57bedbab7db5295ae2ddb6ac4 (diff)
downloadnixpkgs-f30f36104b92f4e578157c003ea93f05409353e6.tar
nixpkgs-f30f36104b92f4e578157c003ea93f05409353e6.tar.gz
nixpkgs-f30f36104b92f4e578157c003ea93f05409353e6.tar.bz2
nixpkgs-f30f36104b92f4e578157c003ea93f05409353e6.tar.lz
nixpkgs-f30f36104b92f4e578157c003ea93f05409353e6.tar.xz
nixpkgs-f30f36104b92f4e578157c003ea93f05409353e6.tar.zst
nixpkgs-f30f36104b92f4e578157c003ea93f05409353e6.zip
* Added Audacious, a fork of beep-media-player (which doesn't seem to
  work very well after the Glibc update), plus its dependencies.

  TODO: make an audacious-wrapper that lets Audacious find its plugins
  automatically.  Currently you have to install audacious-plugins and
  symlink ~/.nix-profile/lib/audacious/* in
  ~/.local/share/audacious/Plugins.

svn path=/nixpkgs/trunk/; revision=10927
Diffstat (limited to 'pkgs/development/libraries/libmowgli')
-rw-r--r--pkgs/development/libraries/libmowgli/default.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libmowgli/default.nix b/pkgs/development/libraries/libmowgli/default.nix
new file mode 100644
index 00000000000..c3e7c7d694d
--- /dev/null
+++ b/pkgs/development/libraries/libmowgli/default.nix
@@ -0,0 +1,15 @@
+{stdenv, fetchurl}:
+
+stdenv.mkDerivation {
+  name = "libmowgli-0.6.1";
+  
+  src = fetchurl {
+    url = http://distfiles.atheme.org/libmowgli-0.6.1.tgz;
+    sha256 = "0bhxgyx6c913pyiib768qmsi059dnq1zj3k2nik9976hy5yd8m0l";
+  };
+  
+  meta = {
+    description = "A development framework for C providing high performance and highly flexible algorithms";
+    homepage = http://www.atheme.org/projects/mowgli.shtml;
+  };
+}