2021-04-02 21:58:16 +02:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, gettext, libtool, libxml2, libcanberra-gtk3, gtk3, mate, wrapGAppsHook, mateUpdateScript }:
|
2017-11-29 00:18:20 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "mate-media";
|
2021-08-06 21:08:18 +02:00
|
|
|
version = "1.26.0";
|
2017-11-29 00:18:20 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-15 14:21:58 +01:00
|
|
|
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2021-08-06 21:08:18 +02:00
|
|
|
sha256 = "0fiwzsir8i1bqz7g7b20g5zs28qq63j41v9c5z69q8fq7wh1nwwb";
|
2017-11-29 00:18:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
libxml2
|
2018-02-25 03:23:58 +01:00
|
|
|
libcanberra-gtk3
|
2019-03-09 12:41:12 +01:00
|
|
|
gtk3
|
2017-11-29 00:18:20 +01:00
|
|
|
mate.libmatemixer
|
2019-04-21 14:02:46 +02:00
|
|
|
mate.mate-panel
|
2017-11-29 00:18:20 +01:00
|
|
|
mate.mate-desktop
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2021-01-17 03:21:50 +01:00
|
|
|
pkg-config
|
2020-02-14 15:09:49 +01:00
|
|
|
gettext
|
2017-11-29 00:18:20 +01:00
|
|
|
libtool
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
2020-02-14 22:52:51 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-04-02 21:58:16 +02:00
|
|
|
passthru.updateScript = mateUpdateScript { inherit pname version; };
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-11-29 00:18:20 +01:00
|
|
|
description = "Media tools for MATE";
|
2020-02-12 18:51:20 +01:00
|
|
|
homepage = "https://mate-desktop.org";
|
2021-04-22 15:23:43 +02:00
|
|
|
license = licenses.gpl2Plus;
|
2017-11-29 00:18:20 +01:00
|
|
|
platforms = platforms.unix;
|
2021-09-21 21:45:29 +02:00
|
|
|
maintainers = teams.mate.members ++ (with maintainers; [ chpatrick ]);
|
2017-11-29 00:18:20 +01:00
|
|
|
};
|
|
|
|
}
|