Our Personal Data Server from scratch!

fix: nix pds build

authored by nel.pet and committed by tangled.org a1b3d8fd 2b31a288

+3 -4
+1 -1
.gitignore
··· 1 /target 2 .env 3 .direnv 4 - .result 5 reference-pds-bsky/ 6 reference-relay-indigo/ 7 pds-moover/
··· 1 /target 2 .env 3 .direnv 4 + result 5 reference-pds-bsky/ 6 reference-relay-indigo/ 7 pds-moover/
+2 -3
default.nix
··· 4 pkg-config, 5 openssl, 6 }: let 7 - toml = (lib.importTOML ./Cargo.toml).package; 8 in rustPlatform.buildRustPackage { 9 pname = "tranquil-pds"; 10 inherit (toml) version; ··· 15 lib.fileset.unions [ 16 ./Cargo.toml 17 ./Cargo.lock 18 - ./src 19 ./.sqlx 20 ./migrations 21 - ./frontend 22 ] 23 ); 24 };
··· 4 pkg-config, 5 openssl, 6 }: let 7 + toml = (lib.importTOML ./Cargo.toml).workspace.package; 8 in rustPlatform.buildRustPackage { 9 pname = "tranquil-pds"; 10 inherit (toml) version; ··· 15 lib.fileset.unions [ 16 ./Cargo.toml 17 ./Cargo.lock 18 + ./crates 19 ./.sqlx 20 ./migrations 21 ] 22 ); 23 };