mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
09e0cc7cc7
Homepage link "http://.../" is a permanent redirect to "https://.../" and should be updated https://repology.org/repository/nix_stable/problems
40 lines
785 B
Nix
40 lines
785 B
Nix
{ stdenv, consul, ruby, bundlerEnv, zip }:
|
|
|
|
let
|
|
# `sass` et al
|
|
gems = bundlerEnv {
|
|
name = "consul-ui-deps";
|
|
gemdir = ./.;
|
|
};
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "consul-ui-${consul.version}";
|
|
|
|
src = consul.src;
|
|
|
|
buildInputs = [ ruby gems zip ];
|
|
|
|
patchPhase = "patchShebangs ./ui/scripts/dist.sh";
|
|
|
|
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;
|
|
};
|
|
}
|