They are not doing anything right now. This is in preparation for their complete removal from the tree. Note: several changes that affect the derivation inputs (e.g. removal of references to stub paths in build instructions) were left out. They will be cleaned up the next iteration and will require special care. Note: this PR is a result of a mix of ugly regex (not AST) based automation and some manual labor. For reference, the regex automation part was hacked in: https://github.com/booxter/nix-clean-apple_sdk Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
52 lines
1.2 KiB
Nix
52 lines
1.2 KiB
Nix
{
|
|
fetchFromGitHub,
|
|
buildLuarocksPackage,
|
|
lua,
|
|
pkg-config,
|
|
lib,
|
|
replaceVars,
|
|
zenity,
|
|
}:
|
|
|
|
buildLuarocksPackage {
|
|
pname = "nfd";
|
|
version = "scm-1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Vexatos";
|
|
repo = "nativefiledialog";
|
|
rev = "2f74a5758e8df9b27158d444953697bc13fe90d8";
|
|
sha256 = "1f52mb0s9zrpsqjp10bx92wzqmy1lq7fg1fk1nd6xmv57kc3b1qv";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
# use zenity because default gtk impl just crashes
|
|
patches = [
|
|
(replaceVars ./zenity.patch {
|
|
inherit zenity;
|
|
})
|
|
];
|
|
knownRockspec = "lua/nfd-scm-1.rockspec";
|
|
|
|
luarocksConfig.variables.LUA_LIBDIR = "${lua}/lib";
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
postInstall = ''
|
|
find $out -name nfd_zenity.so -execdir mv {} nfd.so \;
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
installCheckInputs = [ lua.pkgs.busted ];
|
|
installCheckPhase = ''
|
|
busted lua/spec/
|
|
'';
|
|
|
|
meta = {
|
|
description = "A tiny, neat lua library that portably invokes native file open and save dialogs.";
|
|
homepage = "https://github.com/Alloyed/nativefiledialog/tree/master/lua";
|
|
license = lib.licenses.zlib;
|
|
maintainers = [ lib.maintainers.scoder12 ];
|
|
broken = lua.luaversion != "5.1";
|
|
};
|
|
}
|