reindeer: 2024.03.11.00 -> 2024.05.06.00

Now has weekly version tags, so we can abandon the branch logic for
`nix-update-script`.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
Change-Id: Ia612daf897b5e0bfb8802ceeff53caae734814c2

+4 -6
+4 -6
pkgs/development/tools/reindeer/default.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "reindeer"; 14 - version = "2024.03.11.00"; 14 + version = "2024.05.06.00"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "facebookincubator"; 18 18 repo = "reindeer"; 19 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-cClbSJuEs4yIjx+13GSIevZO2PWEEHVDaMEmf729keA="; 20 + hash = "sha256-p+nnwUzbaAMRDGqFfFJdhsNlz32Ss6oDhBLOcb/pAtI="; 21 21 }; 22 22 23 - cargoHash = "sha256-TtbkzU48j3dmqRocJdY8KJz/3YHYIi3SZYM/eB9zoIg="; 23 + cargoHash = "sha256-/fvmOB0huXUK08IXsLbcF7bIJ4mDywKDjG774wS1qbY="; 24 24 25 25 nativeBuildInputs = [ pkg-config ]; 26 26 buildInputs = ··· 30 30 darwin.apple_sdk.frameworks.CoreServices 31 31 ]; 32 32 33 - passthru.updateScript = nix-update-script { 34 - extraArgs = [ "--version" "branch" ]; 35 - }; 33 + passthru.updateScript = nix-update-script { }; 36 34 37 35 meta = with lib; { 38 36 description = "Reindeer is a tool which takes Rust Cargo dependencies and generates Buck build rules";