about summary refs log tree commit diff
path: root/pkgs/applications/misc/fead/default.nix
blob: d18ff21801d77e67e88bf886269909000fd947c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ 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";
  };
}