3
0
Fork 0
forked from mirrors/nixpkgs

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.
This commit is contained in:
Peter Simons 2013-02-06 12:35:00 +01:00
parent af9747c1ef
commit 4aa56c21c8
3 changed files with 3 additions and 3 deletions

View file

@ -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";

View file

@ -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";

View file

@ -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";