1
0
Fork 0
weave/flake.nix

24 lines
449 B
Nix
Raw Normal View History

2025-04-07 21:20:41 +02:00
{
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,
...
}: {
2025-05-12 00:27:01 +02:00
packages.default = pkgs.callPackage ./package.nix {};
2025-04-07 21:20:41 +02:00
};
};
}