summaryrefslogtreecommitdiffstats
path: root/pkgs/top-level
diff options
context:
space:
mode:
author^x3ro <git@x3ro.dev>2021-09-08 21:29:52 +0200
committer^x3ro <git@x3ro.dev>2021-09-12 10:13:27 +0200
commitf6211582a16c535700178921200247bc59b4e81e (patch)
tree833b7cd997ce3af1ec60f10a73e7deca3f639098 /pkgs/top-level
parent151fd8a64cf66473b0007f204d7a2fc4a9e804a2 (diff)
linux-router: init at 0.6.2
Squashed commits: - Give wrapped executable a nicer name The filename of the wrapped binary is used to generate usage examples in `--help`. The `wrapProgram` command renames the executable to a hidden file and appends `-wrapped` this is then shown in the usage example: ``` Usage: .lnxrouter-wrapped <options> ``` - Using `makeWrapper` the executable can be moved to another directory but can keep it's oroginal name. - Replace alias with real package name - Fix variable name - Import `makeWrapper` directly instead of importing `pkgs` Co-authored-by: markuskowa <markus.kowalewski@gmail.com> - Move `let` to where it is actually used - Do not set optional packages `null` - Remove `name` property Co-authored-by: markuskowa <markus.kowalewski@gmail.com> - Quote url Co-authored-by: markuskowa <markus.kowalewski@gmail.com> - Remove additional link in long description - Remove unnecessary comment Co-authored-by: markuskowa <markus.kowalewski@gmail.com> - Place optional packages below their respective `use*` - Shorten description See discussion: https://github.com/NixOS/nixpkgs/pull/137133#discussion_r705230260 - FIX: Remove duplicate description - Remove empty line Co-authored-by: markuskowa <markus.kowalewski@gmail.com> - Make packages section more compact - Make wifi dependencies optional - Add package without wifi dependencies - Fix indentation Co-authored-by: Sandro <sandro.jaeckel@gmail.com> - Use `with lib` only where it is needed Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/all-packages.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 08bd1f838c0e..e1fc40f5b8a9 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -899,6 +899,10 @@ with pkgs;
gofu = callPackage ../applications/misc/gofu { };
+ linux-router = callPackage ../tools/networking/linux-router { };
+
+ linux-router-without-wifi = linux-router.override { useWifiDependencies = false; };
+
metapixel = callPackage ../tools/graphics/metapixel { };
pferd = callPackage ../tools/misc/pferd {};