a0159dee8e
URLs to http://nix.cs.uu.nl/dist/tarballs. With content-addressable mirror support (r9190, NIXPKGS-70) this is no longer necessary: fetchurl will try to download from that location automatically. So we can keep the original URLs. svn path=/nixpkgs/trunk/; revision=9192
13 lines
309 B
Nix
13 lines
309 B
Nix
{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";
|
|
};
|
|
buildInputs = [ncurses];
|
|
inherit ncurses;
|
|
}
|