nixpkgs/pkgs/servers/miniflux/default.nix

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

50 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, buildGo121Module, fetchFromGitHub, fetchpatch, installShellFiles, nixosTests }:
2018-10-28 02:18:11 +00:00
let
2018-12-20 00:27:14 +00:00
pname = "miniflux";
version = "2.0.50";
2023-10-16 12:08:28 +00:00
in buildGo121Module {
inherit pname version;
2018-10-28 02:18:11 +00:00
src = fetchFromGitHub {
owner = pname;
2021-12-17 10:06:22 +00:00
repo = "v2";
2019-01-21 22:07:38 +00:00
rev = version;
sha256 = "sha256-+oNF/Zwc1Z/cu3SQC/ZTekAW5Qef9RKrdszunLomGII=";
2018-10-28 02:18:11 +00:00
};
2019-01-21 22:07:38 +00:00
patches = [
(fetchpatch {
# https://github.com/miniflux/v2/pull/2193, remove after 2.0.50
name = "miniflux-user-agent-regression.patch";
url = "https://github.com/miniflux/v2/commit/7a03291442a4e35572c73a2fcfe809fa8e03063e.patch";
hash = "sha256-tJ1l5rqD0x0xtQs+tDwpFHOY+7k6X02bkwVJo6RAdb8=";
})
];
vendorHash = "sha256-jLyjQ+w/QS9uA0pGWF2X6dEfOifcI2gC2sgi1STEzpU=";
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;
2019-01-21 22:07:38 +00:00
maintainers = with maintainers; [ rvolosatovs benpye ];
2018-10-28 02:18:11 +00:00
};
}