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
|
|
@ -0,0 +1,27 @@
|
|||
{ lib, buildDunePackage, fetchFromGitHub, xenstore, lwt }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "xenstore_transport";
|
||||
version = "1.3.0";
|
||||
|
||||
minimumOCamlVersion = "4.04";
|
||||
useDune2 = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "xapi-project";
|
||||
repo = "ocaml-xenstore-clients";
|
||||
rev = "v${version}";
|
||||
sha256 = "1kxxd9i4qiq98r7sgvl59iq2ni7y6drnv48qj580q5cyiyyc85q3";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ xenstore lwt ];
|
||||
|
||||
# requires a mounted xenfs and xen server
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Low-level libraries for connecting to a xenstore service on a xen host";
|
||||
license = licenses.lgpl21Only;
|
||||
homepage = "https://github.com/xapi-project/ocaml-xenstore-clients";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue