about summary refs log tree commit diff
path: root/pkgs/development/libraries/libcanberra
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-01-20 09:50:15 +0000
committerLudovic Courtès <ludo@gnu.org>2009-01-20 09:50:15 +0000
commit269f914ab7d98a1f9cfa6892323a2e6440799fca (patch)
treec0740084d452c60be79f20bb77bc8453cdea39cc /pkgs/development/libraries/libcanberra
parent5f8017b4927e71602c51fa55280aacd4e6f2ecb7 (diff)
downloadnixlib-269f914ab7d98a1f9cfa6892323a2e6440799fca.tar
nixlib-269f914ab7d98a1f9cfa6892323a2e6440799fca.tar.gz
nixlib-269f914ab7d98a1f9cfa6892323a2e6440799fca.tar.bz2
nixlib-269f914ab7d98a1f9cfa6892323a2e6440799fca.tar.lz
nixlib-269f914ab7d98a1f9cfa6892323a2e6440799fca.tar.xz
nixlib-269f914ab7d98a1f9cfa6892323a2e6440799fca.tar.zst
nixlib-269f914ab7d98a1f9cfa6892323a2e6440799fca.zip
Add `libcanberra'.
svn path=/nixpkgs/trunk/; revision=13814
Diffstat (limited to 'pkgs/development/libraries/libcanberra')
-rw-r--r--pkgs/development/libraries/libcanberra/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libcanberra/default.nix b/pkgs/development/libraries/libcanberra/default.nix
new file mode 100644
index 000000000000..abe062af5366
--- /dev/null
+++ b/pkgs/development/libraries/libcanberra/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchurl, pkgconfig, libtool, gtk
+, alsaLib, pulseaudio, gstreamer, libvorbis }:
+
+stdenv.mkDerivation rec {
+  name = "libcanberra-0.10";
+
+  src = fetchurl {
+    url = "http://0pointer.de/lennart/projects/libcanberra/${name}.tar.gz";
+    sha256 = "0wl2hd8zqwzbbp4icng6siim85jb6hvczy9c6m92lh85wrcwpqxh";
+  };
+
+  buildInputs = [ pkgconfig libtool gtk alsaLib pulseaudio gstreamer libvorbis ];
+
+  meta = {
+    description = "libcanberra, an implementation of the XDG Sound Theme and Name Specifications";
+
+    longDescription = ''
+      libcanberra is an implementation of the XDG Sound Theme and Name
+      Specifications, for generating event sounds on free desktops
+      such as GNOME.  It comes with several backends (ALSA,
+      PulseAudio, OSS, GStreamer, null) and is designed to be
+      portable.
+    '';
+
+    homepage = http://0pointer.de/lennart/projects/libcanberra/;
+
+    license = "LGPLv2+";
+  };
+}