nixpkgs/pkgs/development/libraries/libdigidocpp/default.nix

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

37 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, fetchpatch, cmake, minizip, pcsclite, opensc, openssl
, xercesc, xml-security-c, pkg-config, xsd, zlib, xalanc, xxd }:
2016-04-26 20:12:55 +00:00
stdenv.mkDerivation rec {
version = "3.14.10";
pname = "libdigidocpp";
2016-04-26 20:12:55 +00:00
src = fetchurl {
2018-06-21 08:38:33 +00:00
url = "https://github.com/open-eid/libdigidocpp/releases/download/v${version}/libdigidocpp-${version}.tar.gz";
hash = "sha256-n/+R4ho1Qcft3YSKE12oxZjbFHAsUDwoLFNuk5GXf5c=";
2016-04-26 20:12:55 +00:00
};
nativeBuildInputs = [ cmake pkg-config xxd ];
2018-06-21 08:38:33 +00:00
buildInputs = [
2021-08-14 11:42:06 +00:00
minizip pcsclite opensc openssl xercesc
2018-06-21 08:38:33 +00:00
xml-security-c xsd zlib xalanc
];
2016-04-26 20:12:55 +00:00
outputs = [ "out" "lib" "dev" "bin" ];
# libdigidocpp.so's `PKCS11Signer::PKCS11Signer()` dlopen()s "opensc-pkcs11.so"
# itself, so add OpenSC to its DT_RUNPATH after the fixupPhase shrinked it.
# https://github.com/open-eid/cmake/pull/35 might be an alternative.
postFixup = ''
patchelf --add-rpath ${opensc}/lib/pkcs11 $lib/lib/libdigidocpp.so
'';
meta = with lib; {
2016-04-26 20:12:55 +00:00
description = "Library for creating DigiDoc signature files";
homepage = "http://www.id.ee/";
2021-08-14 11:42:06 +00:00
license = licenses.lgpl21Plus;
2016-04-26 20:12:55 +00:00
platforms = platforms.linux;
maintainers = [ maintainers.jagajaga ];
};
}