forked from mirrors/nixpkgs
Add musl-fts for bits that need it.
This commit is contained in:
parent
af6b756d98
commit
9df72c0290
2 changed files with 15 additions and 0 deletions
pkgs
14
pkgs/os-specific/linux/musl/fts.nix
Normal file
14
pkgs/os-specific/linux/musl/fts.nix
Normal 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 ];
|
||||
}
|
|
@ -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 { };
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue