nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 22 lines 416 B view raw
1#!/usr/bin/env nix-shell 2#!nix-shell -i bash -p nix-update cargo 3# shellcheck shell=bash 4 5set -euf -o pipefail 6 7# toposorted manually, please keep in order 8PACKAGES=( 9 "folly" 10 "fizz" 11 "mvfst" 12 "wangle" 13 "fbthrift" 14 "fb303" 15 "edencommon" 16) 17 18for P in "${PACKAGES[@]}"; do 19 nix-update "$P" --commit 20done 21 22nix-update watchman --commit --generate-lockfile --lockfile-metadata-path "watchman/cli"