CLI tool for migrating PDS

ci: test flakeref unification

nel.pet bb1044a3 0689ed42

verified
+9
+9
.tangled/workflows/build.yml
··· 2 - event: [ "push" ] 3 branch: [ "main" ] 4 5 dependencies: 6 nixpkgs: 7 - cargo 8 - gcc 9 - pkg-config 10 - openssl 11 12 steps: 13 - name: Build project 14 command: | 15 export PKG_CONFIG_PATH="${PKG_CONFIG_PATH}:$(nix build nixpkgs#openssl.dev --no-link --print-out-paths)/lib/pkgconfig" 16 cargo build
··· 2 - event: [ "push" ] 3 branch: [ "main" ] 4 5 + engine: "nixery" 6 + 7 dependencies: 8 nixpkgs: 9 - cargo 10 - gcc 11 - pkg-config 12 - openssl 13 + nixpkgs/nixpkgs-unstable: 14 + - bun 15 16 steps: 17 - name: Build project 18 command: | 19 export PKG_CONFIG_PATH="${PKG_CONFIG_PATH}:$(nix build nixpkgs#openssl.dev --no-link --print-out-paths)/lib/pkgconfig" 20 cargo build 21 + - name: Bun version 22 + command: | 23 + export PATH="$HOME/.nix-profile/bin:$PATH" 24 + bun --version 25 +