mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
0b0bded848
Signed-off-by: Shea Levy <shea@shealevy.com>
30 lines
969 B
Nix
30 lines
969 B
Nix
{ pkgs, stdenv, nodejs, fetchurl, fetchgit, neededNatives, self, generated ? ./node-packages-generated.nix }:
|
|
|
|
rec {
|
|
nativeDeps = {
|
|
"node-expat" = [ pkgs.expat ];
|
|
"rbytes" = [ pkgs.openssl ];
|
|
"phantomjs" = [ pkgs.phantomjs ];
|
|
};
|
|
|
|
buildNodePackage = import ../development/web/nodejs/build-node-package.nix {
|
|
inherit stdenv nodejs neededNatives;
|
|
inherit (pkgs) runCommand;
|
|
};
|
|
|
|
patchSource = fn: srcAttrs:
|
|
let src = fn srcAttrs; in pkgs.runCommand src.name {} ''
|
|
mkdir unpack
|
|
cd unpack
|
|
unpackFile ${src}
|
|
mv */ package 2>/dev/null || true
|
|
sed -i -e "s/:\s*\"latest\"/: *\"*\"/" -e "s/:\s*\"git\(\+\(ssh\|http\|https\)\)\?\:\/\/[^\"]*\"/: \"*\"/" package/package.json
|
|
mv * $out
|
|
'';
|
|
|
|
# Backwards compat
|
|
patchLatest = patchSource fetchurl;
|
|
|
|
/* Put manual packages below here (ideally eventually managed by npm2nix */
|
|
} // import generated { inherit self fetchurl fetchgit; inherit (pkgs) lib; }
|