nixpkgs/pkgs/applications/networking/cluster/pachyderm/default.nix

25 lines
618 B
Nix
Raw Normal View History

2016-12-11 19:40:28 +00:00
{ lib, fetchFromGitHub, buildGoPackage }:
buildGoPackage rec {
name = "pachyderm-${version}";
2017-05-30 23:28:23 +00:00
version = "1.4.6";
2016-12-11 19:40:28 +00:00
rev = "v${version}";
goPackagePath = "github.com/pachyderm/pachyderm";
subPackages = [ "src/server/cmd/pachctl" ];
src = fetchFromGitHub {
inherit rev;
owner = "pachyderm";
repo = "pachyderm";
2017-05-30 23:28:23 +00:00
sha256 = "1fivihn9s04lmzdiwg0f05qm708fb14xy81pbc31wxdyjw28m8ns";
2016-12-11 19:40:28 +00:00
};
meta = with lib; {
description = "Containerized Data Analytics";
homepage = https://github.com/pachyderm/pachyderm;
license = licenses.asl20;
maintainers = with maintainers; [offline];
};
}