nixpkgs/pkgs/servers/consul/default.nix

59 lines
1.2 KiB
Nix
Raw Normal View History

2015-01-22 01:33:19 +00:00
{ stdenv, lib, go, fetchgit, fetchhg, fetchbzr, fetchFromGitHub , ruby , nodejs
, bundlerEnv }:
2014-06-15 23:08:44 +01:00
let
version = "0.5.0";
2015-01-22 01:33:19 +00:00
# `sass` et al
gems = bundlerEnv {
name = "consul-deps";
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
};
2014-06-15 23:08:44 +01:00
in
2014-09-11 23:35:18 +01:00
with lib;
2014-06-15 23:08:44 +01:00
stdenv.mkDerivation {
name = "consul-${version}";
src = import ./deps.nix {
inherit stdenv lib fetchgit fetchhg fetchbzr fetchFromGitHub;
};
2015-01-22 01:33:19 +00:00
buildInputs = [ go ruby gems nodejs ];
2014-06-15 23:08:44 +01:00
buildPhase = ''
2014-09-11 23:35:18 +01:00
# Build consul binary
2014-06-15 23:08:44 +01:00
export GOPATH=$src
go build -v -o consul github.com/hashicorp/consul
2014-09-11 23:35:18 +01:00
# Build ui static files
({
cp -r src/github.com/hashicorp/consul/ui .
cd ui
chmod -R u+w .
make dist
})
2014-06-15 23:08:44 +01:00
'';
2014-09-11 23:35:18 +01:00
outputs = [ "out" "ui" ];
2014-06-15 23:08:44 +01:00
installPhase = ''
2014-09-11 23:35:18 +01:00
# Install consul binary
mkdir -p $out/bin
2014-06-15 23:08:44 +01:00
cp consul $out/bin
2014-09-11 23:35:18 +01:00
# Install ui static files
mkdir -p $ui
mv ui/dist/* $ui
2014-06-15 23:08:44 +01:00
'';
meta = with lib; {
homepage = http://www.consul.io/;
description = "A tool for service discovery, monitoring and configuration";
2014-09-11 23:35:18 +01:00
maintainers = with maintainers; [ cstrahan wkennington ];
2014-06-15 23:08:44 +01:00
license = licenses.mpl20 ;
platforms = platforms.unix;
};
}