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

37 lines
910 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, intltool, itstool, gtk3, libxml2, libgtop, libcanberra-gtk3, inkscape, mate, hicolor-icon-theme, wrapGAppsHook }:
2018-01-03 21:18:22 +00:00
stdenv.mkDerivation rec {
pname = "mate-utils";
2019-09-30 10:07:57 +00:00
version = "1.22.2";
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";
2019-09-30 10:07:57 +00:00
sha256 = "1i6fnm3y1hj8r57x4jpc4ixqs77zln8f7477d0haypflxm3s4kjr";
2018-01-03 21:18:22 +00:00
};
nativeBuildInputs = [
pkgconfig
intltool
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
mate.mate-panel
hicolor-icon-theme
2018-01-03 21:18:22 +00:00
];
meta = with stdenv.lib; {
description = "Utilities for the MATE desktop";
homepage = https://mate-desktop.org;
2018-01-03 21:18:22 +00:00
license = with licenses; [ gpl2Plus lgpl2Plus ];
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
};
}