summary refs log blame commit diff
path: root/pkgs/development/libraries/libcli/default.nix
blob: a6d564d929468e6c29d0eae567b2b7fb27f69828 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                            
 
                         
                     

                             




                                                                    








                                                                        
                                  



                                             
{ stdenv, fetchFromGitHub }:

let version = "1.9.7"; in
stdenv.mkDerivation {
  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 ];
  };
}