about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-02-06 12:35:00 +0100
committerPeter Simons <simons@cryp.to>2013-02-06 12:35:00 +0100
commit4aa56c21c85792284ae2b301ad86766202a22592 (patch)
tree46642ff2eb4e6e3edd7c74d9ac0125b8a2052dd6
parentaf9747c1ef1af07c76ba107f8099e4bd5cf1e1d0 (diff)
downloadnixlib-4aa56c21c85792284ae2b301ad86766202a22592.tar
nixlib-4aa56c21c85792284ae2b301ad86766202a22592.tar.gz
nixlib-4aa56c21c85792284ae2b301ad86766202a22592.tar.bz2
nixlib-4aa56c21c85792284ae2b301ad86766202a22592.tar.lz
nixlib-4aa56c21c85792284ae2b301ad86766202a22592.tar.xz
nixlib-4aa56c21c85792284ae2b301ad86766202a22592.tar.zst
nixlib-4aa56c21c85792284ae2b301ad86766202a22592.zip
Rename "boost-x.y.z-headers" derivation to "boost-headers-x.y.z" to ensure that
nix-env picks the full boost distribution when "nix-env -i boost" is installed.
-rw-r--r--pkgs/development/libraries/boost/1.49-headers.nix2
-rw-r--r--pkgs/development/libraries/boost/1.51-headers.nix2
-rw-r--r--pkgs/development/libraries/boost/1.52-headers.nix2
3 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/boost/1.49-headers.nix b/pkgs/development/libraries/boost/1.49-headers.nix
index 58c0c19a17bc..afb094a3cad5 100644
--- a/pkgs/development/libraries/boost/1.49-headers.nix
+++ b/pkgs/development/libraries/boost/1.49-headers.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchurl }:
 
 stdenv.mkDerivation {
-  name = "boost-1.49.0-headers";
+  name = "boost-headers-1.49.0";
 
   src = fetchurl {
     url = "mirror://sourceforge/boost/boost_1_49_0.tar.bz2";
diff --git a/pkgs/development/libraries/boost/1.51-headers.nix b/pkgs/development/libraries/boost/1.51-headers.nix
index 4b1c1f80c541..6004eb799c01 100644
--- a/pkgs/development/libraries/boost/1.51-headers.nix
+++ b/pkgs/development/libraries/boost/1.51-headers.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchurl }:
 
 stdenv.mkDerivation {
-  name = "boost-1.51.0-headers";
+  name = "boost-headers-1.51.0";
 
   src = fetchurl {
     url = "mirror://sourceforge/boost/boost_1_51_0.tar.bz2";
diff --git a/pkgs/development/libraries/boost/1.52-headers.nix b/pkgs/development/libraries/boost/1.52-headers.nix
index 72a4b419f2d5..b9e594cf5f91 100644
--- a/pkgs/development/libraries/boost/1.52-headers.nix
+++ b/pkgs/development/libraries/boost/1.52-headers.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchurl }:
 
 stdenv.mkDerivation {
-  name = "boost-1.52.0-headers";
+  name = "boost-headers-1.52.0";
 
   src = fetchurl {
     url = "mirror://sourceforge/boost/boost_1_52_0.tar.bz2";