Files
nixpkgs/pkgs/by-name/mo/molly-brown/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

34 lines
699 B
Nix

{
lib,
buildGoModule,
fetchgit,
nixosTests,
}:
buildGoModule {
pname = "molly-brown";
version = "unstable-2023-02-10";
src = fetchgit {
url = "https://tildegit.org/solderpunk/molly-brown.git";
rev = "56d8dde14abc90b784b7844602f12100af9756e0";
hash = "sha256-kfopRyCrDaiVjKYseyWacIT9MJ8PzB8LAs6YMgYqCrs=";
};
vendorHash = "sha256-czfHnXS9tf5vQQNXhWH7DStmhsorSc4Di/yZuv4LHRk=";
ldflags = [
"-s"
"-w"
];
passthru.tests.basic = nixosTests.molly-brown;
meta = with lib; {
description = "Full-featured Gemini server";
mainProgram = "molly-brown";
homepage = "https://tildegit.org/solderpunk/molly-brown";
license = licenses.bsd2;
};
}