From 20fdd0aac69ec5f8de4a4effb4e856fd7402846f Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Wed, 25 Sep 2024 21:17:42 +0100 Subject: [PATCH] add openssl in shell environment --- shell.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..e78c7ae --- /dev/null +++ b/shell.nix @@ -0,0 +1,7 @@ +with import {}; +let p = callPackage ./package.nix {}; +in p.overrideAttrs(o: { + nativeBuildInputs = + [ pkgs.openssl ] ++ + lib.optionals (o ? nativeBuildInputs) o.nativeBuildInputs; +})