nixpkgs-suyu/pkgs/desktops/mate/mate-calc/default.nix

34 lines
770 B
Nix
Raw Normal View History

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 {
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
gettext
2017-12-31 15:26:48 +01:00
itstool
wrapGAppsHook
];
buildInputs = [
gtk3
libxml2
];
2020-02-14 22:52:51 +01:00
enableParallelBuilding = true;
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 ];
platforms = platforms.linux;
2017-12-31 15:26:48 +01:00
maintainers = [ maintainers.romildo ];
};
}