summary refs log tree commit diff
path: root/pkgs/applications/misc/pinfo/default.nix
blob: 9647349af5a2c437a0e386187d006c73015bd756 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl, ncurses}:

stdenv.mkDerivation {
  name = "pinfo-0.6.8";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/pinfo-0.6.8.tar.gz;
    md5 = "55feb4ebaa709b52bd00a15ed0fb52fb";
  };
  buildInputs = [ncurses];
}