activitypub/flake.nix

87 lines
2.6 KiB
Nix
Raw Normal View History

2024-03-21 12:41:02 +01:00
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
2024-04-09 19:55:07 +02:00
2024-03-21 12:41:02 +01:00
flake-parts.url = "github:hercules-ci/flake-parts";
2024-04-09 19:55:07 +02:00
flake-parts.inputs.nixpkgs.follows = "nixpkgs";
2024-03-21 12:41:02 +01:00
systems.url = "github:nix-systems/default";
2024-04-09 19:55:07 +02:00
systems.inputs.nixpkgs.follows = "nixpkgs";
nix-github-actions.url = "github:nix-community/nix-github-actions";
nix-github-actions.inputs.nixpkgs.follows = "nixpkgs";
2024-03-21 12:41:02 +01:00
# Dev tools
treefmt-nix.url = "github:numtide/treefmt-nix";
2024-04-09 19:55:07 +02:00
treefmt-nix.inputs.nixpkgs.follows = "nixpkgs";
2024-03-21 12:41:02 +01:00
};
outputs = inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
systems = import inputs.systems;
imports = [
inputs.treefmt-nix.flakeModule
];
2024-04-09 20:16:59 +02:00
flake = { config, self', inputs', ... }: {
githubActions = inputs.nix-github-actions.lib.mkGithubMatrix { checks = self'.packages; };
};
2024-03-21 12:41:02 +01:00
perSystem = { config, self', pkgs, lib, system, ... }:
let
cargoToml = builtins.fromTOML (builtins.readFile ./Cargo.toml);
nonRustDeps = with pkgs; [
libiconv
openssl
];
rust-toolchain = pkgs.symlinkJoin {
name = "rust-toolchain";
paths = [ pkgs.rustc pkgs.cargo pkgs.cargo-watch pkgs.rust-analyzer pkgs.rustPlatform.rustcSrc ];
};
in
{
# Rust package
packages.default = pkgs.rustPlatform.buildRustPackage {
inherit (cargoToml.package) name version;
src = ./.;
cargoLock.lockFile = ./Cargo.lock;
2024-04-09 19:48:18 +02:00
buildInputs = nonRustDeps;
nativeBuildInputs = with pkgs; [
rust-toolchain
pkg-config
];
2024-03-21 12:41:02 +01:00
};
# Rust dev environment
devShells.default = pkgs.mkShell {
inputsFrom = [
config.treefmt.build.devShell
];
shellHook = ''
# For rust-analyzer 'hover' tooltips to work.
export RUST_SRC_PATH=${pkgs.rustPlatform.rustLibSrc}
echo
echo "🍎🍎 Run 'just <recipe>' to get started"
just
'';
buildInputs = nonRustDeps;
nativeBuildInputs = with pkgs; [
just
rust-toolchain
pkg-config
];
RUST_BACKTRACE = 1;
};
# Add your auto-formatters here.
# cf. https://numtide.github.io/treefmt/
treefmt.config = {
projectRootFile = "flake.nix";
programs = {
nixpkgs-fmt.enable = true;
rustfmt.enable = true;
};
};
};
};
}