mirror of
https://github.com/house-of-vanity/khm.git
synced 2025-07-06 06:44:08 +00:00
12 lines
155 B
Nix
12 lines
155 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = [
|
|
pkgs.openssl
|
|
pkgs.pkg-config
|
|
];
|
|
shellHook = ''
|
|
unset OPENSSL_DIR
|
|
'';
|
|
}
|