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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
771 B
Nix
Raw Normal View History

2022-11-24 11:24:37 +00:00
{ lib, fetchFromGitHub, buildGoModule }:
2016-12-11 19:40:28 +00:00
2022-11-24 11:24:37 +00:00
buildGoModule rec {
pname = "pachyderm";
2024-04-22 10:39:16 +00:00
version = "2.9.4";
2016-12-11 19:40:28 +00:00
src = fetchFromGitHub {
owner = "pachyderm";
repo = "pachyderm";
2022-11-24 11:24:37 +00:00
rev = "v${version}";
2024-04-22 10:39:16 +00:00
hash = "sha256-RF8JEmZpvUf8w89wRa+d3ItMFnInEoxxQzLJvrx1mZE=";
2016-12-11 19:40:28 +00:00
};
2024-04-22 10:39:16 +00:00
vendorHash = "sha256-bAB2vMPHIcJaMobPukQyKiCq0Af0n4b5mjImTswGFTo=";
2022-11-24 11:24:37 +00:00
subPackages = [ "src/server/cmd/pachctl" ];
ldflags = [
"-s"
"-w"
"-X github.com/pachyderm/pachyderm/v${lib.versions.major version}/src/version.AppVersion=${version}"
];
2016-12-11 19:40:28 +00:00
meta = with lib; {
description = "Containerized Data Analytics";
2022-11-24 11:24:37 +00:00
homepage = "https://www.pachyderm.com/";
2023-12-05 02:43:50 +00:00
license = licenses.asl20;
2022-11-24 11:24:37 +00:00
maintainers = with maintainers; [ offline ];
mainProgram = "pachctl";
2016-12-11 19:40:28 +00:00
};
}