12 stdenv.mkDerivation rec {
16 src = fetchFromGitHub {
20 sha256 = "sha256-vDvCxMpgCdteGvNxy2HCNRaxbhxOuTadL0nM2wkFHtk=";
23 nativeBuildInputs = [ autoreconfHook pkg-config doxygen ];
24 buildInputs = [ jansson openssl ];
25 nativeCheckInputs = [ check ];
28 "--with-jansson=${jansson}"
29 "--with-openssl=${openssl.dev}"
33 homepage = "https://github.com/zmartzone/cjose";
34 changelog = "https://github.com/zmartzone/cjose/blob/${version}/CHANGELOG.md";
35 description = "C library for Javascript Object Signing and Encryption. This is a maintained fork of the original project";
36 license = licenses.mit;
37 maintainers = with maintainers; [ midchildan ];
38 platforms = platforms.all;