about summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.18/core/gsound
diff options
context:
space:
mode:
authorLuca Bruno <lethalman88@gmail.com>2015-09-25 10:36:01 +0200
committerLuca Bruno <lethalman88@gmail.com>2015-09-25 10:48:41 +0200
commit26aea8b1aa798fa4cae5cf45953f8e3f3b7dbea9 (patch)
tree6d0f51f30841d919d2ff07ff305ae100a857b02a /pkgs/desktops/gnome-3/3.18/core/gsound
parent41fc49ed7e94d9a0aef044a6ea34c142e376d3f7 (diff)
downloadnixlib-26aea8b1aa798fa4cae5cf45953f8e3f3b7dbea9.tar
nixlib-26aea8b1aa798fa4cae5cf45953f8e3f3b7dbea9.tar.gz
nixlib-26aea8b1aa798fa4cae5cf45953f8e3f3b7dbea9.tar.bz2
nixlib-26aea8b1aa798fa4cae5cf45953f8e3f3b7dbea9.tar.lz
nixlib-26aea8b1aa798fa4cae5cf45953f8e3f3b7dbea9.tar.xz
nixlib-26aea8b1aa798fa4cae5cf45953f8e3f3b7dbea9.tar.zst
nixlib-26aea8b1aa798fa4cae5cf45953f8e3f3b7dbea9.zip
gnome3: init 3.18
Diffstat (limited to 'pkgs/desktops/gnome-3/3.18/core/gsound')
-rw-r--r--pkgs/desktops/gnome-3/3.18/core/gsound/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/desktops/gnome-3/3.18/core/gsound/default.nix b/pkgs/desktops/gnome-3/3.18/core/gsound/default.nix
new file mode 100644
index 000000000000..5f255743313e
--- /dev/null
+++ b/pkgs/desktops/gnome-3/3.18/core/gsound/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchurl, pkgconfig, glib, libcanberra, gobjectIntrospection, libtool, gnome3 }:
+
+let
+  majVer = "1.0";
+in stdenv.mkDerivation rec {
+  name = "gsound-${majVer}.1";
+
+  src = fetchurl {
+    url = "mirror://gnome/sources/gsound/${majVer}/${name}.tar.xz";
+    sha256 = "ea0dd94429c0645f2f98824274ef04543fe459dd83a5449a68910acc3ba67f29";
+  };
+
+  buildInputs = [ pkgconfig glib libcanberra gobjectIntrospection libtool ];
+
+  meta = with stdenv.lib; {
+    homepage = https://wiki.gnome.org/Projects/GSound;
+    description = "Small library for playing system sounds";
+    maintainers = gnome3.maintainers;
+    license = licenses.gpl2;
+    platforms = platforms.linux;
+  };
+}