nuclei: 3.3.5 -> 3.3.6 (#358083)
[NixPkgs.git] / maintainers / scripts / update-dotnet-lockfiles.nix
blob1422c1e70b49c0919d606802de740fbcc748dd69
1 /*
2   To run:
4       nix-shell maintainers/scripts/update-dotnet-lockfiles.nix
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', or other changes to the dotnet build
9   infrastructure. Regular updates should be done through the individual packages
10   update scripts.
12 { ... }@args:
13 import ./update.nix (
14   {
15     predicate = _: _: true;
16     get-script = pkg: pkg.fetch-deps or null;
17   }
18   // args