Merge pull request #56718 from xtruder/pkgs/brig/init

brig: init at 0.3.0
This commit is contained in:
Jaka Hudoklin 2019-03-26 19:42:31 +01:00 committed by GitHub
commit 5c74e42bec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -16487,6 +16487,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 { };