Skip to content

Commit

Permalink
Merge pull request #204 from justinwoo/pulp-latest
Browse files Browse the repository at this point in the history
add pulp latest and generation
  • Loading branch information
justinwoo authored Sep 27, 2022
2 parents 3d8b602 + 0997263 commit ee51a6d
Show file tree
Hide file tree
Showing 7 changed files with 2,484 additions and 0 deletions.
2 changes: 2 additions & 0 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,8 @@ let

pulp = pulp-16_0_2;

pulp-latest = import ./pulp/latest { inherit pkgs; };

purescript-language-server = import ./purescript-language-server {
inherit pkgs;
};
Expand Down
17 changes: 17 additions & 0 deletions pulp/latest/composition.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# This file has been generated by node2nix 1.11.1. Do not edit!

{pkgs ? import <nixpkgs> {
inherit system;
}, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-14_x"}:

let
nodeEnv = import ./node-env.nix {
inherit (pkgs) stdenv lib python2 runCommand writeTextFile writeShellScript;
inherit pkgs nodejs;
libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null;
};
in
import ./node-packages.nix {
inherit (pkgs) fetchurl nix-gitignore stdenv lib fetchgit;
inherit nodeEnv;
}
3 changes: 3 additions & 0 deletions pulp/latest/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{ pkgs ? import <nixpkgs> { } }:

(import ./composition.nix { inherit pkgs; })."pulp"
4 changes: 4 additions & 0 deletions pulp/latest/generate.bash
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#! /usr/bin/env nix-shell
#! nix-shell -p node2nix -i bash

node2nix -i node-packages.json -c composition.nix -14
Loading

0 comments on commit ee51a6d

Please sign in to comment.