mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
38 lines
996 B
Nix
38 lines
996 B
Nix
{ buildGoModule, fetchFromGitHub, lib }:
|
|
|
|
buildGoModule rec {
|
|
pname = "lightwalletd";
|
|
version = "0.4.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zcash";
|
|
repo = "lightwalletd";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-3cjXQXJqdmAMc+APybAKbpBhTy8Pk/QyBygSa8pGGAs=";
|
|
};
|
|
|
|
vendorSha256 = null;
|
|
|
|
ldflags = [
|
|
"-s" "-w"
|
|
"-X github.com/zcash/lightwalletd/common.Version=v${version}"
|
|
"-X github.com/zcash/lightwalletd/common.GitCommit=v${version}"
|
|
"-X github.com/zcash/lightwalletd/common.BuildDate=1970-01-01"
|
|
"-X github.com/zcash/lightwalletd/common.BuildUser=nixbld"
|
|
];
|
|
|
|
postFixup = ''
|
|
shopt -s extglob
|
|
cd $out/bin
|
|
rm !(lightwalletd)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A backend service that provides a bandwidth-efficient interface to the Zcash blockchain";
|
|
homepage = "https://github.com/zcash/lightwalletd";
|
|
maintainers = with maintainers; [ centromere ];
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|