nix-super/.gitignore

166 lines
2.9 KiB
Text
Raw Normal View History

Makefile.config
perl/Makefile.config
2010-02-10 17:55:46 +02:00
# /
/aclocal.m4
/autom4te.cache
2019-11-08 11:38:54 +02:00
/precompiled-headers.h.gch
2010-02-10 17:55:46 +02:00
/config.*
/configure
/stamp-h1
/svn-revision
/libtool
/config/config.*
Build `nix-util` with Meson The idea is two-fold: - Replace autotools with Meson - Build each library in its own derivation The interaction of these two features is that Meson's "subprojects" feature (https://mesonbuild.com/Subprojects) allows us to have single dev shell for building all libraries still, while also building things separately. This allows us to break up the build without a huge productivity lost. I tested the Linux native build, and NetBSD and Windows cross builds. Also do some clean ups of the Flake in the process of supporting new jobs. Special thanks to everyone that has worked on a Meson port so far, @p01arst0rm and @Qyriad in particular. Co-Authored-By: p01arst0rm <polar@ever3st.com> Co-Authored-By: Artemis Tosini <lix@artem.ist> Co-Authored-By: Artemis Tosini <me@artem.ist> Co-Authored-By: Felix Uhl <felix.uhl@outlook.com> Co-Authored-By: Jade Lovelace <lix@jade.fyi> Co-Authored-By: Lunaphied <lunaphied@lunaphied.me> Co-Authored-By: Maximilian Bosch <maximilian@mbosch.me> Co-Authored-By: Pierre Bourdon <delroth@gmail.com> Co-Authored-By: Qyriad <qyriad@qyriad.me> Co-Authored-By: Rebecca Turner <rbt@sent.as> Co-Authored-By: Winter <winter@winter.cafe> Co-Authored-By: eldritch horrors <pennae@lix.systems> Co-Authored-By: jade <lix@jade.fyi> Co-Authored-By: julia <midnight@trainwit.ch> Co-Authored-By: rebecca “wiggles” turner <rbt@sent.as> Co-Authored-By: wiggles dog <rbt@sent.as> Co-Authored-By: fricklerhandwerk <valentin@fricklerhandwerk.de> Co-authored-By: Eli Schwartz <eschwartz93@gmail.com> Co-authored-by: Robert Hensing <roberth@users.noreply.github.com>
2024-06-04 16:28:27 +03:00
# Default meson build dir
/build
2010-02-10 17:55:46 +02:00
# /doc/manual/
2021-07-27 14:48:19 +03:00
/doc/manual/*.1
2012-07-27 00:10:28 +03:00
/doc/manual/*.5
2010-02-10 17:55:46 +02:00
/doc/manual/*.8
2021-07-27 14:48:19 +03:00
/doc/manual/generated/*
2020-08-17 20:33:18 +03:00
/doc/manual/nix.json
/doc/manual/conf-file.json
/doc/manual/language.json
/doc/manual/xp-features.json
/doc/manual/src/SUMMARY.md
/doc/manual/src/SUMMARY-rl-next.md
/doc/manual/src/store/types/*
!/doc/manual/src/store/types/index.md.in
/doc/manual/src/command-ref/new-cli
/doc/manual/src/command-ref/conf-file.md
/doc/manual/src/command-ref/experimental-features-shortlist.md
/doc/manual/src/contributing/experimental-feature-descriptions.md
2022-08-04 21:01:27 +03:00
/doc/manual/src/language/builtins.md
/doc/manual/src/language/builtin-constants.md
/doc/manual/src/release-notes/rl-next.md
2010-02-10 17:55:46 +02:00
# /scripts/
/scripts/nix-profile.sh
/scripts/nix-profile-daemon.sh
/scripts/nix-profile.fish
/scripts/nix-profile-daemon.fish
2010-02-10 17:55:46 +02:00
# /src/libexpr/
/src/libexpr/lexer-tab.cc
/src/libexpr/lexer-tab.hh
/src/libexpr/parser-tab.cc
/src/libexpr/parser-tab.hh
/src/libexpr/parser-tab.output
/src/libexpr/nix.tbl
/src/libexpr/tests
/tests/unit/libexpr/libnixexpr-tests
2010-02-10 17:55:46 +02:00
# /src/libfetchers
/tests/unit/libfetchers/libnixfetchers-tests
2010-02-10 17:55:46 +02:00
# /src/libstore/
2020-03-24 15:26:13 +02:00
*.gen.*
/src/libstore/tests
/tests/unit/libstore/libnixstore-tests
2010-02-10 17:55:46 +02:00
# /src/libutil/
/src/libutil/tests
/tests/unit/libutil/libnixutil-tests
/src/nix/nix
/src/nix/generated-doc
2023-02-17 19:57:15 +02:00
2010-02-10 17:55:46 +02:00
# /src/nix-env/
/src/nix-env/nix-env
# /src/nix-instantiate/
/src/nix-instantiate/nix-instantiate
# /src/nix-store/
/src/nix-store/nix-store
/src/nix-prefetch-url/nix-prefetch-url
/src/nix-collect-garbage/nix-collect-garbage
2016-08-11 18:34:43 +03:00
# /src/nix-channel/
/src/nix-channel/nix-channel
# /src/nix-build/
/src/nix-build/nix-build
/src/nix-copy-closure/nix-copy-closure
2020-04-06 21:05:17 +03:00
/src/error-demo/error-demo
2016-07-19 01:50:27 +03:00
/src/build-remote/build-remote
# /tests/functional/
/tests/functional/test-tmp
/tests/functional/common/subst-vars.sh
/tests/functional/result*
/tests/functional/restricted-innocent
/tests/functional/shell
/tests/functional/shell.drv
/tests/functional/config.nix
/tests/functional/ca/config.nix
/tests/functional/dyn-drv/config.nix
/tests/functional/repl-result-out
/tests/functional/debugger-test-out
/tests/functional/test-libstoreconsumer/test-libstoreconsumer
# /tests/functional/lang/
/tests/functional/lang/*.out
/tests/functional/lang/*.out.xml
/tests/functional/lang/*.err
/tests/functional/lang/*.ast
2010-02-10 17:55:46 +02:00
2012-02-08 20:25:43 +02:00
/perl/lib/Nix/Config.pm
/perl/lib/Nix/Store.cc
2010-02-10 17:55:46 +02:00
2014-04-07 12:18:54 +03:00
/misc/systemd/nix-daemon.service
/misc/systemd/nix-daemon.socket
/misc/systemd/nix-daemon.conf
2014-05-02 14:14:10 +03:00
/misc/upstart/nix-daemon.conf
2014-04-07 12:18:54 +03:00
2020-09-15 14:48:23 +03:00
outputs/
2016-07-20 21:00:36 +03:00
2012-02-08 20:25:43 +02:00
*.a
2010-02-10 17:55:46 +02:00
*.o
*.o.tmp
2012-02-08 20:25:43 +02:00
*.so
*.dylib
2014-12-03 11:00:46 +02:00
*.dll
*.exe
*.dep
2010-02-10 17:55:46 +02:00
*~
2014-09-18 13:00:40 +03:00
*.pc
*.plist
2010-02-10 17:55:46 +02:00
# GNU Global
GPATH
GRTAGS
GSYMS
GTAGS
2019-03-27 15:12:20 +02:00
2020-09-14 00:07:09 +03:00
# ccls
/.ccls-cache
# auto-generated compilation database
compile_commands.json
2024-03-18 17:57:15 +02:00
*.compile_commands.json
2020-09-14 00:07:09 +03:00
2019-03-27 15:12:20 +02:00
nix-rust/target
2022-01-16 05:17:40 +02:00
result
2024-01-09 13:36:09 +02:00
result-*
2022-01-16 05:17:40 +02:00
# IDE
2022-01-16 05:17:40 +02:00
.vscode/
.idea/
2023-07-06 12:26:51 +03:00
.pre-commit-config.yaml
2023-07-06 12:26:51 +03:00
# clangd and possibly more
.cache/
# Mac OS
.DS_Store