Add musl-fts for bits that need it.

This commit is contained in:
Will Dietz 2017-08-13 00:06:28 -05:00
parent af6b756d98
commit 9df72c0290
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig }:
stdenv.mkDerivation rec {
name = "musl-fts-${version}";
version = "2017-01-13";
src = fetchFromGitHub {
owner = "pullmoll";
repo = "musl-fts";
rev = "0bde52df588e8969879a2cae51c3a4774ec62472";
sha256 = "1q8cpzisziysrs08b89wj0rm4p6dsyl177cclpfa0f7spjm3jg03";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
}

View file

@ -13354,6 +13354,7 @@ with pkgs;
multipath-tools = callPackage ../os-specific/linux/multipath-tools { };
musl = callPackage ../os-specific/linux/musl { };
musl-fts = callPackage ../os-specific/linux/musl/fts.nix { };
nettools = callPackage ../os-specific/linux/net-tools { };