depot/pkgs/applications/networking/scaleft/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

49 lines
1.3 KiB
Nix

{ lib, stdenv, fetchurl, rpmextract, patchelf, testers, scaleft }:
stdenv.mkDerivation rec {
pname = "scaleft";
version = "1.80.1";
src =
fetchurl {
url = "https://dist.scaleft.com/repos/rpm/stable/centos/9/x86_64/1.80.1/scaleft-client-tools-${version}-1.x86_64.rpm";
sha256 = "sha256-QrkqAgkplFF6Tp6FWKb2TJaqeOw8ec4zd9pymDP2IyY=";
};
nativeBuildInputs = [ patchelf rpmextract ];
libPath =
lib.makeLibraryPath
[ stdenv.cc stdenv.cc.cc ];
buildCommand = ''
mkdir -p $out/bin/
cd $out
rpmextract $src
patchelf \
--set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
usr/bin/sft
patchelf \
--set-rpath ${libPath} \
usr/bin/sft
ln -s $out/usr/bin/sft $out/bin/sft
chmod +x $out/bin/sft
patchShebangs $out
'';
passthru.tests.version = testers.testVersion {
package = scaleft;
command = "sft -v";
version = "sft version ${version}";
};
meta = with lib; {
description = "ScaleFT provides Zero Trust software which you can use to secure your internal servers and services";
homepage = "https://www.scaleft.com";
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = with maintainers; [ jloyet ];
platforms = [ "x86_64-linux" ];
mainProgram = "sft";
};
}