mate-calc: init at 1.18.1

This commit is contained in:
José Romildo Malaquias 2017-12-31 12:26:48 -02:00 committed by Tuomas Tynkkynen
parent d8dfb57005
commit 88f34e34f3
2 changed files with 35 additions and 0 deletions

View file

@ -18,6 +18,7 @@ let
libmateweather = callPackage ./libmateweather { };
marco = callPackage ./marco { };
mate-backgrounds = callPackage ./mate-backgrounds { };
mate-calc = callPackage ./mate-calc { };
mate-common = callPackage ./mate-common { };
mate-control-center = callPackage ./mate-control-center { };
mate-desktop = callPackage ./mate-desktop { };
@ -62,6 +63,7 @@ let
engrampa
eom
mate-backgrounds
mate-calc
mate-icon-theme-faenza
mate-media
mate-power-manager

View file

@ -0,0 +1,33 @@
{ stdenv, fetchurl, pkgconfig, intltool, itstool, gtk3, libxml2, wrapGAppsHook }:
stdenv.mkDerivation rec {
name = "mate-calc-${version}";
version = "${major-ver}.${minor-ver}";
major-ver = "1.18";
minor-ver = "1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
sha256 = "1h6kr9qb1kaw8jvfm7xmqm1wqnxsw2iwha5vl38b986x4zm2b712";
};
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 ];
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
};
}