mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 15:58:36 +00:00
9 lines
135 B
Bash
Executable file
9 lines
135 B
Bash
Executable file
#! /bin/sh
|
|
|
|
. $stdenv/setup || exit 1
|
|
|
|
tar xvfz $src || exit 1
|
|
cd getopt-* || exit 1
|
|
make || exit 1
|
|
make install prefix=$out || exit 1
|