mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
12 lines
294 B
Bash
12 lines
294 B
Bash
|
. $stdenv/setup
|
||
|
|
||
|
configureFlags="\
|
||
|
--with-pngincludedir=$libpng/include \
|
||
|
--with-pnglibdir=$libpng/lib \
|
||
|
--with-jpegincludedir=$libjpeg/include \
|
||
|
--with-jpeglibdir=$libjpeg/lib \
|
||
|
--with-expatincludedir=$expat/include \
|
||
|
--with-expatlibdir=$expat/lib \
|
||
|
"
|
||
|
|
||
|
genericBuild
|