Monorepo for Tangled tangled.org

nix: add more nix packages/modules related to atproto #1158

merged opened by boltless.me targeting master from sl/knotmirror
  • did-method-plc
  • bluesky-jetstream
  • bluesky-relay
  • tap

Signed-off-by: Seongmin Lee git@boltless.me

Labels

None yet.

assignee

None yet.

Participants 2
AT URI
at://did:plc:xasnlahkri4ewmbuzly2rlc5/sh.tangled.repo.pull/3mh3qbj6xfq22
+23 -1
Diff #4
+3 -1
flake.nix
··· 106 106 knot-unwrapped = self.callPackage ./nix/pkgs/knot-unwrapped.nix {}; 107 107 knot = self.callPackage ./nix/pkgs/knot.nix {}; 108 108 dolly = self.callPackage ./nix/pkgs/dolly.nix {}; 109 + tap = self.callPackage ./nix/pkgs/tap.nix {}; 109 110 }); 110 111 in { 111 112 overlays.default = final: prev: { 112 - inherit (mkPackageSet final) lexgen goat sqlite-lib spindle knot-unwrapped knot appview docs dolly; 113 + inherit (mkPackageSet final) lexgen goat sqlite-lib spindle knot-unwrapped knot appview docs dolly tap; 113 114 }; 114 115 115 116 packages = forAllSystems (system: let ··· 130 131 sqlite-lib 131 132 docs 132 133 dolly 134 + tap 133 135 ; 134 136 135 137 pkgsStatic-appview = staticPackages.appview;
+20
nix/pkgs/tap.nix
··· 1 + { 2 + buildGoModule, 3 + fetchFromGitHub, 4 + }: 5 + buildGoModule { 6 + pname = "tap"; 7 + version = "0.1.0"; 8 + src = fetchFromGitHub { 9 + owner = "bluesky-social"; 10 + repo = "indigo"; 11 + rev = "498ecb9693e8ae050f73234c86f340f51ad896a9"; 12 + sha256 = "sha256-KASCdwkg/hlKBt7RTW3e3R5J3hqJkphoarFbaMgtN1k="; 13 + }; 14 + subPackages = ["cmd/tap"]; 15 + vendorHash = "sha256-UOedwNYnM8Jx6B7Y9tFcZX8IeUBESAFAPTRYk7n0yo8="; 16 + doCheck = false; 17 + meta = { 18 + mainProgram = "tap"; 19 + }; 20 + }

History

5 rounds 3 comments
sign up or login to add to the discussion
1 commit
expand
nix: add indigo/tap as nix package
2/3 timeout, 1/3 success
expand
expand 0 comments
pull request successfully merged
1 commit
expand
nix: add indigo/tap as nix package
expand 0 comments
1 commit
expand
nix: add indigo/tap as nix package
expand 0 comments
1 commit
expand
nix: add more nix packages/modules related to atproto
expand 3 comments

i think this is pretty cool but i dont think we should maintain nix modules for plc/jetstream/relay in tree.

Those were from my local development setup. As I'm planning to use k3d instead of nixos VM, we can scrap these. I'll filter out other than tap package.

alright, lets scrap those nix packages. lgtm barring that.

1 commit
expand
nix: add more nix packages/modules related to atproto
expand 0 comments