From c0d004afa0e9110f147a49d351ad2e3298cceb86 Mon Sep 17 00:00:00 2001 From: Dmitry Bogatov Date: Wed, 2 Nov 2022 08:12:12 -0400 Subject: [PATCH] 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. --- pkgs/applications/version-management/rcshist/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/applications/version-management/rcshist/default.nix b/pkgs/applications/version-management/rcshist/default.nix index a9c7bbefc131..f7cdceaa1b4c 100644 --- a/pkgs/applications/version-management/rcshist/default.nix +++ b/pkgs/applications/version-management/rcshist/default.nix @@ -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";