1
0
Fork 0
weave/flake.nix
2025-05-12 00:27:01 +02:00

23 lines
449 B
Nix

{
description = "weave";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
};
outputs = {
flake-parts,
...
} @ inputs:
flake-parts.lib.mkFlake {inherit inputs;} {
systems = ["x86_64-linux" "aarch64-linux"];
perSystem = {
pkgs,
...
}: {
packages.default = pkgs.callPackage ./package.nix {};
};
};
}