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

26 lines
668 B
Nix
Raw Normal View History

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