forked from mirrors/nixpkgs
Made lua and task warrior unstable crossbuild fine
svn path=/nixpkgs/trunk/; revision=31251
This commit is contained in:
parent
29d613ba0e
commit
e43bd7c4ce
|
@ -10,7 +10,14 @@ stdenv.mkDerivation {
|
|||
|
||||
NIX_LDFLAGS = "-ldl";
|
||||
|
||||
buildInputs = [ cmake lua5 ];
|
||||
buildNativeInputs = [ cmake ];
|
||||
buildInputs = [ lua5 ];
|
||||
|
||||
crossAttrs = {
|
||||
preConfigure = ''
|
||||
export NIX_CROSS_LDFLAGS="$NIX_CROSS_LDFLAGS -ldl"
|
||||
'';
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Command-line todo list manager";
|
||||
|
|
|
@ -30,6 +30,7 @@ stdenv.mkDerivation {
|
|||
-e "s/ ranlib/$crossConfig-ranlib/" \
|
||||
src/Makefile
|
||||
'';
|
||||
dontStrip = true;
|
||||
};
|
||||
|
||||
meta = {
|
||||
|
|
Loading…
Reference in a new issue