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