aboutsummaryrefslogtreecommitdiff
path: root/tools/govanity/flake.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-05-29 09:25:57 -0700
committerFranck Cuny <franck@fcuny.net>2022-05-29 09:25:57 -0700
commit12538a179736a8ba434abf29403d9a2a26ad661c (patch)
tree23199676d037fc3bcaa69f02b011aa0174fc6329 /tools/govanity/flake.nix
parentMerge remote-tracking branch 'govanity/main' (diff)
downloadinfra-12538a179736a8ba434abf29403d9a2a26ad661c.tar.gz
tools(govanity): remove unneeded files
These files are not needed in the monorepo. Change-Id: I742316d7a6fae817bedbcd2e1f91963bc24c91b7
Diffstat (limited to 'tools/govanity/flake.nix')
-rw-r--r--tools/govanity/flake.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/tools/govanity/flake.nix b/tools/govanity/flake.nix
deleted file mode 100644
index d2c2254..0000000
--- a/tools/govanity/flake.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{
- description = "govanity";
-
- inputs = {
- nixpkgs.url = "github:nixos/nixpkgs/release-21.11";
- utils.url = "github:numtide/flake-utils";
- };
-
- outputs = { self, utils, nixpkgs, pre-commit-hooks }:
- utils.lib.eachDefaultSystem (system:
- let pkgs = nixpkgs.legacyPackages.${system};
- in {
-
- defaultPackage = self.packages.${system}.vanity;
-
- packages.vanity = pkgs.buildGoModule {
- pname = "vanity";
- version = "0.0.1";
- src = ./.;
- vendorSha256 = "sha256-iu2QE+vvenFWpOOz1NHVQHudiWkvkKqZvD4ZX4Xa1sY=";
- nativeBuildInputs = with pkgs; [ go ];
- };
-
- apps = {
- 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
- '';
- };
-
- devShell = with pkgs;
- mkShell { nativeBuildInputs = [ git go gopls golangci-lint bash ]; };
- });
-}