mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:54:05 +00:00
25 lines
647 B
Nix
25 lines
647 B
Nix
{ stdenv, lib, fetchFromGitHub, autoreconfHook, pkg-config, jansson, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libjwt";
|
|
version = "1.15.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "benmcollins";
|
|
repo = "libjwt";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-fdMrJaD0jq4aQtxNLUvPVP6dWMwp3Mz4TuW2zX6r7QA=";
|
|
};
|
|
|
|
buildInputs = [ jansson openssl ];
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/benmcollins/libjwt";
|
|
description = "JWT C Library";
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ pnotequalnp ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|