2018-12-25 23:15:46 +00:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, vte-ng, gtk3, ncurses, wrapGAppsHook }:
|
2014-09-18 22:07:35 +01:00
|
|
|
|
2018-08-01 15:09:55 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "termite-${version}";
|
2018-11-14 16:46:39 +00:00
|
|
|
version = "14";
|
2014-09-18 22:07:35 +01:00
|
|
|
|
2018-08-01 15:09:55 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "thestinger";
|
|
|
|
repo = "termite";
|
|
|
|
rev = "v${version}";
|
2018-11-14 16:46:39 +00:00
|
|
|
sha256 = "0dmz9rpc2fdvcwhcmjnhb48ixn403gxpq03g334d1hgjw2hsyx7x";
|
2018-08-01 15:09:55 +01:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
2014-09-18 22:07:35 +01:00
|
|
|
|
2018-08-01 15:09:55 +01:00
|
|
|
# https://github.com/thestinger/termite/pull/516
|
|
|
|
patches = [ ./url_regexp_trailing.patch ./add_errno_header.patch
|
|
|
|
] ++ stdenv.lib.optional stdenv.isDarwin ./remove_ldflags_macos.patch;
|
2016-06-19 09:18:30 +01:00
|
|
|
|
2018-08-01 15:09:55 +01:00
|
|
|
makeFlags = [ "VERSION=v${version}" "PREFIX=" "DESTDIR=$(out)" ];
|
2014-09-18 22:07:35 +01:00
|
|
|
|
2018-12-25 23:15:46 +00:00
|
|
|
buildInputs = [ vte-ng gtk3 ncurses ];
|
2014-09-18 22:07:35 +01:00
|
|
|
|
2018-08-01 15:09:55 +01:00
|
|
|
nativeBuildInputs = [ wrapGAppsHook pkgconfig ];
|
2017-09-22 20:55:44 +01:00
|
|
|
|
2018-08-01 15:09:55 +01:00
|
|
|
outputs = [ "out" "terminfo" ];
|
2016-02-25 21:52:13 +00:00
|
|
|
|
2018-08-01 15:09:55 +01:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $terminfo/share
|
|
|
|
mv $out/share/terminfo $terminfo/share/terminfo
|
2016-02-25 21:52:13 +00:00
|
|
|
|
2018-08-01 15:09:55 +01:00
|
|
|
mkdir -p $out/nix-support
|
|
|
|
echo "$terminfo" >> $out/nix-support/propagated-user-env-packages
|
|
|
|
'';
|
2016-02-25 21:52:13 +00:00
|
|
|
|
2018-08-01 15:09:55 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A simple VTE-based terminal";
|
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
homepage = https://github.com/thestinger/termite/;
|
|
|
|
maintainers = with maintainers; [ koral garbas ];
|
|
|
|
platforms = platforms.all;
|
2014-09-18 22:07:35 +01:00
|
|
|
};
|
|
|
|
}
|