21 lines
478 B
Nix
21 lines
478 B
Nix
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||
|
|
||
|
buildGoModule rec {
|
||
|
pname = "brig";
|
||
|
version = "0.5.3pre";
|
||
|
|
||
|
subPackages = ["."];
|
||
|
patches = [
|
||
|
./default-repo-location.patch
|
||
|
./pin-ls-recursive.patch
|
||
|
];
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "sahib";
|
||
|
repo = "brig";
|
||
|
rev = "6b7eccf8fcbd907fc759f8ca8aa814df8499e2ed";
|
||
|
sha256 = "sha256-lCXSeTIZcIcVcblm9BTUMqTfxO7+BHYQNv6/RlPq14A=";
|
||
|
};
|
||
|
vendorSha256 = "sha256-pFrrMq7VFCwt8KRgJApCq8lPYv0P8hIUOxKJMN9QR0U=";
|
||
|
}
|