32 lines
915 B
Nix
32 lines
915 B
Nix
{ lib, fetchgit, goPackages }:
|
|
|
|
with goPackages;
|
|
|
|
buildGoPackage rec {
|
|
name = "syncthing-${version}";
|
|
version = "0.10.30";
|
|
goPackagePath = "github.com/syncthing/syncthing";
|
|
src = fetchgit {
|
|
url = "git://github.com/syncthing/syncthing.git";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "bd554d42586c85e0a5e766b6a6e87ccc6047f30e189753a1e68e44fd54ca506a";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|