nixpkgs/pkgs/applications/misc/pinfo/default.nix

46 lines
796 B
Nix
Raw Normal View History

2021-07-07 11:56:07 +00:00
{ lib
, autoreconfHook
, fetchFromGitHub
, gettext
, ncurses
, readline
, stdenv
, texinfo
}:
2021-07-07 11:56:07 +00:00
stdenv.mkDerivation rec {
pname = "pinfo";
version = "0.6.13";
2014-08-31 16:33:31 +00:00
2021-07-07 11:56:07 +00:00
src = fetchFromGitHub {
owner = "baszoetekouw";
repo = pname;
rev = "v${version}";
sha256 = "173d2p22irwiabvr4z6qvr6zpr6ysfkhmadjlyhyiwd7z62larvy";
};
2021-07-07 11:56:07 +00:00
nativeBuildInputs = [
autoreconfHook
];
2014-08-31 16:33:31 +00:00
2021-07-07 11:56:07 +00:00
buildInputs = [
gettext
texinfo
ncurses
readline
];
configureFlags = [
"--with-curses=${ncurses.dev}"
"--with-readline=${readline.dev}"
];
2014-08-31 16:33:31 +00:00
meta = with lib; {
2014-08-31 16:33:31 +00:00
description = "A viewer for info files";
2021-07-07 11:56:07 +00:00
homepage = "https://github.com/baszoetekouw/pinfo";
2014-08-31 16:33:31 +00:00
license = licenses.gpl2Plus;
platforms = platforms.unix;
2021-07-07 11:56:07 +00:00
maintainers = with maintainers; [ fab ];
2014-08-31 16:33:31 +00:00
};
}