summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/pig
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-12-19 09:51:55 -0800
committerRenaud <c0bw3b@users.noreply.github.com>2018-12-19 18:51:55 +0100
commitddeb896744c36a541a0d96afe5998e0db8ca979b (patch)
treee4cd5e380fac962af73657fe64bf186d6718c1f6 /pkgs/applications/networking/cluster/pig
parent8f9bd40d4165091221afc3be6b3bd331ce665f5b (diff)
downloadnixpkgs-ddeb896744c36a541a0d96afe5998e0db8ca979b.tar
nixpkgs-ddeb896744c36a541a0d96afe5998e0db8ca979b.tar.gz
nixpkgs-ddeb896744c36a541a0d96afe5998e0db8ca979b.tar.bz2
nixpkgs-ddeb896744c36a541a0d96afe5998e0db8ca979b.tar.lz
nixpkgs-ddeb896744c36a541a0d96afe5998e0db8ca979b.tar.xz
nixpkgs-ddeb896744c36a541a0d96afe5998e0db8ca979b.tar.zst
nixpkgs-ddeb896744c36a541a0d96afe5998e0db8ca979b.zip
pig: 0.16.0 -> 0.17.0
* pig: 0.16.0 -> 0.17.0 (#52132)

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pig/versions

Diffstat (limited to 'pkgs/applications/networking/cluster/pig')
-rw-r--r--pkgs/applications/networking/cluster/pig/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/networking/cluster/pig/default.nix b/pkgs/applications/networking/cluster/pig/default.nix
index 45dcfb1738c..26c39f8cbe2 100644
--- a/pkgs/applications/networking/cluster/pig/default.nix
+++ b/pkgs/applications/networking/cluster/pig/default.nix
@@ -2,15 +2,15 @@
 
 stdenv.mkDerivation rec {
 
-  name = "pig-0.16.0";
+  name = "pig-0.17.0";
 
   src = fetchurl {
     url = "mirror://apache/pig/${name}/${name}.tar.gz";
-    sha256 = "0p79grz5islnq195lv7pqdxb5l3v4y0k0w63602827qs70zpr508";
+    sha256 = "1wwpg0w47f49rnivn2d26vrxgyfl9gpqx3vmzbl5lhx6x5l3fqbd";
 
   };
 
-  buildInputs = [ makeWrapper ];
+  nativeBuildInputs = [ makeWrapper ];
 
   installPhase = ''
     mkdir -p $out
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with stdenv.lib; {
-    homepage = http://pig.apache.org/;
+    homepage = https://pig.apache.org/;
     description = "High-level language for Apache Hadoop";
     license = licenses.asl20;