nixpkgs/pkgs/tools/networking/netrw/default.nix
aszlig 8ded076ac0 Add new package netrw, version 1.3.2.
The upstream URL unfortunately wasn't available at this time, so I provided an
alternate mirror. I checksummed the file against the hashes from various
distributions in order to make sure it's the right one.
2012-07-20 01:45:49 +02:00

20 lines
507 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "netrw-${version}";
version = "1.3.2";
src = fetchurl {
urls = [
"http://mamuti.net/files/netrw/netrw-${version}.tar.bz2"
"http://www.sourcefiles.org/Networking/FTP/Other/netrw-${version}.tar.bz2"
];
sha256 = "1gnl80i5zkyj2lpnb4g0q0r5npba1x6cnafl2jb3i3pzlfz1bndr";
};
meta = {
description = "A simple tool for transporting data over the network.";
homepage = "http://mamuti.net/netrw/index.en.html";
};
}