1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/applications/networking/cluster/nomad/default.nix

26 lines
653 B
Nix
Raw Normal View History

2016-06-09 10:25:27 +01:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "nomad-${version}";
2016-06-30 19:22:35 +01:00
version = "0.4.0";
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;
2016-06-30 19:22:35 +01:00
sha256 = "0c6qrprb33fb3y4d1xn3df0nvh0hsnqccq6xaab0jb40cbz3048p";
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;
2016-06-09 10:25:27 +01:00
maintainers = with maintainers; [ rushmorem ];
};
}