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

Commits on Apr 10, 2018

  1. wayland: 1.14.0 -> 1.15.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/wayland/versions.
    
    These checks were done:
    
    - built on NixOS
    - ran ‘/nix/store/ij8fn0all1sl84wy94wpvc0ih0c1bidq-wayland-1.15.0/bin/wayland-scanner -h’ got 0 exit code
    - ran ‘/nix/store/ij8fn0all1sl84wy94wpvc0ih0c1bidq-wayland-1.15.0/bin/wayland-scanner --help’ got 0 exit code
    - ran ‘/nix/store/ij8fn0all1sl84wy94wpvc0ih0c1bidq-wayland-1.15.0/bin/wayland-scanner help’ got 0 exit code
    - ran ‘/nix/store/ij8fn0all1sl84wy94wpvc0ih0c1bidq-wayland-1.15.0/bin/wayland-scanner -v’ and found version 1.15.0
    - ran ‘/nix/store/ij8fn0all1sl84wy94wpvc0ih0c1bidq-wayland-1.15.0/bin/wayland-scanner --version’ and found version 1.15.0
    - found 1.15.0 with grep in /nix/store/ij8fn0all1sl84wy94wpvc0ih0c1bidq-wayland-1.15.0
    - directory tree listing: https://gist.github.com/4f5bd9b49f975338e758858eb2b89e4d
    R. RyanTM committed Apr 10, 2018
    Copy the full SHA
    f43da34 View commit details

Commits on Apr 19, 2018

  1. Merge pull request #38691 from r-ryantm/auto-update/wayland

    wayland: 1.14.0 -> 1.15.0
    matthewbauer authored Apr 19, 2018
    Copy the full SHA
    5bc5900 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/wayland/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/wayland/default.nix
Original file line number Diff line number Diff line change
@@ -8,11 +8,11 @@ assert expat != null;

stdenv.mkDerivation rec {
name = "wayland-${version}";
version = "1.14.0";
version = "1.15.0";

src = fetchurl {
url = "https://wayland.freedesktop.org/releases/${name}.tar.xz";
sha256 = "1f3sla6h0bw15fz8pjc67jhwj7pwmfdc7qlj42j5k9v116ycm07d";
sha256 = "1c5fnys8hi71cnzjv5k7j0r8gx80p0yyqlrpmn06mmarhnxvwgzb";
};

configureFlags = [ "--with-scanner" "--disable-documentation" ];