Skip to content
This repository has been archived by the owner on Sep 23, 2020. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
use node-xmpp-core instead of node-xmpp as dependency
  • Loading branch information
flosse committed May 18, 2015
1 parent ff6a1d0 commit c8e6615
Show file tree
Hide file tree
Showing 14 changed files with 1,100 additions and 21 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
node_modules
*.swp
lib/
npm-debug.log
6 changes: 0 additions & 6 deletions Cakefile

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE.txt
@@ -1,4 +1,4 @@
Copyright (c) 2011 Markus Kohlhase (mail@markus-kohlhase.de)
Copyright (c) 2011 - 2015 Markus Kohlhase (mail@markus-kohlhase.de)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
33 changes: 33 additions & 0 deletions default.nix
@@ -0,0 +1,33 @@
{ pkgs ? import <nixpkgs> {} }:

let
nodePackages = pkgs.nodePackages.override {
self = nodePackages;
generated = ./node-packages.nix;
};

in pkgs.stdenv.mkDerivation rec {
name = "dev-env";
src = ./.;
buildInputs = with nodePackages; [
pkgs.utillinux
pkgs.python
pkgs.stdenv
pkgs.nodejs
coffee-script
chai
mocha
sinon-chai
sinon
]
++
[
async
ltx
node-expat
node-stringprep
node-uuid
node-xmpp-core
toobusy-js
];
}

0 comments on commit c8e6615

Please sign in to comment.