2022-12-19 23:09:17 +00:00
|
|
|
{
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
|
|
utils.url = "github:numtide/flake-utils";
|
|
|
|
naersk = {
|
|
|
|
url = "github:nix-community/naersk/master";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
outputs = { self, nixpkgs, utils, naersk }:
|
|
|
|
let
|
|
|
|
makeBuzzrelay = pkgs:
|
|
|
|
let
|
|
|
|
naersk-lib = pkgs.callPackage naersk { };
|
|
|
|
in
|
|
|
|
naersk-lib.buildPackage {
|
|
|
|
pname = "buzzrelay";
|
2023-04-16 00:00:46 +00:00
|
|
|
version = "${toString (self.sourceInfo.revCount or 0)}-${self.sourceInfo.shortRev or "dirty"}";
|
2022-12-19 23:09:17 +00:00
|
|
|
root = ./.;
|
|
|
|
nativeBuildInputs = with pkgs; [ pkg-config ];
|
|
|
|
buildInputs = with pkgs; [ openssl systemd ];
|
2022-12-23 17:21:05 +00:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/share/buzzrelay
|
|
|
|
cp -r static $out/share/buzzrelay/
|
|
|
|
'';
|
2022-12-19 23:09:17 +00:00
|
|
|
checkInputs = [ pkgs.rustPackages.clippy ];
|
|
|
|
doCheck = true;
|
|
|
|
cargoTestCommands = x:
|
|
|
|
x ++ [
|
|
|
|
''cargo clippy --all --all-features --tests -- \
|
|
|
|
-D warnings \
|
|
|
|
-A clippy::nonminimal_bool''
|
|
|
|
];
|
2023-05-14 21:33:22 +00:00
|
|
|
meta.description = "The buzzing ActivityPub relay";
|
2022-12-19 23:09:17 +00:00
|
|
|
};
|
|
|
|
in
|
|
|
|
utils.lib.eachDefaultSystem
|
|
|
|
(system:
|
|
|
|
let
|
|
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
in
|
|
|
|
{
|
|
|
|
packages = {
|
|
|
|
default = self.packages."${system}".buzzrelay;
|
|
|
|
buzzrelay = makeBuzzrelay pkgs;
|
|
|
|
};
|
|
|
|
|
|
|
|
apps.default = utils.lib.mkApp {
|
|
|
|
drv = self.packages."${system}".default;
|
|
|
|
};
|
|
|
|
|
|
|
|
devShells.default = with pkgs; mkShell {
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
openssl systemd
|
2024-06-15 22:42:20 +00:00
|
|
|
cargo rustc rustfmt rustPackages.clippy rust-analyzer cargo-outdated
|
2022-12-19 23:09:17 +00:00
|
|
|
];
|
|
|
|
RUST_SRC_PATH = rustPlatform.rustLibSrc;
|
|
|
|
};
|
|
|
|
})
|
|
|
|
// {
|
|
|
|
overlays.default = (_: prev: {
|
|
|
|
buzzrelay = makeBuzzrelay prev;
|
|
|
|
});
|
|
|
|
|
|
|
|
nixosModules.default = import ./nixos-module.nix { inherit self; };
|
|
|
|
};
|
|
|
|
}
|