mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
10 lines
162 B
Bash
10 lines
162 B
Bash
|
#! /bin/sh
|
||
|
|
||
|
. $stdenv/setup || exit 1
|
||
|
|
||
|
tar xvfj $src || exit 1
|
||
|
cd coreutils-* || exit 1
|
||
|
./configure --prefix=$out || exit 1
|
||
|
make || exit 1
|
||
|
make install || exit 1
|