title Authentication Sequence
Alice->Bob: Authentication Request
note right of Bob: Bob thinks about it
Bob->Alice: Authentication Response
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {pkgs ? import <nixpkgs> { | |
| inherit system; | |
| }, system ? builtins.currentSystem}: | |
| let | |
| nodePackages = import ./default.nix { | |
| inherit pkgs system; | |
| }; | |
| in | |
| nodePackages // { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -Eeuxo pipefail | |
| # Set up git | |
| git init | |
| gitignore haskell | |
| echo '*.cabal' >> .gitignore | |
| # Set up niv | |
| niv init |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| with import ../nixpkgs {}; | |
| let | |
| jdk = openjdk11.overrideAttrs (oldAttrs: rec { | |
| buildInputs = lib.remove gnome2.gnome_vfs oldAttrs.buildInputs; | |
| NIX_LDFLAGS = builtins.replaceStrings [ "-lgnomevfs-2" ] [ "" ] oldAttrs.NIX_LDFLAGS; | |
| }); | |
| version = "1.5.1"; | |
| name = "bisq-desktop"; | |
| src = (fetchgit rec { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2022-09-17T01:36:37.392+0200 [INFO] Terraform version: 1.2.9 | |
| 2022-09-17T01:36:37.392+0200 [DEBUG] using github.com/hashicorp/go-tfe v1.0.0 | |
| 2022-09-17T01:36:37.392+0200 [DEBUG] using github.com/hashicorp/hcl/v2 v2.12.0 | |
| 2022-09-17T01:36:37.392+0200 [DEBUG] using github.com/hashicorp/terraform-config-inspect v0.0.0-20210209133302-4fd17a0faac2 | |
| 2022-09-17T01:36:37.392+0200 [DEBUG] using github.com/hashicorp/terraform-svchost v0.0.0-20200729002733-f050f53b9734 | |
| 2022-09-17T01:36:37.392+0200 [DEBUG] using github.com/zclconf/go-cty v1.11.0 | |
| 2022-09-17T01:36:37.392+0200 [INFO] Go runtime version: go1.18.5 | |
| 2022-09-17T01:36:37.392+0200 [INFO] CLI args: []string{"terraform", "validate"} | |
| 2022-09-17T01:36:37.392+0200 [TRACE] Stdout is a terminal of width 212 | |
| 2022-09-17T01:36:37.392+0200 [TRACE] Stderr is a terminal of width 212 |
OlderNewer