3
0
Fork 0
forked from mirrors/nixpkgs

openvswitch: 2.5.2 -> 2.5.4

This commit is contained in:
Ioannis Koutras 2018-02-15 09:57:07 +02:00
parent ea48495249
commit 98c91fb9d6

View file

@ -7,12 +7,12 @@ with stdenv.lib;
let
_kernel = kernel;
in stdenv.mkDerivation rec {
version = "2.5.2";
version = "2.5.4";
name = "openvswitch-${version}";
src = fetchurl {
url = "http://openvswitch.org/releases/${name}.tar.gz";
sha256 = "0ifx758zl97dpad9vpd5i5dqj6i03k632mvgxs82hqkcsb3r6y7q";
sha256 = "1lji87wg953lqcdf02f1zv2m54vhd2x9jd03bb91lnlb4qlhifiv";
};
kernel = optional (_kernel != null) _kernel.dev;