c7e0f6b905
stdenv.targetPlatform really shouldn't be used by software that doesn't generate or manipulate binaries. I reviewed all uses of targetPlatform outside of pkgs/development/compilers and pkgs/stdenv and replaced those which weren't involved in something which fits these criteria.
83 lines
1.7 KiB
Nix
83 lines
1.7 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, fetchYarnDeps
|
|
, makeWrapper
|
|
, matrix-sdk-crypto-nodejs
|
|
, mkYarnPackage
|
|
, cargo
|
|
, rustPlatform
|
|
, rustc
|
|
, napi-rs-cli
|
|
, pkg-config
|
|
, nodejs
|
|
, openssl
|
|
}:
|
|
|
|
let
|
|
data = lib.importJSON ./pin.json;
|
|
in
|
|
mkYarnPackage rec {
|
|
pname = "matrix-hookshot";
|
|
version = data.version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "matrix-org";
|
|
repo = "matrix-hookshot";
|
|
rev = data.version;
|
|
hash = data.srcHash;
|
|
};
|
|
|
|
packageJSON = ./package.json;
|
|
|
|
offlineCache = fetchYarnDeps {
|
|
yarnLock = src + "/yarn.lock";
|
|
sha256 = data.yarnHash;
|
|
};
|
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
inherit src;
|
|
name = "${pname}-${version}";
|
|
hash = data.cargoHash;
|
|
};
|
|
|
|
packageResolutions = {
|
|
"@matrix-org/matrix-sdk-crypto-nodejs" = "${matrix-sdk-crypto-nodejs}/lib/node_modules/@matrix-org/matrix-sdk-crypto-nodejs";
|
|
};
|
|
|
|
extraBuildInputs = [ openssl ];
|
|
|
|
nativeBuildInputs = [
|
|
rustPlatform.cargoSetupHook
|
|
pkg-config
|
|
cargo
|
|
rustc
|
|
napi-rs-cli
|
|
makeWrapper
|
|
];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
cd deps/${pname}
|
|
napi build --target ${stdenv.hostPlatform.rust.rustcTargetSpec} --dts ../src/libRs.d.ts --release ./lib
|
|
yarn run build:app:fix-defs
|
|
yarn run build:app
|
|
yarn run build:web
|
|
cd ../..
|
|
runHook postBuild
|
|
'';
|
|
|
|
postInstall = ''
|
|
makeWrapper '${nodejs}/bin/node' "$out/bin/matrix-hookshot" --add-flags \
|
|
"$out/libexec/matrix-hookshot/deps/matrix-hookshot/lib/App/BridgeApp.js"
|
|
'';
|
|
|
|
doDist = false;
|
|
|
|
meta = with lib; {
|
|
description = "A bridge between Matrix and multiple project management services, such as GitHub, GitLab and JIRA";
|
|
maintainers = with maintainers; [ chvp ];
|
|
license = licenses.asl20;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|