summaryrefslogtreecommitdiffstats
path: root/pkgs/development/libraries/aalib/default.nix
blob: f4717f66192b8677f0a0c2aa20253570af08724e (plain)
1
2
3
4
5
6
7
8
9
10
11
{stdenv, fetchurl, ncurses}:

stdenv.mkDerivation {
  name = "aalib-1.4rc4";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://surfnet.dl.sourceforge.net/sourceforge/aa-project/aalib-1.4rc4.tar.gz;
    md5 = "d5aa8e9eae07b7441298b5c30490f6a6";
  };
  inherit ncurses;
}