We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aa0550 commit 0b86fcdCopy full SHA for 0b86fcd
maintainers/scripts/update.sh
@@ -0,0 +1,19 @@
1
+#!/usr/bin/env bash
2
+
3
+set -ex
4
5
+rootDir="$(git rev-parse --show-toplevel)"
6
7
+nixpkgs=$(nix eval --raw -f "$rootDir" "inputs.nixpkgs.outPath")
8
+flake=$(nix eval --raw -f "$rootDir")
9
10
+nix-shell --show-trace "${nixpkgs}/maintainers/scripts/update.nix" \
11
+ --arg include-overlays "[(import $rootDir).overlays.default]" \
12
+ --arg keep-going 'true' \
13
+ --arg predicate "(
14
+ let
15
+ prefix = \"$flake/pkgs/\";
16
+ prefixLen = builtins.stringLength prefix;
17
+ in
18
+ (path: pkg: (builtins.substring 0 prefixLen pkg.meta.position) == prefix)
19
+ )"
0 commit comments