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

Commits on Mar 18, 2019

  1. update xhyve to tip of master

    jsamsa committed Mar 18, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Synthetica9 Patrick Hilhorst
    Copy the full SHA
    a7147c8 View commit details
  2. Merge pull request #55856 from jsamsa/xhyve-update

    update xhyve to tip of master
    LnL7 authored Mar 18, 2019
    Copy the full SHA
    8fce8a9 View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/applications/virtualization/xhyve/default.nix
10 changes: 5 additions & 5 deletions pkgs/applications/virtualization/xhyve/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{ stdenv, lib, fetchurl, Hypervisor, vmnet, xpc, libobjc }:
{ stdenv, lib, fetchurl, Hypervisor, vmnet, xpc, libobjc, zlib }:

stdenv.mkDerivation rec {
name = "xhyve-${version}";
version = "1f1dbe305";
version = "20190124";

src = fetchurl {
url = "https://github.com/mist64/xhyve/archive/1f1dbe3059904f885e4ab2b3328f4bb350ea5c37.tar.gz";
sha256 = "0hfix8yr90szlv2yyqb2rlq5qsrxyam8kg52sly0adja0cpwfjvx";
url = "https://github.com/machyve/xhyve/archive/1dd9a5165848c7ed56dafc41932c553ea56a12af.tar.gz";
sha256 = "18zd74pd0azf43csbqb14srbyclfgx28dpgm8ygjmbcazbnipc1k";
};

buildInputs = [ Hypervisor vmnet xpc libobjc ];
buildInputs = [ Hypervisor vmnet xpc libobjc zlib ];

# Don't use git to determine version
prePatch = ''