olm/flake.nix

74 lines
2.2 KiB
Nix
Raw Normal View History

2022-05-11 17:26:20 +02:00
{
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
2022-05-11 17:26:20 +02:00
# https://github.com/emscripten-core/emscripten/issues/14995
inputs.flake-utils.url = "github:numtide/flake-utils";
inputs.npmlock2nix = {
url = "github:nix-community/npmlock2nix";
flake = false;
};
2022-05-11 17:26:20 +02:00
outputs = { self, nixpkgs, flake-utils, npmlock2nix }:
2022-05-11 17:26:20 +02:00
(
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [
(final: prev: {
npmlock2nix = final.callPackage npmlock2nix {};
})
];
2022-05-11 17:26:20 +02:00
};
node_modules = pkgs.npmlock2nix.node_modules { src = ./javascript; };
2022-05-11 17:26:20 +02:00
in
rec {
packages.javascript = pkgs.buildEmscriptenPackage {
name = "olm";
buildInputs = [ pkgs.gnumake pkgs.python3 pkgs.yarn ];
src = ./.;
2022-05-11 19:07:57 +02:00
postPatch = ''
patchShebangs .
'';
2022-05-11 17:26:20 +02:00
configurePhase = "";
buildPhase = ''
export EM_CACHE=$TMPDIR
make javascript/exported_functions.json
make js
'';
output = [ "out" ];
installPhase = ''
mkdir -p $out/javascript
cd javascript
echo sha256: > checksums.txt
sha256sum olm.js olm_legacy.js olm.wasm >> checksums.txt
echo sha512: >> checksums.txt
sha512sum olm.js olm_legacy.js olm.wasm >> checksums.txt
cp package.json olm.js olm.wasm olm_legacy.js index.d.ts README.md checksums.txt $out/javascript
cd ..
'';
checkPhase = ''
cd javascript
export HOME=$TMPDIR
ln -s ${node_modules}/node_modules ./node_modules
${pkgs.nodejs}/bin/npm test
2022-05-11 17:26:20 +02:00
cd ..
'';
};
defaultPackage = packages.javascript;
}
)
);
}