Skip to content

Commit

Permalink
nix: add hash value for a dependency (raphamorim#516)
Browse files Browse the repository at this point in the history
* nix: add hash value for a dependency

* nix: reformat stuff

* removing result file of `nix build`
  • Loading branch information
TornaxO7 authored May 30, 2024
1 parent 37eb53d commit ab699f8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pkgRio.nix
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,13 @@ in
inherit (cargoToml.workspace.package) version;
name = "rio";
src = ./.;
cargoLock.lockFile = ./Cargo.lock;
cargoLock = {
lockFile = ./Cargo.lock;

outputHashes = {
"dpi-0.1.1" = "sha256-LoA66thPDtA9Q6QkSkQU1M2ekYM3kN1qFnGEJFojFPs=";
};
};

cargoBuildFlags = "-p rioterm";

Expand Down

0 comments on commit ab699f8

Please sign in to comment.