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:
Anton Arapov 2021-04-03 12:58:10 +02:00 committed by Alan Daniels
commit 56de2bcd43
30691 changed files with 3076956 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ buildDunePackage, junit, alcotest }:
buildDunePackage ({
pname = "junit_alcotest";
inherit (junit) src version meta useDune2;
propagatedBuildInputs = [
junit
alcotest
];
doCheck = false; # 2 tests fail: 1) "Test with unexpected exception"; 2) "with wrong result";
})

View file

@ -0,0 +1,26 @@
{ lib, fetchurl, buildDunePackage, ptime, tyxml }:
buildDunePackage (rec {
pname = "junit";
version = "2.0.2";
src = fetchurl {
url = "https://github.com/Khady/ocaml-junit/releases/download/${version}/junit-${version}.tbz";
sha256 = "00bbx5j8vsy9fqbc04xa3lsalaxicirmbczr65bllfk1afv43agx";
};
propagatedBuildInputs = [
ptime
tyxml
];
useDune2 = true;
doCheck = true;
meta = with lib; {
description = "ocaml-junit is an OCaml package for the creation of JUnit XML reports, proving a typed API to produce valid reports acceptable to Jenkins, comes with packages supporting OUnit and Alcotest.";
license = licenses.gpl3;
maintainers = with maintainers; [ ];
homepage = "https://github.com/Khady/ocaml-junit";
};
})

View file

@ -0,0 +1,14 @@
{ buildDunePackage, junit, ounit }:
buildDunePackage ({
pname = "junit_ounit";
inherit (junit) src version meta useDune2;
propagatedBuildInputs = [
junit
ounit
];
doCheck = true;
})