mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
52 lines
1.3 KiB
Nix
52 lines
1.3 KiB
Nix
{ lib
|
|
, fetchzip
|
|
, fetchYarnDeps
|
|
, yarn2nix-moretea
|
|
, nodejs_18
|
|
, dos2unix
|
|
}:
|
|
|
|
yarn2nix-moretea.mkYarnPackage {
|
|
version = "1.1.30";
|
|
|
|
src = fetchzip {
|
|
url = "https://registry.npmjs.org/meshcentral/-/meshcentral-1.1.30.tgz";
|
|
sha256 = "1jdnjmwwi8ipqrxb43sas46n2hvr2fsccckknqlfzkfv0lkak07q";
|
|
};
|
|
|
|
patches = [ ./fix-js-include-paths.patch ];
|
|
|
|
packageJSON = ./package.json;
|
|
yarnLock = ./yarn.lock;
|
|
|
|
offlineCache = fetchYarnDeps {
|
|
yarnLock = ./yarn.lock;
|
|
hash = "sha256-1xDex/BIq1P+LbCuZfLRTckAU6RjF4XU73ZpEd1qncA=";
|
|
};
|
|
|
|
# Tarball has CRLF line endings. This makes patching difficult, so let's convert them.
|
|
nativeBuildInputs = [ dos2unix ];
|
|
prePatch = ''
|
|
find . -name '*.js' -exec dos2unix {} +
|
|
ln -snf meshcentral.js bin/meshcentral
|
|
'';
|
|
|
|
preFixup = ''
|
|
mkdir -p $out/bin
|
|
chmod a+x $out/libexec/meshcentral/deps/meshcentral/meshcentral.js
|
|
sed -i '1i#!${nodejs_18}/bin/node' $out/libexec/meshcentral/deps/meshcentral/meshcentral.js
|
|
ln -s $out/libexec/meshcentral/deps/meshcentral/meshcentral.js $out/bin/meshcentral
|
|
'';
|
|
|
|
publishBinsFor = [ ];
|
|
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
meta = with lib; {
|
|
description = "Computer management web app";
|
|
homepage = "https://meshcentral.com/";
|
|
maintainers = with maintainers; [ ma27 ];
|
|
license = licenses.asl20;
|
|
mainProgram = "meshcentral";
|
|
};
|
|
}
|