lol

ocamlPackages.ninja_utils: init at 0.9.0 (#288786)

authored by

Maxime Dénès and committed by
GitHub
fad5cd87 7c5f676c

+24
+22
pkgs/development/ocaml-modules/ninja_utils/default.nix
··· 1 + { lib, fetchzip, buildDunePackage, re }: 2 + 3 + buildDunePackage rec { 4 + pname = "ninja_utils"; 5 + version = "0.9.0"; 6 + 7 + minimalOCamlVersion = "4.12"; 8 + 9 + src = fetchzip { 10 + url = "https://github.com/CatalaLang/ninja_utils/archive/refs/tags/${version}.tar.gz"; 11 + hash = "sha256-VSj1IXfczoI3lSAtOqQPIqsxX+HgyxKzlssKd7By/Lo="; 12 + }; 13 + 14 + propagatedBuildInputs = [ re ]; 15 + 16 + meta = { 17 + description = "Small library used to generate Ninja build files"; 18 + homepage = "https://github.com/CatalaLang/ninja_utils"; 19 + license = lib.licenses.asl20; 20 + maintainers = [ ]; 21 + }; 22 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 1194 1194 1195 1195 netchannel = callPackage ../development/ocaml-modules/netchannel { }; 1196 1196 1197 + ninja_utils = callPackage ../development/ocaml-modules/ninja_utils { }; 1198 + 1197 1199 nonstd = callPackage ../development/ocaml-modules/nonstd { }; 1198 1200 1199 1201 note = callPackage ../development/ocaml-modules/note { };