33 lines
903 B
Nix
33 lines
903 B
Nix
{ lib, fetchgit, goPackages }:
|
|
|
|
with goPackages;
|
|
|
|
buildGoPackage rec {
|
|
name = "syncthing-${version}";
|
|
version = "0.10.29";
|
|
goPackagePath = "github.com/syncthing/syncthing";
|
|
src = fetchgit {
|
|
url = "git://github.com/syncthing/syncthing.git";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "0zpjcl4gr0r8c0qygvks58ly1k7gp2ngd4dn2d85ci4dddvmmxvj";
|
|
};
|
|
|
|
subPackages = [ "cmd/syncthing" ];
|
|
|
|
buildFlagsArray = "-ldflags=-w -X main.Version v${version}";
|
|
|
|
preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace";
|
|
|
|
doCheck = true;
|
|
|
|
dontInstallSrc = true;
|
|
|
|
meta = {
|
|
homepage = http://syncthing.net/;
|
|
description = "Replaces Dropbox and BitTorrent Sync with something open, trustworthy and decentralized";
|
|
license = with lib.licenses; mit;
|
|
maintainers = with lib.maintainers; [ matejc ];
|
|
platforms = with lib.platforms; linux;
|
|
};
|
|
}
|