2014-08-27 23:10:47 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig
|
2014-08-29 10:27:21 +01:00
|
|
|
, autoreconfHook, gettext, expat
|
2014-08-27 23:10:47 +01:00
|
|
|
, confuse, vte, gtk
|
2014-09-10 19:59:54 +01:00
|
|
|
, makeWrapper }:
|
2014-08-27 23:10:47 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
name = "tilda-${version}";
|
2016-11-20 04:19:46 +00:00
|
|
|
version = "1.3.3";
|
2014-08-27 23:10:47 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/lanoxx/tilda/archive/${name}.tar.gz";
|
2016-11-20 04:19:46 +00:00
|
|
|
sha256 = "1cc4qbg1m3i04lj5p6i6xbd0zvy1320pxdgmjhz5p3j95ibsbfki";
|
2014-08-27 23:10:47 +01:00
|
|
|
};
|
|
|
|
|
2014-08-29 10:27:21 +01:00
|
|
|
buildInputs = [ pkgconfig autoreconfHook gettext confuse vte gtk makeWrapper ];
|
2014-08-27 23:10:47 +01:00
|
|
|
|
2015-10-15 12:57:38 +01:00
|
|
|
LD_LIBRARY_PATH = "${expat.out}/lib"; # ugly hack for xgettext to work during build
|
2014-08-29 10:27:21 +01:00
|
|
|
|
2015-08-26 08:46:01 +01:00
|
|
|
# The config locking scheme relies on the binary being called "tilda",
|
|
|
|
# (`pgrep -C tilda`), so a simple `wrapProgram` won't suffice:
|
2014-08-29 10:27:21 +01:00
|
|
|
postInstall = ''
|
2015-08-26 08:46:01 +01:00
|
|
|
mkdir $out/bin/wrapped
|
|
|
|
mv "$out/bin/tilda" "$out/bin/wrapped/tilda"
|
|
|
|
makeWrapper "$out/bin/wrapped/tilda" "$out/bin/tilda" \
|
2014-08-29 10:27:21 +01:00
|
|
|
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
|
2014-08-27 23:10:47 +01:00
|
|
|
'';
|
2014-08-29 10:27:21 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2014-08-27 23:10:47 +01:00
|
|
|
description = "A Gtk based drop down terminal for Linux and Unix";
|
|
|
|
homepage = https://github.com/lanoxx/tilda/;
|
2014-08-29 10:27:21 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
|
|
platforms = platforms.linux;
|
2014-08-27 23:10:47 +01:00
|
|
|
};
|
|
|
|
}
|
2014-08-29 10:27:21 +01:00
|
|
|
|