nixpkgs/pkgs/development/libraries/libcli/default.nix
Tobias Geerinckx-Rice 1926a7aa32 Tidy nckx-maintained packages
- Use fetchFromGitHub when possible
- Build in parallel if supported
2015-04-08 02:29:42 +02:00

26 lines
633 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 = with licenses; lgpl21Plus;
platforms = with platforms; linux;
maintainers = with maintainers; [ nckx ];
};
}