clan-core/pkgs/clan-cli/flake-module.nix

36 lines
962 B
Nix
Raw Normal View History

{ self, ... }: {
2023-08-03 09:31:56 +00:00
perSystem = { self', pkgs, ... }: {
devShells.clan-cli = pkgs.callPackage ./shell.nix {
inherit self;
inherit (self'.packages) clan-cli;
2023-07-20 23:08:35 +00:00
};
packages = {
clan-cli = pkgs.python3.pkgs.callPackage ./default.nix {
inherit self;
zerotierone = self'.packages.zerotierone;
};
2023-08-25 09:39:46 +00:00
clan-openapi = self'.packages.clan-cli.clan-openapi;
default = self'.packages.clan-cli;
## Optional dependencies for clan cli, we re-expose them here to make sure they all build.
inherit (pkgs)
bash
bubblewrap
openssh
sshpass
zbar
2023-08-03 11:11:42 +00:00
tor
age
2023-08-10 10:30:52 +00:00
rsync
2023-08-03 11:11:42 +00:00
sops;
# Override license so that we can build zerotierone without
# having to re-import nixpkgs.
zerotierone = pkgs.zerotierone.overrideAttrs (_old: { meta = { }; });
## End optional dependencies
};
checks = self'.packages.clan-cli.tests;
};
2023-08-03 09:31:56 +00:00
}