Add sas RSA key

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-03-14 10:17:32 +00:00
parent e4ff6f13b1
commit 0cc1e79966
5 changed files with 53 additions and 7 deletions

View File

@@ -0,0 +1,23 @@
{
pkgs,
inputs,
system,
...
}:
# AUTO-UPDATE: echo "Warning: Package using custom fetcher cannot be automatically updated." >&2
pkgs.stdenv.mkDerivation rec {
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
'';
}