grouped nix config in a folder

This commit is contained in:
rzuasti
2026-01-25 11:01:11 -05:00
parent 18ecdc2f2a
commit a4e4ee6a50
4 changed files with 8 additions and 16 deletions
+12
View File
@@ -0,0 +1,12 @@
{pkgs}:
pkgs.rustPlatform.buildRustPackage rec {
pname = "oott";
version = "0.0.1";
src = ./.;
cargoLock = {
lockFile = ./Cargo.lock;
};
nativeBuildInputs = [pkgs.pkg-config];
PKG_CONFIG_PATH = "${pkgs.openssl.dev}/lib/pkgconfig";
}