about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorJaka Hudoklin <offlinehacker@users.noreply.github.com>2019-03-26 19:42:31 +0100
committerGitHub <noreply@github.com>2019-03-26 19:42:31 +0100
commit5c74e42becc2de4ee25d35048ac554ddd27ca8dd (patch)
tree62a7cd4a94a7df1c10028fe8c38d6dca7dcaa7cc /pkgs/applications/networking
parente8c84d3449c1def3a7ed0509d687d01ab44383fb (diff)
parentcdd8b9411cabb936eab3b1adc826acfca8c65ca6 (diff)
Merge pull request #56718 from xtruder/pkgs/brig/init
brig: init at 0.3.0
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/brig/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/applications/networking/brig/default.nix b/pkgs/applications/networking/brig/default.nix
new file mode 100644
index 0000000000000..7c6f2d8a570f0
--- /dev/null
+++ b/pkgs/applications/networking/brig/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, buildGoPackage, fetchFromGitHub, fetchgx }:
+
+buildGoPackage rec {
+  name = "brig-${version}";
+  version = "0.3.0";
+  rev = "v${version}";
+
+  goPackagePath = "github.com/sahib/brig";
+  subPackages = ["."];
+
+  src = fetchFromGitHub {
+    owner = "sahib";
+    repo = "brig";
+    inherit rev;
+    sha256 = "01hpb6cvq8cw21ka74jllggkv5pavc0sbl1207x32gzxslw3gsvy";
+  };
+
+  meta = with stdenv.lib; {
+    description = "File synchronization on top of ipfs with git like interface and FUSE filesystem";
+    homepage = https://github.com/sahib/brig;
+    license = licenses.agpl3;
+    platforms = platforms.unix;
+    maintainers = with maintainers; [ offline ];
+  };
+}