diff options
author | Jörg Thalheim | 2024-07-28 16:44:11 +0200 |
---|---|---|
committer | aleksana | 2024-07-29 10:06:20 +0800 |
commit | 5356420466c4d7901b63acc5e337c5bf30573f8a (patch) | |
tree | 2cdc5abef66c190b870a411453c1132cada1dc25 /pkgs/applications/misc/notable | |
parent | 8e3eab28d876d770f7103c26f3d995588202862c (diff) |
treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
Diffstat (limited to 'pkgs/applications/misc/notable')
-rw-r--r-- | pkgs/applications/misc/notable/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/misc/notable/default.nix b/pkgs/applications/misc/notable/default.nix index 4dde27827c96..cccb55f5e5f7 100644 --- a/pkgs/applications/misc/notable/default.nix +++ b/pkgs/applications/misc/notable/default.nix @@ -40,6 +40,6 @@ appimageTools.wrapType2 rec { homepage = "https://github.com/notable/notable"; license = licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } |