summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/cluster/pig
diff options
context:
space:
mode:
authorSven Keidel <svenkeidel@googlemail.com>2015-04-28 18:56:29 +0200
committerSven Keidel <svenkeidel@googlemail.com>2015-04-29 14:33:24 +0200
commit456da7fededf36efc592795b9106150f2033dd47 (patch)
tree6c70f24f6981ac94df0be5f9a9a32ba218688695 /pkgs/applications/networking/cluster/pig
parentf5e7190572dcc3f0f62918f1676439706623fe93 (diff)
apache pig: new package
Diffstat (limited to 'pkgs/applications/networking/cluster/pig')
-rw-r--r--pkgs/applications/networking/cluster/pig/default.nix45
1 files changed, 45 insertions, 0 deletions
diff --git a/pkgs/applications/networking/cluster/pig/default.nix b/pkgs/applications/networking/cluster/pig/default.nix
new file mode 100644
index 000000000000..a5666fc8f321
--- /dev/null
+++ b/pkgs/applications/networking/cluster/pig/default.nix
@@ -0,0 +1,45 @@
+{ stdenv, fetchurl, makeWrapper, hadoop, jre, bash }:
+
+stdenv.mkDerivation rec {
+
+ name = "pig-0.14.0";
+
+ src = fetchurl {
+ url = "mirror://apache/pig/${name}/${name}.tar.gz";
+ sha256 = "183in34cj93ny3lhqyq76g9pjqgw1qlwakk5v6x847vrlkfndska";
+
+ };
+
+ buildInputs = [ makeWrapper ];
+
+ installPhase = ''
+ mkdir -p $out
+ mv * $out
+
+ # no need for the windows batch script
+ rm $out/bin/pig.cmd $out/bin/pig.py
+
+ for n in $out/{bin,sbin}"/"*; do
+ wrapProgram $n \
+ --prefix PATH : "${jre}/bin:${bash}/bin" \
+ --set JAVA_HOME "${jre}" --set HADOOP_PREFIX "${hadoop}"
+ done
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = "http://pig.apache.org/";
+ description = "High-level language for Apache Hadoop";
+ license = licenses.asl20;
+
+ longDescription = ''
+ Apache Pig is a platform for analyzing large data sets that consists of a
+ high-level language for expressing data analysis programs, coupled with
+ infrastructure for evaluating these programs. The salient property of Pig
+ programs is that their structure is amenable to substantial parallelization,
+ which in turns enables them to handle very large data sets.
+ '';
+
+ platforms = platforms.linux;
+ maintainers = [ maintainers.skeidel ];
+ };
+}