mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
a681ff90b7
Both nixos-unstable and nixos-23.11 now default to go 1.21 for buildGoModule, rendering the pin redundant.
39 lines
1013 B
Nix
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";
|
|
};
|
|
}
|