12 lines
350 B
Bash
12 lines
350 B
Bash
#!/bin/bash
|
|
|
|
export PATH="$gnutar/bin:$gcc/bin:$gnumake/bin:$coreutils/bin:$gawk/bin:$gzip/bin:$gnugrep/bin:$gnused/bin:$bintools/bin"
|
|
|
|
echo $src
|
|
# I guess changing nixos version will change behavior of how fetchzip or something.
|
|
# This script differs from the version used against <nixpkgs>.
|
|
cd $src
|
|
ls -l
|
|
./configure --prefix=$out
|
|
make
|
|
make install |