123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- {
- description = "CDK Flake";
- inputs = {
- nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
- rust-overlay = {
- url = "github:oxalica/rust-overlay";
- inputs = {
- nixpkgs.follows = "nixpkgs";
- };
- };
- fenix = {
- url = "github:nix-community/fenix";
- inputs.nixpkgs.follows = "nixpkgs";
- inputs.rust-analyzer-src.follows = "";
- };
- flake-utils.url = "github:numtide/flake-utils";
- crane = {
- url = "github:ipetkov/crane";
- };
- pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix";
- };
- outputs =
- { self
- , nixpkgs
- , rust-overlay
- , flake-utils
- , pre-commit-hooks
- , ...
- }@inputs:
- flake-utils.lib.eachDefaultSystem (
- system:
- let
- overlays = [ (import rust-overlay) ];
- lib = pkgs.lib;
- stdenv = pkgs.stdenv;
- isDarwin = stdenv.isDarwin;
- libsDarwin =
- with pkgs;
- lib.optionals isDarwin [
- # Additional darwin specific inputs can be set here
- darwin.apple_sdk.frameworks.Security
- darwin.apple_sdk.frameworks.SystemConfiguration
- ];
- # Dependencies
- pkgs = import nixpkgs {
- inherit system overlays;
- };
- # Toolchains
- # latest stable
- stable_toolchain = pkgs.rust-bin.stable."1.86.0".default.override {
- targets = [ "wasm32-unknown-unknown" ]; # wasm
- extensions = [
- "rustfmt"
- "clippy"
- "rust-analyzer"
- ];
- };
- # MSRV stable
- msrv_toolchain = pkgs.rust-bin.stable."1.85.0".default.override {
- targets = [ "wasm32-unknown-unknown" ]; # wasm
- extensions = [
- "rustfmt"
- "clippy"
- "rust-analyzer"
- ];
- };
- # Nightly used for formatting
- nightly_toolchain = pkgs.rust-bin.selectLatestNightlyWith (
- toolchain:
- toolchain.default.override {
- extensions = [
- "rustfmt"
- "clippy"
- "rust-analyzer"
- "rust-src"
- ];
- targets = [ "wasm32-unknown-unknown" ]; # wasm
- }
- );
- # Common inputs
- envVars = {
- # rust analyzer needs NIX_PATH for some reason.
- NIX_PATH = "nixpkgs=${inputs.nixpkgs}";
- };
- buildInputs =
- with pkgs;
- [
- # Add additional build inputs here
- git
- pkg-config
- curl
- just
- protobuf
- nixpkgs-fmt
- typos
- lnd
- clightning
- bitcoind
- sqlx-cli
- cargo-outdated
- mprocs
- # Needed for github ci
- libz
- ]
- ++ libsDarwin;
- # Common arguments can be set here to avoid repeating them later
- nativeBuildInputs = [
- #Add additional build inputs here
- ]
- ++ lib.optionals isDarwin [
- # Additional darwin specific native inputs can be set here
- ];
- in
- {
- checks = {
- # Pre-commit checks
- pre-commit-check =
- let
- # this is a hack based on https://github.com/cachix/pre-commit-hooks.nix/issues/126
- # we want to use our own rust stuff from oxalica's overlay
- _rust = pkgs.rust-bin.stable.latest.default;
- rust = pkgs.buildEnv {
- name = _rust.name;
- inherit (_rust) meta;
- buildInputs = [ pkgs.makeWrapper ];
- paths = [ _rust ];
- pathsToLink = [
- "/"
- "/bin"
- ];
- postBuild = ''
- for i in $out/bin/*; do
- wrapProgram "$i" --prefix PATH : "$out/bin"
- done
- '';
- };
- in
- pre-commit-hooks.lib.${system}.run {
- src = ./.;
- hooks = {
- rustfmt = {
- enable = true;
- entry = lib.mkForce "${rust}/bin/cargo-fmt fmt --all -- --config format_code_in_doc_comments=true --check --color always";
- };
- nixpkgs-fmt.enable = true;
- typos.enable = true;
- commitizen.enable = true; # conventional commits
- };
- };
- };
- devShells =
- let
- # pre-commit-checks
- _shellHook = (self.checks.${system}.pre-commit-check.shellHook or "");
- # devShells
- msrv = pkgs.mkShell (
- {
- shellHook = "
- ${_shellHook}
- ";
- buildInputs = buildInputs ++ [ msrv_toolchain ];
- inherit nativeBuildInputs;
- }
- // envVars
- );
- stable = pkgs.mkShell (
- {
- shellHook = ''${_shellHook}'';
- buildInputs = buildInputs ++ [ stable_toolchain ];
- inherit nativeBuildInputs;
- }
- // envVars
- );
- nightly = pkgs.mkShell (
- {
- shellHook = ''
- ${_shellHook}
- # Needed for github ci
- export LD_LIBRARY_PATH=${
- pkgs.lib.makeLibraryPath [
- pkgs.zlib
- ]
- }:$LD_LIBRARY_PATH
- '';
- buildInputs = buildInputs ++ [ nightly_toolchain ];
- inherit nativeBuildInputs;
- }
- // envVars
- );
- # Shell with Docker for integration tests
- integration = pkgs.mkShell (
- {
- shellHook = ''
- ${_shellHook}
- # Ensure Docker is available
- if ! command -v docker &> /dev/null; then
- echo "Docker is not installed or not in PATH"
- echo "Please install Docker to run integration tests"
- exit 1
- fi
- echo "Docker is available at $(which docker)"
- echo "Docker version: $(docker --version)"
- '';
- buildInputs = buildInputs ++ [
- stable_toolchain
- pkgs.docker-client
- ];
- inherit nativeBuildInputs;
- }
- // envVars
- );
- in
- {
- inherit
- msrv
- stable
- nightly
- integration
- ;
- default = stable;
- };
- }
- );
- }
|