Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 426646cc9bf0
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e03eeffd6166
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 19, 2020

  1. openvswitch: 2.12.0 -> 2.13.0

    (cherry picked from commit c8523fe)
    r-ryantm authored and Kyle Copperfield committed Apr 19, 2020

    Unverified

    The committer email address is not verified.
    Copy the full SHA
    60ce810 View commit details
  2. Merge pull request #85557 from kmcopper/r20.03/vswitch-2.13

    [20.03] openvswitch 2.12.0 -> 2.13.0
    Ma27 authored Apr 19, 2020

    Unverified

    The committer email address is not verified.
    Copy the full SHA
    e03eeff View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/os-specific/linux/openvswitch/default.nix
6 changes: 3 additions & 3 deletions pkgs/os-specific/linux/openvswitch/default.nix
Original file line number Diff line number Diff line change
@@ -8,12 +8,12 @@ let
_kernel = kernel;
pythonEnv = python3.withPackages (ps: with ps; [ six ]);
in stdenv.mkDerivation rec {
version = "2.12.0";
version = "2.13.0";
pname = "openvswitch";

src = fetchurl {
url = "https://www.openvswitch.org/releases/${pname}-${version}.tar.gz";
sha256 = "1y78ix5inhhcvicbvyy2ij38am1215nr55vydhab3d4065q45z8k";
sha256 = "0cd5vmfr6zwgcnkwys6rag6cmz68v0librpaplianv734xs74pyx";
};

kernel = optional (_kernel != null) _kernel.dev;
@@ -58,7 +58,7 @@ in stdenv.mkDerivation rec {
support distribution across multiple physical servers similar
to VMware's vNetwork distributed vswitch or Cisco's Nexus 1000V.
'';
homepage = https://www.openvswitch.org/;
homepage = "https://www.openvswitch.org/";
license = licenses.asl20;
maintainers = with maintainers; [ netixx kmcopper ];
};