about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking/brig/default.nix
blob: a56a586b82a19b7beb69cd8b0ebc7412e323a7aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "brig";
  version = "0.4.1";
  rev = "v${version}";

  goPackagePath = "github.com/sahib/brig";
  subPackages = ["."];

  src = fetchFromGitHub {
    owner = "sahib";
    repo = "brig";
    inherit rev;
    sha256 = "0gi39jmnzqrgj146yw8lcmgmvzx7ii1dgw4iqig7kx8c0jiqi600";
  };

  meta = with 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 ];
  };
}