Nixfiles/pkgs/kabalist.nix
Quentin Boyer e3e0011cf0 Better packaging of extra packages
Split into different files and use callPackage to build them. Also add
them to a 'package' attribute in the flake, to be able to call them
outside.
2022-11-20 21:09:17 +01:00

8 lines
142 B
Nix

{
naersk,
kabalist-src,
}:
naersk.buildPackage {
cargoBuildOptions = opts: opts ++ ["--package=kabalist_cli"];
root = kabalist-src;
}