Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: fa4747c38ad9
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9a23aeab3445
Choose a head ref
  • 3 commits
  • 3 files changed
  • 2 contributors

Commits on Apr 26, 2020

  1. maintainers: add numkem

    numkem committed Apr 26, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    veprbl Dmitry Kalinkin
    Copy the full SHA
    35b8193 View commit details
  2. hashi-ui: init at 1.3.8

    numkem committed Apr 26, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Ma27 Maximilian Bosch
    Copy the full SHA
    b987b25 View commit details

Commits on Apr 27, 2020

  1. Merge pull request #84286 from numkem/master

    hashi-ui: init at 1.3.8
    DamienCassou authored Apr 27, 2020
    Copy the full SHA
    9a23aea View commit details
Showing with 33 additions and 0 deletions.
  1. +6 −0 maintainers/maintainer-list.nix
  2. +25 −0 pkgs/servers/hashi-ui/default.nix
  3. +2 −0 pkgs/top-level/all-packages.nix
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
@@ -5608,6 +5608,12 @@
githubId = 369111;
name = "Morgan Jones";
};
numkem = {
name = "Sebastien Bariteau";
email = "numkem@numkem.org";
github = "numkem";
githubId = 332423;
};
nyanloutre = {
email = "paul@nyanlout.re";
github = "nyanloutre";
25 changes: 25 additions & 0 deletions pkgs/servers/hashi-ui/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
name = "hashi-ui";
version = "1.3.8";

src = fetchurl {
url = "https://github.com/jippi/hashi-ui/releases/download/v${version}/hashi-ui-linux-amd64";
sha256 = "999a34b6e99657ffc7e6c98a15b8ea744c28420e891a8802c7d99b737752dfb6";
};

dontUnpack = true;
sourceRoot = ".";

installPhase = ''
install -m755 -D $src $out/bin/hashi-ui
'';

meta = with stdenv.lib; {
homepage = "https://github.com/jippi/hashi-ui";
description = "A modern user interface for hashicorp Consul & Nomad";
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ numkem ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -15558,6 +15558,8 @@ in

haka = callPackage ../tools/security/haka { };

hashi-ui = callPackage ../servers/hashi-ui {};

heapster = callPackage ../servers/monitoring/heapster { };

hbase = callPackage ../servers/hbase {};