utils/flake.nix

50 lines
1.1 KiB
Nix
Raw Normal View History

2024-08-16 11:02:24 -05:00
{
description = "small utilities";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
2024-08-30 12:06:08 -05:00
nim2nix.url = "github:daylinmorgan/nim2nix";
2024-08-16 11:02:24 -05:00
};
outputs =
2024-08-30 12:06:08 -05:00
{ nixpkgs, nim2nix, ... }:
2024-08-16 11:02:24 -05:00
let
inherit (nixpkgs.lib) genAttrs;
2024-08-16 14:07:25 -05:00
systems = [
"x86_64-linux"
"x86_64-darwin"
"aarch64-linux"
"aarch64-darwin"
];
2024-08-30 12:06:08 -05:00
forAllSystems =
f:
genAttrs systems (
system:
f (
import nixpkgs {
inherit system;
overlays = [ nim2nix.overlays.default ];
}
)
);
2024-08-16 11:02:24 -05:00
in
{
2024-08-16 14:07:25 -05:00
packages = forAllSystems (pkgs: rec {
2024-08-16 14:21:25 -05:00
utils = pkgs.callPackage ./meta.nix { inherit tunnel; };
2024-08-16 15:39:21 -05:00
tunnel-go = pkgs.callPackage ./tunnel-go { };
tunnel-nim = pkgs.callPackage ./tunnel-nim { };
tunnel = tunnel-nim;
2024-08-16 14:21:25 -05:00
default = utils;
2024-08-16 14:07:25 -05:00
});
2024-08-16 11:02:24 -05:00
devShells = forAllSystems (pkgs: {
default = pkgs.mkShell {
packages = with pkgs; [
go
nim
];
};
});
formatter = forAllSystems (pkgs: pkgs.nixfmt-rfc-style);
};
}