17 lines
386 B
Nix
17 lines
386 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
with pkgs;
|
|
let
|
|
agent_src = fetchgit {
|
|
url = "https://gitea.rixxc.de/rixxc/x25519_agent.git";
|
|
rev = "d9b6dea879492dc5436e14ac8ea7367d641f6deb";
|
|
hash = "sha256-B7aFz5r8dNoAO829Ao6/1Wl5TqDh9xhfDds0ZF0cRqI=";
|
|
};
|
|
|
|
agent = callPackage "${agent_src}/default.nix" { };
|
|
in
|
|
pkgs.mkShell {
|
|
name = "agent-harness";
|
|
|
|
buildInputs = [ agent ];
|
|
}
|