flake.nix: fix build

This commit is contained in:
notohh 2023-10-06 17:57:18 -04:00
parent d86f9cc30c
commit dd0b16d5b0
Signed by untrusted user: notohh
GPG key ID: BD47506D475EE86D

View file

@ -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];
};
}
);