2019-03-09 11:41:12 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, libtool, libxml2, libcanberra-gtk3, gnome3, gtk3, mate, wrapGAppsHook }:
|
2017-11-28 23:18:20 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "mate-media-${version}";
|
2019-01-14 13:43:50 +00:00
|
|
|
version = "1.20.2";
|
2017-11-28 23:18:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-02-13 22:44:07 +00:00
|
|
|
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
|
2019-01-14 13:43:50 +00:00
|
|
|
sha256 = "06fka82smrphzj4dz9dw1566kmdscxvxl0rchj9qxg7aidy0rmnv";
|
2017-11-28 23:18:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
libxml2
|
2018-02-25 02:23:58 +00:00
|
|
|
libcanberra-gtk3
|
2019-03-09 11:41:12 +00:00
|
|
|
gtk3
|
2017-11-28 23:18:20 +00:00
|
|
|
mate.libmatemixer
|
|
|
|
mate.mate-desktop
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
intltool
|
|
|
|
libtool
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Media tools for MATE";
|
2019-04-15 00:25:45 +01:00
|
|
|
homepage = https://mate-desktop.org;
|
2017-11-28 23:18:20 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.romildo maintainers.chpatrick ];
|
|
|
|
};
|
|
|
|
}
|