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

26 lines
640 B
Nix
Raw Normal View History

{ lib, buildGoPackage, fetchFromGitHub }:
2019-03-02 16:56:10 +00:00
buildGoPackage rec {
pname = "brig";
2019-04-10 20:42:58 +00:00
version = "0.4.1";
2019-03-02 16:56:10 +00:00
rev = "v${version}";
goPackagePath = "github.com/sahib/brig";
subPackages = ["."];
src = fetchFromGitHub {
owner = "sahib";
repo = "brig";
inherit rev;
2019-04-10 20:42:58 +00:00
sha256 = "0gi39jmnzqrgj146yw8lcmgmvzx7ii1dgw4iqig7kx8c0jiqi600";
2019-03-02 16:56:10 +00:00
};
meta = with lib; {
2019-03-02 16:56:10 +00:00
description = "File synchronization on top of ipfs with git like interface and FUSE filesystem";
homepage = "https://github.com/sahib/brig";
2019-03-02 16:56:10 +00:00
license = licenses.agpl3;
platforms = platforms.unix;
maintainers = with maintainers; [ offline ];
};
}