23 lines
409 B
Nix
23 lines
409 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
system,
|
|
...
|
|
}:
|
|
pkgs.stdenv.mkDerivation {
|
|
pname = "ssh-known-hosts-sas-artifact";
|
|
version = "0-unstable-2025-03-14";
|
|
|
|
src = inputs.self.lib.${system}.fetchers.sshKnownHosts {
|
|
host = "artifactlfs.unx.sas.com";
|
|
port = 1339;
|
|
hash = "sha256-r3RaTj1GClvD0NwMwgNyfLYNBBjtGFu72CqB1L7f6wQ=";
|
|
};
|
|
|
|
phases = [ "installPhase" ];
|
|
|
|
installPhase = ''
|
|
cp $src $out
|
|
'';
|
|
}
|