mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
mlterm: 3.3.8 -> 3.7.2 (#18645)
This commit is contained in:
parent
cc9be8cb79
commit
d6f20348f3
2 changed files with 24 additions and 11 deletions
|
@ -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 {
|
||||
name = "mlterm-${version}";
|
||||
version = "3.3.8";
|
||||
version = "3.7.2";
|
||||
|
||||
src = fetchurl {
|
||||
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 = ''
|
||||
sed -ie 's#-L/usr/local/lib -R/usr/local/lib##g' \
|
||||
xwindow/libtype/Makefile.in \
|
||||
main/Makefile.in \
|
||||
java/Makefile.in \
|
||||
tool/mlfc/Makefile.in \
|
||||
tool/mlimgloader/Makefile.in \
|
||||
tool/registobmp/Makefile.in \
|
||||
tool/mlconfig/Makefile.in
|
||||
sed -ie 's;cd ..srcdir. && rm -f ...lang..gmo.*;;g' tool/mlconfig/po/Makefile.in.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
|
||||
'';
|
||||
|
||||
configureFlags = [
|
||||
"--with-x=yes"
|
||||
"--with-gtk=3.0"
|
||||
"--with-imagelib=gdk-pixbuf"
|
||||
"--with-gui=xlib"
|
||||
"--with-type-engines=cairo,xft,xcore"
|
||||
"--with-x"
|
||||
"--enable-ind"
|
||||
"--enable-fribidi"
|
||||
"--with-tools=mlclient,mlconfig,mlcc,mlterm-menu,mlimgloader,registobmp,mlfc"
|
||||
"--disable-utmp"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://sourceforge.net/projects/mlterm/;
|
||||
license = licenses.bsd2;
|
||||
maintainers = [ maintainers.vrthra ];
|
||||
maintainers = with maintainers; [ vrthra ];
|
||||
platforms = with platforms; linux;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -15603,7 +15603,9 @@ in
|
|||
|
||||
xterm = callPackage ../applications/misc/xterm { };
|
||||
|
||||
mlterm = callPackage ../applications/misc/mlterm { };
|
||||
mlterm = callPackage ../applications/misc/mlterm {
|
||||
vte = gnome3.vte_290;
|
||||
};
|
||||
|
||||
finalterm = callPackage ../applications/misc/finalterm { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue