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
28
pkgs/development/ocaml-modules/dbf/default.nix
Normal file
28
pkgs/development/ocaml-modules/dbf/default.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{ lib, buildDunePackage, fetchFromGitHub, ppx_cstruct, rresult, cstruct-unix
|
||||
, core_kernel }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "dbf";
|
||||
version = "0.1.1";
|
||||
|
||||
minimalOCamlVersion = "4.08";
|
||||
|
||||
useDune2 = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pveber";
|
||||
repo = "dbf";
|
||||
rev = "${version}";
|
||||
sha256 = "sha256-h1K5YDLbXGEJi/quKXvSR0gZ+WkBzut7AsVFv+Bm8/g=";
|
||||
};
|
||||
|
||||
buildInputs = [ ppx_cstruct ];
|
||||
propagatedBuildInputs = [ rresult cstruct-unix core_kernel ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "DBF format parsing";
|
||||
homepage = "https://github.com/pveber/dbf";
|
||||
license = licenses.isc;
|
||||
maintainers = [ maintainers.deltadelta ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue