2419882f93
https://github.com/miniflux/v2/releases/tag/2.0.47 https://github.com/miniflux/v2/releases/tag/2.0.48
40 lines
983 B
Nix
40 lines
983 B
Nix
{ lib, buildGoModule, fetchFromGitHub, installShellFiles, nixosTests }:
|
|
|
|
let
|
|
pname = "miniflux";
|
|
version = "2.0.48";
|
|
|
|
in buildGoModule {
|
|
inherit pname version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = "v2";
|
|
rev = version;
|
|
sha256 = "sha256-g2Cnkf022aU/kUkb6N8huB+SFY60uNxyI9BVEycl37c=";
|
|
};
|
|
|
|
vendorHash = "sha256-d4/oDvMRZtetZ7RyCHVnPqA78yPVFyw4UhjfPD1XuMo=";
|
|
|
|
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 ];
|
|
};
|
|
}
|