8ded076ac0
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.
20 lines
507 B
Nix
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";
|
|
};
|
|
}
|