ae2dc6aea6
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
73 lines
1.8 KiB
Nix
73 lines
1.8 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, nix
|
|
, nixosTests
|
|
, boost
|
|
, pkg-config
|
|
, stdenv
|
|
, installShellFiles
|
|
, darwin
|
|
, crates ? [ "attic-client" ]
|
|
}:
|
|
rustPlatform.buildRustPackage {
|
|
pname = "attic";
|
|
version = "0-unstable-2024-10-06";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zhaofengli";
|
|
repo = "attic";
|
|
rev = "1b29816235b7573fca7f964709fd201e1a187024";
|
|
hash = "sha256-icNt2T1obK3hFNgBOgiiyOoiScUfz9blmRbNp3aOUBE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
installShellFiles
|
|
];
|
|
|
|
buildInputs = [
|
|
nix
|
|
boost
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin (with darwin.apple_sdk.frameworks; [
|
|
SystemConfiguration
|
|
]);
|
|
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
};
|
|
cargoBuildFlags = lib.concatMapStrings (c: "-p ${c} ") crates;
|
|
|
|
ATTIC_DISTRIBUTOR = "nixpkgs";
|
|
NIX_INCLUDE_PATH = "${lib.getDev nix}/include";
|
|
|
|
# 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;
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
if [[ -f $out/bin/attic ]]; then
|
|
installShellCompletion --cmd attic \
|
|
--bash <($out/bin/attic gen-completions bash) \
|
|
--zsh <($out/bin/attic gen-completions zsh) \
|
|
--fish <($out/bin/attic gen-completions fish)
|
|
fi
|
|
'';
|
|
|
|
passthru = {
|
|
tests = {
|
|
inherit (nixosTests) atticd;
|
|
};
|
|
|
|
updateScript = ./update.sh;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Multi-tenant Nix Binary Cache";
|
|
homepage = "https://github.com/zhaofengli/attic";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ zhaofengli aciceri ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
mainProgram = "attic";
|
|
};
|
|
}
|