Rename boost => boost-headers
Suffixes like "-headers" should go *before* the version part; otherwise nix-env will think boost and boost-*-headers are the same package.
This commit is contained in:
parent
4718d430cc
commit
f6e012591f
|
@ -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";
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in New Issue