cbc19490b9
Adds the terminal emulator, and the libraries that it depends upon. svn path=/nixpkgs/trunk/; revision=21820
25 lines
657 B
Nix
25 lines
657 B
Nix
{ stdenv, fetchurl
|
|
, pkgconfig, ncurses
|
|
, intltool, vte
|
|
, libexo, libxfce4util
|
|
, gtk
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "xfce-terminal-0.4.4";
|
|
src = fetchurl {
|
|
url = http://archive.xfce.org/src/apps/terminal/0.4/Terminal-0.4.4.tar.bz2;
|
|
sha256 = "1cmkrzgi2j5dgb1jigdqigf7fa84hh9l2bclgxzn17168cwpd1lw";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig intltool libexo gtk vte libxfce4util ncurses ];
|
|
|
|
CPPFLAGS = "-I${libexo}/include/exo-0.3 -I{libxfce4util}/include/xfce4";
|
|
|
|
meta = {
|
|
homepage = http://www.xfce.org/projects/terminal;
|
|
description = "A modern terminal emulator primarily for the Xfce desktop environment";
|
|
license = "GPLv2+";
|
|
};
|
|
}
|