2014-01-10 01:13:17 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, cairo, libxml2, gnome3, pango
|
|
|
|
, gnome_doc_utils, intltool, libX11, which, gconf, libuuid
|
|
|
|
, desktop_file_utils, itstool, ncurses }:
|
2012-07-10 18:03:13 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
2014-01-10 01:13:17 +01:00
|
|
|
versionMajor = "3.10";
|
|
|
|
versionMinor = "2";
|
2012-07-10 18:03:13 +02:00
|
|
|
|
|
|
|
name = "gnome-terminal-${versionMajor}.${versionMinor}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/gnome-terminal/${versionMajor}/${name}.tar.xz";
|
2014-01-10 01:13:17 +01:00
|
|
|
sha256 = "04yrk9531f373nl64jx3pczsnq7a56mj3n436jbhjp74kp12fa70";
|
2012-07-10 18:03:13 +02:00
|
|
|
};
|
|
|
|
|
2014-01-10 01:13:17 +01:00
|
|
|
buildInputs = [ gnome3.gtk gnome3.gsettings_desktop_schemas gnome3.vte
|
|
|
|
gnome3.dconf gnome3.gconf itstool ncurses ];
|
2012-07-10 18:03:13 +02:00
|
|
|
|
2014-01-10 01:13:17 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool gnome_doc_utils which libuuid libxml2 desktop_file_utils ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2012-07-10 18:03:13 +02:00
|
|
|
}
|