flake.nix: fix build
This commit is contained in:
parent
d86f9cc30c
commit
dd0b16d5b0
1 changed files with 7 additions and 1 deletions
|
@ -22,10 +22,16 @@
|
|||
in rec {
|
||||
defaultPackage = naersk'.buildPackage {
|
||||
src = ./.;
|
||||
usePureFromTOML = false;
|
||||
nativeBuildInputs = with pkgs; [
|
||||
python311
|
||||
pkg-config
|
||||
openssl
|
||||
];
|
||||
};
|
||||
|
||||
devShell = pkgs.mkShell {
|
||||
nativeBuildInputs = with pkgs; [rustc cargo python311];
|
||||
packages = with pkgs; [rustc cargo];
|
||||
};
|
||||
}
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue