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: ce20f400b57a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 09e59ad5791d
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jun 4, 2017

  1. xorg-input-libinput: 0.25.0 -> 0.25.1

    This isn't part of a full xorg release, so I just added it to the xorg
    overrides.nix.
    
    Changelog and release announcement:
    https://lists.x.org/archives/xorg-announce/2017-May/002798.html
    benley committed Jun 4, 2017
    Copy the full SHA
    7445649 View commit details

Commits on Jun 6, 2017

  1. Merge pull request #26378 from benley/xf86-input-libinput-0.25.1

    xorg-input-libinput: 0.25.0 -> 0.25.1
    Mic92 authored Jun 6, 2017
    Copy the full SHA
    09e59ad View commit details
Showing with 5 additions and 0 deletions.
  1. +5 −0 pkgs/servers/x11/xorg/overrides.nix
5 changes: 5 additions & 0 deletions pkgs/servers/x11/xorg/overrides.nix
Original file line number Diff line number Diff line change
@@ -316,6 +316,11 @@ in
};

xf86inputlibinput = attrs: attrs // {
name = "xf86-input-libinput-0.25.1";
src = args.fetchurl {
url = mirror://xorg/individual/driver/xf86-input-libinput-0.25.1.tar.bz2;
sha256 = "1q67hjd67ni1nq7kgxdrrdgkyhzaqvvn2vlnsiiq9w4y3icpv7s8";
};
buildInputs = attrs.buildInputs ++ [ args.libinput ];
installFlags = "sdkdir=\${out}/include/xorg";
};