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



                                                                             
 

                                                                             
 
                                           
 
                                          
 
                           
                                       
                                 
                                               
                              

    
{ stdenv, fetchurl, pkgconfig, cmake, zlib, openssl, libsodium }:

stdenv.mkDerivation rec {
  name = "libssh-0.8.7";

  src = fetchurl {
    url = "https://www.libssh.org/files/0.8/${name}.tar.xz";
    sha256 = "14nmwfnnrhkwcfk5hn7azl905ivbh4wllmsbw5abd80b5yi4qc23";
  };

  postPatch = ''
    # Fix headers to use libsodium instead of NaCl
    sed -i 's,nacl/,sodium/,g' ./include/libssh/curve25519.h src/curve25519.c
  '';

  # single output, otherwise cmake and .pc files point to the wrong directory
  # outputs = [ "out" "dev" ];

  buildInputs = [ zlib openssl libsodium ];

  nativeBuildInputs = [ cmake pkgconfig ];

  meta = with stdenv.lib; {
    description = "SSH client library";
    license = licenses.lgpl2Plus;
    maintainers = with maintainers; [ sander ];
    platforms = platforms.all;
  };
}