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
25
pkgs/development/ocaml-modules/hex/default.nix
Normal file
25
pkgs/development/ocaml-modules/hex/default.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{ lib, fetchurl, buildDunePackage, bigarray-compat, cstruct }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "hex";
|
||||
version = "1.4.0";
|
||||
|
||||
useDune2 = true;
|
||||
|
||||
minimumOCamlVersion = "4.02";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/mirage/ocaml-${pname}/releases/download/v${version}/hex-v${version}.tbz";
|
||||
sha256 = "07b9y0lmnflsslkrm6xilkj40n8sf2hjqkyqghnk7sw5l0plkqsp";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ bigarray-compat cstruct ];
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
description = "Mininal OCaml library providing hexadecimal converters";
|
||||
homepage = "https://github.com/mirage/ocaml-hex";
|
||||
license = lib.licenses.isc;
|
||||
maintainers = with lib.maintainers; [ vbgl ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue