mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-15 11:50:09 +00:00
We are migrating packages that meet below requirements:
1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration
The tool is here: https://github.com/Aleksanaa/by-name-migrate.
15 lines
642 B
Diff
15 lines
642 B
Diff
diff --git a/src/meson.build b/src/meson.build
|
|
index 4b9bc71..221ed5c 100644
|
|
--- a/src/meson.build
|
|
+++ b/src/meson.build
|
|
@@ -202,9 +202,6 @@ test('Error Handling', test_error, suite: 'unit')
|
|
test_fdlist = executable('test-fdlist', sources: ['util/test-fdlist.c'], kwargs: test_kwargs)
|
|
test('Utility File-Desciptor Lists', test_fdlist, suite: 'unit')
|
|
|
|
-test_fs = executable('test-fs', sources: ['util/test-fs.c'], kwargs: test_kwargs)
|
|
-test('File System Helpers', test_fs, suite: 'unit')
|
|
-
|
|
test_match = executable('test-match', sources: ['bus/test-match.c'], kwargs: test_kwargs)
|
|
test('D-Bus Match Handling', test_match, suite: 'unit')
|
|
|