mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 07:00:43 +00:00
mate-calc: init at 1.18.1
This commit is contained in:
parent
d8dfb57005
commit
88f34e34f3
|
@ -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
|
||||
|
|
33
pkgs/desktops/mate/mate-calc/default.nix
Normal file
33
pkgs/desktops/mate/mate-calc/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue