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

37 lines
907 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 {
name = "mate-utils-${version}";
2019-04-23 20:03:01 +00:00
version = "1.22.1";
2018-01-03 21:18:22 +00:00
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
2019-04-23 20:03:01 +00:00
sha256 = "0768y6x33ljc9dxjlfmvplsn4lrxj5xhjddbyab9h6pqav8527rg";
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 ];
};
}