nixpkgs/pkgs/desktops/mate/mate-calc/default.nix
2020-02-14 18:52:51 -03:00

34 lines
777 B
Nix

{ stdenv, fetchurl, pkgconfig, gettext, itstool, gtk3, libxml2, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "mate-calc";
version = "1.24.0";
src = fetchurl {
url = "https://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "0f7hc1gg41kcwcyvsqqg79qylrp0qqymris8qizk2x3cfvvg7261";
};
nativeBuildInputs = [
pkgconfig
gettext
itstool
wrapGAppsHook
];
buildInputs = [
gtk3
libxml2
];
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "Calculator for the MATE desktop";
homepage = "https://mate-desktop.org";
license = [ licenses.gpl2Plus ];
platforms = platforms.linux;
maintainers = [ maintainers.romildo ];
};
}