Working version @ https://github.com/vizanto/nixos/blob/893013b9fef5501ba8c44a38127563366da7dabb/modules/services/computing/storm.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns nodes.core | |
(:require [pallet compute, resource] | |
pallet.compute.vmfest | |
vmfest.manager, vmfest.virtualbox.image | |
[pallet.crate java tomcat] | |
[pallet.action.package :as package] | |
[pallet.action.exec-script :as exec-script] | |
[pallet.utils :as utils] | |
[pallet.session :as session] | |
[pallet.script.lib]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns nodes.core | |
(:require [pallet compute, resource] | |
pallet.compute.vmfest | |
vmfest.manager, vmfest.virtualbox.image | |
[pallet.crate.tomcat :as tomcat] | |
[pallet.action.package :as package] | |
[pallet.action.exec-script :as exec-script] | |
[pallet.utils :as utils] | |
[pallet.session :as session] | |
[pallet.script.lib]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Compiling immutant.init | |
14:43:54.365 [main] WARN immutant.try - org.jboss.msc.service.ServiceName | |
14:43:54.784 [main] WARN immutant.try - org.apache.catalina.core.StandardContext | |
14:43:54.789 [main] WARN immutant.try - org.apache.catalina.core.StandardContext | |
14:44:07.958 [main] INFO immutant.web - Registering ring handler at sub-context path: /* | |
Without removing immutant class files (rm -R target/classes/immutant): | |
14:52:10,201 INFO [immutant.web] (MSC service thread 1-1) Registering ring handler at sub-context path: /* | |
14:52:10,207 INFO [org.jboss.as.osgi] (MSC service thread 1-8) JBAS011907: Register module: Module "deployment.X.clj:main" from Service Module Loader |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"c0": { | |
"dynamic": "strict", | |
"_source": { | |
"compress": true | |
}, | |
"properties": { | |
"c000": { | |
"type": "string", | |
"index_name": "kenteken" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cd "$TOOLDIR" | |
echo == Creating environment.sh == | |
echo " | |
export HAXEPATH=\"`echo $TOOLDIR/haxe-*`\" | |
export NEKOPATH=\"`echo $TOOLDIR/neko-*`\" | |
"' | |
export HAXE_LIBRARY_PATH="$HAXEPATH/std" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{9:46}~/Development/Libraries/nixpkgs:master ✗ ➭ sudo nix-build pkgs/top-level/all-packages.nix --option binary-caches '' -vv -K -A jzmq | |
evaluating file `/Users/blue/Development/Libraries/nixpkgs/pkgs/stdenv/adapters.nix' | |
evaluating file `/Users/blue/Development/Libraries/nixpkgs/pkgs/build-support/trivial-builders.nix' | |
evaluating file `/Users/blue/Development/Libraries/nixpkgs/pkgs/lib' | |
| evaluating file `/Users/blue/Development/Libraries/nixpkgs/pkgs/lib/trivial.nix' | |
| evaluating file `/Users/blue/Development/Libraries/nixpkgs/pkgs/lib/lists.nix' | |
| evaluating file `/Users/blue/Development/Libraries/nixpkgs/pkgs/lib/strings.nix' | |
| evaluating file `/Users/blue/Development/Libraries/nixpkgs/pkgs/lib/strings-with-deps.nix' | |
| | evaluating file `/Users/blue/Development/Libraries/nixpkgs/pkgs/lib/attrsets.nix' | |
| evaluating file `/Users/blue/Development/Libraries/nixpkgs/pkgs/lib/sources.nix' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{9:47}~/Development/Libraries/nixpkgs:master ✗ ➭ sudo nix-build pkgs/top-level/all-packages.nix -vv -K -A jzmq | |
evaluating file `/Users/blue/Development/Libraries/nixpkgs/pkgs/stdenv/adapters.nix' | |
evaluating file `/Users/blue/Development/Libraries/nixpkgs/pkgs/build-support/trivial-builders.nix' | |
evaluating file `/Users/blue/Development/Libraries/nixpkgs/pkgs/lib' | |
| evaluating file `/Users/blue/Development/Libraries/nixpkgs/pkgs/lib/trivial.nix' | |
| evaluating file `/Users/blue/Development/Libraries/nixpkgs/pkgs/lib/lists.nix' | |
| evaluating file `/Users/blue/Development/Libraries/nixpkgs/pkgs/lib/strings.nix' | |
| evaluating file `/Users/blue/Development/Libraries/nixpkgs/pkgs/lib/strings-with-deps.nix' | |
| | evaluating file `/Users/blue/Development/Libraries/nixpkgs/pkgs/lib/attrsets.nix' | |
| evaluating file `/Users/blue/Development/Libraries/nixpkgs/pkgs/lib/sources.nix' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ~/.nixpkgs/config.nix | |
pkgs : { | |
packageOverrides = self : { | |
automake = self.automake.override { doCheck = false; }; | |
}; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class VODefinition { | |
static function build() { | |
m.mixin(0, "Point", { | |
x: [0, integer, bindable], | |
y: [1, integer, bindable] | |
}); | |
var Point = "nl.onlinetouch.vo.Point"; | |
m.mixin(1, "Sized", { |
OlderNewer