nixpkgs/pkgs/applications/misc/roxterm/default.nix

63 lines
2.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, docbook_xsl, dbus, dbus-glib, expat
2019-05-22 11:03:39 +00:00
, gsettings-desktop-schemas, gdk-pixbuf, gtk3, hicolor-icon-theme
, imagemagick, itstool, librsvg, libtool, libxslt, makeWrapper
2016-11-19 17:57:02 +00:00
, pkgconfig, python, pythonPackages, vte
, wrapGAppsHook}:
2014-09-18 19:26:47 +00:00
# TODO: Still getting following warning.
# WARNING **: Error retrieving accessibility bus address: org.freedesktop.DBus.Error.ServiceUnknown: The name org.a11y.Bus was not provided by any .service files
# Seems related to this:
# https://forums.gentoo.org/viewtopic-t-947210-start-0.html
2014-09-18 19:26:47 +00:00
2016-11-19 17:57:02 +00:00
let version = "3.3.2";
in stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "roxterm";
inherit version;
2014-09-18 19:26:47 +00:00
src = fetchurl {
2019-08-13 21:52:01 +00:00
url = "mirror://sourceforge/roxterm/${pname}-${version}.tar.xz";
2016-11-19 17:57:02 +00:00
sha256 = "0vjh7k4jm4bd01j88w9bmvq27zqsajjzy131fpi81zkii5lisl1k";
2014-09-18 19:26:47 +00:00
};
2016-11-19 17:57:02 +00:00
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
buildInputs =
[ docbook_xsl expat imagemagick itstool librsvg libtool libxslt
makeWrapper python pythonPackages.lockfile dbus dbus-glib
2019-05-22 11:03:39 +00:00
gdk-pixbuf gsettings-desktop-schemas gtk3
hicolor-icon-theme vte ];
2014-09-18 19:26:47 +00:00
NIX_CFLAGS_COMPILE = [ "-I${dbus-glib.dev}/include/dbus-1.0"
"-I${dbus.dev}/include/dbus-1.0"
"-I${dbus.lib}/lib/dbus-1.0/include" ];
2014-09-18 19:26:47 +00:00
# Fix up python path so the lockfile library is on it.
2016-10-06 18:34:35 +00:00
PYTHONPATH = stdenv.lib.makeSearchPathOutput "lib" python.sitePackages [
2016-10-13 22:03:12 +00:00
pythonPackages.lockfile
];
buildPhase = ''
# Fix up the LD_LIBRARY_PATH so that expat is on it
2015-10-15 11:57:38 +00:00
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${expat.out}/lib"
2016-11-19 17:57:02 +00:00
python mscript.py configure --prefix="$out" --disable-nls --disable-translations
python mscript.py build
'';
2014-09-18 19:26:47 +00:00
installPhase = ''
python mscript.py install
'';
2014-09-18 19:26:47 +00:00
meta = with stdenv.lib; {
homepage = http://roxterm.sourceforge.net/;
license = licenses.gpl3;
description = "Tabbed, VTE-based terminal emulator";
longDescription = ''
2016-11-19 17:57:02 +00:00
Tabbed, VTE-based terminal emulator. Similar to gnome-terminal without
the dependencies on Gnome.
'';
maintainers = with maintainers; [ cdepillabout ];
2014-09-18 19:26:47 +00:00
platforms = platforms.linux;
};
}