3
0
Fork 0
forked from mirrors/nixpkgs

Tilda (version 1.1.12): New Package

Tida is a GTK-based drop-down terminal emulator
This commit is contained in:
AndersonTorres 2014-08-27 19:10:47 -03:00 committed by Vladimír Čunát
parent b90dd7089f
commit a4738b27cf
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ stdenv, fetchurl, pkgconfig
, autoconf, automake, gettext
, confuse, vte, gtk
}:
stdenv.mkDerivation rec {
name = "tilda-${version}";
version = "1.1.12";
src = fetchurl {
url = "https://github.com/lanoxx/tilda/archive/${name}.tar.gz";
sha256 = "10kjlcdaylkisb8i0cw4wfssg52mrz2lxr5zmw3q4fpnhh2xlaix";
};
buildInputs = [ pkgconfig autoconf automake gettext confuse vte gtk ];
preConfigure = ''
sh autogen.sh
'';
meta = {
description = "A Gtk based drop down terminal for Linux and Unix";
homepage = https://github.com/lanoxx/tilda/;
license = stdenv.lib.licenses.gpl3;
maintainers = [ stdenv.lib.maintainers.AndersonTorres ];
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -9876,6 +9876,11 @@ let
tig = gitAndTools.tig;
tilda = callPackage ../applications/misc/tilda {
vte = gnome3.vte;
gtk = gtk3;
};
timidity = callPackage ../tools/misc/timidity { };
tint2 = callPackage ../applications/misc/tint2 { };