mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
1c39662e63
Able to bootstrap stdenv on FreeBSD by compiling various dependencies using built-in FreeBSD tools so mostly works now Closes: https://github.com/NixOS/nixpkgs/pull/81459
11 lines
156 B
Bash
Executable File
11 lines
156 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export PATH=/bin:/sbin:/usr/bin:/usr/sbin
|
|
|
|
tar -zxvf $src
|
|
cd $dname
|
|
mkdir -p $out/bin
|
|
./configure --prefix=$out $configureArgs
|
|
make
|
|
make install
|