Merge pull request #297739 from hraban/sbcl/version-file
sbcl: create version file if none exists
This commit is contained in:
commit
85049df2ba
1 changed files with 6 additions and 0 deletions
|
@ -146,6 +146,12 @@ stdenv.mkDerivation (self: rec {
|
|||
--replace-quiet /bin/uname "${coreutils}/bin/uname" \
|
||||
--replace-quiet /bin/sh "${stdenv.shell}"
|
||||
)
|
||||
# Official source release tarballs will have a version.lispexpr, but if you
|
||||
# want to override { src = ... } it might not exist. It’s required for
|
||||
# building, so create a mock version as a backup.
|
||||
if [[ ! -a version.lisp-expr ]]; then
|
||||
echo '"${version}.nixos"' > version.lisp-expr
|
||||
fi
|
||||
'';
|
||||
|
||||
preBuild = ''
|
||||
|
|
Loading…
Reference in a new issue