brig: init at 0.3.0
This commit is contained in:
parent
e76edaefea
commit
cdd8b9411c
25
pkgs/applications/networking/brig/default.nix
Normal file
25
pkgs/applications/networking/brig/default.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
@ -16351,6 +16351,8 @@ in
|
||||
|
||||
notmuch-bower = callPackage ../applications/networking/mailreaders/notmuch-bower { };
|
||||
|
||||
brig = callPackages ../applications/networking/brig { };
|
||||
|
||||
bristol = callPackage ../applications/audio/bristol { };
|
||||
|
||||
bs1770gain = callPackage ../applications/audio/bs1770gain { };
|
||||
|
Loading…
Reference in New Issue
Block a user