2021-01-17 03:21:50 +01:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, gettext, itstool, gtk3, libxml2, wrapGAppsHook }:
|
2017-12-31 15:26:48 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "mate-calc";
|
2020-09-18 17:15:20 +02:00
|
|
|
version = "1.24.1";
|
2017-12-31 15:26:48 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-15 14:21:58 +01:00
|
|
|
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-09-18 17:15:20 +02:00
|
|
|
sha256 = "0imdimq5d5rjq8mkjcrsd683a2bn9acmhc0lmvyw71y0040inbaw";
|
2017-12-31 15:26:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2021-01-17 03:21:50 +01:00
|
|
|
pkg-config
|
2020-02-14 15:09:49 +01:00
|
|
|
gettext
|
2017-12-31 15:26:48 +01:00
|
|
|
itstool
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gtk3
|
|
|
|
libxml2
|
|
|
|
];
|
|
|
|
|
2020-02-14 22:52:51 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-12-31 15:26:48 +01:00
|
|
|
description = "Calculator for the MATE desktop";
|
2020-02-12 18:51:20 +01:00
|
|
|
homepage = "https://mate-desktop.org";
|
2017-12-31 15:26:48 +01:00
|
|
|
license = [ licenses.gpl2Plus ];
|
2018-03-21 22:00:01 +01:00
|
|
|
platforms = platforms.linux;
|
2017-12-31 15:26:48 +01:00
|
|
|
maintainers = [ maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|