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
151 lines
3.2 KiB
Nix
151 lines
3.2 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
makeWrapper,
|
|
stripJavaArchivesHook,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
gradle_8,
|
|
curl,
|
|
cryptopp,
|
|
fontconfig,
|
|
jre,
|
|
libxml2,
|
|
openssl,
|
|
pcsclite,
|
|
podofo_0_10,
|
|
ghostscript,
|
|
}:
|
|
|
|
let
|
|
pname = "cie-middleware-linux";
|
|
version = "1.5.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "M0rf30";
|
|
repo = "cie-middleware-linux";
|
|
tag = version;
|
|
hash = "sha256-2UMKxanF35oBNBtIqfU46QUYJwXiTU1xCrCMqzqetgI=";
|
|
};
|
|
|
|
gradle = gradle_8;
|
|
|
|
# Shared libraries needed by the Java application
|
|
libraries = lib.makeLibraryPath [ ghostscript ];
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
inherit pname src version;
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
stripJavaArchivesHook
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
gradle
|
|
];
|
|
|
|
buildInputs = [
|
|
cryptopp
|
|
fontconfig
|
|
podofo_0_10
|
|
openssl
|
|
pcsclite
|
|
curl
|
|
libxml2
|
|
];
|
|
|
|
postPatch = ''
|
|
# substitute the cieid command with this $out/bin/cieid
|
|
substituteInPlace libs/pkcs11/src/CSP/AbilitaCIE.cpp \
|
|
--replace 'file = "cieid"' 'file = "'$out'/bin/cieid"'
|
|
'';
|
|
|
|
# Note: we use pushd/popd to juggle between the
|
|
# libraries and the Java application builds.
|
|
preConfigure = "pushd libs";
|
|
|
|
mitmCache = gradle.fetchDeps {
|
|
inherit pname;
|
|
data = ./deps.json;
|
|
};
|
|
|
|
gradleFlags = [
|
|
"-Dorg.gradle.java.home=${jre}"
|
|
"--build-file"
|
|
"cie-java/build.gradle"
|
|
];
|
|
|
|
gradleBuildTask = "standalone";
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
ninjaBuildPhase
|
|
pushd ../..
|
|
gradleBuildPhase
|
|
popd
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
|
|
mesonCheckPhase
|
|
pushd ../..
|
|
gradleCheckPhase
|
|
popd
|
|
|
|
runHook postCheck
|
|
'';
|
|
|
|
postInstall = ''
|
|
popd
|
|
|
|
# Install the Java application
|
|
ls cie-java/build/libs/CIEID-standalone.jar
|
|
install -Dm755 cie-java/build/libs/CIEID-standalone.jar \
|
|
"$out/share/cieid/cieid.jar"
|
|
|
|
# Create a wrapper
|
|
mkdir -p "$out/bin"
|
|
makeWrapper "${jre}/bin/java" "$out/bin/cieid" \
|
|
--add-flags "-Djna.library.path='$out/lib:${libraries}'" \
|
|
--add-flags "-Dawt.useSystemAAFontSettings=gasp" \
|
|
--add-flags "-cp $out/share/cieid/cieid.jar" \
|
|
--add-flags "app.m0rf30.cieid.MainApplication"
|
|
|
|
# Install other files
|
|
install -Dm644 data/app.m0rf30.cieid.desktop -t "$out/share/applications"
|
|
install -Dm755 data/app.m0rf30.cieid.svg -t "$out/share/pixmaps"
|
|
install -Dm644 LICENSE "$out/share/licenses/cieid/LICENSE"
|
|
'';
|
|
|
|
preGradleUpdate = "cd ../..";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/M0Rf30/cie-middleware-linux";
|
|
description = "Middleware for the Italian Electronic Identity Card (CIE)";
|
|
longDescription = ''
|
|
Software for the usage of the Italian Electronic Identity Card (CIE).
|
|
Access to PA services, signing and verification of documents
|
|
|
|
Warning: this is an unofficial fork because the original software, as
|
|
distributed by the Italian government, is essentially lacking a build
|
|
system and is in violation of the license of the PoDoFo library.
|
|
'';
|
|
license = licenses.bsd3;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ rnhmjoj ];
|
|
};
|
|
}
|