forked from mirrors/nixpkgs
lsh: fix build with libxcrypt
This commit is contained in:
parent
ec31b96900
commit
84eda8bc8b
|
@ -1,5 +1,5 @@
|
|||
{ lib, stdenv, fetchurl, gperf, guile, gmp, zlib, liboop, readline, gnum4, pam
|
||||
, nettools, lsof, procps }:
|
||||
, nettools, lsof, procps, libxcrypt }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "lsh";
|
||||
|
@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
|
|||
# Should be present in upcoming 2.1 release.
|
||||
NIX_CFLAGS_COMPILE = "-std=gnu90 -fcommon";
|
||||
|
||||
buildInputs = [ gperf guile gmp zlib liboop readline gnum4 pam ];
|
||||
buildInputs = [ gperf guile gmp zlib liboop readline gnum4 pam libxcrypt ];
|
||||
|
||||
meta = {
|
||||
description = "GPL'd implementation of the SSH protocol";
|
||||
|
|
Loading…
Reference in a new issue