forked from mirrors/nixpkgs
Add libcli 1.9.7: emulate a Cisco-telnet-style command line
This commit is contained in:
parent
3c3ede970e
commit
4d6c69d9bf
23
pkgs/development/libraries/libcli/default.nix
Normal file
23
pkgs/development/libraries/libcli/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -5831,6 +5831,8 @@ let
|
|||
|
||||
libchop = callPackage ../development/libraries/libchop { };
|
||||
|
||||
libcli = callPackage ../development/libraries/libcli { };
|
||||
|
||||
libcm = callPackage ../development/libraries/libcm { };
|
||||
|
||||
inherit (gnome3) libcroco;
|
||||
|
|
Loading…
Reference in a new issue