2022-10-21 18:38:19 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
, nix-gitignore
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "nsncd";
|
2022-11-21 17:40:18 +00:00
|
|
|
version = "unstable-2022-11-14";
|
2022-10-21 18:38:19 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nix-community";
|
|
|
|
repo = "nsncd";
|
2022-11-21 17:40:18 +00:00
|
|
|
rev = "47e580f1db99603df6e212a2e62f18cc970cef40";
|
|
|
|
hash = "sha256-Nv3MYZcuYgD66BAGs3Tg37s086HAGsaDBFvELqQF3Tk=";
|
2022-10-21 18:38:19 +00:00
|
|
|
};
|
|
|
|
|
2022-11-21 17:40:18 +00:00
|
|
|
cargoSha256 = "sha256-c1L6nEUBHw1YegmoRrI3WU/bF80Nzbz13hsGlNyBR9o=";
|
2022-10-21 18:38:19 +00:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|