feat(conduit): add package and home module
This commit is contained in:
25
packages/conduit/default.nix
Normal file
25
packages/conduit/default.nix
Normal file
@@ -0,0 +1,25 @@
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchgit
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "conduit";
|
||||
version = "unstable-2026-05-03";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://gitea.va.reichard.io/evan/conduit.git";
|
||||
rev = "9edea27148670b208c935c070ff3f58a416241b1";
|
||||
hash = "sha256-s8/ghyoAyFOvAMhE7vzckEZ8OxIF116OyJ4Uj30s65A=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-LOFT8eCNRm5Q2tVl7ifu4dB5cr828B/E2NJW5WiW0LI=";
|
||||
|
||||
meta = {
|
||||
description = "Self-hosted tunneling service";
|
||||
homepage = "https://gitea.va.reichard.io/evan/conduit";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ evanreichard ];
|
||||
mainProgram = "conduit";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user