1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00
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
997 B
Nix
Raw Normal View History

2022-07-12 12:56:56 +01: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";
2021-08-06 20:08:18 +01:00
version = "1.26.0";
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";
2021-08-06 20:08:18 +01:00
sha256 = "0fiwzsir8i1bqz7g7b20g5zs28qq63j41v9c5z69q8fq7wh1nwwb";
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 13:02:46 +01: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;
2021-04-02 20:58:16 +01:00
passthru.updateScript = mateUpdateScript { inherit pname version; };
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 14:23:43 +01: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
};
}