smo-server/flake.nix

56 lines
1.3 KiB
Nix
Raw Normal View History

2024-12-16 02:28:13 -05:00
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
fenix = {
url = "github:nix-community/fenix";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-12-21 06:35:44 -05:00
crane = {
url = "github:ipetkov/crane";
};
2024-12-16 02:28:13 -05:00
};
2024-12-20 21:35:43 -05:00
outputs = {
self,
nixpkgs,
flake-utils,
fenix,
2024-12-21 06:35:44 -05:00
crane
2024-12-20 21:35:43 -05:00
}:
2024-12-16 02:28:13 -05:00
flake-utils.lib.eachDefaultSystem
2024-12-20 21:35:43 -05:00
(
system: let
overlays = [fenix.overlays.default];
pkgs = import nixpkgs {
inherit system overlays;
};
2024-12-21 06:35:44 -05:00
craneLib = crane.mkLib pkgs;
commonArgs = {
src = craneLib.cleanCargoSource ./.;
strictDeps = true;
nativeBuildInputs = with pkgs; [pkg-config cmake];
buildInputs = with pkgs; [
openssl
zlib-ng
] ++ lib.optionals stdenv.isDarwin [
libiconv
];
};
2024-12-20 21:35:43 -05:00
in
with pkgs; {
2024-12-16 02:28:13 -05:00
devShells.default = mkShell {
buildInputs = [
pkgs.fenix.stable.completeToolchain
pkg-config
openssl
];
};
2024-12-20 21:35:43 -05:00
formatter = pkgs.alejandra;
2024-12-21 06:35:44 -05:00
packages.default = craneLib.buildPackage (commonArgs // {
cargoArtifacts = craneLib.buildDepsOnly commonArgs;
});
2024-12-16 02:28:13 -05:00
}
2024-12-20 21:35:43 -05:00
);
2024-12-16 02:28:13 -05:00
}