nixos/tests/userborn: fix setting hostPlatform (#378940)
[NixPkgs.git] / pkgs / by-name / mu / musl-fts / package.nix
blob2e27e29a6af5eb3738a2b9af08129a371c46e50c
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   autoreconfHook,
6   pkg-config,
7 }:
9 stdenv.mkDerivation rec {
10   pname = "musl-fts";
11   version = "1.2.7";
13   src = fetchFromGitHub {
14     owner = "void-linux";
15     repo = "musl-fts";
16     rev = "v${version}";
17     sha256 = "Azw5qrz6OKDcpYydE6jXzVxSM5A8oYWAztrHr+O/DOE=";
18   };
20   nativeBuildInputs = [
21     autoreconfHook
22     pkg-config
23   ];
25   enableParallelBuilding = true;
27   meta = with lib; {
28     homepage = "https://github.com/void-linux/musl-fts";
29     description = "Implementation of fts(3) for musl-libc";
30     platforms = platforms.linux;
31     license = licenses.bsd3;
32     maintainers = [ maintainers.pjjw ];
33   };