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

Commits on Mar 25, 2018

  1. libcec_platform: 2.0.1 -> 2.1.0.1

    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 2.1.0.1 with grep in /nix/store/klb1bvsf1az785f2jzvsg5g0sxs8g4l3-p8-platform-2.1.0.1
    - directory tree listing: https://gist.github.com/be00d099a69bdff53bd6e138cf5d6877
    ryantm authored and matthewbauer committed Mar 25, 2018
    Copy the full SHA
    5350a56 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/libcec/platform.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/libcec/platform.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{ stdenv, fetchurl, cmake }:

let version = "2.0.1"; in
let version = "2.1.0.1"; in

stdenv.mkDerivation {
name = "p8-platform-${version}";

src = fetchurl {
url = "https://github.com/Pulse-Eight/platform/archive/p8-platform-${version}.tar.gz";
sha256 = "1kslq24p2zams92kc247qcczbxb2n89ykk9jfyiilmwh7qklazp9";
sha256 = "18381y54f7d18ckpzf9cfxbz1ws6imprbbm9pvhcg5c86ln8skq6";
};

nativeBuildInputs = [ cmake ];