3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #84604 from AndersonTorres/update-tilda

tilda: 1.4.1 -> 1.5.0
This commit is contained in:
Anderson Torres 2020-04-08 15:44:17 -03:00 committed by GitHub
commit 9589864ad1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,20 +1,23 @@
{ stdenv, fetchzip, pkgconfig
, autoreconfHook, gettext, expat
{ stdenv, fetchFromGitHub, pkgconfig
, autoreconfHook, gettext, expat, pcre2
, libconfuse, vte, gtk
, makeWrapper }:
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "tilda";
version = "1.4.1";
version = "1.5.0";
src = fetchzip {
url = "https://github.com/lanoxx/tilda/archive/${pname}-${version}.tar.gz";
sha256 = "154rsldqjv2m1bddisb930qicb0y35kx7bxq392n2hn68jr2pxkj";
src = fetchFromGitHub {
owner = "lanoxx";
repo = "tilda";
rev = "${pname}-${version}";
sha256 = "13djibj3s7ig13c57ywy38pxy3qfmqihii2c0g15fy2h9q8xp1gx";
};
nativeBuildInputs = [ autoreconfHook makeWrapper pkgconfig ];
buildInputs = [ gettext libconfuse vte gtk ];
buildInputs = [ gettext pcre2 libconfuse vte gtk ];
LD_LIBRARY_PATH = "${expat.out}/lib"; # ugly hack for xgettext to work during build
@ -27,9 +30,9 @@ stdenv.mkDerivation rec {
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
'';
meta = with stdenv.lib; {
meta = {
description = "A Gtk based drop down terminal for Linux and Unix";
homepage = https://github.com/lanoxx/tilda/;
homepage = "https://github.com/lanoxx/tilda/";
license = licenses.gpl3;
maintainers = [ maintainers.AndersonTorres ];
platforms = platforms.linux;