blob: 75dcfdbc91a71e0303cb5965cd99832d89e5e039 (
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
|
{ stdenv, lib, go, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "lumen";
version = "0.4.1";
goPackagePath = "github.com/0xfe/lumen";
src = fetchFromGitHub {
owner = "0xfe";
repo = "lumen";
rev = "v${version}";
sha256 = "1wr8h46cvyjjlkkhqyk175ji6xanrbznnbpl49qi2svpasvww3qs";
};
goDeps = ./deps.nix;
postBuild = ''
mv go/bin/main go/bin/lumen
'';
meta = with stdenv.lib; {
homepage = https://github.com/0xfe/lumen;
description = "A commandline client for the Stellar blockchain";
platforms = with platforms; linux ++ darwin;
license = licenses.mit;
};
}
|