nixpkgs/pkgs/servers/miniflux/default.nix

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

48 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, fetchpatch2, installShellFiles, nixosTests }:
2018-10-28 02:18:11 +00:00
buildGoModule rec {
2018-12-20 00:27:14 +00:00
pname = "miniflux";
version = "2.1.4";
2018-10-28 02:18:11 +00:00
src = fetchFromGitHub {
owner = "miniflux";
2021-12-17 10:06:22 +00:00
repo = "v2";
rev = "refs/tags/${version}";
hash = "sha256-1EH8KtKdAssxLk0IyhJsbrFU1obDTvmaGtFyLVlnOdQ=";
2018-10-28 02:18:11 +00:00
};
2019-01-21 22:07:38 +00:00
patches = [
(fetchpatch2 {
# Fix panic during YouTube channel feed discovery
name = "miniflux-pr2742.patch";
url = "https://github.com/miniflux/v2/commit/79ea9e28b5a8c09f4d1dcbf31b661fb5f8e85e6a.patch";
hash = "sha256-BZPv83QsJ6iJs12FLALfTN//VZL/BfGkXs3Pzn9cGeU=";
})
];
vendorHash = "sha256-kr2qCKuwp6Fpr0zEjggqk4Mff3V9pxGLU71lRhdRrW8=";
2018-10-28 02:18:11 +00:00
2020-05-25 23:00:00 +00:00
nativeBuildInputs = [ installShellFiles ];
checkFlags = [ "-skip=TestClient" ]; # skip client tests as they require network access
2018-10-28 02:18:11 +00:00
2021-08-26 06:45:51 +00:00
ldflags = [
"-s" "-w" "-X miniflux.app/v2/internal/version.Version=${version}"
2021-08-26 06:45:51 +00:00
];
2018-10-28 02:18:11 +00:00
postInstall = ''
mv $out/bin/miniflux.app $out/bin/miniflux
installManPage miniflux.1
2018-10-28 02:18:11 +00:00
'';
passthru.tests = nixosTests.miniflux;
meta = with lib; {
2018-12-20 00:27:14 +00:00
description = "Minimalist and opinionated feed reader";
homepage = "https://miniflux.app/";
2018-10-28 02:18:11 +00:00
license = licenses.asl20;
2023-12-17 18:46:47 +00:00
maintainers = with maintainers; [ rvolosatovs benpye emilylange ];
2023-11-23 21:09:35 +00:00
mainProgram = "miniflux";
2018-10-28 02:18:11 +00:00
};
}