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
14 lines
244 B
Nix
14 lines
244 B
Nix
{stdenv, fetchurl, ncurses}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "less-394";
|
|
|
|
src = fetchurl {
|
|
url = http://www.greenwoodsoftware.com/less/less-394.tar.gz;
|
|
md5 = "a9f072ccefa0d315b325f3e9cdbd4b97";
|
|
};
|
|
|
|
buildInputs = [ncurses];
|
|
|
|
}
|