mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-30 00:34:00 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
49 lines
1.3 KiB
Nix
49 lines
1.3 KiB
Nix
{ stdenv, fetchFromGitHub, buildLuarocksPackage, lua, pkg-config, lib, substituteAll, zenity, AppKit}:
|
|
|
|
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 = [
|
|
(substituteAll {
|
|
src = ./zenity.patch;
|
|
inherit zenity;
|
|
})
|
|
];
|
|
knownRockspec = "lua/nfd-scm-1.rockspec";
|
|
|
|
luarocksConfig.variables.LUA_LIBDIR = "${lua}/lib";
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ AppKit ];
|
|
|
|
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";
|
|
};
|
|
}
|