forked from mirrors/nixpkgs
ncurses5: add old ABI version for binary packages
This commit is contained in:
parent
bd55792892
commit
5535793302
|
@ -5,6 +5,7 @@
|
|||
|
||||
# Extra Options
|
||||
, unicode ? true
|
||||
, abiVersion ? null
|
||||
}:
|
||||
|
||||
let
|
||||
|
@ -55,7 +56,7 @@ stdenv.mkDerivation rec {
|
|||
(mkEnable unicode "widec" null)
|
||||
(mkEnable true "ext-colors" null)
|
||||
(mkEnable true "ext-mouse" null)
|
||||
];
|
||||
] ++ stdenv.lib.optional (abiVersion != null) (mkWith true "abi-version" abiVersion);
|
||||
|
||||
# PKG_CONFIG_LIBDIR is where the *.pc files will be installed. If this
|
||||
# directory doesn't exist, the configure script will disable installation of
|
||||
|
|
|
@ -7241,6 +7241,10 @@ let
|
|||
|
||||
ncurses = callPackage ../development/libraries/ncurses { };
|
||||
|
||||
ncurses5 = callPackage ../development/libraries/ncurses {
|
||||
abiVersion = "5";
|
||||
};
|
||||
|
||||
neon = callPackage ../development/libraries/neon {
|
||||
compressionSupport = true;
|
||||
sslSupport = true;
|
||||
|
|
Loading…
Reference in a new issue