Skip to content

Use the power of nix to turn node packages into nix deriviations

License

Notifications You must be signed in to change notification settings

mkg20001/nix-node-package

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nix-node-package

Use the power of nix to turn node packages into nix deriviations, just with a few lines of code.

let
  pkgs = import <nixpkgs> {};
  nixNodePackage = builtins.fetchGit {
    url = "git@github.com:mkg20001/nix-node-package";
    rev = "e9a2642b93d219a23d28df1081459341b620baf0";
  };
  makeNode = import "${nixNodePackage}/nix/default.nix" pkgs {
    root = ./.;
    nodejs = pkgs.nodejs-10_x;
  };
in makeNode { }

About

Use the power of nix to turn node packages into nix deriviations

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published