mirror of
https://github.com/ivabus/rust-template
synced 2024-11-21 16:05:10 +03:00
28 lines
704 B
Nix
28 lines
704 B
Nix
|
{
|
||
|
inputs = {
|
||
|
cargo2nix.url = "github:cargo2nix/cargo2nix/release-0.11.0";
|
||
|
flake-utils.follows = "cargo2nix/flake-utils";
|
||
|
nixpkgs.follows = "cargo2nix/nixpkgs";
|
||
|
};
|
||
|
|
||
|
outputs = inputs: with inputs;
|
||
|
flake-utils.lib.eachDefaultSystem (system:
|
||
|
let
|
||
|
pkgs = import nixpkgs {
|
||
|
inherit system;
|
||
|
overlays = [cargo2nix.overlays.default];
|
||
|
};
|
||
|
|
||
|
rustPkgs = pkgs.rustBuilder.makePackageSet {
|
||
|
rustVersion = "1.72.0";
|
||
|
packageFun = import ./Cargo.nix;
|
||
|
};
|
||
|
|
||
|
in rec {
|
||
|
packages = {
|
||
|
webhookd = (rustPkgs.workspace.rust-template {}).bin;
|
||
|
default = packages.rust-template;
|
||
|
};
|
||
|
}
|
||
|
);
|
||
|
}
|