mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
29 lines
790 B
Nix
29 lines
790 B
Nix
{ lib
|
|
, fetchFromSourcehut
|
|
, buildGoModule
|
|
}: buildGoModule rec {
|
|
pname = "betula";
|
|
version = "1.1.0";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~bouncepaw";
|
|
repo = "betula";
|
|
rev = "v${version}";
|
|
hash = "sha256-MH6YeWG94YVBgx5Es3oMJ9A/hAPPBXpAcIdCJV3HX78=";
|
|
};
|
|
vendorHash = "sha256-wiMIhoSO7nignNWY16OpDYZCguRbcEwwO/HggKSC5jM=";
|
|
|
|
CGO_ENABLED = 1;
|
|
# These tests use internet, so are failing in Nix build.
|
|
# See also: https://todo.sr.ht/~bouncepaw/betula/91
|
|
checkFlags = "-skip=TestTitles|TestHEntries";
|
|
|
|
meta = with lib; {
|
|
description = "Single-user self-hosted bookmarking software";
|
|
mainProgram = "betula";
|
|
homepage = "https://betula.mycorrhiza.wiki/";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ GoldsteinE ];
|
|
};
|
|
}
|