mlterm: 3.3.8 -> 3.7.2 (#18645)
This commit is contained in:
parent
cc9be8cb79
commit
d6f20348f3
|
@ -1,38 +1,49 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, libX11, gdk_pixbuf, cairo, libXft, gtk2, fribidi }:
|
{ stdenv, fetchurl, pkgconfig, autoconf
|
||||||
|
, libX11, gdk_pixbuf, cairo, libXft, gtk3, vte, fribidi, libssh2
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "mlterm-${version}";
|
name = "mlterm-${version}";
|
||||||
version = "3.3.8";
|
version = "3.7.2";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/project/mlterm/01release/${name}/${name}.tar.gz";
|
url = "mirror://sourceforge/project/mlterm/01release/${name}/${name}.tar.gz";
|
||||||
sha256 = "088pgxynzxxii7wdmjp2fdkxydirx4k05588zkhlzalkb5l8ji1i";
|
sha256 = "1b24w8hfck1ylfkdz9z55vlmsb36q9iyfr0i9q9y98dfk0f0rrw8";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig libX11 gdk_pixbuf cairo libXft gtk2 fribidi ];
|
nativeBuildInputs = [ pkgconfig autoconf ];
|
||||||
|
buildInputs = [
|
||||||
|
libX11 gdk_pixbuf.dev cairo libXft gtk3 vte fribidi libssh2
|
||||||
|
];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
sed -ie 's#-L/usr/local/lib -R/usr/local/lib##g' \
|
sed -ie 's#-L/usr/local/lib -R/usr/local/lib##g' \
|
||||||
xwindow/libtype/Makefile.in \
|
xwindow/libtype/Makefile.in \
|
||||||
main/Makefile.in \
|
main/Makefile.in \
|
||||||
java/Makefile.in \
|
tool/mlfc/Makefile.in \
|
||||||
tool/mlimgloader/Makefile.in \
|
tool/mlimgloader/Makefile.in \
|
||||||
tool/registobmp/Makefile.in \
|
tool/mlconfig/Makefile.in \
|
||||||
tool/mlconfig/Makefile.in
|
xwindow/libotl/Makefile.in
|
||||||
sed -ie 's;cd ..srcdir. && rm -f ...lang..gmo.*;;g' tool/mlconfig/po/Makefile.in.in
|
sed -ie 's;cd ..srcdir. && rm -f ...lang..gmo.*;;g' \
|
||||||
|
tool/mlconfig/po/Makefile.in.in
|
||||||
'';
|
'';
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
|
"--with-x=yes"
|
||||||
|
"--with-gtk=3.0"
|
||||||
"--with-imagelib=gdk-pixbuf"
|
"--with-imagelib=gdk-pixbuf"
|
||||||
|
"--with-gui=xlib"
|
||||||
"--with-type-engines=cairo,xft,xcore"
|
"--with-type-engines=cairo,xft,xcore"
|
||||||
"--with-x"
|
|
||||||
"--enable-ind"
|
"--enable-ind"
|
||||||
|
"--enable-fribidi"
|
||||||
|
"--with-tools=mlclient,mlconfig,mlcc,mlterm-menu,mlimgloader,registobmp,mlfc"
|
||||||
|
"--disable-utmp"
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://sourceforge.net/projects/mlterm/;
|
homepage = https://sourceforge.net/projects/mlterm/;
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
maintainers = [ maintainers.vrthra ];
|
maintainers = with maintainers; [ vrthra ];
|
||||||
platforms = with platforms; linux;
|
platforms = with platforms; linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -15603,7 +15603,9 @@ in
|
||||||
|
|
||||||
xterm = callPackage ../applications/misc/xterm { };
|
xterm = callPackage ../applications/misc/xterm { };
|
||||||
|
|
||||||
mlterm = callPackage ../applications/misc/mlterm { };
|
mlterm = callPackage ../applications/misc/mlterm {
|
||||||
|
vte = gnome3.vte_290;
|
||||||
|
};
|
||||||
|
|
||||||
finalterm = callPackage ../applications/misc/finalterm { };
|
finalterm = callPackage ../applications/misc/finalterm { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue