aboutsummaryrefslogtreecommitdiffhomepage
path: root/default.nix
diff options
context:
space:
mode:
authorpaulrbr-fl <43074087+paulrbr-fl@users.noreply.github.com>2020-10-12 11:28:05 +0200
committerGitHub <noreply@github.com>2020-10-12 11:28:05 +0200
commitda8563a557eaa7be2b2b42424bc86ee58550ffc1 (patch)
treed85822eb6821f86815014e14528668850cc67370 /default.nix
parent258e0097c2bd26bd07887c9a27dc7d0548a03419 (diff)
parentce6889c6f90ba5bc4843afb1f4e321866b324ff6 (diff)
downloadansible-kong-app-da8563a557eaa7be2b2b42424bc86ee58550ffc1.tar.gz
ansible-kong-app-da8563a557eaa7be2b2b42424bc86ee58550ffc1.tar.zst
ansible-kong-app-da8563a557eaa7be2b2b42424bc86ee58550ffc1.zip
Merge pull request #21 from paulrbr-fl/add-slack-token
travis: Use encrypted token for slack notifications
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/default.nix b/default.nix
new file mode 100644
index 0000000..6c1756e
--- /dev/null
+++ b/default.nix
@@ -0,0 +1,11 @@
1{ pkgs ? import <nixpkgs> {} }: with pkgs;
2
3 let
4 custom = callPackage ./custom.nix {};
5 in
6{
7 inherit ansible_2_8;
8 inherit (custom)dhall;
9 inherit (python38Packages)
10 ansible-lint;
11}