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

stdenv.mkDerivation {
  name = "ncurses-5.5";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/ncurses-5.5.tar.gz;
    md5 = "e73c1ac10b4bfc46db43b2ddfd6244ef";
  };
}