nixpkgs/pkgs/applications/networking/syncthing/default.nix

33 lines
914 B
Nix
Raw Normal View History

2015-02-05 12:12:10 +00:00
{ lib, fetchgit, goPackages }:
2015-02-05 12:12:10 +00:00
with goPackages;
buildGoPackage rec {
name = "syncthing-${version}";
2015-06-17 21:48:29 +01:00
version = "0.11.9";
2015-02-05 12:12:10 +00:00
goPackagePath = "github.com/syncthing/syncthing";
src = fetchgit {
2015-01-06 08:24:48 +00:00
url = "git://github.com/syncthing/syncthing.git";
rev = "refs/tags/v${version}";
2015-06-17 21:48:29 +01:00
sha256 = "353528e152bbfd5075c4f85a54bce507ab3d8855f702a1399a48196bc19d226b";
};
2015-02-05 12:12:10 +00:00
subPackages = [ "cmd/syncthing" ];
2015-02-05 12:12:10 +00:00
buildFlagsArray = "-ldflags=-w -X main.Version v${version}";
2015-02-05 12:12:10 +00:00
preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace";
2015-02-05 12:12:10 +00:00
doCheck = true;
dontInstallSrc = true;
meta = {
homepage = http://syncthing.net/;
description = "Replaces Dropbox and BitTorrent Sync with something open, trustworthy and decentralized";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ matejc theuni ];
platforms = with lib.platforms; unix;
};
}