add appgate for osprey

This commit is contained in:
Tyler Starr 2024-10-24 15:06:22 -07:00
parent 3beb734431
commit 869a864a9b
2 changed files with 9 additions and 0 deletions

View File

@ -25,6 +25,7 @@
docker-compose
podman-tui
dive
appgate-sdp
];
# Modules

View File

@ -0,0 +1,8 @@
self: super: {
appgate-sdp = super.appgate-sdp.overrideAttrs (old: {
src = super.fetchurl {
url = "https://bin.appgate-sdp.com/6.4/client/appgate-sdp_6.4.0_amd64.deb";
sha256 = "sha256-0h6Mz3B7fADGL5tGbrKNYpVIAvRu7Xx0n9OvjOeVCds=";
};
});
}