libssh2: split into multiple outputs

And fixup referrers.
This commit is contained in:
Vladimír Čunát
2015-10-06 14:52:57 +02:00
parent 9935a85851
commit e71c9cfaa2
3 changed files with 12 additions and 10 deletions

View File

@@ -1,4 +1,4 @@
{stdenv, fetchurl, cmake, zlib, python, libssh2, openssl, http-parser}:
{ stdenv, fetchurl, cmake, pkgconfig, zlib, python, libssh2, openssl, http-parser }:
stdenv.mkDerivation rec {
version = "0.23.2";
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
cmakeFlags = "-DTHREADSAFE=ON";
nativeBuildInputs = [ cmake python ];
nativeBuildInputs = [ cmake pkgconfig python ];
buildInputs = [ zlib libssh2 openssl http-parser ];
meta = {