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

stdenv.mkDerivation {
  name = "aalib-1.4rc4";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/aalib-1.4rc4.tar.gz;
    md5 = "d5aa8e9eae07b7441298b5c30490f6a6";
  };
  buildInputs = [ncurses];
  inherit ncurses;
}