summary refs log tree commit diff
path: root/pkgs/development/libraries/libcec
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-03-21 01:03:25 -0700
committerMatthew Justin Bauer <mjbauer95@gmail.com>2018-03-25 11:20:24 -0500
commit5350a56dcf4b65d848c876efeb104e6c33c32cbb (patch)
tree1c05f03c86d9941d3b515419d6794005a915edd6 /pkgs/development/libraries/libcec
parentf3231c6ba487ba60d1d71bc8eecd18ce77c0041f (diff)
downloadnixpkgs-5350a56dcf4b65d848c876efeb104e6c33c32cbb.tar
nixpkgs-5350a56dcf4b65d848c876efeb104e6c33c32cbb.tar.gz
nixpkgs-5350a56dcf4b65d848c876efeb104e6c33c32cbb.tar.bz2
nixpkgs-5350a56dcf4b65d848c876efeb104e6c33c32cbb.tar.lz
nixpkgs-5350a56dcf4b65d848c876efeb104e6c33c32cbb.tar.xz
nixpkgs-5350a56dcf4b65d848c876efeb104e6c33c32cbb.tar.zst
nixpkgs-5350a56dcf4b65d848c876efeb104e6c33c32cbb.zip
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
Diffstat (limited to 'pkgs/development/libraries/libcec')
-rw-r--r--pkgs/development/libraries/libcec/platform.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libcec/platform.nix b/pkgs/development/libraries/libcec/platform.nix
index 228dccea3e3..0005525a7cd 100644
--- a/pkgs/development/libraries/libcec/platform.nix
+++ b/pkgs/development/libraries/libcec/platform.nix
@@ -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 ];