mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
11 lines
196 B
Bash
11 lines
196 B
Bash
|
#! /bin/sh
|
||
|
|
||
|
. $stdenv/setup || exit 1
|
||
|
|
||
|
tar xvfz $src || exit 1
|
||
|
cd bash-* || exit 1
|
||
|
./configure --prefix=$out || exit 1
|
||
|
make || exit 1
|
||
|
make install || exit 1
|
||
|
(cd $out/bin; ln -s bash sh) || exit 1
|