mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
6ad771156c
has a dependency on gettext (and Perl; that's next). svn path=/nixpkgs/trunk/; revision=323
9 lines
160 B
Bash
Executable file
9 lines
160 B
Bash
Executable file
#! /bin/sh
|
|
|
|
. $stdenv/setup || exit 1
|
|
|
|
tar xvfz $src || exit 1
|
|
cd gettext-* || exit 1
|
|
./configure --prefix=$out || exit 1
|
|
make || exit 1
|
|
make install || exit 1
|