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

7 lines
213 B
Bash
Raw Normal View History

2021-08-24 08:28:31 +00:00
useMemstream () {
export NIX_CFLAGS_COMPILE="${NIX_CFLAGS_COMPILE-}${NIX_CFLAGS_COMPILE:+ }-include memstream.h";
export NIX_LDFLAGS="${NIX_LDFLAGS-}${NIX_LDFLAGS:+ }-lmemstream";
}
postHooks+=(useMemstream)