nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #223756 from figsoda/rsonpath

authored by

figsoda and committed by
GitHub
f53f95f7 5261f7d8

+5 -7
+5 -7
pkgs/development/tools/misc/rsonpath/default.nix
··· 1 1 { lib 2 + , stdenv 2 3 , rustPlatform 3 4 , fetchFromGitHub 4 - , withSimd ? true 5 - , stdenv 5 + , withSimd ? stdenv.isx86_64 6 6 }: 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "rsonpath"; 10 - version = "0.3.2"; 10 + version = "0.3.3"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "v0ldek"; 14 14 repo = "rsonpath"; 15 15 rev = "v${version}"; 16 - hash = "sha256-ip8+Wy9rmTzFccmjYWb3Nk+gkq3g4e1ty/5+ldIOO10="; 16 + hash = "sha256-kbtw8PhUecxIAxBdklbXtzS3P9o2aw8DCCJaC+vkNT0="; 17 17 }; 18 18 19 - cargoHash = "sha256-5V0H2FeHI1SByzLsviOR+qHwYhZGiNmMawCTYjk2P24="; 19 + cargoHash = "sha256-ZcnMpGgs/3VLdFsPPYzt2EkHNU26dvLnuOHy8OOtp0k="; 20 20 21 21 buildNoDefaultFeatures = true; 22 22 buildFeatures = [ ··· 31 31 changelog = "https://github.com/v0ldek/rsonpath/blob/${src.rev}/CHANGELOG.md"; 32 32 license = licenses.mit; 33 33 maintainers = with maintainers; [ figsoda ]; 34 - # build fails on platforms without simd support, even when withSimd = false 35 - broken = !stdenv.isx86_64; 36 34 }; 37 35 }