Skip to content

Commit

Permalink
Merge main into sweep/add-sweep-config
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] authored Sep 9, 2023
2 parents 74b5cb2 + fadfaeb commit 36755fe
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ access-key
secret-key
dist
result
set-dyn-ip.nix
.vscode
dist-newstyle
set-dyn-ip
Expand Down
17 changes: 17 additions & 0 deletions set-dyn-ip.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{ mkDerivation, fetchFromGitHub, amazonka, amazonka-core, amazonka-route53, base
, lens, network, stdenv, lib
}:
mkDerivation {
pname = "set-dyn-ip";
version = "0.1.1.3";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
amazonka amazonka-core amazonka-route53 base lens network
];
homepage = "http://matt.mchenryfamily.org";
description = "reads an ip address as generated by client-ip-echo and sets it in Amazon AWS Route53";
license = lib.licenses.lgpl3;
maintainers = [ stdenv.lib.maintainers.jerith666 ];
}

0 comments on commit 36755fe

Please sign in to comment.