2019-04-21 15:40:55 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, itstool, gtk3, libxml2, wrapGAppsHook }:
|
2017-12-31 14:26:48 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "mate-calc";
|
2019-05-11 02:45:02 +00:00
|
|
|
version = "1.22.1";
|
2017-12-31 14:26:48 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "http://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-05-11 02:45:02 +00:00
|
|
|
sha256 = "0zin3w03zrkpb12rvay23bfk9fnjpybkr5mqzkpn9xfnqamhk8ld";
|
2017-12-31 14:26:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
intltool
|
|
|
|
itstool
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gtk3
|
|
|
|
libxml2
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Calculator for the MATE desktop";
|
2019-04-14 23:25:45 +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 ];
|
|
|
|
};
|
|
|
|
}
|