Commit c0d004af authored by Dmitry Bogatov's avatar Dmitry Bogatov Committed by Yt
Browse files

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.
parent b3dd9ec2
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
{ 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";