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: 40d22a78b7b0
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: ef450efb9df5
Choose a head ref
  • 9 commits
  • 8 files changed
  • 6 contributors

Commits on Sep 20, 2018

  1. haskellPackages.sbv: fix location of z3 executable

    A lot of the functionality of the z3 library depends on it being able to
    find the z3 executable on $PATH. Hard-coding it here means it will never
    be unable to find it and z3 doesn't need to pollute $PATH.
    
    (cherry picked from commit c8598da)
    
    Signed-off-by: Austin Seipp <aseipp@pobox.com>
    Nathan van Doorn authored and thoughtpolice committed Sep 20, 2018
    Copy the full SHA
    70ecb51 View commit details
  2. libiio: init at 0.15

    (cherry picked from commit 0f2b10d)
    
    Signed-off-by: Austin Seipp <aseipp@pobox.com>
    thoughtpolice committed Sep 20, 2018
    Copy the full SHA
    e4b0c7b View commit details
  3. perlPackages.Mojolicious: 7.88 -> 8.0

    Signed-off-by: Austin Seipp <aseipp@pobox.com>
    (cherry picked from commit 08815b9)
    thoughtpolice committed Sep 20, 2018
    Copy the full SHA
    b59c611 View commit details
  4. perlPackages.MojoIOLoopForkCall: 0.19 -> 0.20

    Signed-off-by: Austin Seipp <aseipp@pobox.com>
    (cherry picked from commit 0214f9e)
    thoughtpolice committed Sep 20, 2018
    Copy the full SHA
    f40d136 View commit details

Commits on Sep 21, 2018

  1. dockerTools.buildImage: support impure dates

    Because dates are an impurity, by default buildImage will use a static
    date of one second past the UNIX Epoch. This can be a bit frustrating
    when listing docker images in the CLI:
    
        $ docker image list
        REPOSITORY   TAG      IMAGE ID       CREATED        SIZE
        hello        latest   08c791c7846e   48 years ago   25.2MB
    
    If you want to trade the purity for a better user experience, you can
    set created to now.
    
        pkgs.dockerTools.buildImage {
          name = "hello";
          tag = "latest";
          created = "now";
          contents = pkgs.hello;
    
          config.Cmd = [ "/bin/hello" ];
        }
    
    and now the Docker CLI will display a reasonable date and sort the
    images as expected:
    
        $ docker image list
        REPOSITORY   TAG      IMAGE ID       CREATED              SIZE
        hello        latest   de2bf4786de6   About a minute ago   25.2MB
    
    (cherry picked from commit a32d7e0)
    graham-at-target authored and grahamc committed Sep 21, 2018
    Copy the full SHA
    0fe015a View commit details
  2. dockerTools.buildImage: test that created=now makes an unstable date

    (cherry picked from commit aedc651)
    grahamc committed Sep 21, 2018
    Copy the full SHA
    9eefd1e View commit details
  3. Clarfy the binary reproducibility problems of created=now with docker…

    …Tools.buildImage.
    
    (cherry picked from commit 7736337)
    grahamc committed Sep 21, 2018
    Copy the full SHA
    a84a302 View commit details
  4. haskellPackages.x509-system: Override based on the host, not target p…

    …latform
    
    There were many reverts back and forth, but it ultimately appears that I
    am the source of this mistake. I clarified the comment so as not to
    confuse myself or anyone else.
    Ericson2314 committed Sep 21, 2018
    Copy the full SHA
    45c637d View commit details
  5. Merge pull request #47097 from obsidiansystems/fix-x509-system

    haskellPackages.x509-system: Override based on the host, not target platform for 18.09
    Ericson2314 authored Sep 21, 2018
    Copy the full SHA
    ef450ef View commit details
Loading