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: 3a3b34dbcce8
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ba144aa63091
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 21, 2018

  1. xorg.xinit: 1.3.4 -> 1.4.0

    Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:
    
    - built on NixOS
    - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
    - found 1.4.0 with grep in /nix/store/bxyqz9d31nzmjxahn97f60706ck895sw-xinit-1.4.0
    - directory tree listing: https://gist.github.com/6f82742b7f83f4fcd6fddb1da6311b84
    ryantm authored and obadz committed Mar 21, 2018
    Copy the full SHA
    ba144aa View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/servers/x11/xorg/default.nix
6 changes: 3 additions & 3 deletions pkgs/servers/x11/xorg/default.nix
Original file line number Diff line number Diff line change
@@ -2396,11 +2396,11 @@ let
}) // {inherit ;};

xinit = (mkDerivation "xinit" {
name = "xinit-1.3.4";
name = "xinit-1.4.0";
builder = ./builder.sh;
src = fetchurl {
url = mirror://xorg/individual/app/xinit-1.3.4.tar.bz2;
sha256 = "1cq2g469mb2cfgr8k57960yrn90bl33vfqri4pdh2zm0jxrqvn3m";
url = mirror://xorg/individual/app/xinit-1.4.0.tar.bz2;
sha256 = "1vw2wlg74ig52naw0cha3pgzcwwk25l834j42cg8m5zmybp3a213";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libX11 xproto ];