nixpkgs/pkgs/servers/gemini/molly-brown/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
731 B
Nix
Raw Normal View History

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