Skip to content

Instantly share code, notes, and snippets.

@TomHoenderdos
Created September 18, 2013 13:07
Show Gist options
  • Save TomHoenderdos/6608895 to your computer and use it in GitHub Desktop.
Save TomHoenderdos/6608895 to your computer and use it in GitHub Desktop.
{ nixpkgs ? <originalpkgs>, system ? builtins.currentSystem }:
let
pkgs = import nixpkgs { inherit system; };
in
rec {
storm = import ../servers/computing/storm {
inherit (pkgs) stdenv fetchurl zip unzip jdk lib python;
inherit jzmq;
};
jzmq = import ../development/libraries/java/jzmq {
inherit (pkgs) stdenv fetchgit automake autoconf libtool pkgconfig zeromq2 jdk;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment