bd56b7d65c
svn path=/nixpkgs/trunk/; revision=860
11 lines
234 B
Bash
Executable file
11 lines
234 B
Bash
Executable file
#! /bin/sh
|
|
|
|
. $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
|