uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
17
pkgs/development/ocaml-modules/menhir/default.nix
Normal file
17
pkgs/development/ocaml-modules/menhir/default.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ lib, fetchFromGitLab, buildDunePackage
|
||||
, menhirLib, menhirSdk
|
||||
}:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "menhir";
|
||||
|
||||
minimalOCamlVersion = "4.03";
|
||||
|
||||
inherit (menhirLib) version src;
|
||||
|
||||
buildInputs = [ menhirLib menhirSdk ];
|
||||
|
||||
meta = menhirSdk.meta // {
|
||||
description = "A LR(1) parser generator for OCaml";
|
||||
};
|
||||
}
|
||||
27
pkgs/development/ocaml-modules/menhir/lib.nix
Normal file
27
pkgs/development/ocaml-modules/menhir/lib.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{ lib, fetchFromGitLab, buildDunePackage }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "menhirLib";
|
||||
version = "20220210";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
domain = "gitlab.inria.fr";
|
||||
owner = "fpottier";
|
||||
repo = "menhir";
|
||||
rev = version;
|
||||
sha256 = "sha256:0f31isr3cyiishflz6qr4xc3gp9xwf32r3vxdvm5wnr2my1fnn1n";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://pauillac.inria.fr/~fpottier/menhir/";
|
||||
description = "Runtime support library for parsers generated by Menhir";
|
||||
longDescription = ''
|
||||
Menhir is a LR(1) parser generator for the Objective Caml programming
|
||||
language. That is, Menhir compiles LR(1) grammar specifications down
|
||||
to OCaml code. Menhir was designed and implemented by François Pottier
|
||||
and Yann Régis-Gianas.
|
||||
'';
|
||||
license = with licenses; [ lgpl2Only ];
|
||||
maintainers = with maintainers; [ vbgl ];
|
||||
};
|
||||
}
|
||||
15
pkgs/development/ocaml-modules/menhir/sdk.nix
Normal file
15
pkgs/development/ocaml-modules/menhir/sdk.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{ lib, fetchFromGitLab, buildDunePackage
|
||||
, menhirLib
|
||||
}:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "menhirSdk";
|
||||
|
||||
inherit (menhirLib) version src;
|
||||
|
||||
meta = menhirLib.meta // {
|
||||
description = "Compile-time library for auxiliary tools related to Menhir";
|
||||
license = with lib.licenses; [ gpl2Only ];
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue