mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 22:43:01 +00:00
ocamlPackages.ninja_utils: init at 0.9.0 (#288786)
This commit is contained in:
parent
7c5f676c76
commit
fad5cd87f0
22
pkgs/development/ocaml-modules/ninja_utils/default.nix
Normal file
22
pkgs/development/ocaml-modules/ninja_utils/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ lib, fetchzip, buildDunePackage, re }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "ninja_utils";
|
||||
version = "0.9.0";
|
||||
|
||||
minimalOCamlVersion = "4.12";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://github.com/CatalaLang/ninja_utils/archive/refs/tags/${version}.tar.gz";
|
||||
hash = "sha256-VSj1IXfczoI3lSAtOqQPIqsxX+HgyxKzlssKd7By/Lo=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ re ];
|
||||
|
||||
meta = {
|
||||
description = "Small library used to generate Ninja build files";
|
||||
homepage = "https://github.com/CatalaLang/ninja_utils";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
@ -1194,6 +1194,8 @@ let
|
||||
|
||||
netchannel = callPackage ../development/ocaml-modules/netchannel { };
|
||||
|
||||
ninja_utils = callPackage ../development/ocaml-modules/ninja_utils { };
|
||||
|
||||
nonstd = callPackage ../development/ocaml-modules/nonstd { };
|
||||
|
||||
note = callPackage ../development/ocaml-modules/note { };
|
||||
|
Loading…
Reference in New Issue
Block a user