We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
node2nix
1 parent 7d5869d commit 1e50d17Copy full SHA for 1e50d17
utils.nix
@@ -2,6 +2,7 @@
2
, linkFarm
3
, nix-gitignore
4
, nodejs
5
+, node2nix
6
, pkgs
7
, lib
8
, fetchurl
@@ -28,14 +29,6 @@ rec {
28
29
"/jest.config.js"
30
] ./.;
31
nodeVersion = builtins.elemAt (lib.versions.splitVersion nodejs.version) 0;
- # Custom node2nix directly from GitHub
32
- node2nixSrc = fetchFromGitHub {
33
- owner = "svanderburg";
34
- repo = "node2nix";
35
- rev = "9377fe4a45274fab0c7faba4f7c43ffae8421dd2";
36
- sha256 = "15zip9w9hivd1p6k82hh4zba02jj6q0g2f1i9b7rrn2hs70qdlai";
37
- };
38
- node2nix = (import "${node2nixSrc}/release.nix" {}).package.x86_64-linux;
39
node2nixDrv = dev: runCommandNoCC "node2nix" {} ''
40
mkdir $out
41
${node2nix}/bin/node2nix \
0 commit comments