about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/pinfo/default.nix
blob: b0fc64a1a5e900d3909410abb6b2686d2b9a31f4 (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
37
38
39
40
41
42
43
44
45
{ lib
, autoreconfHook
, fetchFromGitHub
, gettext
, ncurses
, readline
, stdenv
, texinfo
}:

stdenv.mkDerivation rec {
  pname = "pinfo";
  version = "0.6.13";

  src = fetchFromGitHub {
    owner = "baszoetekouw";
    repo = pname;
    rev = "v${version}";
    sha256 = "173d2p22irwiabvr4z6qvr6zpr6ysfkhmadjlyhyiwd7z62larvy";
  };

  nativeBuildInputs = [
    autoreconfHook
  ];

  buildInputs = [
    gettext
    texinfo
    ncurses
    readline
  ];

  configureFlags = [
    "--with-curses=${ncurses.dev}"
    "--with-readline=${readline.dev}"
  ];

  meta = with lib; {
    description = "A viewer for info files";
    homepage = "https://github.com/baszoetekouw/pinfo";
    license = licenses.gpl2Plus;
    platforms = platforms.unix;
    maintainers = with maintainers; [ fab ];
  };
}