mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
Merge pull request #21085 from offlinehacker/pkgs/pachyderm/init
pachyderm: init at 1.3.0
This commit is contained in:
commit
96bf950ae0
24
pkgs/applications/networking/cluster/pachyderm/default.nix
Normal file
24
pkgs/applications/networking/cluster/pachyderm/default.nix
Normal 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];
|
||||
};
|
||||
}
|
@ -5613,6 +5613,8 @@ in
|
||||
|
||||
inherit (callPackages ../development/interpreters/perl {}) perl perl520 perl522;
|
||||
|
||||
pachyderm = callPackage ../applications/networking/cluster/pachyderm { };
|
||||
|
||||
php = php70;
|
||||
|
||||
phpPackages = php70Packages;
|
||||
|
Loading…
Reference in New Issue
Block a user