summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pkgs/cfspeedtest.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/cfspeedtest.nix b/pkgs/cfspeedtest.nix
index 5f0c696..2946c67 100644
--- a/pkgs/cfspeedtest.nix
+++ b/pkgs/cfspeedtest.nix
@@ -5,16 +5,18 @@
}:
rustPlatform.buildRustPackage rec {
pname = "cfspeedtest";
- version = "1.0.2";
+ version = "1.0.3";
src = fetchFromGitHub {
owner = "code-inflation";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-EWpepDW3XEQaGdUxAwDYemrqGP++jjeyQddQdFOyb3s=";
+ sha256 = "sha256-FgxSx0atSx3FccgjiO8OZ4j4IjkTpToGSViZyS3s8Cw=";
};
- cargoLock.lockFile = "${src}/Cargo.lock";
+ cargoLock = {
+ lockFile = "${src}/Cargo.lock";
+ };
meta = with lib; {
homepage = "https://github.com/code-inflation/cfspeedtest";