intake/package.nix

32 lines
424 B
Nix
Raw Normal View History

2025-02-08 04:23:32 +00:00
{
buildGoModule,
jq,
lib,
}:
let
inherit (lib.fileset)
toSource
unions
;
in
buildGoModule {
pname = "intake";
version = "2.0.0";
src = toSource {
root = ./.;
fileset = unions [
./cmd
./core
./go.mod
./go.sum
./main.go
./web
];
};
vendorHash = "sha256-sv4rlURaTatxJ5atYWYzD2O4EiuPp66i0RY5lQzhBKU=";
nativeBuildInputs = [ jq ];
2025-02-20 16:03:38 +00:00
meta = { };
2025-02-08 04:23:32 +00:00
}