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
34
pkgs/development/ocaml-modules/telegraml/default.nix
Normal file
34
pkgs/development/ocaml-modules/telegraml/default.nix
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{ batteries
|
||||
, buildDunePackage
|
||||
, cohttp-lwt-unix
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
, logs
|
||||
, yojson
|
||||
}:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "telegraml";
|
||||
version = "unstable-2021-06-17";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nv-vn";
|
||||
repo = "TelegraML";
|
||||
rev = "3e28933a287e5eacd34c46b434c487f155397abc";
|
||||
sha256 = "sha256-2bMHARatwl8Zl/fWppvwbH6Ut+igJVKzwyQb8Q4gem4=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
batteries
|
||||
cohttp-lwt-unix
|
||||
logs
|
||||
yojson
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "An OCaml library implementing the Telegram bot API";
|
||||
homepage = "https://github.com/nv-vn/TelegraML/";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ superherointj ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue