nixpkgs/pkgs/servers/consul/default.nix

58 lines
1.2 KiB
Nix
Raw Normal View History

2014-09-12 00:35:18 +02:00
{ stdenv, lib, go, fetchgit, fetchhg, fetchbzr, fetchFromGitHub
, ruby, rubyLibs, nodejs }:
2014-06-16 00:08:44 +02:00
let
2014-11-17 22:18:23 +01:00
version = "0.4.1";
2014-06-16 00:08:44 +02:00
in
2014-09-12 00:35:18 +02:00
with lib;
2014-06-16 00:08:44 +02:00
stdenv.mkDerivation {
name = "consul-${version}";
src = import ./deps.nix {
inherit stdenv lib fetchgit fetchhg fetchbzr fetchFromGitHub;
};
2014-09-12 00:35:18 +02:00
buildInputs = [ go ruby rubyLibs.sass nodejs ];
configurePhase = flip concatMapStrings
(with rubyLibs; [ execjs json minitest rake rdoc sass uglifier ])
(gem: ''
export GEM_PATH="$GEM_PATH:${gem}/${ruby.gemPath}"
'');
2014-06-16 00:08:44 +02:00
buildPhase = ''
2014-09-12 00:35:18 +02:00
# Build consul binary
2014-06-16 00:08:44 +02:00
export GOPATH=$src
go build -v -o consul github.com/hashicorp/consul
2014-09-12 00:35:18 +02:00
# Build ui static files
({
cp -r src/github.com/hashicorp/consul/ui .
cd ui
chmod -R u+w .
make dist
})
2014-06-16 00:08:44 +02:00
'';
2014-09-12 00:35:18 +02:00
outputs = [ "out" "ui" ];
2014-06-16 00:08:44 +02:00
installPhase = ''
2014-09-12 00:35:18 +02:00
# Install consul binary
mkdir -p $out/bin
2014-06-16 00:08:44 +02:00
cp consul $out/bin
2014-09-12 00:35:18 +02:00
# Install ui static files
mkdir -p $ui
mv ui/dist/* $ui
2014-06-16 00:08:44 +02:00
'';
meta = with lib; {
homepage = http://www.consul.io/;
description = "A tool for service discovery, monitoring and configuration";
2014-09-12 00:35:18 +02:00
maintainers = with maintainers; [ cstrahan wkennington ];
2014-06-16 00:08:44 +02:00
license = licenses.mpl20 ;
platforms = platforms.unix;
};
}