bd56b7d65c
svn path=/nixpkgs/trunk/; revision=860
9 lines
235 B
Bash
Executable file
9 lines
235 B
Bash
Executable file
#! /bin/sh -e
|
|
. $stdenv/setup
|
|
genericBuild
|
|
|
|
if test -n "$_propagatedBuildInputs"; then
|
|
if ! test -x $out/nix-support; then mkdir $out/nix-support; fi
|
|
echo "$_propagatedBuildInputs" > $out/nix-support/propagated-build-inputs
|
|
fi
|