mirror of
https://github.com/tuxdotrs/trok.git
synced 2025-07-06 11:56:34 +05:30
18 lines
297 B
Nix
18 lines
297 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
}:
|
|
buildGoModule {
|
|
pname = "trok";
|
|
version = "0.1.0";
|
|
|
|
src = ./.;
|
|
vendorHash = "sha256-P7UBLLMMOwCeiM7aAY6A8cyXqxwn7mDTNS2kJTALHPU=";
|
|
|
|
meta = {
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [tuxdotrs];
|
|
mainProgram = "trok";
|
|
};
|
|
}
|