Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildDunePackage, 4 fetchFromGitLab, 5 iri, 6 re, 7 sedlex, 8 uutf, 9}: 10 11buildDunePackage rec { 12 pname = "xtmpl"; 13 version = "0.19.0"; 14 duneVersion = "3"; 15 src = fetchFromGitLab { 16 domain = "framagit.org"; 17 owner = "zoggy"; 18 repo = "xtmpl"; 19 rev = version; 20 sha256 = "sha256:0vwj0aayg60wm98d91fg3hmj90730liljy4cn8771dpxvz8m07bw"; 21 }; 22 23 propagatedBuildInputs = [ 24 iri 25 re 26 sedlex 27 uutf 28 ]; 29 30 meta = with lib; { 31 description = "XML templating library for OCaml"; 32 homepage = "https://www.good-eris.net/xtmpl/"; 33 license = licenses.lgpl3; 34 maintainers = with maintainers; [ regnat ]; 35 }; 36}