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

Allow passing several labels to nixpkgs_package #29

Merged
merged 3 commits into from
Oct 20, 2018

Commits on Oct 16, 2018

  1. Allow passing several labels to nixpkgs_package

    Deprecates the `repository` attribute in favor of the more general
    `repositories` which expects a dict of the form
    
    ```python
    {
      "@some_label": "some_name",
      "@some_other_label": "some_other_name",
    }
    ```
    
    and generating the `NIX_PATH`
    `some_name=path(@some_label):some_other_name=path(@some_other_label)`
    thufschmitt authored and Profpatsch committed Oct 16, 2018
    Configuration menu
    Copy the full SHA
    485826e View commit details
    Browse the repository at this point in the history
  2. Give a nicer interface to nixpkgs_package

    Make the `repositories` argument of the form `{ path_element_name: label
    }` instead of `{ label: path_element_name }`
    thufschmitt authored and Profpatsch committed Oct 16, 2018
    Configuration menu
    Copy the full SHA
    2a05982 View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2018

  1. Configuration menu
    Copy the full SHA
    ed40f56 View commit details
    Browse the repository at this point in the history