attic-client: remove `env` attribute

Related to https://github.com/NixOS/nixpkgs/pull/292043
This commit is contained in:
Pol Dellaiera 2024-03-26 20:45:10 +01:00
parent 1f704fabb2
commit 60a6ba968d
No known key found for this signature in database
GPG Key ID: D476DFE9C67467CA
1 changed files with 0 additions and 6 deletions

View File

@ -42,11 +42,6 @@ rustPlatform.buildRustPackage {
ATTIC_DISTRIBUTOR = "attic";
# Workaround for https://github.com/NixOS/nixpkgs/issues/166205
env = lib.optionalAttrs stdenv.cc.isClang {
NIX_LDFLAGS = "-l${stdenv.cc.libcxx.cxxabi.libName}";
};
# Attic interacts with Nix directly and its tests require trusted-user access
# to nix-daemon to import NARs, which is not possible in the build sandbox.
doCheck = false;
@ -69,4 +64,3 @@ rustPlatform.buildRustPackage {
mainProgram = "attic";
};
}