mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
lib3270: init at 5.4
This commit is contained in:
parent
d3deaacfb4
commit
3a46f755ff
56
pkgs/by-name/li/lib3270/package.nix
Normal file
56
pkgs/by-name/li/lib3270/package.nix
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, which
|
||||||
|
, pkg-config
|
||||||
|
, autoconf
|
||||||
|
, automake
|
||||||
|
, libtool
|
||||||
|
, gettext
|
||||||
|
, openssl
|
||||||
|
, curl
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "lib3270";
|
||||||
|
version = "5.4";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "PerryWerneck";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
hash = "sha256-w6Bg+TvSDAuZwtu/nyAIuq6pgheM5nXtfuryECfnKng=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
which
|
||||||
|
pkg-config
|
||||||
|
autoconf
|
||||||
|
automake
|
||||||
|
libtool
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
gettext
|
||||||
|
openssl
|
||||||
|
curl
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
# Patch the required version.
|
||||||
|
sed -i -e "s/20211118/19800101/" src/core/session.c
|
||||||
|
'';
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
NOCONFIGURE=1 sh autogen.sh
|
||||||
|
'';
|
||||||
|
|
||||||
|
enableParallelBuilds = true;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "TN3270 client Library";
|
||||||
|
homepage = "https://github.com/PerryWerneck/lib3270";
|
||||||
|
license = licenses.lgpl3Plus;
|
||||||
|
maintainers = [ maintainers.vifino ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user