Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d55e830982f3
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7f25b26511ae
Choose a head ref
  • 4 commits
  • 6 files changed
  • 3 contributors

Commits on Apr 7, 2018

  1. Copy the full SHA
    3e37d2e View commit details
  2. spin: switch back to dropbox mirror

    see #38542 for details
    pSub committed Apr 7, 2018
    Copy the full SHA
    95ece9e View commit details
  3. lib: make extensible

    This allows the lib fixed point to be extended with
    
      myLib = lib.extend (self: super: {
        foo = "foo";
      })
    
    With this it's possible to have the new modified lib attrset available to all
    modules when using evalModules
    
      myLib.evalModules {
        modules = [ ({ lib, ... }: {
          options.bar = lib.mkOption {
    	default = lib.foo;
          };
        }) ];
      }
    
      => { config = { bar = "foo"; ... }; options = ...; }
    infinisil authored and Ericson2314 committed Apr 7, 2018
    Copy the full SHA
    e1dee4e View commit details
  4. linuxPackages_custom: fix missing argument and add test

    The required argument 'hostPlatform' was missing from linuxPackages_custom's
    call to linuxManualConfig.
    
    In order to prevent this in the future, this commit adds
    linuxPackages_custom_tinyconfig_kernel so linuxPackages_custom gets tested.
    
    This also adds linuxConfig, to derivate default linux configurations
    via make defconfig, make tinyconfig, etc.
    
    Closes #38034.
    
    Signed-off-by: Austin Seipp <aseipp@pobox.com>
    roberth authored and thoughtpolice committed Apr 7, 2018
    Copy the full SHA
    7f25b26 View commit details
Loading