pkgsStatic.rcshist: fix static build

Add dependency on musl standalone implementation of "fts.h" in case of
pkgsMusl/pkgsStatic build; this interface is provided as part of libc
proper by glibc.
This commit is contained in:
Dmitry Bogatov 2022-11-02 08:12:12 -04:00 committed by Yt
parent b3dd9ec268
commit c0d004afa0

View file

@ -1,12 +1,17 @@
{ lib
, stdenv
, fetchurl
, musl-fts
}:
stdenv.mkDerivation {
pname = "rcshist";
version = "1.04";
configureFlags = lib.optional stdenv.hostPlatform.isMusl "LIBS=-lfts";
buildInputs = lib.optional stdenv.hostPlatform.isMusl musl-fts;
src = fetchurl {
url = "https://web.archive.org/web/20220508220019/https://invisible-island.net/datafiles/release/rcshist.tar.gz";
sha256 = "01ab3xwgm934lxr8bm758am3vxwx4hxx7cc9prbgqj5nh30vdg1n";