Merge pull request #84604 from AndersonTorres/update-tilda
tilda: 1.4.1 -> 1.5.0
This commit is contained in:
commit
9589864ad1
@ -1,20 +1,23 @@
|
|||||||
{ stdenv, fetchzip, pkgconfig
|
{ stdenv, fetchFromGitHub, pkgconfig
|
||||||
, autoreconfHook, gettext, expat
|
, autoreconfHook, gettext, expat, pcre2
|
||||||
, libconfuse, vte, gtk
|
, libconfuse, vte, gtk
|
||||||
, makeWrapper }:
|
, makeWrapper }:
|
||||||
|
|
||||||
|
with stdenv.lib;
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
pname = "tilda";
|
pname = "tilda";
|
||||||
version = "1.4.1";
|
version = "1.5.0";
|
||||||
|
|
||||||
src = fetchzip {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/lanoxx/tilda/archive/${pname}-${version}.tar.gz";
|
owner = "lanoxx";
|
||||||
sha256 = "154rsldqjv2m1bddisb930qicb0y35kx7bxq392n2hn68jr2pxkj";
|
repo = "tilda";
|
||||||
|
rev = "${pname}-${version}";
|
||||||
|
sha256 = "13djibj3s7ig13c57ywy38pxy3qfmqihii2c0g15fy2h9q8xp1gx";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook makeWrapper pkgconfig ];
|
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
|
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"
|
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = {
|
||||||
description = "A Gtk based drop down terminal for Linux and Unix";
|
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;
|
license = licenses.gpl3;
|
||||||
maintainers = [ maintainers.AndersonTorres ];
|
maintainers = [ maintainers.AndersonTorres ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
Loading…
Reference in New Issue
Block a user