mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
Add musl-fts for bits that need it.
This commit is contained in:
parent
af6b756d98
commit
9df72c0290
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…
Reference in New Issue
Block a user