nixpkgs/pkgs/tools/networking/ngrok-2/default.nix

45 lines
1.2 KiB
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchurl }:
2016-06-03 14:46:37 +00:00
2021-01-15 09:19:50 +00:00
with lib;
2018-04-02 15:29:14 +00:00
2019-03-12 17:19:10 +00:00
let versions = builtins.fromJSON (builtins.readFile ./versions.json);
arch = if stdenv.isi686 then "386"
else if stdenv.isx86_64 then "amd64"
2020-01-03 04:36:01 +00:00
else if stdenv.isAarch32 then "arm"
2019-03-12 17:19:10 +00:00
else if stdenv.isAarch64 then "arm64"
else throw "Unsupported architecture";
os = if stdenv.isLinux then "linux"
else if stdenv.isDarwin then "darwin"
else throw "Unsupported os";
versionInfo = versions."${os}-${arch}";
inherit (versionInfo) version sha256 url;
in
stdenv.mkDerivation {
2016-06-03 14:46:37 +00:00
name = "ngrok-${version}";
2019-09-08 23:38:31 +00:00
version = version;
2019-03-12 17:19:10 +00:00
# run ./update
src = fetchurl { inherit sha256 url; };
2016-06-03 14:46:37 +00:00
sourceRoot = ".";
2016-06-03 14:46:37 +00:00
2019-03-12 17:19:10 +00:00
unpackPhase = "cp $src ngrok";
buildPhase = "chmod a+x ngrok";
2018-04-02 15:29:14 +00:00
installPhase = ''
install -D ngrok $out/bin/ngrok
2019-07-23 21:51:03 +00:00
'';
2016-06-03 14:46:37 +00:00
2019-03-19 19:03:41 +00:00
passthru.updateScript = ./update.sh;
2018-04-02 15:29:14 +00:00
meta = {
description = "Allows you to expose a web server running on your local machine to the internet";
homepage = "https://ngrok.com/";
2018-04-02 15:29:14 +00:00
license = licenses.unfree;
2019-03-12 17:19:10 +00:00
platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" "x86_64-darwin" ];
maintainers = [ maintainers.bobvanderlinden ];
};
2016-06-03 14:46:37 +00:00
}