8 lines
207 B
Nix
8 lines
207 B
Nix
with import <nixpkgs> {};
|
|
stdenv.mkDerivation {
|
|
name = "lftp";
|
|
buildInputs = [ lftp ];
|
|
shellHook = ''
|
|
echo NOTE: Deploying to ibisc.univ-evry.fr is only possible from inside the lab network.
|
|
'';
|
|
}
|