Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync flake with nixpkg #2218

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 12 additions & 13 deletions build-aux/pkg.nix
Original file line number Diff line number Diff line change
Expand Up @@ -79,19 +79,18 @@ stdenv.mkDerivation (finalAttrs: {
sed -i -e 's/tarball-version/flake-version/' configure.ac
'';

buildInputs =
[
finalAttrs.finalPackage.passthru.luaEnv
cargo-edit
harfbuzz
icu
fontconfig
libiconv
libxslt
stylua
taplo
typos
];
buildInputs = [
finalAttrs.finalPackage.passthru.luaEnv
cargo-edit
harfbuzz
icu
fontconfig
libiconv
libxslt
stylua
taplo
typos
];
Comment on lines +82 to +93
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is one of my painful points in the new nix formatting, but I guess I'll have to live with it :).

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My beef is it did not apply the same style to all elements, e.g. luaPackages and configureFlags did not get formatted the same way buildInputs and others did. 🤷


configureFlags =
[
Expand Down
Loading