2019-04-21 17:40:55 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, 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";
|
2019-09-23 12:00:57 +02:00
|
|
|
version = "1.22.2";
|
2017-12-31 15:26:48 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-12-13 23:37:37 +01:00
|
|
|
url = "https://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-09-23 12:00:57 +02:00
|
|
|
sha256 = "1as4gshydcf84vynq8ijd9n8pslz5jpw6aj18ri4bdc91a6q3rpg";
|
2017-12-31 15:26:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
intltool
|
|
|
|
itstool
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gtk3
|
|
|
|
libxml2
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Calculator for the MATE desktop";
|
2019-04-15 01:25:45 +02: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 ];
|
|
|
|
};
|
|
|
|
}
|