about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/nsncd/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/os-specific/linux/nsncd/default.nix')
-rw-r--r--pkgs/os-specific/linux/nsncd/default.nix39
1 files changed, 0 insertions, 39 deletions
diff --git a/pkgs/os-specific/linux/nsncd/default.nix b/pkgs/os-specific/linux/nsncd/default.nix
deleted file mode 100644
index 0ad11ee8b79f..000000000000
--- a/pkgs/os-specific/linux/nsncd/default.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{ lib
-, stdenv
-, fetchFromGitHub
-, rustPlatform
-, nix-gitignore
-}:
-
-rustPlatform.buildRustPackage rec {
-  pname = "nsncd";
-  version = "unstable-2024-01-16";
-
-  src = fetchFromGitHub {
-    owner = "twosigma";
-    repo = "nsncd";
-    rev =  "f4706786f26d12c533035fb2916be9be5751150b";
-    hash = "sha256-GbKDWW00eZZwmslkaGIO8hjCyD5xi7h+S2WP6q5ekOQ=";
-  };
-
-  cargoSha256 = "sha256-jAxcyMPDTBFBrG0cuKm0Tm5p/UEnUgTPQKDgqY2yK7w=";
-  checkFlags = [
-    # Relies on the test environment to be able to resolve "localhost"
-    # on IPv4. That's not the case in the Nix sandbox somehow. Works
-    # when running cargo test impurely on a (NixOS|Debian) machine.
-    "--skip=ffi::test_gethostbyname2_r"
-  ];
-
-  meta = with lib; {
-    description = "the name service non-caching daemon";
-    mainProgram = "nsncd";
-    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 picnoir ];
-    # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
-    broken = stdenv.isDarwin;
-  };
-}