Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
mmahut committed Sep 26, 2021
1 parent 14dc982 commit 425c781
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions default.nix
Expand Up @@ -19,7 +19,7 @@ in rec {
pname = "yoroi-graphql-migration-backend";
version = packageJSON.version;
src = ./.;
buildInputs = [ nodejs-14_x nodePackages.typescript ];
buildInputs = [ pkgs.nodejs-14_x nodePackages.typescript ];

preConfigure = ''
cp -r ${npmToNix { inherit src; }} node_modules
Expand All @@ -40,7 +40,7 @@ in rec {
mkdir -p $out/bin
cat <<EOF > $out/bin/yoroi-graphql-migration-backend
#!${runtimeShell}
exec ${nodejs-14444_x}/bin/node $out/dist/index.js
exec ${nodejs-14_x}/bin/node $out/dist/index.js
EOF
chmod +x $out/bin/yoroi-graphql-migration-backend
'';
Expand Down

0 comments on commit 425c781

Please sign in to comment.