diff --git a/Cargo.lock b/Cargo.lock index a368263..41d9c38 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1114,7 +1114,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] -name = "veil_rs" +name = "veil-rs" version = "0.1.0" dependencies = [ "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 916a46f..b6561f3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "veil_rs" +name = "veil-rs" version = "0.1.0" edition = "2024" diff --git a/default.nix b/default.nix index c70697a..c82e70b 100644 --- a/default.nix +++ b/default.nix @@ -21,7 +21,7 @@ in # hash = lib.fakeHash; # }; - cargoHash = "sha256-QV++fXA2+0Irzwtb6jCrphjIKKEtz8jOJURMnSP3YF4="; + cargoHash = "sha256-AVFUk9Deq9bPp+UK0fZlRA81S5NxiEHV7HypGGsJ4/0="; nativeBuildInputs = [pkg-config]; @@ -32,9 +32,9 @@ in passthru.updateScript = nix-update-script {}; - postInstall = '' - mv $out/bin/veil_rs $out/bin/veil-rs - ''; + # postInstall = '' + # cp static files + # ''; meta = { description = "Declarative Tauri wrapper"; diff --git a/flake.nix b/flake.nix index f4bfb5e..3ce5bfa 100644 --- a/flake.nix +++ b/flake.nix @@ -48,9 +48,9 @@ # nativeBuildInputs = with pkgs; [pkg-config]; - postInstall = '' - mv $out/bin/veil_rs $out/bin/veil-rs - ''; + # postInstall = '' + # cp static files + # ''; }; }; diff --git a/src/main.rs b/src/main.rs index 4548382..e173217 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2,7 +2,7 @@ use std::io::Result; use veil_rs::cli::Cli; fn main() -> Result<()> { - let args: Cli = Cli::get_args(); + let _args: Cli = Cli::get_args(); Ok(()) }