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
38
pkgs/development/ocaml-modules/csv/1.5.nix
Normal file
38
pkgs/development/ocaml-modules/csv/1.5.nix
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
{ lib, stdenv, fetchzip, ocaml, findlib, ocamlbuild }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ocaml${ocaml.version}-csv";
|
||||
version = "1.5";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://github.com/Chris00/ocaml-csv/releases/download/${version}/csv-${version}.tar.gz";
|
||||
sha256 = "1ca7jgg58j24pccs5fshis726s06fdcjshnwza5kwxpjgdbvc63g";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ ocaml findlib ocamlbuild ];
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
createFindlibDestdir = true;
|
||||
|
||||
configurePhase = "ocaml setup.ml -configure --prefix $out --enable-tests";
|
||||
|
||||
buildPhase = "ocaml setup.ml -build";
|
||||
|
||||
doCheck = true;
|
||||
checkPhase = "ocaml setup.ml -test";
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
ocaml setup.ml -install
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A pure OCaml library to read and write CSV files";
|
||||
homepage = "https://github.com/Chris00/ocaml-csv";
|
||||
license = licenses.lgpl21;
|
||||
maintainers = [ maintainers.vbgl ];
|
||||
inherit (ocaml.meta) platforms;
|
||||
};
|
||||
}
|
||||
16
pkgs/development/ocaml-modules/csv/csvtool.nix
Normal file
16
pkgs/development/ocaml-modules/csv/csvtool.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{ lib, ocamlPackages }:
|
||||
|
||||
let inherit (ocamlPackages) buildDunePackage csv uutf; in
|
||||
|
||||
buildDunePackage {
|
||||
pname = "csvtool";
|
||||
inherit (csv) src version useDune2;
|
||||
|
||||
buildInputs = [ csv uutf ];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = csv.meta // {
|
||||
description = "Command line tool for handling CSV files";
|
||||
};
|
||||
}
|
||||
20
pkgs/development/ocaml-modules/csv/default.nix
Normal file
20
pkgs/development/ocaml-modules/csv/default.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{ lib, fetchurl, buildDunePackage }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "csv";
|
||||
version = "2.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/Chris00/ocaml-${pname}/releases/download/${version}/csv-${version}.tbz";
|
||||
sha256 = "13m9n8mdss6jfbiw7d5bybxn4n85vmg4zw7dc968qrgjfy0w9zhk";
|
||||
};
|
||||
|
||||
useDune2 = true;
|
||||
|
||||
meta = {
|
||||
description = "A pure OCaml library to read and write CSV files";
|
||||
license = lib.licenses.lgpl21;
|
||||
maintainers = [ lib.maintainers.vbgl ];
|
||||
homepage = "https://github.com/Chris00/ocaml-csv";
|
||||
};
|
||||
}
|
||||
14
pkgs/development/ocaml-modules/csv/lwt.nix
Normal file
14
pkgs/development/ocaml-modules/csv/lwt.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{ lib, buildDunePackage, ocaml, csv, ocaml_lwt }:
|
||||
|
||||
if lib.versionOlder ocaml.version "4.02"
|
||||
then throw "csv-lwt is not available for OCaml ${ocaml.version}"
|
||||
else
|
||||
|
||||
buildDunePackage {
|
||||
pname = "csv-lwt";
|
||||
inherit (csv) src version useDune2 meta;
|
||||
|
||||
propagatedBuildInputs = [ csv ocaml_lwt ];
|
||||
|
||||
doCheck = lib.versionAtLeast ocaml.version "4.03";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue