mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
36 lines
956 B
Nix
36 lines
956 B
Nix
{ stdenv, fetchurl
|
|
, checksumType ? "built-in"
|
|
, libmhash ? null
|
|
, openssl ? null
|
|
}:
|
|
|
|
assert checksumType == "mhash" -> libmhash != null;
|
|
assert checksumType == "openssl" -> openssl != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "netrw";
|
|
version = "1.3.2";
|
|
|
|
configureFlags = [
|
|
"--with-checksum=${checksumType}"
|
|
];
|
|
|
|
buildInputs = stdenv.lib.optional (checksumType == "mhash") libmhash
|
|
++ stdenv.lib.optional (checksumType == "openssl") openssl;
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"https://mamuti.net/files/netrw/netrw-${version}.tar.bz2"
|
|
"http://www.sourcefiles.org/Networking/FTP/Other/netrw-${version}.tar.bz2"
|
|
];
|
|
sha256 = "1gnl80i5zkyj2lpnb4g0q0r5npba1x6cnafl2jb3i3pzlfz1bndr";
|
|
};
|
|
|
|
meta = {
|
|
description = "Simple tool for transporting data over the network";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
homepage = https://mamuti.net/netrw/index.en.html;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|