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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

ympd service: Allow webPort to be int #59362

Merged
merged 1 commit into from Apr 12, 2019

Conversation

matthiasbeyer
Copy link
Contributor

Motivation for this change

I am lazy and don't want to type ". 馃槃

I don't see a reason why this should not be allowed to be int.

Things done
  • Tested using sandboxing (nix.useSandbox on NixOS, or option sandbox in nix.conf on non-NixOS)
  • Built on platform(s)
    • NixOS
    • macOS
    • other Linux distributions
  • Tested via one or more NixOS test(s) if existing and applicable for the change (look inside nixos/tests)
  • Tested compilation of all pkgs that depend on this change using nix-shell -p nix-review --run "nix-review wip"
  • Tested execution of all binary files (usually in ./result/bin/)
  • Determined the impact on package closure size (by running nix path-info -S before and after)
  • Assured whether relevant documentation is up to date
  • Fits CONTRIBUTING.md.

I did not yet test-build my system with this change.

@@ -15,7 +15,7 @@ in {
enable = mkEnableOption "ympd, the MPD Web GUI";

webPort = mkOption {
type = types.string;
type = types.either types.string types.int;
Copy link
Member

Choose a reason for hiding this comment

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

There's types.port even

Copy link
Contributor Author

Choose a reason for hiding this comment

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

uuuh, nice!

serviceConfig.ExecStart = let
port = builtins.toString cfg.webPort;
in
"${pkgs.ympd}/bin/ympd --host ${cfg.mpd.host} --port ${toString cfg.mpd.port} --webport ${port} --user nobody";
Copy link
Member

Choose a reason for hiding this comment

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

And here you can just inline --webport ${toString port}

@matthiasbeyer
Copy link
Contributor Author

I'm ready to squash!

@@ -15,7 +15,7 @@ in {
enable = mkEnableOption "ympd, the MPD Web GUI";

webPort = mkOption {
type = types.string;
type = types.either types.string types.port; # string for backwards compat
Copy link
Member

Choose a reason for hiding this comment

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

Oh actually one more thing, while you're changing this part of the code, you can also switch to types.str, as types.string is deprecated.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

馃憤

@infinisil
Copy link
Member

Feel free to squash

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
@markuskowa markuskowa merged commit 7d363d4 into NixOS:master Apr 12, 2019
@matthiasbeyer matthiasbeyer deleted the ympd-port-int branch May 18, 2019 11:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants