164 lines
4.2 KiB
Nix
164 lines
4.2 KiB
Nix
{
|
|
description = "A Nix binary cache server";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
crane = {
|
|
url = "github:ipetkov/crane";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
inputs.flake-compat.follows = "flake-compat";
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
};
|
|
|
|
flake-compat = {
|
|
url = "github:edolstra/flake-compat";
|
|
flake = false;
|
|
};
|
|
};
|
|
|
|
outputs = { self, nixpkgs, flake-utils, crane, ... }: let
|
|
supportedSystems = flake-utils.lib.defaultSystems;
|
|
|
|
makeCranePkgs = pkgs: let
|
|
craneLib = crane.mkLib pkgs;
|
|
in pkgs.callPackage ./crane.nix { inherit craneLib; };
|
|
in flake-utils.lib.eachSystem supportedSystems (system: let
|
|
pkgs = import nixpkgs {
|
|
inherit system;
|
|
overlays = [];
|
|
};
|
|
cranePkgs = makeCranePkgs pkgs;
|
|
|
|
inherit (pkgs) lib;
|
|
in rec {
|
|
packages = {
|
|
default = packages.attic;
|
|
|
|
inherit (cranePkgs) attic attic-client attic-server;
|
|
|
|
attic-nixpkgs = pkgs.callPackage ./package.nix { };
|
|
|
|
# TODO: Make this work with Crane
|
|
attic-static = (pkgs.pkgsStatic.callPackage ./package.nix {
|
|
nix = pkgs.pkgsStatic.nix.overrideAttrs (old: {
|
|
patches = (old.patches or []) ++ [
|
|
# To be submitted
|
|
(pkgs.fetchpatch {
|
|
url = "https://github.com/NixOS/nix/compare/3172c51baff5c81362fcdafa2e28773c2949c660...6b09a02536d5946458b537dfc36b7d268c9ce823.diff";
|
|
hash = "sha256-LFLq++J2XitEWQ0o57ihuuUlYk2PgUr11h7mMMAEe3c=";
|
|
})
|
|
];
|
|
});
|
|
}).overrideAttrs (old: {
|
|
# Read by pkg_config crate (do some autodetection in build.rs?)
|
|
PKG_CONFIG_ALL_STATIC = "1";
|
|
|
|
"NIX_CFLAGS_LINK_${pkgs.pkgsStatic.stdenv.cc.suffixSalt}" = "-lc";
|
|
RUSTFLAGS = "-C relocation-model=static";
|
|
});
|
|
|
|
attic-ci-installer = pkgs.callPackage ./ci-installer.nix {
|
|
inherit self;
|
|
};
|
|
|
|
book = pkgs.callPackage ./book {
|
|
attic = packages.attic;
|
|
};
|
|
} // (lib.optionalAttrs pkgs.stdenv.isLinux {
|
|
attic-server-image = pkgs.dockerTools.buildImage {
|
|
name = "attic-server";
|
|
tag = "main";
|
|
copyToRoot = [
|
|
# Debugging utilities for `fly ssh console`
|
|
pkgs.busybox
|
|
packages.attic-server
|
|
];
|
|
config = {
|
|
Entrypoint = [ "${packages.attic-server}/bin/atticd" ];
|
|
Cmd = [ "--mode" "api-server" ];
|
|
Env = [
|
|
"SSL_CERT_FILE=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"
|
|
];
|
|
};
|
|
};
|
|
});
|
|
|
|
devShells = {
|
|
default = pkgs.mkShell {
|
|
inputsFrom = with packages; [ attic book ];
|
|
nativeBuildInputs = with pkgs; [
|
|
rustc
|
|
|
|
rustfmt clippy
|
|
cargo-expand cargo-outdated cargo-edit
|
|
tokio-console
|
|
|
|
sqlite-interactive
|
|
|
|
editorconfig-checker
|
|
|
|
flyctl
|
|
|
|
wrk
|
|
] ++ (lib.optionals pkgs.stdenv.isLinux [
|
|
linuxPackages.perf
|
|
]);
|
|
|
|
NIX_PATH = "nixpkgs=${pkgs.path}";
|
|
RUST_SRC_PATH = "${pkgs.rustPlatform.rustcSrc}/library";
|
|
|
|
ATTIC_DISTRIBUTOR = "dev";
|
|
};
|
|
|
|
demo = pkgs.mkShell {
|
|
nativeBuildInputs = [
|
|
packages.default
|
|
];
|
|
|
|
shellHook = ''
|
|
>&2 echo
|
|
>&2 echo '🚀 Run `atticd` to get started!'
|
|
>&2 echo
|
|
'';
|
|
};
|
|
};
|
|
devShell = devShells.default;
|
|
|
|
internal = {
|
|
inherit (cranePkgs) attic-tests cargoArtifacts;
|
|
};
|
|
|
|
checks = lib.optionalAttrs pkgs.stdenv.isLinux (import ./integration-tests {
|
|
pkgs = import nixpkgs {
|
|
inherit system;
|
|
overlays = [ self.overlays.default ];
|
|
};
|
|
flake = self;
|
|
});
|
|
}) // {
|
|
overlays = {
|
|
default = final: prev: let
|
|
cranePkgs = makeCranePkgs final;
|
|
in {
|
|
inherit (cranePkgs) attic attic-client attic-server;
|
|
};
|
|
};
|
|
|
|
nixosModules = {
|
|
atticd = {
|
|
imports = [
|
|
./nixos/atticd.nix
|
|
];
|
|
|
|
services.atticd.useFlakeCompatOverlay = false;
|
|
|
|
nixpkgs.overlays = [
|
|
self.overlays.default
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|