This repository has no description
1{
2 description = "Packages for Linux on WebAssembly";
3
4 inputs = {
5 nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
6 flake-parts.url = "github:hercules-ci/flake-parts";
7
8 # repo meta:
9 # keep-sorted start block=yes
10 git-hooks = {
11 url = "github:cachix/git-hooks.nix";
12 inputs.nixpkgs.follows = "nixpkgs";
13 };
14 make-shell = {
15 url = "github:nicknovitski/make-shell";
16 };
17 treefmt-nix = {
18 url = "github:numtide/treefmt-nix";
19 inputs.nixpkgs.follows = "nixpkgs";
20 };
21 # keep-sorted end
22 };
23 outputs =
24 inputs:
25 inputs.flake-parts.lib.mkFlake { inherit inputs; } {
26 imports = [
27 # keep-sorted start
28 ./flake/format.nix
29 ./flake/git-hooks.nix
30 ./flake/shell.nix
31 # keep-sorted end
32 ];
33
34 systems = [
35 "x86_64-linux"
36 "aarch64-linux"
37 "x86_64-darwin"
38 "aarch64-darwin"
39 ];
40 };
41}