3
0
Fork 0
forked from mirrors/nixpkgs

Add libcli 1.9.7: emulate a Cisco-telnet-style command line

This commit is contained in:
Tobias Geerinckx-Rice 2015-01-17 15:48:54 +01:00
parent 3c3ede970e
commit 4d6c69d9bf
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
version = "1.9.7";
name = "libcli-${version}";
src = fetchurl {
url = "https://github.com/dparrish/libcli/archive/v${version}.tar.gz";
sha256 = "0v4867jbach5zd1nq0sspq5q95vvbpnljzm2yf64k8a4w2vadpbx";
};
enableParallelBuilding = true;
makeFlags = "PREFIX=$(out)";
meta = with stdenv.lib; {
description = "Emulate a Cisco-style telnet command-line interface";
homepage = http://sites.dparrish.com/libcli;
license = with licenses; lgpl21Plus;
platforms = with platforms; linux;
maintainers = with maintainers; [ nckx ];
};
}

View file

@ -5831,6 +5831,8 @@ let
libchop = callPackage ../development/libraries/libchop { };
libcli = callPackage ../development/libraries/libcli { };
libcm = callPackage ../development/libraries/libcm { };
inherit (gnome3) libcroco;