push changes

This commit is contained in:
zack 2024-11-13 20:35:13 -05:00
parent 6ea10852a9
commit 9aa6f3fdbe
No known key found for this signature in database
GPG key ID: 5F873416BCF59F35
20 changed files with 573 additions and 277 deletions

View file

@ -0,0 +1,16 @@
{
inputs,
fetchFromGitHub,
pkgs,
}: let
pds = fetchFromGitHub {
owner = "bluesky-social";
repo = "pds";
rev = "main";
hash = "sha256-dEB5u++Zx+F4TH5q44AF/tuwAhLEyYT+U5/18viT4sw=";
};
in
inputs.pnpm2nix.packages.${pkgs.system}.mkPnpmPackage {
src = "${pds}/service";
extraBuildInputs = [pkgs.sqlite];
}