Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
42 lines
853 B
Nix
42 lines
853 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
nixosTests,
|
|
olm,
|
|
}:
|
|
|
|
buildGoModule {
|
|
pname = "go-neb";
|
|
version = "unstable-2021-07-21";
|
|
src = fetchFromGitHub {
|
|
owner = "matrix-org";
|
|
repo = "go-neb";
|
|
rev = "8916c80f8ce1732f64b50f9251242ca189082e76";
|
|
sha256 = "sha256-kuH4vbvS4G1bczxUdY4bd4oL4pIZzuueUxdEp4xuzJM=";
|
|
};
|
|
|
|
subPackages = [ "." ];
|
|
|
|
buildInputs = [ olm ];
|
|
|
|
vendorHash = "sha256-5Vg7aUkqiFIQuxmsDOJjvXoeA5NjMoBoD0XBhC+o4GA=";
|
|
|
|
doCheck = false;
|
|
|
|
passthru.tests.go-neb = nixosTests.go-neb;
|
|
|
|
meta = with lib; {
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
description = "Extensible matrix bot written in Go";
|
|
mainProgram = "go-neb";
|
|
homepage = "https://github.com/matrix-org/go-neb";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [
|
|
hexa
|
|
maralorn
|
|
];
|
|
};
|
|
}
|