nixpkgs/pkgs/desktops/mate/mate-media/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
981 B
Nix
Raw Normal View History

2022-07-12 11:56:56 +00:00
{ lib
, stdenv
, fetchurl
, pkg-config
, gettext
, libtool
, libxml2
, libcanberra-gtk3
, gtk3
, mate
, wrapGAppsHook
, mateUpdateScript
}:
2017-11-28 23:18:20 +00:00
stdenv.mkDerivation rec {
pname = "mate-media";
version = "1.26.2";
2017-11-28 23:18:20 +00:00
src = fetchurl {
2021-01-15 13:21:58 +00:00
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "r0ZjlXTMOIUTCJyhC7FB/8Pm0awz5zDkII21dZZChQ8=";
2017-11-28 23:18:20 +00:00
};
buildInputs = [
libxml2
libcanberra-gtk3
gtk3
2017-11-28 23:18:20 +00:00
mate.libmatemixer
2019-04-21 12:02:46 +00:00
mate.mate-panel
2017-11-28 23:18:20 +00:00
mate.mate-desktop
];
nativeBuildInputs = [
2021-01-17 02:21:50 +00:00
pkg-config
gettext
2017-11-28 23:18:20 +00:00
libtool
wrapGAppsHook
];
2020-02-14 21:52:51 +00:00
enableParallelBuilding = true;
passthru.updateScript = mateUpdateScript { inherit pname; };
2021-04-02 19:58:16 +00:00
meta = with lib; {
2017-11-28 23:18:20 +00:00
description = "Media tools for MATE";
2020-02-12 17:51:20 +00:00
homepage = "https://mate-desktop.org";
2021-04-22 13:23:43 +00:00
license = licenses.gpl2Plus;
2017-11-28 23:18:20 +00:00
platforms = platforms.unix;
maintainers = teams.mate.members ++ (with maintainers; [ chpatrick ]);
2017-11-28 23:18:20 +00:00
};
}