nixpkgs/pkgs/applications/terminal-emulators/tilda/default.nix

54 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv
2021-01-05 02:34:35 +00:00
, fetchFromGitHub
, autoreconfHook
, pkg-config
, expat
, gettext
, gtk
, libconfuse
, pcre2
, vte
, makeWrapper
}:
stdenv.mkDerivation rec {
pname = "tilda";
2021-01-05 02:34:35 +00:00
version = "1.5.4";
2020-04-07 13:19:21 +00:00
src = fetchFromGitHub {
owner = "lanoxx";
repo = "tilda";
rev = "${pname}-${version}";
2021-01-05 02:34:35 +00:00
sha256 = "sha256-uDx28jmjNUyzJbgTJiHbjI9U5mYb9bnfl/9AjbxNUWA=";
};
2021-01-05 02:34:35 +00:00
nativeBuildInputs = [ autoreconfHook makeWrapper pkg-config ];
buildInputs = [
gettext
gtk
libconfuse
pcre2
vte
];
2015-10-15 11:57:38 +00:00
LD_LIBRARY_PATH = "${expat.out}/lib"; # ugly hack for xgettext to work during build
# The config locking scheme relies on the binary being called "tilda",
# (`pgrep -C tilda`), so a simple `wrapProgram` won't suffice:
postInstall = ''
mkdir $out/bin/wrapped
mv "$out/bin/tilda" "$out/bin/wrapped/tilda"
makeWrapper "$out/bin/wrapped/tilda" "$out/bin/tilda" \
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
'';
meta = with lib; {
description = "A Gtk based drop down terminal for Linux and Unix";
2020-04-07 13:19:21 +00:00
homepage = "https://github.com/lanoxx/tilda/";
2021-01-05 02:34:35 +00:00
license = licenses.gpl3Plus;
maintainers = [ maintainers.AndersonTorres ];
platforms = platforms.linux;
};
}