brig: init at 0.3.0

This commit is contained in:
Jaka Hudoklin 2019-03-02 17:56:10 +01:00
parent e76edaefea
commit cdd8b9411c
No known key found for this signature in database
GPG Key ID: 916062A1C4748647
2 changed files with 27 additions and 0 deletions

View 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 ];
};
}

View File

@ -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 { };