blob: d1f41a72a1c28c27aec5d62b54b85419eeaf0014 (
plain) (
blame)
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
|
{ lib
, stdenv
, buildNpmPackage
, fetchFromGitHub
, python3
, unbound
, cctools
}:
buildNpmPackage rec {
pname = "hsd";
version = "6.1.1";
src = fetchFromGitHub {
owner = "handshake-org";
repo = "hsd";
rev = "v${version}";
hash = "sha256-T57kDEQwHIyW7xVXrzjJdUcocST9ks4x3JR8yytH8P4=";
};
npmDepsHash = "sha256-EBrCuRckBg42k6ZUoB25xObv3lULnSPNJ2nO9l/TWvA=";
nativeBuildInputs = [
python3
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
cctools
];
buildInputs = [
unbound
];
dontNpmBuild = true;
meta = {
changelog = "https://github.com/handshake-org/hsd/blob/${src.rev}/CHANGELOG.md";
description = "Implementation of the Handshake protocol";
homepage = "https://github.com/handshake-org/hsd";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ d-xo ];
};
}
|