2020-02-19 08:37:46 -08:00
|
|
|
let
|
|
|
|
# TODO:
|
|
|
|
# nix-bitcoin-path = builtins.fetchTarball {
|
|
|
|
# url = "https://github.com/fort-nix/nix-bitcoin/archive/master.tar.gz";
|
|
|
|
# sha256 = "1mlvfakjgbl67k4k9mgafp5gvi2gb2p57xwxwffqr4chx8g848n7";
|
|
|
|
# };
|
|
|
|
nix-bitcoin-path = ../.;
|
|
|
|
nixpkgs-path = (import "${toString nix-bitcoin-path}/pkgs/nixpkgs-pinned.nix").nixpkgs;
|
|
|
|
nixpkgs = import nixpkgs-path {};
|
|
|
|
nix-bitcoin = nixpkgs.callPackage nix-bitcoin-path {};
|
2020-02-26 08:11:23 -08:00
|
|
|
|
|
|
|
extraContainer = nixpkgs.callPackage (builtins.fetchTarball {
|
|
|
|
url = "https://github.com/erikarvstedt/extra-container/archive/6cced2c26212cc1c8cc7cac3547660642eb87e71.tar.gz";
|
|
|
|
sha256 = "0qr41mma2iwxckdhqfabw3vjcbp2ffvshnc3k11kwriwj14b766v";
|
|
|
|
}) {};
|
2020-02-19 08:37:46 -08:00
|
|
|
in
|
|
|
|
with nixpkgs;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "nix-bitcoin-environment";
|
|
|
|
|
2020-02-26 08:11:23 -08:00
|
|
|
buildInputs = [ nix-bitcoin.nixops19_09 figlet extraContainer ];
|
2020-02-19 08:37:46 -08:00
|
|
|
|
|
|
|
shellHook = ''
|
|
|
|
export NIX_PATH="nixpkgs=${nixpkgs-path}:nix-bitcoin=${toString nix-bitcoin-path}:."
|
2020-02-26 08:11:23 -08:00
|
|
|
|
2020-02-19 08:37:46 -08:00
|
|
|
# ssh-agent and nixops don't play well together (see
|
|
|
|
# https://github.com/NixOS/nixops/issues/256). I'm getting `Received disconnect
|
|
|
|
# from 10.1.1.200 port 22:2: Too many authentication failures` if I have a few
|
|
|
|
# keys already added to my ssh-agent.
|
|
|
|
export SSH_AUTH_SOCK=""
|
2020-02-26 08:11:23 -08:00
|
|
|
|
2020-02-19 08:37:46 -08:00
|
|
|
figlet "nix-bitcoin"
|
|
|
|
(mkdir -p secrets; cd secrets; ${nix-bitcoin.generate-secrets})
|
|
|
|
'';
|
|
|
|
}
|