depot/third_party/nixpkgs/pkgs/development/libraries/memstream/setup-hook.sh

7 lines
213 B
Bash
Raw Normal View History

useMemstream () {
export NIX_CFLAGS_COMPILE="${NIX_CFLAGS_COMPILE-}${NIX_CFLAGS_COMPILE:+ }-include memstream.h";
export NIX_LDFLAGS="${NIX_LDFLAGS-}${NIX_LDFLAGS:+ }-lmemstream";
}
postHooks+=(useMemstream)