1
0

Compare commits

...

3 Commits

Author SHA1 Message Date
Flake Update Bot
3ea71f289b Update from updated-inputs-2025-05-07-01-03 2025-05-07 03:04:10 +02:00
Flake Update Bot
8bbf7989f2 Update nixpkgs 2025-05-07-01-03 2025-05-07 03:04:07 +02:00
8d3057758f pkgs/pull-scans: Add script 2025-05-06 21:43:41 +02:00
2 changed files with 14 additions and 3 deletions

6
flake.lock generated
View File

@@ -551,11 +551,11 @@
},
"nixpkgs_3": {
"locked": {
"lastModified": 1746328495,
"narHash": "sha256-uKCfuDs7ZM3QpCE/jnfubTg459CnKnJG/LwqEVEdEiw=",
"lastModified": 1746461020,
"narHash": "sha256-7+pG1I9jvxNlmln4YgnlW4o+w0TZX24k688mibiFDUE=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "979daf34c8cacebcd917d540070b52a3c2b9b16e",
"rev": "3730d8a308f94996a9ba7c7138ede69c1b9ac4ae",
"type": "github"
},
"original": {

11
pkgs/pull-scans/pull-scan.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/usr/bin/env bash
TMP=$(mktemp -d)
scp "carbon.net.clerie.de:/var/lib/scan-to-gpg/*.asc" "${TMP}"
find "${TMP}" -iname "*.asc" | gpg --decrypt-files
find "${TMP}" -mindepth 1 -not -iname "*.asc" -type f | xargs mv -t .
rm -r "${TMP}"