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
11 lines
256 B
Nix
11 lines
256 B
Nix
{stdenv, fetchurl, pcre, libpng}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "slang-2.0.5";
|
|
src = fetchurl {
|
|
url = ftp://space.mit.edu/pub/davis/slang/v2.0/slang-2.0.5.tar.bz2;
|
|
md5 = "8b6afa085f76b1be29825f0c470b6cad";
|
|
};
|
|
buildInputs = [pcre libpng];
|
|
}
|