forked from mirrors/nixpkgs
boost-build: Add derivation
This commit is contained in:
parent
363b6da6a7
commit
768fe6ed06
44
pkgs/development/tools/boost-build/default.nix
Normal file
44
pkgs/development/tools/boost-build/default.nix
Normal file
|
@ -0,0 +1,44 @@
|
|||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "boost-build-2.0-m12";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/boost/${name}.tar.bz2";
|
||||
sha256 = "10sbbkx2752r4i1yshyp47nw29lyi1p34sy6hj7ivvnddiliayca";
|
||||
};
|
||||
|
||||
patchPhase = ''
|
||||
grep -r '/usr/share/boost-build' \
|
||||
| awk '{split($0,a,":"); print a[1];}' \
|
||||
| xargs sed -i "s,/usr/share/boost-build,$out/share/boost-build,"
|
||||
'';
|
||||
|
||||
buildPhase = ''
|
||||
cd jam_src
|
||||
./build.sh
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
# Install Bjam
|
||||
mkdir -p $out/bin
|
||||
cd "$(ls | grep bin)"
|
||||
cp -a bjam $out/bin
|
||||
|
||||
# Bjam is B2
|
||||
ln -s bjam $out/bin/b2
|
||||
|
||||
# Install the shared files (don't include jam_src)
|
||||
cd ../..
|
||||
rm -rf jam_src
|
||||
mkdir -p $out/share
|
||||
cp -a . $out/share/boost-build
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.boost.org/boost-build2/;
|
||||
license = "boost-license";
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ wkennington ];
|
||||
};
|
||||
}
|
|
@ -599,6 +599,8 @@ let
|
|||
|
||||
boomerang = callPackage ../development/tools/boomerang { };
|
||||
|
||||
boost-build = callPackage ../development/tools/boost-build { };
|
||||
|
||||
bootchart = callPackage ../tools/system/bootchart { };
|
||||
|
||||
bro = callPackage ../applications/networking/ids/bro { };
|
||||
|
|
Loading…
Reference in a new issue