diff options
author | Franck Cuny <franck@fcuny.net> | 2022-05-29 09:26:54 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-05-29 09:26:54 -0700 |
commit | db287fad6d4cebf78c2c172b068fe4774ced667a (patch) | |
tree | 2fd903e585320ac6b698792b9cfdf099866b5f8e /tools | |
parent | tools(govanity): remove unneeded files (diff) | |
download | world-db287fad6d4cebf78c2c172b068fe4774ced667a.tar.gz |
tools(govanity): add the tool to flake.nix
Change-Id: Ib2792fa8c3f861d290f2495a10672cdfd11c48d9
Diffstat (limited to '')
-rw-r--r-- | tools/govanity/default.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tools/govanity/default.nix b/tools/govanity/default.nix new file mode 100644 index 0000000..10652ff --- /dev/null +++ b/tools/govanity/default.nix @@ -0,0 +1,24 @@ +{ pkgs, ... }: + +pkgs.buildGoModule rec { + name = "govanity"; + src = ./.; + vendorSha256 = "sha256-iu2QE+vvenFWpOOz1NHVQHudiWkvkKqZvD4ZX4Xa1sY="; + nativeBuildInputs = with pkgs; [ go ]; + + deploy = pkgs.pkgs.writeShellScriptBin "run-deploy" '' + set -euxo pipefail + export PATH=${ + pkgs.lib.makeBinPath [ pkgs.go pkgs.git pkgs.jq pkgs.flyctl ] + }:$PATH + bash ./scripts/deploy.sh + ''; + + meta = with pkgs.lib; { + description = "simple server for golang packages"; + homepage = "https://golang.fcuny.net"; + license = licenses.mit; + platforms = platforms.linux; + maintainers = [ ]; + }; +} |