forked from Zynh0722/nyazoom
13 lines
239 B
Nix
13 lines
239 B
Nix
|
{ pkgs ? import <nixpkgs> { }, additionalBuildInputs ? [ ] }:
|
||
|
|
||
|
with pkgs;
|
||
|
|
||
|
mkShell rec {
|
||
|
nativeBuildInputs = [
|
||
|
pkg-config
|
||
|
openssl
|
||
|
];
|
||
|
buildInputs = additionalBuildInputs;
|
||
|
LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs;
|
||
|
}
|