mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 09:23:37 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
63 lines
1.6 KiB
Nix
63 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "brig";
|
|
version = "0.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sahib";
|
|
repo = "brig";
|
|
rev = "v${version}";
|
|
sha256 = "0gi39jmnzqrgj146yw8lcmgmvzx7ii1dgw4iqig7kx8c0jiqi600";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
subPackages = [ "." ];
|
|
|
|
ldflags =
|
|
[
|
|
"-s"
|
|
"-w"
|
|
]
|
|
++ lib.mapAttrsToList (n: v: "-X github.com/sahib/brig/version.${n}=${v}") {
|
|
Major = lib.versions.major version;
|
|
Minor = lib.versions.minor version;
|
|
Patch = lib.versions.patch version;
|
|
ReleaseType = "";
|
|
BuildTime = "1970-01-01T00:00:00+0000";
|
|
GitRev = src.rev;
|
|
};
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd brig \
|
|
--bash $src/autocomplete/bash_autocomplete \
|
|
--zsh $src/autocomplete/zsh_autocomplete
|
|
'';
|
|
|
|
# There are no tests for the brig executable.
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "File synchronization on top of IPFS with a git-like interface and a FUSE filesystem";
|
|
longDescription = ''
|
|
brig is a distributed and secure file synchronization tool with a version
|
|
control system. It is based on IPFS, written in Go and will feel familiar
|
|
to git users. Think of it as a swiss army knife for file synchronization
|
|
or as a peer to peer alternative to Dropbox.
|
|
'';
|
|
homepage = "https://brig.readthedocs.io";
|
|
changelog = "https://github.com/sahib/brig/releases/tag/${src.rev}";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ offline ];
|
|
mainProgram = "brig";
|
|
};
|
|
}
|