nixpkgs/pkgs/servers/meteor/default.nix

91 lines
2.8 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, zlib, patchelf, runtimeShell }:
2015-09-25 10:00:16 +00:00
let
2020-03-19 11:04:12 +00:00
version = "1.9.3";
2015-09-25 10:00:16 +00:00
in
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2019-08-09 18:51:02 +00:00
inherit version;
pname = "meteor";
src = fetchurl {
url = "https://static-meteor.netdna-ssl.com/packages-bootstrap/${version}/meteor-bootstrap-os.linux.x86_64.tar.gz";
2020-03-19 11:04:12 +00:00
sha256 = "1njp2db939w3ah5k943bkgm62k969fj47qwmlzvhmmg87xwnq3fb";
2019-08-09 18:51:02 +00:00
};
2015-09-25 10:00:16 +00:00
2019-08-09 18:51:02 +00:00
#dontStrip = true;
2015-09-25 10:00:16 +00:00
2019-08-09 18:51:02 +00:00
sourceRoot = ".meteor";
2015-09-25 10:00:16 +00:00
installPhase = ''
mkdir $out
cp -r packages $out
chmod -R +w $out/packages
cp -r package-metadata $out
devBundle=$(find $out/packages/meteor-tool -name dev_bundle)
ln -s $devBundle $out/dev_bundle
toolsDir=$(dirname $(find $out/packages -print | grep "meteor-tool/.*/tools/index.js$"))
ln -s $toolsDir $out/tools
# Patch Meteor to dynamically fixup shebangs and ELF metadata where
# necessary.
pushd $out
patch -p1 < ${./main.patch}
popd
substituteInPlace $out/tools/cli/main.js \
--replace "@INTERPRETER@" "$(cat $NIX_CC/nix-support/dynamic-linker)" \
2016-06-07 18:18:29 +00:00
--replace "@RPATH@" "${lib.makeLibraryPath [ stdenv.cc.cc zlib ]}" \
2015-09-25 10:00:16 +00:00
--replace "@PATCHELF@" "${patchelf}/bin/patchelf"
# Patch node.
node=$devBundle/bin/node
patchelf \
--set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
2016-04-30 20:56:43 +00:00
--set-rpath "$(patchelf --print-rpath $node):${stdenv.cc.cc.lib}/lib" \
2015-09-25 10:00:16 +00:00
$node
# Patch mongo.
for p in $devBundle/mongodb/bin/mongo{,d}; do
patchelf \
--set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
2016-06-07 18:18:29 +00:00
--set-rpath "$(patchelf --print-rpath $p):${lib.makeLibraryPath [ stdenv.cc.cc zlib ]}" \
2015-09-25 10:00:16 +00:00
$p
done
# Patch node dlls.
for p in $(find $out/packages -name '*.node'); do
patchelf \
2016-04-30 20:56:43 +00:00
--set-rpath "$(patchelf --print-rpath $p):${stdenv.cc.cc.lib}/lib" \
2016-11-18 00:12:15 +00:00
$p || true
2015-09-25 10:00:16 +00:00
done
# Meteor needs an initial package-metadata in $HOME/.meteor,
# otherwise it fails spectacularly.
mkdir -p $out/bin
cat << EOF > $out/bin/meteor
#!${runtimeShell}
2015-09-25 10:00:16 +00:00
if [[ ! -f \$HOME/.meteor/package-metadata/v2.0.1/packages.data.db ]]; then
mkdir -p \$HOME/.meteor/package-metadata/v2.0.1
cp $out/package-metadata/v2.0.1/packages.data.db "\$HOME/.meteor/package-metadata/v2.0.1"
chown "\$(whoami)" "\$HOME/.meteor/package-metadata/v2.0.1/packages.data.db"
chmod +w "\$HOME/.meteor/package-metadata/v2.0.1/packages.data.db"
fi
$node \''${TOOL_NODE_FLAGS} $out/tools/index.js "\$@"
EOF
chmod +x $out/bin/meteor
'';
meta = with lib; {
description = "Complete open source platform for building web and mobile apps in pure JavaScript";
2020-03-19 11:04:12 +00:00
homepage = "http://www.meteor.com";
2015-09-25 10:00:16 +00:00
license = licenses.mit;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ cstrahan ];
};
}