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

26 lines
614 B
Nix
Raw Permalink Normal View History

{
lib,
fetchurl,
buildDunePackage,
ezjsonm,
}:
buildDunePackage rec {
pname = "ezjsonm-encoding";
version = "2.1.0";
src = fetchurl {
url = "https://github.com/lthms/ezjsonm-encoding/releases/download/${version}/ezjsonm-encoding-${version}.tbz";
hash = "sha256-qR8Nn3pL1K33qTBLkElaqsTjLjudtI8IMe0GEK08qW4=";
};
propagatedBuildInputs = [ ezjsonm ];
meta = {
description = "Encoding combinators a la Data_encoding for Ezjsonm";
homepage = "https://github.com/lthms/ezjsonmi-encoding";
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ fgaz ];
};
}