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

34 lines
777 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, gettext, itstool, gtk3, libxml2, wrapGAppsHook }:
2017-12-31 14:26:48 +00:00
stdenv.mkDerivation rec {
pname = "mate-calc";
2020-02-12 17:51:20 +00:00
version = "1.24.0";
2017-12-31 14:26:48 +00:00
src = fetchurl {
url = "https://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2020-02-12 17:51:20 +00:00
sha256 = "0f7hc1gg41kcwcyvsqqg79qylrp0qqymris8qizk2x3cfvvg7261";
2017-12-31 14:26:48 +00:00
};
nativeBuildInputs = [
pkgconfig
gettext
2017-12-31 14:26:48 +00:00
itstool
wrapGAppsHook
];
buildInputs = [
gtk3
libxml2
];
2020-02-14 21:52:51 +00:00
enableParallelBuilding = true;
2017-12-31 14:26:48 +00:00
meta = with stdenv.lib; {
description = "Calculator for the MATE desktop";
2020-02-12 17:51:20 +00:00
homepage = "https://mate-desktop.org";
2017-12-31 14:26:48 +00:00
license = [ licenses.gpl2Plus ];
platforms = platforms.linux;
2017-12-31 14:26:48 +00:00
maintainers = [ maintainers.romildo ];
};
}