From 60f97245a27cfa560f41a5ed5ad8e1e0372e403e Mon Sep 17 00:00:00 2001 From: Aneesh Agrawal Date: Thu, 14 Apr 2016 17:45:43 -0400 Subject: [PATCH] libressl 2.3: enable multiple outputs --- pkgs/development/libraries/libressl/2.3.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/libressl/2.3.nix b/pkgs/development/libraries/libressl/2.3.nix index 962bb547263..129456e6657 100644 --- a/pkgs/development/libraries/libressl/2.3.nix +++ b/pkgs/development/libraries/libressl/2.3.nix @@ -11,6 +11,8 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; + outputs = [ "dev" "out" "man" "bin" ]; + meta = with stdenv.lib; { description = "Free TLS/SSL implementation"; homepage = "http://www.libressl.org";