more attempts

This commit is contained in:
Seán C McCord 2023-03-08 14:31:38 -05:00
parent 7c7b789886
commit 741bde62dd
No known key found for this signature in database
GPG key ID: 0BE02ACD7471B0E8

View file

@ -12,7 +12,7 @@
naersk-lib = pkgs.callPackage naersk { };
in
{
defaultPackage = with pkgs; naersk-lib.buildPackage {
packages.default = with pkgs; naersk-lib.buildPackage {
name = "openpgp-card";
src = ./.;
buildInputs = [ cargo rustc rustfmt pcsclite nettle pre-commit rustPackages.clippy ];
@ -24,5 +24,9 @@
nativeBuildInputs = [ pkg-config rustPlatform.bindgenHook ];
RUST_SRC_PATH = rustPlatform.rustLibSrc;
};
overlays.default = (final: prev: {
openpgp-card = self.packages.${prev.system}.default;
});
});
}