1
0
mirror of https://github.com/ilyakooo0/urbit.git synced 2024-12-20 05:11:46 +03:00
urbit/nix/nixcrpkgs/pkgs/lmdb/default.nix
benjamin-tlon ade1e59ce1
Get cross-compilation ready for release. ()
* Add cross-compilation for `lmdb`.
* Got built caching working in CI with `cachix`.
* Cache cross compilation dependencies and toolchains.
* Do release builds in CI.
* Upload release builds to `bootstrap.urbit.org` on successful build.
* Lots of optimization work for CI.
* Boot from a solid pill in CI and load arvo with `-A`.
* Increase `vere` HTTP timeout to 15m.
2019-05-02 13:13:48 -07:00

15 lines
310 B
Nix

{ crossenv }:
crossenv.make_derivation rec {
name = "lmdb-${version}";
version = "0.9.23";
builder = ./builder.sh;
src = crossenv.nixpkgs.fetchFromGitHub {
owner = "LMDB";
repo = "lmdb";
rev = "LMDB_${version}";
sha256 = "0ag7l5180ajvm73y59m7sn3p52xm8m972d08cshxhpwgwa4v35k6";
};
}