summary refs log tree commit diff
path: root/pkgs/os-specific/linux/nsncd/default.nix
blob: aadecf3f72a8bdaf546604e19df20ae7a905705f (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
26
27
28
29
30
31
32
33
34
35
{ lib
, stdenv
, fetchFromGitHub
, rustPlatform
, nix-gitignore
}:

rustPlatform.buildRustPackage rec {
  pname = "nsncd";
  version = "unstable-2023-10-26";

  # https://github.com/twosigma/nsncd/pull/71 has not been upstreamed
  # to twosigma/nsncd yet. Using the nix-community fork in the
  # meantime.
  src = fetchFromGitHub {
    owner = "nix-community";
    repo = "nsncd";
    rev =  "d6513421f420e407248c6d0aee39ae2f861a7cec";
    hash = "sha256-PykzwpPxMDHJOr2HubXuw+Krk9Jbi0E3M2lEAOXhx2M=";
  };

  cargoSha256 = "sha256-cUM7rYXWpJ0aMiurXBp15IlxAmf/x5uiodxEqBPCQT0=";

  meta = with lib; {
    description = "the name service non-caching daemon";
    longDescription = ''
      nsncd is a nscd-compatible daemon that proxies lookups, without caching.
    '';
    homepage = "https://github.com/twosigma/nsncd";
    license = licenses.asl20;
    maintainers = with maintainers; [ flokli ninjatrappeur ];
    # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
    broken = stdenv.isDarwin;
  };
}