blob: 0b7e3268190ddd98a7fc263ab047797c0fd05bec (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
{
lib,
buildGo123Module,
fetchFromGitHub,
versionCheckHook,
nix-update-script,
}:
buildGo123Module rec {
pname = "nak";
version = "0.11.4";
src = fetchFromGitHub {
owner = "fiatjaf";
repo = "nak";
tag = "v${version}";
hash = "sha256-xFATXMK7wyEgnJXmTq9BdW27xqgXUP1Mo0m5QhFIv0I=";
};
vendorHash = "sha256-VkeQLWtyDfZiR0nrhmd5KCi/BIuqrFem9WhcTd3VRcc=";
ldflags = [
"-s"
"-w"
"-X main.version=${version}"
];
# Integration tests fail (requires connection to relays)
doCheck = false;
nativeInstallCheckInputs = [ versionCheckHook ];
doInstallCheck = true;
versionCheckProgramArg = "--version";
passthru.updateScript = nix-update-script { };
meta = {
description = "Command-line tool for Nostr things";
homepage = "https://github.com/fiatjaf/nak";
changelog = "https://github.com/fiatjaf/nak/releases/tag/${src.tag}";
license = lib.licenses.unlicense;
maintainers = with lib.maintainers; [ nartsiss ];
mainProgram = "nak";
};
}
|