forked from mirrors/nixpkgs
ncurses: make shared linking optinoal
when enableShared = false, we set --without-shared flag.
This commit is contained in:
parent
e999def159
commit
53a67891ab
|
@ -4,6 +4,7 @@
|
||||||
, mouseSupport ? false
|
, mouseSupport ? false
|
||||||
, unicode ? true
|
, unicode ? true
|
||||||
, enableStatic ? stdenv.hostPlatform.useAndroidPrebuilt
|
, enableStatic ? stdenv.hostPlatform.useAndroidPrebuilt
|
||||||
|
, enableShared ? !enableStatic
|
||||||
, withCxx ? !stdenv.hostPlatform.useAndroidPrebuilt
|
, withCxx ? !stdenv.hostPlatform.useAndroidPrebuilt
|
||||||
|
|
||||||
, gpm
|
, gpm
|
||||||
|
@ -29,7 +30,7 @@ stdenv.mkDerivation rec {
|
||||||
setOutputFlags = false; # some aren't supported
|
setOutputFlags = false; # some aren't supported
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--with-shared"
|
(lib.withFeature enableShared "shared")
|
||||||
"--without-debug"
|
"--without-debug"
|
||||||
"--enable-pc-files"
|
"--enable-pc-files"
|
||||||
"--enable-symlinks"
|
"--enable-symlinks"
|
||||||
|
|
Loading…
Reference in a new issue