nixpkgs/pkgs/by-name/li/libvterm/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
989 B
Nix
Raw Normal View History

{
lib,
stdenv,
fetchurl,
pkg-config,
glib,
ncurses,
}:
2015-05-24 16:55:47 +00:00
stdenv.mkDerivation rec {
2021-06-22 13:21:29 +00:00
pname = "libvterm";
version = "0.99.7";
src = fetchurl {
2021-06-22 13:21:29 +00:00
url = "mirror://sourceforge/libvterm/${pname}-${version}.tar.gz";
sha256 = "10gaqygmmwp0cwk3j8qflri5caf8vl3f7pwfl2svw5whv8wkn0k2";
};
2022-11-19 09:32:17 +00:00
preInstall = ''
mkdir -p $out/include $out/lib
'';
2022-11-19 09:32:17 +00:00
postPatch = ''
substituteInPlace Makefile \
--replace "gcc" "${stdenv.cc.targetPrefix}cc" \
--replace "ldconfig" "" \
--replace "/usr" "$out"
makeFlagsArray+=("PKG_CFG=`${stdenv.cc.targetPrefix}pkg-config --cflags glib-2.0`")
'';
2022-11-19 09:32:17 +00:00
# For headers
propagatedBuildInputs = [ glib ];
strictDeps = true;
nativeBuildInputs = [ pkg-config ];
2022-11-19 09:32:17 +00:00
buildInputs = [ ncurses ];
meta = with lib; {
homepage = "http://libvterm.sourceforge.net/";
description = "Terminal emulator library to mimic both vt100 and rxvt";
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}