nixpkgs/pkgs/development/libraries/gsound/default.nix

29 lines
845 B
Nix
Raw Normal View History

2019-10-10 18:18:18 +02:00
{ stdenv, fetchurl, pkgconfig, glib, vala, libcanberra, gobject-introspection, libtool, gnome3 }:
2018-12-25 23:47:20 +01:00
stdenv.mkDerivation rec {
2018-03-03 09:03:38 +01:00
pname = "gsound";
version = "1.0.2";
src = fetchurl {
2018-12-25 23:47:20 +01:00
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2017-10-04 23:50:14 +02:00
sha256 = "bba8ff30eea815037e53bee727bbd5f0b6a2e74d452a7711b819a7c444e78e53";
};
2019-10-10 18:18:18 +02:00
nativeBuildInputs = [ pkgconfig gobject-introspection libtool vala ];
2017-12-17 02:56:31 +01:00
buildInputs = [ glib libcanberra ];
2018-03-03 09:03:38 +01:00
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
};
};
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;
};
}