2018-02-14 01:44:07 +03:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, itstool, gtk3, libxml2, mate, wrapGAppsHook }:
|
2017-12-31 17:26:48 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "mate-calc-${version}";
|
2018-07-14 21:41:22 +03:00
|
|
|
version = "1.21.0";
|
2017-12-31 17:26:48 +03:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-02-14 01:44:07 +03:00
|
|
|
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
|
2018-07-14 21:41:22 +03:00
|
|
|
sha256 = "07mmc99wwgqbp15zrr6z7iz0frc388z19jwk28ymyzgn6bcc9cn6";
|
2017-12-31 17:26:48 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
intltool
|
|
|
|
itstool
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gtk3
|
|
|
|
libxml2
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Calculator for the MATE desktop";
|
|
|
|
homepage = http://mate-desktop.org;
|
|
|
|
license = [ licenses.gpl2Plus ];
|
2018-03-22 00:00:01 +03:00
|
|
|
platforms = platforms.linux;
|
2017-12-31 17:26:48 +03:00
|
|
|
maintainers = [ maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|