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: 184ab11fc931
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 39f7530e4715
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Jun 9, 2017

  1. linuxPackages.evdi: specify minimum kernel version, per upstream

    Upstream says 3.16 is the oldest supported kernel.  No versions prior to
    3.18 build on Hydra. See e.g., https://hydra.nixos.org/build/53599831.
    joachifm committed Jun 9, 2017
    Copy the full SHA
    b1f0af7 View commit details
  2. tinycc: 0.9.27pre-20170527 -> 0.9.27pre-20170605

    Contains further fix to x86_64 codegen (and some less relevant Windows
    stuff).
    joachifm committed Jun 9, 2017
    Copy the full SHA
    39f7530 View commit details
Showing with 4 additions and 3 deletions.
  1. +3 −3 pkgs/development/compilers/tinycc/default.nix
  2. +1 −0 pkgs/os-specific/linux/evdi/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/compilers/tinycc/default.nix
Original file line number Diff line number Diff line change
@@ -2,10 +2,10 @@
with stdenv.lib;

let
date = "20170527";
date = "20170605";
version = "0.9.27pre-${date}";
rev = "53c5fc2246270e0242903de0152a9a5d40f3d679";
sha256 = "0z5ayz0kdn5xqm84k730hmd7r9cq0zxxf45g5phgqppdfajrmswz";
rev = "3e4b7693bfd5b76570b35558c83a935326513eff";
sha256 = "0m5k1df73kakvg9xz06y3nlac4mwfccni6hdijaf4w8fyy3zz4bg";
in

stdenv.mkDerivation rec {
1 change: 1 addition & 0 deletions pkgs/os-specific/linux/evdi/default.nix
Original file line number Diff line number Diff line change
@@ -27,5 +27,6 @@ stdenv.mkDerivation rec {
platforms = platforms.linux;
license = licenses.gpl2;
homepage = "http://www.displaylink.com/";
broken = !versionAtLeast kernel.version "3.16";
};
}