1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/networking/cluster/nomad/default.nix

26 lines
668 B
Nix
Raw Normal View History

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