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" ```
61 lines
1.3 KiB
Nix
61 lines
1.3 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
afdko,
|
|
buildPythonPackage,
|
|
cmake,
|
|
distutils,
|
|
fetchPypi,
|
|
fonttools,
|
|
ninja,
|
|
pytestCheckHook,
|
|
scikit-build,
|
|
setuptools,
|
|
setuptools-scm,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cffsubr";
|
|
version = "0.3.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-d0UVC9uBZ5+s3RHB87hwlsT029SVfo/Ou4jEVoeVLvs=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace-fail 'afdko_output_dir = os.path.join(afdko_root_dir, "build", "bin")' \
|
|
'afdko_output_dir = "${lib.getBin afdko}/bin"' \
|
|
--replace-fail 'build_cmd=build_release_cmd' 'build_cmd="true"'
|
|
'';
|
|
|
|
build-system = [
|
|
cmake
|
|
distutils
|
|
ninja
|
|
scikit-build
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
dontUseCmakeConfigure = true;
|
|
|
|
dependencies = [ fonttools ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "cffsubr" ];
|
|
|
|
meta = with lib; {
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
changelog = "https://github.com/adobe-type-tools/cffsubr/releases/tag/v${version}";
|
|
description = "Standalone CFF subroutinizer based on AFDKO tx";
|
|
mainProgram = "cffsubr";
|
|
homepage = "https://github.com/adobe-type-tools/cffsubr";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|