Unverified Commit 3012179e authored by Nabeen Tiwaree's avatar Nabeen Tiwaree Committed by pwnwriter
Browse files

Update pkgs/by-name/is/is-fast/package.nix

parent 897cfc19
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -2,20 +2,21 @@
  lib,
  rustPlatform,
  fetchFromGitHub,
  stdenv,
  pkg-config,
  openssl,
  oniguruma,
  nix-update-script,
}:

rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
  pname = "is-fast";
  version = "0.1.3";

  src = fetchFromGitHub {
    owner = "Magic-JD";
    repo = "is-fast";
    tag = "v${version}";
    tag = "v${finalAttrs.version}";
    hash = "sha256-exC9xD0scCa1jYomBCewaLv2kzoxSjHhc75EhEERPR8=";
  };

@@ -53,4 +54,4 @@ rustPlatform.buildRustPackage rec {
    maintainers = with lib.maintainers; [ pwnwriter ];
    mainProgram = "is-fast";
  };
}
})