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

33 lines
913 B
Nix
Raw Normal View History

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