Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

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

authored by

Ryan Mulligan and committed by
Matthew Justin Bauer
5350a56d f3231c6b

+2 -2
+2 -2
pkgs/development/libraries/libcec/platform.nix
··· 1 1 { stdenv, fetchurl, cmake }: 2 2 3 - let version = "2.0.1"; in 3 + let version = "2.1.0.1"; in 4 4 5 5 stdenv.mkDerivation { 6 6 name = "p8-platform-${version}"; 7 7 8 8 src = fetchurl { 9 9 url = "https://github.com/Pulse-Eight/platform/archive/p8-platform-${version}.tar.gz"; 10 - sha256 = "1kslq24p2zams92kc247qcczbxb2n89ykk9jfyiilmwh7qklazp9"; 10 + sha256 = "18381y54f7d18ckpzf9cfxbz1ws6imprbbm9pvhcg5c86ln8skq6"; 11 11 }; 12 12 13 13 nativeBuildInputs = [ cmake ];