9 lines
207 B
Nix
9 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.
|
||
|
'';
|
||
|
}
|