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

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

61 lines
1.1 KiB
Nix
Raw Normal View History

2022-07-12 11:56:56 +00:00
{ lib
, stdenv
, fetchurl
, pkg-config
, gettext
, itstool
, glib
, gtk3
, libxml2
, libgtop
, libcanberra-gtk3
, inkscape
, udisks2
, mate
, hicolor-icon-theme
, wrapGAppsHook
, mateUpdateScript
}:
2018-01-03 21:18:22 +00:00
stdenv.mkDerivation rec {
pname = "mate-utils";
2021-08-06 19:08:20 +00:00
version = "1.26.0";
2018-01-03 21:18:22 +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 19:08:20 +00:00
sha256 = "0bkqj8qwwml9xyvb680yy06lv3dzwkv89yrzz5jamvz88ar6m9bw";
2018-01-03 21:18:22 +00:00
};
nativeBuildInputs = [
2021-01-17 02:21:50 +00:00
pkg-config
gettext
2018-01-03 21:18:22 +00:00
itstool
inkscape
2018-01-03 21:18:22 +00:00
wrapGAppsHook
];
buildInputs = [
gtk3
libgtop
libcanberra-gtk3
2018-01-03 21:18:22 +00:00
libxml2
2020-02-12 17:51:23 +00:00
udisks2
mate.mate-panel
hicolor-icon-theme
2018-01-03 21:18:22 +00:00
];
env.NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
2020-02-12 17:51:23 +00:00
enableParallelBuilding = true;
passthru.updateScript = mateUpdateScript { inherit pname; };
2021-04-02 19:58:16 +00:00
meta = with lib; {
2018-01-03 21:18:22 +00:00
description = "Utilities for the MATE desktop";
2020-02-12 17:51:23 +00:00
homepage = "https://mate-desktop.org";
2018-01-03 21:18:22 +00:00
license = with licenses; [ gpl2Plus lgpl2Plus ];
platforms = platforms.unix;
maintainers = teams.mate.members;
2018-01-03 21:18:22 +00:00
};
}