Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / desktops / mate / mate-calc / default.nix
blob2c11bbef52a3f4b4238d7a14d229cf5c1ea29436
1 { lib
2 , stdenv
3 , fetchurl
4 , pkg-config
5 , gettext
6 , itstool
7 , gtk3
8 , libmpc
9 , libxml2
10 , mpfr
11 , wrapGAppsHook3
12 , mateUpdateScript
15 stdenv.mkDerivation rec {
16   pname = "mate-calc";
17   version = "1.28.0";
19   src = fetchurl {
20     url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
21     sha256 = "gEsSXR4oZLHnSvgW2psquLGUcrmvl0Q37nNVraXmKPU=";
22   };
24   nativeBuildInputs = [
25     gettext
26     itstool
27     pkg-config
28     wrapGAppsHook3
29   ];
31   buildInputs = [
32     gtk3
33     libmpc
34     libxml2
35     mpfr
36   ];
38   enableParallelBuilding = true;
40   passthru.updateScript = mateUpdateScript { inherit pname; };
42   meta = with lib; {
43     description = "Calculator for the MATE desktop";
44     homepage = "https://mate-desktop.org";
45     license = [ licenses.gpl2Plus ];
46     platforms = platforms.linux;
47     maintainers = teams.mate.members;
48   };