srelay: fix build with libxcrypt

This commit is contained in:
Franz Pletz
2022-09-30 02:44:41 +02:00
committed by Martin Weinelt
parent 57f4391a43
commit cfc636c357

View File

@@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl }:
{ lib, stdenv, fetchurl, libxcrypt }:
stdenv.mkDerivation rec {
pname = "srelay";
@@ -11,6 +11,8 @@ stdenv.mkDerivation rec {
patches = [ ./arm.patch ];
buildInputs = [ libxcrypt ];
installPhase = "install -D srelay $out/bin/srelay";
meta = {