My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/libtelnet/default.nix

24 lines
719 B

{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, zlib }:
stdenv.mkDerivation {
pname = "libtelnet";
version = "0.21+45f2d5c";
src = fetchFromGitHub {
owner = "seanmiddleditch";
repo = "libtelnet";
rev = "45f2d5cfcf383312280e61c85b107285fed260cf";
sha256 = "1lp6gdbndsp2w8mhy88c2jknxj2klvnggvq04ln7qjg8407ifpda";
};
nativeBuildInputs = [ pkg-config autoreconfHook ];
buildInputs = [ zlib ];
meta = {
description = "Simple RFC-complient TELNET implementation as a C library";
homepage = "https://github.com/seanmiddleditch/libtelnet";
license = lib.licenses.publicDomain;
maintainers = [ lib.maintainers.tomberek ];
platforms = lib.platforms.linux;
};
}