Merge staging-next-21.05 into staging-21.05
This commit is contained in:
commit
8b4a3cdef6
@ -7,13 +7,13 @@
|
|||||||
|
|
||||||
python3.pkgs.buildPythonApplication rec {
|
python3.pkgs.buildPythonApplication rec {
|
||||||
pname = "vorta";
|
pname = "vorta";
|
||||||
version = "0.7.7";
|
version = "0.7.8";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "borgbase";
|
owner = "borgbase";
|
||||||
repo = "vorta";
|
repo = "vorta";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-AH9CvoWAaNLPLC+NL+VXtYq9CNCMt0AFtC1ZGXSlcHQ=";
|
sha256 = "sha256-qNBswy1dsCE6TEQLr/r7nnZWegDD8BD9pMkcpcuT7Q0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
25
pkgs/development/ocaml-modules/vlq/default.nix
Normal file
25
pkgs/development/ocaml-modules/vlq/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ lib, buildDunePackage, fetchurl
|
||||||
|
, dune-configurator
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildDunePackage rec {
|
||||||
|
pname = "vlq";
|
||||||
|
version = "0.2.1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/flowtype/ocaml-vlq/releases/download/v${version}/vlq-v${version}.tbz";
|
||||||
|
sha256 = "02wr9ph4q0nxmqgbc67ydf165hmrdv9b655krm2glc3ahb6larxi";
|
||||||
|
};
|
||||||
|
|
||||||
|
useDune2 = true;
|
||||||
|
|
||||||
|
buildInputs = [ dune-configurator ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "encoding variable-length quantities, in particular base64";
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
homepage = "https://github.com/flowtype/ocaml-vlq";
|
||||||
|
maintainers = [ lib.maintainers.nomeata ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -1214,6 +1214,8 @@ let
|
|||||||
|
|
||||||
vg = callPackage ../development/ocaml-modules/vg { };
|
vg = callPackage ../development/ocaml-modules/vg { };
|
||||||
|
|
||||||
|
vlq = callPackage ../development/ocaml-modules/vlq { };
|
||||||
|
|
||||||
visitors = callPackage ../development/ocaml-modules/visitors { };
|
visitors = callPackage ../development/ocaml-modules/visitors { };
|
||||||
|
|
||||||
wasm = callPackage ../development/ocaml-modules/wasm { };
|
wasm = callPackage ../development/ocaml-modules/wasm { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user