mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-11 18:32:23 +08:00
Made with
```shell
git restore .
fd '\.nix$' pkgs/ --type f -j1 -x bash -xc "$(cat <<"EOF"
typos --no-check-filenames --write-changes "$1"
git diff --exit-code "$1" && exit
#( git diff "$1" | grep -qE "^\+ +[^# ]") && git restore "$1"
count1="$( bat --language nix --diff --style changes "$1" --theme "Monokai Extended" --color always | aha --no-header | grep -E '^<span style="color:olive;">~</span> ' | wc -l )"
count2="$( bat --language nix --diff --style changes "$1" --theme "Monokai Extended" --color always | aha --no-header | grep -E '^<span style="color:olive;">~</span> (<span style="color:#f8f8f2;"> *</span>)?<span style="color:#75715e;">.*</span>$' | wc -l )"
[[ $count1 -ne $count2 ]] && git restore "$1"
EOF
)" -- {}
```
and filtered with `GIT_DIFF_OPTS='--unified=15' git -c interactive.singleKey=true add --patch`
I initially tried using the tree-sitter cli, python bindings and even ast-grep through various means, but this is what I ended up with.
39 lines
1.0 KiB
Nix
39 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pth";
|
|
version = "2.0.7";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/pth/pth-${version}.tar.gz";
|
|
sha256 = "0ckjqw5kz5m30srqi87idj7xhpw6bpki43mj07bazjm2qmh3cdbj";
|
|
};
|
|
|
|
preConfigure =
|
|
lib.optionalString stdenv.hostPlatform.isAarch32 ''
|
|
configureFlagsArray=("CFLAGS=-DJB_SP=8 -DJB_PC=9")
|
|
''
|
|
+ lib.optionalString (stdenv.hostPlatform.libc == "glibc") ''
|
|
configureFlagsArray+=("ac_cv_check_sjlj=ssjlj")
|
|
'';
|
|
|
|
# Fails parallel build due to missing dependency on autogenerated
|
|
# 'pth_p.h' file:
|
|
# ./shtool scpp -o pth_p.h ...
|
|
# ./libtool --mode=compile --quiet gcc -c -I. -O2 -pipe pth_uctx.c
|
|
# pth_uctx.c:31:10: fatal error: pth_p.h: No such file
|
|
enableParallelBuilding = false;
|
|
|
|
meta = with lib; {
|
|
description = "GNU Portable Threads library";
|
|
mainProgram = "pth-config";
|
|
homepage = "https://www.gnu.org/software/pth";
|
|
license = licenses.lgpl21Plus;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|