3
0
Fork 0
forked from mirrors/nixpkgs
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-09-07 23:45:37 +01:00
version = "0.4.1";
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-09-07 23:45:37 +01:00
sha256 = "093nljhibphhccjwxkylbvlc8dh8g2js36mlxxdh9nh21b3mghcs";
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 ];
};
}