fix: Use correct assets path
This commit is contained in:
parent
c2e208a20b
commit
bbb19754bd
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -1367,7 +1367,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "karnaugh"
|
||||
version = "0.1.2"
|
||||
version = "0.1.3"
|
||||
dependencies = [
|
||||
"axum",
|
||||
"clap",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "karnaugh"
|
||||
version = "0.1.2"
|
||||
version = "0.1.3"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
|
||||
12
flake.nix
12
flake.nix
@ -21,9 +21,9 @@
|
||||
rec {
|
||||
packages.karnaugh = pkgs.rustPlatform.buildRustPackage (final: {
|
||||
pname = "karnaugh";
|
||||
version = "0.1.2";
|
||||
version = "0.1.3";
|
||||
src = self;
|
||||
cargoHash = "sha256-YRSK2Vk6I1y/PhH1ZyFAYF0E6IB55So3MTs8B5df4LM=";
|
||||
cargoHash = "sha256-HwwvbYf9hKBANbIoxBQFOgya3K7SwWZCPZKvLGB057U=";
|
||||
});
|
||||
packages.container = pkgs.dockerTools.buildImage {
|
||||
name = "karnaugh";
|
||||
@ -31,16 +31,16 @@
|
||||
|
||||
copyToRoot = pkgs.buildEnv {
|
||||
name = "karnaugh-root";
|
||||
paths = [packages.karnaugh];
|
||||
pathsToLink = ["/bin"];
|
||||
paths = [ packages.karnaugh ];
|
||||
pathsToLink = [ "/bin" ];
|
||||
};
|
||||
|
||||
config = {
|
||||
Entrypoint = ["/bin/karnaugh"];
|
||||
Entrypoint = [ "/bin/karnaugh" ];
|
||||
};
|
||||
};
|
||||
packages.default = packages.karnaugh;
|
||||
|
||||
|
||||
devShells.default = pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
cargo
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user