From 60f97245a27cfa560f41a5ed5ad8e1e0372e403e Mon Sep 17 00:00:00 2001 From: Aneesh Agrawal Date: Thu, 14 Apr 2016 17:45:43 -0400 Subject: [PATCH 1/2] 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"; From 9fb0bf1335c707e3a3e992311afa497ebb5be627 Mon Sep 17 00:00:00 2001 From: Aneesh Agrawal Date: Fri, 15 Apr 2016 10:43:04 -0400 Subject: [PATCH 2/2] libressl 2.2: enable multiple outputs --- pkgs/development/libraries/libressl/2.2.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/libressl/2.2.nix b/pkgs/development/libraries/libressl/2.2.nix index a3389a49fbc..09505217ae2 100644 --- a/pkgs/development/libraries/libressl/2.2.nix +++ b/pkgs/development/libraries/libressl/2.2.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";