Skip to content

Commit

Permalink
Merge pull request NixOS#226394 from apfelkuchen6/jool
Browse files Browse the repository at this point in the history
jool-cli: fix build
  • Loading branch information
mweinelt authored Apr 16, 2023
2 parents fb20a53 + 20761c3 commit ec2b964
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pkgs/os-specific/linux/jool/cli.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, libnl, iptables }:
{ lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, pkg-config, libnl, iptables }:

let
sourceAttrs = (import ./source.nix) { inherit fetchFromGitHub; };
Expand All @@ -10,6 +10,11 @@ stdenv.mkDerivation {

src = sourceAttrs.src;

patches = [ (fetchpatch {
url = "https://github.com/NICMx/Jool/commit/490ddb0933061cab3c2a7952dffc61789deed565.patch";
hash = "sha256-1dpMth0ocPHujlk+96St1a63RipcWiL/CdmSz4O87Lg=";
}) ];

outputs = [
"out"
"man"
Expand Down

0 comments on commit ec2b964

Please sign in to comment.