nixpkgs/pkgs/by-name/ma/matrix-hookshot/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

90 lines
1.9 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"
'';
postFixup = ''
# Scrub reference to rustc
rm $out/libexec/matrix-hookshot/deps/matrix-hookshot/target/.rustc_info.json
'';
doDist = false;
meta = with lib; {
description = "Bridge between Matrix and multiple project management services, such as GitHub, GitLab and JIRA";
mainProgram = "matrix-hookshot";
maintainers = with maintainers; [ chvp ];
license = licenses.asl20;
platforms = platforms.linux;
};
}