summary refs log tree commit diff
path: root/pkgs/os-specific/linux/musl-fts/default.nix
blob: cdb1cca47c6aa39733278fe6171c5c6e37857e9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config }:

stdenv.mkDerivation rec {
  pname = "musl-fts";
  version = "1.2.7";

  src = fetchFromGitHub {
    owner = "void-linux";
    repo = "musl-fts";
    rev = "v${version}";
    sha256 = "Azw5qrz6OKDcpYydE6jXzVxSM5A8oYWAztrHr+O/DOE=";
  };

  nativeBuildInputs = [ autoreconfHook pkg-config ];

  enableParallelBuilding = true;

  meta = with lib; {
    homepage = "https://github.com/void-linux/musl-fts";
    description = "An implementation of fts(3) for musl-libc";
    platforms = platforms.linux;
    license = licenses.bsd3;
    maintainers = [ maintainers.pjjw ];
  };
}