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

Commits on May 30, 2017

  1. i2pd: disable AVX instructions

    edwtjo committed May 30, 2017
    Copy the full SHA
    1e51fdc View commit details
  2. i2pd: homepage update

    edwtjo committed May 30, 2017

    Verified

    This commit was signed with the committer’s verified signature.
    fpletz Franz Pletz
    Copy the full SHA
    53835c9 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/tools/networking/i2pd/default.nix
4 changes: 2 additions & 2 deletions pkgs/tools/networking/i2pd/default.nix
Original file line number Diff line number Diff line change
@@ -14,14 +14,14 @@ stdenv.mkDerivation rec {
};

buildInputs = [ boost zlib openssl ];
makeFlags = "USE_AESNI=no";
makeFlags = [ "USE_AESNI=no" "USE_AVX=no" ];

installPhase = ''
install -D i2pd $out/bin/i2pd
'';

meta = with stdenv.lib; {
homepage = "https://track.privacysolutions.no/projects/i2pd";
homepage = "https://i2pd.website";
description = "Minimal I2P router written in C++";
license = licenses.gpl2;
maintainers = with maintainers; [ edwtjo ];