Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 fetchurl, 4 buildDunePackage, 5 ezjsonm, 6}: 7 8buildDunePackage rec { 9 pname = "ezjsonm-encoding"; 10 version = "2.1.0"; 11 12 src = fetchurl { 13 url = "https://github.com/lthms/ezjsonm-encoding/releases/download/${version}/ezjsonm-encoding-${version}.tbz"; 14 hash = "sha256-qR8Nn3pL1K33qTBLkElaqsTjLjudtI8IMe0GEK08qW4="; 15 }; 16 17 propagatedBuildInputs = [ ezjsonm ]; 18 19 meta = { 20 description = "Encoding combinators a la Data_encoding for Ezjsonm"; 21 homepage = "https://github.com/lthms/ezjsonmi-encoding"; 22 license = lib.licenses.mpl20; 23 maintainers = with lib.maintainers; [ fgaz ]; 24 }; 25}