3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/computing/storm/default.nix

50 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, zip, unzip, jzmq, jdk, lib, python, logsDir ? "", confFile ? "", extraLibraryPaths ? [], extraJars ? [] }:
2013-02-07 14:32:10 +00:00
stdenv.mkDerivation {
name = "storm-0.8.2";
src = fetchurl {
url = https://dl.dropbox.com/u/133901206/storm-0.8.2.zip;
sha256 = "8761aea0b54e5bab4a68b259bbe6b5b2f8226204488b5559eba57a0c458b2bbc";
};
buildInputs = [ zip unzip jzmq ];
2013-02-07 14:32:10 +00:00
installPhase = ''
# Remove junk
rm -f lib/jzmq*
mkdir -p $out/bin
2013-02-07 14:32:10 +00:00
mv bin/storm $out/bin/
rm -R bin conf logs
2013-02-07 14:32:10 +00:00
# Fix shebang header for python scripts
sed -i -e "s|#!/usr/bin/.*python|#!${python}/bin/python|" $out/bin/storm;
2013-02-07 14:32:10 +00:00
mkdir -p $out/conf
2013-02-07 14:32:10 +00:00
cp -av * $out
cd $out;
${if logsDir != "" then ''ln -s ${logsDir} logs'' else ""}
# Extract, delete from zip; and optionally append to defaults.yaml
unzip storm-*.jar defaults.yaml;
zip -d storm-*.jar defaults.yaml;
echo 'java.library.path: "${jzmq}/lib:${lib.concatStringsSep ":" extraLibraryPaths}"' >> defaults.yaml;
${if confFile != "" then ''cat ${confFile} >> defaults.yaml'' else ""}
mv defaults.yaml conf;
# Link to jzmq jar and extra jars
cd lib;
ln -s ${jzmq}/share/java/*.jar;
${lib.concatMapStrings (jar: "ln -s ${jar};\n") extraJars}
2013-02-07 14:32:10 +00:00
'';
dontStrip = true;
meta = {
homepage = "http://storm-project.net";
description = "Distributed realtime computation system";
2013-02-07 14:32:10 +00:00
license = "Eclipse Public License 1.0";
maintainers = [ lib.maintainers.vizanto ];
2013-02-07 14:32:10 +00:00
};
}