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

26 lines
668 B
Nix
Raw Normal View History

2016-06-09 11:25:27 +02:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "nomad-${version}";
2017-07-27 19:36:05 +02:00
version = "0.6.0";
2016-06-09 11:25:27 +02:00
rev = "v${version}";
goPackagePath = "github.com/hashicorp/nomad";
subPackages = [ "." ];
src = fetchFromGitHub {
owner = "hashicorp";
repo = "nomad";
inherit rev;
2017-07-27 19:36:05 +02:00
sha256 = "1qvpcf2hwrx280qk8gl7sfl23y44k8z7c2vwi0gnzx8vqh0l8ywm";
2016-06-09 11:25:27 +02:00
};
meta = with stdenv.lib; {
homepage = https://www.nomadproject.io/;
description = "A Distributed, Highly Available, Datacenter-Aware Scheduler";
platforms = platforms.linux;
2016-06-30 20:22:35 +02:00
license = licenses.mpl20;
2017-02-01 04:02:29 +01:00
maintainers = with maintainers; [ rushmorem pradeepchhetri ];
2016-06-09 11:25:27 +02:00
};
}