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
27
pkgs/development/ocaml-modules/lwt-dllist/default.nix
Normal file
27
pkgs/development/ocaml-modules/lwt-dllist/default.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{ lib, buildDunePackage, fetchurl, lwt, ocaml }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "lwt-dllist";
|
||||
version = "1.0.1";
|
||||
|
||||
useDune2 = true;
|
||||
|
||||
minimumOCamlVersion = "4.02";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/mirage/${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
|
||||
sha256 = "e86ce75e40f00d51514cf8b2e71e5184c4cb5dae96136be24613406cfc0dba6e";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
lwt
|
||||
];
|
||||
doCheck = lib.versionAtLeast ocaml.version "4.03";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Mutable doubly-linked list with Lwt iterators";
|
||||
homepage = "https://github.com/mirage/lwt-dllist";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.sternenseemann ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue