nixpkgs/pkgs/servers/miniflux/default.nix
emilylange a681ff90b7
miniflux: remove buildGoModule pin, replace let in with rec
Both nixos-unstable and nixos-23.11 now default to go 1.21 for
buildGoModule, rendering the pin redundant.
2023-12-17 19:49:32 +01:00

39 lines
1013 B
Nix

{ lib, buildGoModule, fetchFromGitHub, installShellFiles, nixosTests }:
buildGoModule rec {
pname = "miniflux";
version = "2.0.51";
src = fetchFromGitHub {
owner = "miniflux";
repo = "v2";
rev = "refs/tags/${version}";
hash = "sha256-gffiZOsHUYTDEjIdKUPyKbsdRKX890aG6GY72LYESkA=";
};
vendorHash = "sha256-yO4sNOkEDnM9eETE68C++dPnAfcoSMXznf5Nq4/iQmA=";
nativeBuildInputs = [ installShellFiles ];
checkFlags = [ "-skip=TestClient" ]; # skip client tests as they require network access
ldflags = [
"-s" "-w" "-X miniflux.app/v2/internal/version.Version=${version}"
];
postInstall = ''
mv $out/bin/miniflux.app $out/bin/miniflux
installManPage miniflux.1
'';
passthru.tests = nixosTests.miniflux;
meta = with lib; {
description = "Minimalist and opinionated feed reader";
homepage = "https://miniflux.app/";
license = licenses.asl20;
maintainers = with maintainers; [ rvolosatovs benpye emilylange ];
mainProgram = "miniflux";
};
}