mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 18:23:09 +00:00
d7a48fc80d
better support for luarocks in a shell (helpful to develop on luarocks). Also adds unpacker for src.rock/rockspec files. Also allows to use luarocks to build cmake based rocks.
21 lines
476 B
Bash
21 lines
476 B
Bash
unpackCmdHooks+=(_trySourceRock)
|
|
unpackCmdHooks+=(_tryRockSpec)
|
|
|
|
_tryRockSpec() {
|
|
if ! [[ "$curSrc" =~ \.rockspec$ ]]; then return 1; fi
|
|
}
|
|
|
|
_trySourceRock() {
|
|
|
|
if ! [[ "$curSrc" =~ \.src.rock$ ]]; then return 1; fi
|
|
|
|
export PATH=${unzip}/bin:$PATH
|
|
|
|
# luarocks expects a clean <name>.rock.spec name to be the package name
|
|
# so we have to strip the hash
|
|
renamed="$(stripHash $curSrc)"
|
|
cp "$curSrc" "$renamed"
|
|
luarocks unpack --force "$renamed"
|
|
}
|
|
|