Files
nixpkgs/pkgs/by-name/e-/e-imzo/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

55 lines
1.3 KiB
Nix

{
lib,
stdenvNoCC,
fetchurl,
jre8,
curl,
ccid,
pcsclite,
pcsc-tools,
writeShellScript,
}:
let
exec = writeShellScript "e-imzo" ''
cd "$(dirname "$0")/../lib/e-imzo"
${jre8}/bin/java -Dsun.security.smartcardio.library=${pcsclite.lib}/lib/libpcsclite.${stdenvNoCC.hostPlatform.extensions.sharedLibrary} -jar E-IMZO.jar
exit 0
'';
in
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "e-imzo";
version = "4.73";
src = fetchurl {
url = "https://cdn.xinux.uz/e-imzo/E-IMZO-v${finalAttrs.version}.tar.gz";
hash = "sha256-pkBpU0pyI1kmISNShhB17psLHmTZn3JdHbnRZCgLuGc==";
};
installPhase = ''
runHook preInstall
mkdir -p $out/bin $out/lib/e-imzo
install -m 755 -d $out/lib/e-imzo
install -m 644 ./E-IMZO.jar $out/lib/e-imzo/
install -m 644 ./E-IMZO.pem $out/lib/e-imzo/
install -m 644 ./truststore.jks $out/lib/e-imzo/
cp -r ./lib $out/lib/e-imzo/
install -m 755 "${exec}" $out/bin/e-imzo
runHook postInstall
'';
meta = {
description = "For uzbek state web identity proving & key signing";
mainProgram = "e-imzo";
platforms = with lib.platforms; linux ++ darwin;
homepage = "https://e-imzo.soliq.uz";
license = lib.licenses.unfree;
sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
teams = [ lib.teams.uzinfocom ];
};
})