5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
36 lines
916 B
Nix
36 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";
|
|
};
|
|
}
|