biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / hashi-ui / default.nix
blobab3d869be9b9db5c1a989e9b82a9cf17420160aa
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "hashi-ui";
5   version = "1.3.8";
7   src = fetchurl {
8     url = "https://github.com/jippi/hashi-ui/releases/download/v${version}/hashi-ui-linux-amd64";
9     sha256 = "999a34b6e99657ffc7e6c98a15b8ea744c28420e891a8802c7d99b737752dfb6";
10   };
12   dontUnpack = true;
13   sourceRoot = ".";
15   installPhase = ''
16     install -m755 -D $src $out/bin/hashi-ui
17   '';
19   meta = with lib; {
20     homepage = "https://github.com/jippi/hashi-ui";
21     description = "A modern user interface for hashicorp Consul & Nomad";
22     platforms = [ "x86_64-linux" ];
23     maintainers = with maintainers; [ numkem ];
24     sourceProvenance = with sourceTypes; [ binaryNativeCode ];
25     license = licenses.mit;
26     mainProgram = "hashi-ui";
27   };