Skip to content
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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7adbdd975886
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0aa9f35a99f0
Choose a head ref

Commits on May 25, 2019

  1. boohu: switching to termbox-go build

    This is necessary for a better user experience.
    File with go dependencies (deps.nix) was added.
    Minor changes: name replaced by pname, quotes for url.
    Free Potion committed May 25, 2019
    Copy the full SHA
    90ad0fd View commit details

Commits on May 26, 2019

  1. nixos/kvmgt: fix starting condition

    gnidorah committed May 26, 2019
    Copy the full SHA
    eac62f6 View commit details

Commits on Jun 5, 2019

  1. Copy the full SHA
    93a6806 View commit details

Commits on Jun 10, 2019

  1. bundlerApp: Set up passthru properly

    The manual documents both bundlerEnv and bundlerApp as providing `env`
    and `wrappedRuby` attributes on the resulting derivations. However only
    bundlerEnv actually had these attributes. Update bundlerApp to provide
    the same passthru that bundlerEnv does.
    lilyball committed Jun 10, 2019
    Copy the full SHA
    39eb49c View commit details

Commits on Jun 11, 2019

  1. macvim: 7.4.909 -> 8.1.1517

    Fix up the macvim package to build again, with the latest snapshot. The
    patchfile has been recreated by manually reapplying all of the changes
    from the old patchfile, and the other changes in here were figured out
    by trial and error (such as the need to unset `LD`).
    
    Also tweak the package to use python37 by default, and add an option to
    go back to python27 if desired.
    
    Disable Sparkle so the user isn't prompted to update a readonly package.
    lilyball committed Jun 11, 2019
    Copy the full SHA
    95bfb99 View commit details

Commits on Jun 12, 2019

  1. skype: 8.46.0.60 -> 8.47.0.59

    dtzWill committed Jun 12, 2019
    Copy the full SHA
    dca70ab View commit details
  2. txr: 216 -> 217

    dtzWill committed Jun 12, 2019
    Copy the full SHA
    4affff7 View commit details
  3. winePackages.fonts: init at 4.0

    "Wine's fonts should be a natural candidate for their own subpackage"
    https://wiki.winehq.org/Packaging
    
    They are a replacement for some Microsoft fonts not available in other
    replacement packages.
    JohnAZoidberg committed Jun 12, 2019
    Copy the full SHA
    66fffe9 View commit details
  4. Copy the full SHA
    3303bc1 View commit details

Commits on Jun 13, 2019

  1. Copy the full SHA
    42170cb View commit details

Commits on Jun 14, 2019

  1. timescaledb: disable telemetry

    marsam committed Jun 14, 2019
    Copy the full SHA
    6063569 View commit details

Commits on Jun 15, 2019

  1. perlPackages.SysCPU: remove broken attribute

    Still not back on CPAN but on metacpan.
    JohnAZoidberg committed Jun 15, 2019
    Copy the full SHA
    d8bb988 View commit details
  2. zfs: 0.8.0 -> 0.8.1

    Mic92 committed Jun 15, 2019
    Copy the full SHA
    05f7301 View commit details
  3. zfsUnstable: 0.8.0 -> 0.8.1

    Mic92 committed Jun 15, 2019
    Copy the full SHA
    b916d11 View commit details
  4. pythonPackages.pydocumentdb: init at 2.3.3

    Jonathan Ringer committed Jun 15, 2019
    Copy the full SHA
    d20e963 View commit details
  5. pythonPackages.azure-cosmos: init at 3.1.0

    Jonathan Ringer committed Jun 15, 2019
    Copy the full SHA
    cd730d5 View commit details

