linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / libjwt / default.nix
blob9c7d624e7f6e4dbaf5111786316534a1e435d948
1 { stdenv, lib, fetchFromGitHub, autoreconfHook, pkg-config, jansson, openssl }:
3 stdenv.mkDerivation rec {
4   pname = "libjwt";
5   version = "1.12.1";
7   src = fetchFromGitHub {
8     owner = "benmcollins";
9     repo = "libjwt";
10     rev = "v${version}";
11     sha256 = "1c69slf9k56gh0xcg6269v712ysm6wckracms4grdsc72xg6x7h2";
12   };
14   buildInputs = [ jansson openssl ];
15   nativeBuildInputs = [ autoreconfHook pkg-config ];
17   meta = with lib; {
18     homepage = "https://github.com/benmcollins/libjwt";
19     description = "JWT C Library";
20     license = licenses.mpl20;
21     maintainers = with maintainers; [ pnotequalnp ];
22     platforms = platforms.all;
23   };