de13527000
though. * libxml2: upgrade to latest. * octavefront/rna: keep debug info. svn path=/nixpkgs/trunk/; revision=830
18 lines
297 B
Bash
Executable file
18 lines
297 B
Bash
Executable file
#! /bin/sh -e
|
|
|
|
buildinputs="$zlib"
|
|
. $stdenv/setup
|
|
|
|
export NIX_STRIP_DEBUG=
|
|
export NIX_CFLAGS_COMPILE="-g $NIX_CFLAGS_COMPILE"
|
|
|
|
tar xvfz $src
|
|
cd rna-*
|
|
./configure --prefix=$out
|
|
make
|
|
make install
|
|
strip -S $out/lib/*.a
|
|
|
|
mkdir $out/nix-support
|
|
echo "$zlib" > $out/nix-support/propagated-build-inputs
|