Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 fetchFromGitHub, 4 buildDunePackage, 5 ocaml-migrate-parsetree, 6}: 7 8buildDunePackage rec { 9 pname = "ppx_tools_versioned"; 10 version = "5.4.0"; 11 12 duneVersion = "3"; 13 14 src = fetchFromGitHub { 15 owner = "ocaml-ppx"; 16 repo = pname; 17 rev = version; 18 sha256 = "07lnj4yzwvwyh5fhpp1dxrys4ddih15jhgqjn59pmgxinbnddi66"; 19 }; 20 21 propagatedBuildInputs = [ ocaml-migrate-parsetree ]; 22 23 meta = with lib; { 24 homepage = "https://github.com/let-def/ppx_tools_versioned"; 25 description = "Tools for authors of syntactic tools (such as ppx rewriters)"; 26 license = licenses.gpl2; 27 maintainers = [ ]; 28 }; 29}