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

42 lines
1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkgconfig, gettext, itstool, glib, gtk3, libxml2, libgtop, libcanberra-gtk3, inkscape, udisks2, mate, hicolor-icon-theme, wrapGAppsHook }:
2018-01-03 21:18:22 +00:00
stdenv.mkDerivation rec {
pname = "mate-utils";
2020-02-12 17:51:23 +00:00
version = "1.24.0";
2018-01-03 21:18:22 +00:00
src = fetchurl {
url = "https://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2020-02-12 17:51:23 +00:00
sha256 = "1b16n1628gcsym5mph6lr9x5xm4rgkxsa8xwr2wlx8g2gw2775i1";
2018-01-03 21:18:22 +00:00
};
nativeBuildInputs = [
pkgconfig
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
];
2020-02-12 17:51:23 +00:00
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
enableParallelBuilding = true;
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 = [ maintainers.romildo ];
};
}