cie-middleware-linux: init at 1.4.3.3
This commit is contained in:
@@ -0,0 +1,173 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, makeWrapper
|
||||
, strip-nondeterminism
|
||||
, meson
|
||||
, ninja
|
||||
, pkg-config
|
||||
, gradle
|
||||
, curl
|
||||
, cryptopp
|
||||
, fontconfig
|
||||
, jre
|
||||
, libxml2
|
||||
, openssl
|
||||
, pcsclite
|
||||
, podofo
|
||||
, ghostscript
|
||||
}:
|
||||
|
||||
let
|
||||
pname = "cie-middleware-linux";
|
||||
version = "1.4.3.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "M0rf30";
|
||||
repo = pname;
|
||||
# use the podofo-vanilla branch
|
||||
rev = "531acc54609eaeccbdd4ef881d7d7e7e0fe0af17";
|
||||
sha256 = "sha256-hUpEkiEQu0R+aCo4bfZfVLLib0o6v2RQJVIte3n+IAk=";
|
||||
};
|
||||
|
||||
# Shared libraries needed by the Java application
|
||||
libraries = lib.makeLibraryPath [ ghostscript ];
|
||||
|
||||
# Fixed-output derivation that fetches the Java dependencies
|
||||
javaDeps = stdenv.mkDerivation {
|
||||
pname = "cie-java-deps";
|
||||
inherit src version;
|
||||
|
||||
nativeBuildInputs = [ gradle ];
|
||||
|
||||
buildPhase = ''
|
||||
# Run the fetchDeps task
|
||||
export GRADLE_USER_HOME=$(mktemp -d)
|
||||
gradle --no-daemon -b cie-java/build.gradle fetchDeps
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
# Build a tree compatible with the maven repository format
|
||||
pushd "$GRADLE_USER_HOME/caches/modules-2/files-2.1"
|
||||
find -type f | awk -F/ -v OFS=/ -v out="$out" '{
|
||||
infile = $0
|
||||
gsub(/\./, "/", $2)
|
||||
system("install -m644 -D "infile" "out"/"$2"/"$3"/"$4"/"$6)
|
||||
}'
|
||||
popd
|
||||
'';
|
||||
|
||||
outputHashAlgo = "sha256";
|
||||
outputHashMode = "recursive";
|
||||
outputHash = "sha256-gsb4aH/au7IDh1PX/qY+8o7CmjKJUHpmEa0vYhbAnP0=";
|
||||
};
|
||||
|
||||
in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
inherit pname src version;
|
||||
|
||||
hardeningDisable = [ "format" ];
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
nativeBuildInputs = [
|
||||
makeWrapper
|
||||
meson
|
||||
ninja
|
||||
pkg-config
|
||||
gradle
|
||||
strip-nondeterminism
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
cryptopp
|
||||
fontconfig
|
||||
podofo
|
||||
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";
|
||||
|
||||
postBuild = ''
|
||||
popd
|
||||
|
||||
# Use the packages in javaDeps for both plugins and dependencies
|
||||
localRepo="maven { url uri('${javaDeps}') }"
|
||||
sed -i cie-java/settings.gradle -e "1i \
|
||||
pluginManagement { repositories { $localRepo } }"
|
||||
substituteInPlace cie-java/build.gradle \
|
||||
--replace 'mavenCentral()' "$localRepo"
|
||||
|
||||
# Build the Java application
|
||||
export GRADLE_USER_HOME=$(mktemp -d)
|
||||
gradle standalone \
|
||||
--no-daemon \
|
||||
--offline \
|
||||
--parallel \
|
||||
--info -Dorg.gradle.java.home=${jre} \
|
||||
--build-file cie-java/build.gradle
|
||||
|
||||
pushd libs/build
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
popd
|
||||
|
||||
# Install the Java application
|
||||
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=on' \
|
||||
--add-flags "-cp $out/share/cieid/cieid.jar" \
|
||||
--add-flags "it.ipzs.cieid.MainApplication"
|
||||
|
||||
# Install other files
|
||||
install -Dm644 data/cieid.desktop "$out/share/applications/cieid.desktop"
|
||||
install -Dm755 data/logo.png "$out/share/pixmaps/cieid.png"
|
||||
install -Dm644 LICENSE "$out/share/licenses/cieid/LICENSE"
|
||||
'';
|
||||
|
||||
postFixup = ''
|
||||
# Move static libraries to the dev output
|
||||
mv -t "$dev/lib" "$out/lib/"*.a
|
||||
|
||||
# Make the jar deterministic (mainly, sorting its files)
|
||||
strip-nondeterminism "$out/share/cieid/cieid.jar"
|
||||
'';
|
||||
|
||||
passthru = { inherit javaDeps; };
|
||||
|
||||
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;
|
||||
# Note: fails due to a lot of broken type conversions
|
||||
badPlatforms = platforms.darwin;
|
||||
maintainers = with maintainers; [ rnhmjoj ];
|
||||
};
|
||||
}
|
||||
@@ -1263,6 +1263,8 @@ with pkgs;
|
||||
|
||||
bikeshed = python3Packages.callPackage ../applications/misc/bikeshed { };
|
||||
|
||||
cie-middleware-linux = callPackage ../tools/security/cie-middleware-linux { };
|
||||
|
||||
cidrgrep = callPackage ../tools/text/cidrgrep { };
|
||||
|
||||
cope = callPackage ../tools/misc/cope { };
|
||||
|
||||
Reference in New Issue
Block a user