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
29
pkgs/development/ocaml-modules/lwt/camlp4.nix
Normal file
29
pkgs/development/ocaml-modules/lwt/camlp4.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{ lib, fetchFromGitHub, buildDunePackage, camlp4 }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "lwt_camlp4";
|
||||
version = "unstable-2018-03-25";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ocsigen";
|
||||
repo = pname;
|
||||
rev = "45f25a081e01071ab566924b48ba5f7553bb33ac";
|
||||
sha256 = "1lv8z6ljfy47yvxmwf5jrvc5d3dc90r1n291x53j161sf22ddrk9";
|
||||
};
|
||||
|
||||
useDune2 = false;
|
||||
|
||||
minimalOCamlVersion = "4.02";
|
||||
|
||||
propagatedBuildInputs = [ camlp4 ];
|
||||
|
||||
preBuild = "rm META.lwt_camlp4";
|
||||
|
||||
meta = {
|
||||
description = "Camlp4 syntax extension for Lwt (deprecated)";
|
||||
license = lib.licenses.lgpl21;
|
||||
inherit (src.meta) homepage;
|
||||
maintainers = [ lib.maintainers.vbgl ];
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue