nixpkgs/pkgs/applications/misc/fead/default.nix
Peder Bergebakken Sundt cd327072c5
Merge pull request #279959 from McSinyx/fead-1
fead: 0.1.3 -> 1.0.0
2024-05-01 03:51:59 +02:00

37 lines
916 B
Nix

{ lib, stdenv, fetchzip, python3, help2man }:
stdenv.mkDerivation rec {
pname = "fead";
version = "1.0.0";
src = fetchzip {
url = "https://trong.loang.net/~cnx/fead/snapshot/fead-${version}.tar.gz";
hash = "sha256-cbU379Zz+mwRqEHiDUlGvWheLkkr0YidHeVs/1Leg38=";
};
nativeBuildInputs = [ help2man ];
buildInputs = [ python3 ];
# Needed for man page generation in build phase
postPatch = ''
patchShebangs src/fead.py
'';
makeFlags = [ "PREFIX=$(out)" ];
# Already done in postPatch phase
dontPatchShebangs = true;
# The package has no tests.
doCheck = false;
meta = with lib; {
description = "Advert generator from web feeds";
homepage = "https://trong.loang.net/~cnx/fead";
license = licenses.agpl3Plus;
changelog = "https://trong.loang.net/~cnx/fead/tag?h=${version}";
maintainers = with maintainers; [ McSinyx ];
mainProgram = "fead";
};
}