xva-img: 1.4.2 -> 1.5 (#414288)

authored by Nick Cao and committed by GitHub cb6cff2f a2f6ea79

+9 -5
+9 -5
pkgs/by-name/xv/xva-img/package.nix
··· 1 1 { 2 - stdenv, 3 2 lib, 3 + stdenv, 4 4 cmake, 5 5 fetchFromGitHub, 6 6 openssl, 7 + xxHash, 7 8 }: 8 9 9 10 stdenv.mkDerivation rec { 10 11 pname = "xva-img"; 11 - version = "1.4.2"; 12 + version = "1.5"; 12 13 13 14 src = fetchFromGitHub { 14 15 owner = "eriklax"; 15 16 repo = "xva-img"; 16 - rev = version; 17 - sha256 = "sha256-QHCKGsHSMT2P64No1IUCjenm1XZMSgEvsJGJOyHFZS8="; 17 + tag = version; 18 + hash = "sha256-YyWfN6VcEABmzHkkoA/kRehLum1UxsNJ58XBs1pl+c8="; 18 19 }; 19 20 20 21 nativeBuildInputs = [ cmake ]; 21 22 22 - buildInputs = [ openssl ]; 23 + buildInputs = [ 24 + openssl 25 + xxHash 26 + ]; 23 27 24 28 meta = { 25 29 maintainers = with lib.maintainers; [ willibutz ];