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

33 lines
903 B
Nix
Raw Normal View History

2015-02-05 13:12:10 +01:00
{ lib, fetchgit, goPackages }:
2015-02-05 13:12:10 +01:00
with goPackages;
buildGoPackage rec {
name = "syncthing-${version}";
2015-03-13 09:23:25 +01:00
version = "0.10.26";
2015-02-05 13:12:10 +01:00
goPackagePath = "github.com/syncthing/syncthing";
src = fetchgit {
2015-01-06 09:24:48 +01:00
url = "git://github.com/syncthing/syncthing.git";
rev = "refs/tags/v${version}";
2015-03-13 09:23:25 +01:00
sha256 = "023vnns8ns2pgvqjisw466mw7323rv61cbl1indpfai412y7xjbk";
};
2015-02-05 13:12:10 +01:00
subPackages = [ "cmd/syncthing" ];
2015-02-05 13:12:10 +01:00
buildFlagsArray = "-ldflags=-w -X main.Version v${version}";
2015-02-05 13:12:10 +01:00
preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace";
2015-02-05 13:12:10 +01: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 13:12:10 +01:00
license = with lib.licenses; mit;
maintainers = with lib.maintainers; [ matejc ];
platforms = with lib.platforms; linux;
};
}