1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

openssl: Split header files from the libraries

This commit is contained in:
Eelco Dolstra 2013-06-11 14:28:49 +02:00
parent 39dc112bc1
commit 2c9fa33521
2 changed files with 7 additions and 2 deletions

View file

@ -46,8 +46,9 @@ stdenv.mkDerivation {
patches = patchesCross false;
# TODO: separate lib.
outputs = [ "out" "man" "bin" ];
outputs = [ "dev" "out" "man" "bin" ];
setOutputConfigureFlags = false;
buildInputs = stdenv.lib.optional withCryptodev cryptodevHeaders;
@ -78,6 +79,9 @@ stdenv.mkDerivation {
mv $out/bin $bin/
rm -rf $out/etc/ssl/misc
mkdir $dev
mv $out/include $dev/
''; # */
crossAttrs = {

View file

@ -4941,6 +4941,7 @@ let
openscenegraph = callPackage ../development/libraries/openscenegraph {};
openssl = callPackage ../development/libraries/openssl {
stdenv = stdenvMulti;
fetchurl = fetchurlBoot;
cryptodevHeaders = linuxPackages.cryptodev.override {
fetchurl = fetchurlBoot;