Merge pull request #21085 from offlinehacker/pkgs/pachyderm/init

pachyderm: init at 1.3.0
This commit is contained in:
Jaka Hudoklin 2016-12-17 15:35:51 +01:00 committed by GitHub
commit 96bf950ae0
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, fetchFromGitHub, buildGoPackage }:
buildGoPackage rec {
name = "pachyderm-${version}";
version = "1.3.0";
rev = "v${version}";
goPackagePath = "github.com/pachyderm/pachyderm";
subPackages = [ "src/server/cmd/pachctl" ];
src = fetchFromGitHub {
inherit rev;
owner = "pachyderm";
repo = "pachyderm";
sha256 = "0y25xh6h7p8hg0bzrjlschmz62r6dwh5mrvbnni1hb1pm0w9jb6g";
};
meta = with lib; {
description = "Containerized Data Analytics";
homepage = https://github.com/pachyderm/pachyderm;
license = licenses.asl20;
maintainers = with maintainers; [offline];
};
}

View file

@ -5613,6 +5613,8 @@ in
inherit (callPackages ../development/interpreters/perl {}) perl perl520 perl522;
pachyderm = callPackage ../applications/networking/cluster/pachyderm { };
php = php70;
phpPackages = php70Packages;