1/*
2 To run:
3
4 nix-shell maintainers/scripts/update-dotnet-lockfiles.nix
5
6 This script finds all the derivations in nixpkgs that have a 'fetch-deps'
7 attribute, and runs all of them sequentially. This is useful to test changes
8 to 'fetch-deps', 'nuget-to-nix', 'nuget-to-json', or other changes to the
9 dotnet build infrastructure. Regular updates should be done through the
10 individual packages update scripts.
11*/
12{ ... }@args:
13import ./update.nix (
14 {
15 predicate = _: _: true;
16 get-script = pkg: pkg.fetch-deps or null;
17 }
18 // args
19)