summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.22/core/gsound/default.nix
blob: 95785d9ed4d2a006406d843416970cb6a73b95a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, pkgconfig, glib, libcanberra_gtk2, 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_gtk2 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;
  };
}