3
0
Fork 0
forked from mirrors/nixpkgs

dico: fix build with libxcrypt

This commit is contained in:
Franz Pletz 2022-09-30 02:43:58 +02:00 committed by Martin Weinelt
parent 125ec340c8
commit fd1bcb107a
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -1,5 +1,5 @@
{ fetchurl, lib, stdenv, libtool, gettext, zlib, readline, gsasl
, guile, python3, pcre, libffi, groff }:
, guile, python3, pcre, libffi, groff, libxcrypt }:
stdenv.mkDerivation rec {
pname = "dico";
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ groff ];
buildInputs =
[ libtool gettext zlib readline gsasl guile python3 pcre libffi ];
[ libtool gettext zlib readline gsasl guile python3 pcre libffi libxcrypt ];
strictDeps = true;