1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

add pinfo, a viewer for GNU info files for people who are used to sensible navigation in applications

svn path=/nixpkgs/trunk/; revision=4278
This commit is contained in:
Armijn Hemel 2005-11-13 15:02:31 +00:00
parent 174a51334f
commit 79036a1c87

View file

@ -0,0 +1,10 @@
{stdenv, fetchurl, ncurses}:
stdenv.mkDerivation {
name = "pinfo-0.6.8";
src = fetchurl {
url = http://dione.cc/~pborys/software/pinfo/pinfo-0.6.8.tar.gz;
md5 = "55feb4ebaa709b52bd00a15ed0fb52fb";
};
buildInputs = [ncurses];
}