ab4cbcd01a
From 04f1249a66e75e91ef009ed04304cbc88dea798d Mon Sep 17 00:00:00 2001 From: Jonathan Ringer <jonringer117@gmail.com> Date: Sun, 26 Feb 2023 15:14:23 -0800 Subject: [PATCH] Enable darwin builds in Nix Move most packaging concerns into nix/overlay.nix. Alter packaging to mostly align with nixpkgs best practices. Signed-off-by: Jonathan Ringer <jonringer117@gmail.com>
40 lines
1.4 KiB
Nix
40 lines
1.4 KiB
Nix
{
|
|
description = "An implementation of the Double Ratchet cryptographic ratchet";
|
|
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
# We can't use the current stable release because of
|
|
# https://github.com/emscripten-core/emscripten/issues/16913
|
|
inputs.flake-utils.url = "github:numtide/flake-utils";
|
|
inputs.npmlock2nix = {
|
|
url = "github:nix-community/npmlock2nix";
|
|
flake = false;
|
|
};
|
|
|
|
outputs = { self, nixpkgs, flake-utils, npmlock2nix }:
|
|
let
|
|
localOverlay = import ./nix/overlay.nix;
|
|
pkgsForSystem = system: import nixpkgs {
|
|
inherit system;
|
|
overlays = [
|
|
(final: prev: {
|
|
npmlock2nix = final.callPackage npmlock2nix {};
|
|
node_modules = final.npmlock2nix.node_modules { src = ./javascript; };
|
|
})
|
|
localOverlay
|
|
];
|
|
};
|
|
in (
|
|
# some systems cause issues, e.g. i686-linux is unsupported by gradle,
|
|
# which causes "nix flake check" to fail. Investigate more later, but for
|
|
# now, we will just allow x86_64-linux
|
|
flake-utils.lib.eachSystem [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ] (system: rec {
|
|
legacyPackages = pkgsForSystem system;
|
|
checks = {
|
|
inherit (legacyPackages) olm-gcc-cmake olm-clang-cmake olm-gcc-make;
|
|
};
|
|
packages = {
|
|
javascript = legacyPackages.olm-javascript;
|
|
};
|
|
}
|
|
));
|
|
}
|