activitypub/flake.nix

136 lines
4.3 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";
systems.url = "github:nix-systems/default";
naersk.url = "github:nix-community/naersk";
2024-05-03 00:22:08 +02:00
flake-compat.url = "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz";
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
};
2024-08-25 19:27:20 +02:00
nixConfig = {
extra-substituters = [
"https://cache.kyouma.net"
];
extra-trusted-public-keys = [
"cache.kyouma.net:Frjwu4q1rnwE/MnSTmX9yx86GNA/z3p/oElGvucLiZg="
];
};
2024-05-03 02:06:40 +02:00
outputs = inputs@{ flake-parts, self, ... }:
inputs.flake-parts.lib.mkFlake { inherit inputs self; } {
2024-03-21 12:41:02 +01:00
systems = import inputs.systems;
2024-05-03 02:06:40 +02:00
flake = {
hydraJobs = inputs.nixpkgs.lib.genAttrs [ "packages" "checks" "devShells" ] (attrs: {
inherit (self.${attrs}) x86_64-linux aarch64-linux;
});
2024-05-03 02:06:40 +02:00
};
2024-03-21 12:41:02 +01:00
imports = [
inputs.treefmt-nix.flakeModule
2024-05-03 00:22:08 +02:00
inputs.flake-parts.flakeModules.easyOverlay
2024-03-21 12:41:02 +01:00
];
perSystem = { config, self', pkgs, lib, system, ... }:
let
cargoToml = builtins.fromTOML (builtins.readFile ./Cargo.toml);
2024-04-17 20:25:22 +02:00
cargoMigToml = builtins.fromTOML (builtins.readFile ./migration/Cargo.toml);
2024-03-21 12:41:02 +01:00
nonRustDeps = with pkgs; [
libiconv
openssl
];
2024-04-17 22:00:40 +02:00
naersk' = pkgs.callPackage inputs.naersk { };
2024-03-21 12:41:02 +01:00
rust-toolchain = pkgs.symlinkJoin {
name = "rust-toolchain";
paths = [ pkgs.rustc pkgs.cargo pkgs.cargo-watch pkgs.rust-analyzer pkgs.rustPlatform.rustcSrc ];
};
2024-04-09 21:02:13 +02:00
checks = {
x86_64-linux.default = config.packages.default;
};
2024-03-21 12:41:02 +01:00
in
{
2024-05-03 00:22:08 +02:00
overlayAttrs = {
2024-08-28 15:24:22 +02:00
inherit (config.packages) versia-ap-layer ls-ap-migration;
2024-05-03 00:22:08 +02:00
};
2024-03-21 12:41:02 +01:00
# Rust package
2024-08-28 15:24:22 +02:00
packages.default = config.packages.versia-ap-layer;
packages.versia-ap-layer = naersk'.buildPackage {
2024-05-03 00:22:08 +02:00
inherit (cargoToml.package) name version;
src = ./.;
buildInputs = nonRustDeps;
nativeBuildInputs = with pkgs; [
rust-toolchain
pkg-config
];
};
packages.ls-ap-migration = naersk'.buildPackage {
2024-04-17 20:25:22 +02:00
inherit (cargoMigToml.package) name version;
src = ./migration;
buildInputs = nonRustDeps;
nativeBuildInputs = with pkgs; [
rust-toolchain
pkg-config
2024-04-09 19:48:18 +02:00
];
2024-03-21 12:41:02 +01:00
};
2024-05-09 23:07:20 +02:00
packages.ociImage = pkgs.dockerTools.buildLayeredImage
{
2024-08-28 15:24:22 +02:00
name = "ghcr.io/versia-pub/activitypub";
2024-05-17 11:06:16 +02:00
tag = "main";
2024-05-09 23:07:20 +02:00
contents = [
2024-08-28 15:24:22 +02:00
config.packages.versia-ap-layer
2024-05-09 23:10:36 +02:00
config.packages.ls-ap-migration
pkgs.bash
2024-05-09 23:07:20 +02:00
];
config = {
Cmd = [
"${pkgs.bash}/bin/bash"
"${config.packages.ls-ap-migration}/bin/ls-ap-migration"
"up"
"&&"
2024-08-28 15:24:22 +02:00
"${config.packages.versia-ap-layer}/bin/versia-ap-layer"
2024-05-09 23:07:20 +02:00
];
ExposedPorts = {
"8080/tcp" = { };
};
};
};
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
2024-04-18 01:47:18 +02:00
sea-orm-cli
2024-03-21 12:41:02 +01:00
];
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;
};
};
};
};
}