nixpkgs-suyu/pkgs/desktops/mate/mate-terminal/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

38 lines
809 B
Nix

{ stdenv, fetchurl, pkgconfig, intltool, glib, itstool, libxml2, mate, gnome3, wrapGAppsHook }:
stdenv.mkDerivation rec {
name = "mate-terminal-${version}";
version = "${major-ver}.${minor-ver}";
major-ver = "1.18";
minor-ver = "0";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
sha256 = "07z8g8zkc8k6d7xqdlg18cjnwg7zzv5hbgwma5y9mh8zx9xsqz92";
};
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;
};
}