mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
158e1cfdd0
And don't use square brackets on such lines.
26 lines
627 B
Nix
26 lines
627 B
Nix
{ stdenv, fetchFromGitHub }:
|
|
|
|
let version = "1.9.7"; in
|
|
stdenv.mkDerivation rec {
|
|
name = "libcli-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "08pmjhqkwldhmcwjhi2l27slf1fk6nxxfaihnk2637pqkycy8z0c";
|
|
rev = "v${version}";
|
|
repo = "libcli";
|
|
owner = "dparrish";
|
|
};
|
|
|
|
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 = licenses.lgpl21Plus;
|
|
platforms = with platforms; linux;
|
|
maintainers = with maintainers; [ nckx ];
|
|
};
|
|
}
|