WIP: feat: init nix as a builder #1
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