nixpkgs/pkgs/servers/consul/ui.nix

42 lines
843 B
Nix
Raw Normal View History

{ stdenv, consul, ruby, bundlerEnv, zip, nodejs }:
let
# `sass` et al
gems = bundlerEnv {
name = "consul-ui-deps";
2017-01-17 23:22:26 +00:00
gemdir = ./.;
};
in
stdenv.mkDerivation {
2016-06-04 18:40:56 +00:00
name = "consul-ui-${consul.version}";
2016-06-04 18:40:56 +00:00
src = consul.src;
buildInputs = [ ruby gems zip nodejs ];
patches = [ ./ui-no-bundle-exec.patch ];
postPatch = "patchShebangs ./ui/scripts/dist.sh";
2016-06-04 18:40:56 +00:00
buildPhase = ''
# Build ui static files
cd ui
make dist
'';
installPhase = ''
# Install ui static files
mkdir -p $out
mv ../pkg/web_ui/* $out
'';
meta = with stdenv.lib; {
homepage = https://www.consul.io/;
description = "A tool for service discovery, monitoring and configuration";
maintainers = with maintainers; [ cstrahan wkennington ];
license = licenses.mpl20 ;
platforms = platforms.unix;
};
}