summary refs log tree commit diff
path: root/pkgs/applications/networking/syncthing
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-09-04 21:00:57 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-09-04 21:00:57 -0700
commite617eeea4154162b32f732ea084e46755f3e4be8 (patch)
tree7100ea6911c01c6b67bb0887709ce3df08923cde /pkgs/applications/networking/syncthing
parenteabf45a025f2ffb9d2865c4ca09ef2ecc2a6fd8f (diff)
downloadnixpkgs-e617eeea4154162b32f732ea084e46755f3e4be8.tar
nixpkgs-e617eeea4154162b32f732ea084e46755f3e4be8.tar.gz
nixpkgs-e617eeea4154162b32f732ea084e46755f3e4be8.tar.bz2
nixpkgs-e617eeea4154162b32f732ea084e46755f3e4be8.tar.lz
nixpkgs-e617eeea4154162b32f732ea084e46755f3e4be8.tar.xz
nixpkgs-e617eeea4154162b32f732ea084e46755f3e4be8.tar.zst
nixpkgs-e617eeea4154162b32f732ea084e46755f3e4be8.zip
syncthing: Move to go-packages
Diffstat (limited to 'pkgs/applications/networking/syncthing')
-rw-r--r--pkgs/applications/networking/syncthing/default.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/applications/networking/syncthing/default.nix b/pkgs/applications/networking/syncthing/default.nix
deleted file mode 100644
index f42426b3caf..00000000000
--- a/pkgs/applications/networking/syncthing/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ lib, fetchgit, goPackages }:
-
-with goPackages;
-
-buildGoPackage rec {
-  name = "syncthing-${version}";
-  version = "0.11.22";
-  goPackagePath = "github.com/syncthing/syncthing";
-  src = fetchgit {
-    url = "git://github.com/syncthing/syncthing.git";
-    rev = "refs/tags/v${version}";
-    sha256 = "0zdk5ppsq35s10chf8m3rw3sk9d77ms7x1vj3inw4lrm1h13w9wk";
-  };
-
-  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 = lib.licenses.mit;
-    maintainers = with lib.maintainers; [ matejc theuni ];
-    platforms = with lib.platforms; unix;
-  };
-}