nixpkgs/pkgs/by-name/in/intune-portal/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

114 lines
2.9 KiB
Nix
Raw Normal View History

2023-03-17 11:37:05 +03:00
{ stdenv
, lib
, fetchurl
, dpkg
, libuuid
, xorg
, curlMinimal
, openssl
, libsecret
, webkitgtk
, libsoup
, gtk3
, atk
, pango
, glib
, sqlite
, zlib
, systemd
, msalsdk-dbusclient
, pam
, dbus
2023-03-17 11:39:03 +03:00
, nixosTests
2023-03-17 11:37:05 +03:00
}:
stdenv.mkDerivation rec {
pname = "intune-portal";
version = "1.2404.25-jammy";
2023-03-17 11:37:05 +03:00
src = fetchurl {
url = "https://packages.microsoft.com/ubuntu/22.04/prod/pool/main/i/${pname}/${pname}_${version}_amd64.deb";
hash = "sha256-ZRJdhhDwXeOjIx7Ml4VvPUOotnJQ9f73nsYzgm6SQC8=";
2023-03-17 11:37:05 +03:00
};
nativeBuildInputs = [ dpkg ];
buildPhase =
let
libPath = {
intune = lib.makeLibraryPath [
stdenv.cc.cc.lib
libuuid
xorg.libX11
curlMinimal
openssl
libsecret
webkitgtk
libsoup
gtk3
atk
glib
pango
sqlite
zlib
systemd
msalsdk-dbusclient
dbus
];
pam = lib.makeLibraryPath [ pam ];
};
in
''
runHook preBuild
patchelf --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) --set-rpath ${libPath.intune} opt/microsoft/intune/bin/intune-portal
patchelf --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) --set-rpath ${libPath.intune} opt/microsoft/intune/bin/intune-agent
patchelf --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) --set-rpath ${libPath.intune} opt/microsoft/intune/bin/intune-daemon
patchelf --set-rpath ${libPath.pam} ./usr/lib/x86_64-linux-gnu/security/pam_intune.so
runHook postBuild
'';
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp -a opt/microsoft/intune/bin/* $out/bin/
cp -a usr/share $out
cp -a lib $out
mkdir -p $out/lib/security
cp -a ./usr/lib/x86_64-linux-gnu/security/pam_intune.so $out/lib/security/
cp -a usr/lib/tmpfiles.d $out/lib
substituteInPlace $out/share/applications/intune-portal.desktop \
--replace /opt/microsoft/intune/bin/intune-portal $out/bin/intune-portal
substituteInPlace $out/lib/systemd/user/intune-agent.service \
--replace \
ExecStart=/opt/microsoft/intune/bin/intune-agent \
ExecStart=$out/bin/intune-agent
substituteInPlace $out/lib/systemd/system/intune-daemon.service \
--replace \
ExecStart=/opt/microsoft/intune/bin/intune-daemon \
ExecStart=$out/bin/intune-daemon
runHook postInstall
'';
# Without this network requests fail
dontPatchELF = true;
2023-03-17 11:39:03 +03:00
passthru = {
updateScript = ./update.sh;
tests = { inherit (nixosTests) intune; };
};
2023-03-17 11:37:05 +03:00
meta = with lib; {
description = "Microsoft Intune Portal allows you to securely access corporate apps, data, and resources";
homepage = "https://www.microsoft.com/";
license = licenses.unfree;
platforms = [ "x86_64-linux" ];
maintainers = with lib.maintainers; [ rhysmdnz ];
};
}