Commits on Jun 16, 2019

  1. gthumb: 3.6.2 -> 3.8.0

    * enable clutter-gtk support
      Upstream defaults to it so we probably should as well.
    worldofpeace committed Jun 16, 2019
    Copy the full SHA
    5141948 View commit details
  2. gnome-mpv: 0.13 -> 0.16

    lightbulbjim committed Jun 16, 2019
    Copy the full SHA
    2807003 View commit details
  3. mutt: 1.12.0 -> 1.12.1

    matthiasbeyer authored and FRidh committed Jun 16, 2019
    Copy the full SHA
    aa2f3eb View commit details
  4. afew: 1.3.0 -> 2.0.0

    flokli committed Jun 16, 2019
    Copy the full SHA
    dc1228d View commit details
  5. Copy the full SHA
    856d601 View commit details
  6. Merge pull request #63179 from lightbulbjim/gnome-mpv-update

    gnome-mpv: 0.13 -> 0.16
    jtojnar authored Jun 16, 2019
    Copy the full SHA
    ca51fbb View commit details
  7. gnome-mpv: use external patch

    jtojnar committed Jun 16, 2019
    Copy the full SHA
    9e480c5 View commit details
  8. zziplib: patch CVE-2018-17828

    Fixes #61961
    Close #63189
    vcunat amended some nitpicks into the original commit.
    mmahut authored and vcunat committed Jun 16, 2019
    Copy the full SHA
    3aa8f94 View commit details
  9. Merge pull request #63180 from worldofpeace/gthumb/3.8.0

    gthumb: 3.6.2 -> 3.8.0
    worldofpeace authored Jun 16, 2019
    Copy the full SHA
    636f1f0 View commit details
  10. Merge pull request #63194 from flokli/afew-2.0.0

    afew: 1.3.0 -> 2.0.0
    andir authored Jun 16, 2019
    Copy the full SHA
    3c32910 View commit details
  11. Copy the full SHA
    b0ccba1 View commit details
  12. nixos-generate-config: don't generate swapDevices for *files*

    Up until now, the output has been the same for swap devices and swap
    files:
    
      { device = "/var/swapfile"; }
    
    Whereas for swap *files* it's easier to manage them declaratively in
    configuration.nix:
    
      { device = "/var/swapfile"; size = 8192; }
    
    (NixOS will create the swapfile, and later resize it, if the size
    attribute is changed.)
    
    With the assumption that swap files are specified in configuration.nix,
    it's silly to output them to hardware-configuration.nix.
    bjornfor committed Jun 16, 2019
    Copy the full SHA
    9e45f6f View commit details
  13. nixos-generate-config: add dm-snapshot module if LVM is detected

    Without this, the system becomes unbootable if the user creates a LVM
    snapshot and reboots.
    
    Fixes #33646
    
    (The same kind of problem was fixed in RHEL a few years back:
    https://bugzilla.redhat.com/show_bug.cgi?id=1287940)
    bjornfor committed Jun 16, 2019
    Copy the full SHA
    4213e48 View commit details
  14. armadillo: 9.400.4 -> 9.500.2

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/armadillo/versions
    r-ryantm committed Jun 16, 2019
    Copy the full SHA
    0a2f247 View commit details
  15. ammonite: 1.6.7 -> 1.6.8

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/ammonite/versions
    r-ryantm authored and NeQuissimus committed Jun 16, 2019
    Copy the full SHA
    c7239f3 View commit details
  16. slack: Generalize theming

    Split out dark theme
    Fixes #61155
    NeQuissimus committed Jun 16, 2019
    Copy the full SHA
    66add9f View commit details
  17. nixos-generate-config: don't emit tmpfs entry for /tmp

    Because it most likely comes from the boot.tmpOnTmpfs option in
    configuration.nix (managed declaratively).
    bjornfor committed Jun 16, 2019
    Copy the full SHA
    8f551be View commit details
  18. btrfs-progs: 5.1 -> 5.1.1

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/btrfs-progs/versions
    r-ryantm committed Jun 16, 2019
    Copy the full SHA
    22671c7 View commit details
  19. alacritty: 0.3.2 -> 0.3.3

    xrelkd committed Jun 16, 2019
    Copy the full SHA
    49ec880 View commit details
  20. antibody: 4.1.1 -> 4.1.2 (#63210)

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/antibody/versions
    r-ryantm authored and kalbasit committed Jun 16, 2019
    Copy the full SHA
    599ec87 View commit details
  21. theft: 0.4.4 -> 0.4.5, fix pkg-config file

    The libtheft.pc file was using prefix=/usr/local for its own relative
    -L/-l/-I parameters for GCC, giving incorrect results. (This is really
    more of an upstream bug.)
    
    This also adds myself to the maintainer list, and enables builds on
    non-Linux platforms.
    
    Signed-off-by: Austin Seipp <as@fastly.com>
    Austin Seipp authored and thoughtpolice committed Jun 16, 2019
    Copy the full SHA
    c683032 View commit details
  22. Copy the full SHA
    d67d182 View commit details
  23. hwinfo: 21.64 -> 21.66

    bobvanderlinden authored and FRidh committed Jun 16, 2019
    Copy the full SHA
    b058153 View commit details
  24. abcmidi: 2019.04.22 -> 2019.06.06

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/abcmidi/versions
    r-ryantm authored and FRidh committed Jun 16, 2019
    Copy the full SHA
    ad2a9cd View commit details
  25. doc: describe pname

    This was forgotten when RFC 0035 was implemented.
    jtojnar authored and FRidh committed Jun 16, 2019
    Copy the full SHA
    902952d View commit details
  26. Merge pull request #62916 from xrelkd/update/alacritty

    alacritty: 0.3.2 -> 0.3.3
    marsam authored Jun 16, 2019
    Copy the full SHA
    bb81bec View commit details
  27. Merge pull request #63223 from r-ryantm/auto-update/btrfs-progs

    btrfs-progs: 5.1 -> 5.1.1
    7c6f434c authored Jun 16, 2019
    Copy the full SHA
    413a59e View commit details
  28. doc/stdenv: fix typo

    jtojnar committed Jun 16, 2019
    Copy the full SHA
    d1f8e60 View commit details
  29. Merge pull request #62971 from lilyball/bundlerApp-passthru

    bundlerApp: Set up passthru properly
    matthewbauer authored Jun 16, 2019
    Copy the full SHA
    4d5c1c8 View commit details
  30. Merge pull request #62934 from lilyball/macvim

    macvim: 7.4.909 -> 8.1.1517
    matthewbauer authored Jun 16, 2019
    Copy the full SHA
    486626b View commit details
  31. bmake: fix version/url, fix tests, remove unneeded deps

    As noted by @jameysharp in #63181.
    
    Signed-off-by: Austin Seipp <as@fastly.com>
    Austin Seipp committed Jun 16, 2019
    Copy the full SHA
    ccee411 View commit details
  32. dbeaver: 6.0.5 -> 6.1.0

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/dbeaver-ce/versions
    r-ryantm committed Jun 16, 2019
    Copy the full SHA
    72ffc46 View commit details
  33. treewide: remove unused variables (#63177)

    * treewide: remove unused variables
    
    * making ofborg happy
    volth authored and alyssais committed Jun 16, 2019
    Copy the full SHA
    f3282c8 View commit details
  34. Merge pull request #63151 from JohnAZoidberg/sys-cpu

    perlPackages.SysCPU: remove broken attribute
    worldofpeace authored Jun 16, 2019
    Copy the full SHA
    3b1c943 View commit details
Loading