Skip to content
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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 52c8d46286f5
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5b508327806c
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 23, 2019

  1. xhyve: upgrade to 20191001

    jsamsa committed Oct 23, 2019
    Copy the full SHA
    55d1739 View commit details

Commits on Oct 24, 2019

  1. Merge pull request #71844 from jsamsa/update-xhyve-to-20191001

    xhyve: upgrade to 20191001
    marsam authored Oct 24, 2019
    Copy the full SHA
    5b50832 View commit details
Showing with 7 additions and 5 deletions.
  1. +7 −5 pkgs/applications/virtualization/xhyve/default.nix
12 changes: 7 additions & 5 deletions pkgs/applications/virtualization/xhyve/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
{ stdenv, lib, fetchurl, Hypervisor, vmnet, xpc, libobjc, zlib }:
{ stdenv, lib, fetchFromGitHub, Hypervisor, vmnet, xpc, libobjc, zlib }:

stdenv.mkDerivation rec {
pname = "xhyve";
version = "20190124";
version = "20191001";

src = fetchurl {
url = "https://github.com/machyve/xhyve/archive/1dd9a5165848c7ed56dafc41932c553ea56a12af.tar.gz";
sha256 = "18zd74pd0azf43csbqb14srbyclfgx28dpgm8ygjmbcazbnipc1k";
src = fetchFromGitHub {
owner = "machyve";
repo = "xhyve";
rev = "1f46a3d0bbeb6c90883f302425844fcc3800a776";
sha256 = "0mm9xa0v6n7xl2qypnppq5abdncd31vffiklrhcrlni5ymyh9ia5";
};

buildInputs = [ Hypervisor vmnet xpc libobjc zlib ];