Commit cbf04901 authored by Alyssa Ross's avatar Alyssa Ross
Browse files

pkgsStatic.libargon2: fix build

By default, LIBRARIES includes both $(LIB_SH) (the shared library),
and $(LIB_ST) (the static library).
parent 9f103c5d
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -29,6 +29,8 @@ stdenv.mkDerivation rec {
    "ARGON2_VERSION=${version}"
    "LIBRARY_REL=lib"
    "PKGCONFIG_REL=lib"
  ] ++ lib.optionals stdenv.hostPlatform.isStatic [
    "LIBRARIES=$(LIB_ST)"
  ];

  meta = with lib; {