You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.2 KiB
Nix
57 lines
1.2 KiB
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs";
|
|
utils.url = "github:numtide/flake-utils";
|
|
naersk = {
|
|
url = "github:nix-community/naersk";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = {
|
|
self,
|
|
nixpkgs,
|
|
utils,
|
|
naersk,
|
|
...
|
|
}:
|
|
utils.lib.eachDefaultSystem (system: let
|
|
pkgs = nixpkgs.legacyPackages."${system}";
|
|
naersk-lib = naersk.lib."${system}";
|
|
in rec
|
|
{
|
|
packages.amethyst = naersk-lib.buildPackage {
|
|
pname = "Amethyst";
|
|
root = ./.;
|
|
};
|
|
|
|
packages.default = packages.amethyst;
|
|
|
|
apps.amethyst = utils.lib.mkApp {
|
|
drv = packages.amethyst;
|
|
};
|
|
|
|
apps.default = apps.amethyst;
|
|
|
|
devShells.default = pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
rustc
|
|
cargo
|
|
cargo-audit
|
|
rustfmt
|
|
clippy
|
|
rust-analyzer
|
|
|
|
# For `alpm` libs
|
|
pkg-config
|
|
pacman
|
|
openssl
|
|
];
|
|
# For rust-analyzer
|
|
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
|
|
};
|
|
|
|
formatter = pkgs.alejandra;
|
|
});
|
|
}
|