nixpkgs/pkgs/desktops/mate/mate-terminal/default.nix
José Romildo Malaquias aa001cc937 mate: remove major-ver and minor-ver
Keep only the version atribute in derivations, with the full version
string of the package. This will make it easier to write a script for
automatic updating of the packages using the update-source-version
command from common-updater-scripts.
2018-02-13 20:44:07 -02:00

37 lines
763 B
Nix

{ stdenv, fetchurl, pkgconfig, intltool, glib, itstool, libxml2, mate, gnome3, wrapGAppsHook }:
stdenv.mkDerivation rec {
name = "mate-terminal-${version}";
version = "1.18.2";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
sha256 = "053jdcjalywcq4fvqlb145sfp5hmnd6yyk9ckzvkh6fl3gyp54gc";
};
buildInputs = [
glib
itstool
libxml2
mate.mate-desktop
gnome3.vte
gnome3.gtk
gnome3.dconf
];
nativeBuildInputs = [
pkgconfig
intltool
wrapGAppsHook
];
meta = with stdenv.lib; {
description = "The MATE Terminal Emulator";
homepage = http://mate-desktop.org;
license = licenses.gpl3;
platforms = platforms.unix;
};
}