1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-19 12:28:51 +00:00
nixpkgs/pkgs/desktops/mate/mate-media/default.nix

35 lines
824 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, intltool, libtool, libxml2, libcanberra-gtk3, gnome3, mate, wrapGAppsHook }:
2017-11-28 23:18:20 +00:00
stdenv.mkDerivation rec {
name = "mate-media-${version}";
version = "1.21.0";
2017-11-28 23:18:20 +00:00
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
sha256 = "0mgx4xjarpyvyaw0p0jnh74447y6zd93fvpi12078vyqr25dsi43";
2017-11-28 23:18:20 +00:00
};
buildInputs = [
libxml2
libcanberra-gtk3
2017-11-28 23:18:20 +00:00
gnome3.gtk
mate.libmatemixer
mate.mate-desktop
];
nativeBuildInputs = [
pkgconfig
intltool
libtool
wrapGAppsHook
];
meta = with stdenv.lib; {
description = "Media tools for MATE";
homepage = http://mate-desktop.org;
license = licenses.gpl3;
platforms = platforms.unix;
maintainers = [ maintainers.romildo maintainers.chpatrick ];
};
}