2014-08-31 16:33:31 +00:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, gettext, texinfo, ncurses, readline }:
|
2005-11-13 15:02:31 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2014-08-31 16:33:31 +00:00
|
|
|
name = "pinfo-0.6.10";
|
|
|
|
|
2005-11-13 15:02:31 +00:00
|
|
|
src = fetchurl {
|
2014-08-31 16:33:31 +00:00
|
|
|
# homepage needed you to login to download the tarball
|
2018-02-08 21:38:06 +00:00
|
|
|
url = "http://src.fedoraproject.org/repo/pkgs/pinfo/pinfo-0.6.10.tar.bz2"
|
2014-08-31 16:33:31 +00:00
|
|
|
+ "/fe3d3da50371b1773dfe29bf870dbc5b/pinfo-0.6.10.tar.bz2";
|
|
|
|
sha256 = "0p8wyrpz9npjcbx6c973jspm4c3xz4zxx939nngbq49xqah8088j";
|
2005-11-13 15:02:31 +00:00
|
|
|
};
|
2007-12-31 23:38:10 +00:00
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ gettext texinfo ncurses readline ];
|
2014-08-31 16:33:31 +00:00
|
|
|
|
2016-04-16 17:46:17 +00:00
|
|
|
configureFlags = [ "--with-curses=${ncurses.dev}" "--with-readline=${readline.dev}" ];
|
2014-08-31 16:33:31 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A viewer for info files";
|
|
|
|
homepage = https://alioth.debian.org/projects/pinfo/;
|
|
|
|
license = licenses.gpl2Plus;
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = platforms.unix;
|
2014-08-31 16:33:31 +00:00
|
|
|
};
|
2005-11-13 15:02:31 +00:00
|
|
|
}
|
2014-08-31 16:33:31 +00:00
|
|
|
|