Skip to content

Commit

Permalink
devShells: add common shell with yubihsm utilities
Browse files Browse the repository at this point in the history
This adds a devShell called 'common' which contains the yubihsm
utilities I've gotten merged into nixpkgs upstream

NixOS/nixpkgs#169682
NixOS/nixpkgs#169645
  • Loading branch information
MatthewCroughan committed May 16, 2022
1 parent 2ec7352 commit 91efd94
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,20 @@
in
{
devShells = {
common = pkgs.mkShell {
buildInputs = with pkgs; [
yubihsm-shell
yubihsm-connector
];
};
rust = rustShell;
haskell = haskellShell;
default =
mergeDevShells
[
self.devShells.${system}.haskell
self.devShells.${system}.rust
self.devShells.${system}.common
];
};

Expand Down

0 comments on commit 91efd94

Please sign in to comment.