nixpkgs/pkgs/development/misc
aleksana 1862813d11 treewide: convert cargoSha256 to cargoHash
This is done with the following bash script:

```
#!/usr/bin/env bash
process_line() {
    local filename=${1%:}
    if [[ $4 =~ \"(.*)\"\; ]]; then
      local sha256="${BASH_REMATCH[1]}"
    fi
    [[ -z $sha256 ]] && return 0
    local hash=$(nix hash to-sri --type sha256 $sha256)
    echo "Processing: $filename"
    echo "  $sha256 => $hash"
    sed -i "s|cargoSha256 = \"$sha256\"|cargoHash = \"$hash\"|"
$filename
}

# split output by line
grep -r 'cargoSha256 = ' . | while IFS= read -r line; do
    # split them further by space
    read -r -a parts <<< "$line"
    process_line "${parts[@]}"
done

```
2024-07-03 21:54:10 +08:00
..
avr/libc Merge pull request #318395 from hzeller/feature-20240608-update-avr-libc 2024-06-20 07:30:21 +10:00
avr8-burn-omat treewide: add meta.mainProgram to packages with a single binary 2024-03-19 03:14:51 +01:00
breakpad treewide: Remove indefinite article from meta.description 2024-06-09 23:07:45 +02:00
brev-cli brev-cli: 0.6.284 -> 0.6.287 2024-05-31 02:03:45 +00:00
cppreference-doc cppreference-doc: 20230810 -> 20240610 2024-06-11 02:55:26 +00:00
datafusion treewide: add meta.mainProgram to packages with a single binary 2024-03-19 03:14:51 +01:00
gokrazy gokrazy: init at unstable-2023-08-12 2023-08-26 10:57:53 -04:00
h3 maintainers: drop marsam 2024-04-24 04:20:00 +00:00
haskell treewide: Remove indefinite article from meta.description 2024-06-09 23:07:45 +02:00
juce juce: 7.0.10 -> 7.0.11 2024-04-10 10:16:57 +02:00
loc treewide: convert cargoSha256 to cargoHash 2024-07-03 21:54:10 +08:00
msp430 treewide: Remove indefinite article from meta.description 2024-06-09 23:07:45 +02:00
newlib treewide: Remove indefinite article from meta.description 2024-06-09 23:07:45 +02:00
or1k Revert #320852: Clean up cross bootstrapping 2024-06-21 07:48:24 +02:00
rappel treewide: Remove indefinite article from meta.description 2024-06-09 23:07:45 +02:00
resholve treewide: Remove indefinite article from meta.description 2024-06-09 23:07:45 +02:00
rpiboot treewide: add meta.mainProgram to packages with a single binary 2024-03-19 03:14:51 +01:00
umr treewide: Remove indefinite article from meta.description 2024-06-09 23:07:45 +02:00
vc4 Revert #320852: Clean up cross bootstrapping 2024-06-21 07:48:24 +02:00
yelp-tools yelp-xsl: Move from gnome scope to top-level 2024-07-01 08:26:49 +02:00