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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

linux_mptcp: makes linux_mptcp.override works #31596

Merged
merged 1 commit into from Nov 13, 2017
Merged

Commits on Nov 13, 2017

  1. linux_mptcp: makes linux_mptcp.override works

    I needed to override some parameters because of an error I had:
    "Error: modDirVersion specified in the Nix expression is wrong, it should be: 4.9.60+"
    
    but the following override would not be taken into account
      pkg.override ({
        modDirVersion="4.9.60+";
        src=pkgs.lib.cleanSource /home/teto/mptcp;
      })
    
    because the override would be overriden by the nixpkgs parameters
    because of concatenation order:
    https://nixos.org/nix/manual/#sec-language-operators
    teto committed Nov 13, 2017
    Configuration menu
    Copy the full SHA
    affda52 View commit details
    Browse the repository at this point in the history