Unverified Commit fafdb67f authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

jaq: 2.2.0 -> 2.3.0 (#423235)

parents a678ba91 47741dad
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -6,19 +6,19 @@
  nix-update-script,
}:

rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
  pname = "jaq";
  version = "2.2.0";
  version = "2.3.0";

  src = fetchFromGitHub {
    owner = "01mf02";
    repo = "jaq";
    tag = "v${version}";
    hash = "sha256-mVC2aggfcEpCtriuz/s4JL8mYkrlyAQLnaN5vyfcW3s=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-ZVTDbJ5RPgQeB4ntnNQcbbWquPFL7q4WYyQ5ihCVB64=";
  };

  useFetchCargoVendor = true;
  cargoHash = "sha256-ZZLp3Vwq013MPxKy9gTZ1yMi2O0QcDPgFw5YnrYt90I=";
  cargoHash = "sha256-hEILrjIJK/8CrQv5QcHu+AtPV7KcPdmw6422MyNoPwo=";

  nativeInstallCheckInputs = [
    versionCheckHook
@@ -31,7 +31,7 @@ rustPlatform.buildRustPackage rec {
  meta = {
    description = "Jq clone focused on correctness, speed and simplicity";
    homepage = "https://github.com/01mf02/jaq";
    changelog = "https://github.com/01mf02/jaq/releases/tag/v${version}";
    changelog = "https://github.com/01mf02/jaq/releases/tag/v${finalAttrs.version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      figsoda
@@ -39,4 +39,4 @@ rustPlatform.buildRustPackage rec {
    ];
    mainProgram = "jaq";
  };
}
})