Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 fetchzip, 4 buildDunePackage, 5 re, 6}: 7 8buildDunePackage rec { 9 pname = "ninja_utils"; 10 version = "0.9.0"; 11 12 minimalOCamlVersion = "4.12"; 13 14 src = fetchzip { 15 url = "https://github.com/CatalaLang/ninja_utils/archive/refs/tags/${version}.tar.gz"; 16 hash = "sha256-VSj1IXfczoI3lSAtOqQPIqsxX+HgyxKzlssKd7By/Lo="; 17 }; 18 19 propagatedBuildInputs = [ re ]; 20 21 meta = { 22 description = "Small library used to generate Ninja build files"; 23 homepage = "https://github.com/CatalaLang/ninja_utils"; 24 license = lib.licenses.asl20; 25 maintainers = [ ]; 26 }; 27}