2019-06-16 20:59:06 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, libtool, libxml2, libcanberra-gtk3, gtk3, mate, wrapGAppsHook }:
|
2017-11-28 23:18:20 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "mate-media";
|
2019-09-23 11:00:57 +01:00
|
|
|
version = "1.22.2";
|
2017-11-28 23:18:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "http://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-09-23 11:00:57 +01:00
|
|
|
sha256 = "0m8q2rqbxzvh82yj63syd8sbfjrc8y4a8caa42zs66j9x60d1agw";
|
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
|
2019-04-21 13:02:46 +01:00
|
|
|
mate.mate-panel
|
2017-11-28 23:18:20 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|