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: 57c922972a41
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ebd7466a0b36
Choose a head ref
  • 3 commits
  • 5 files changed
  • 1 contributor

Commits on Oct 30, 2019

  1. cryptopp: 5.6.5 -> 8.2.0

    + add c0bw3b as maintainer
    c0bw3b authored and Jon committed Oct 30, 2019
    Copy the full SHA
    c36d92f View commit details
  2. amule: fix build with crypto++ >= 6.0

    c0bw3b authored and Jon committed Oct 30, 2019
    Copy the full SHA
    a157d96 View commit details
  3. python.pkgs.pycryptopp: build with crypto++ >= 6.0

    c0bw3b authored and Jon committed Oct 30, 2019
    Copy the full SHA
    ebd7466 View commit details
15 changes: 0 additions & 15 deletions pkgs/development/libraries/crypto++/GNUmakefile-darwin.patch

This file was deleted.

54 changes: 26 additions & 28 deletions pkgs/development/libraries/crypto++/default.nix
Original file line number Diff line number Diff line change
@@ -1,49 +1,47 @@
{ fetchFromGitHub, stdenv }:
{ stdenv, fetchFromGitHub, nasm, which }:

with stdenv.lib;
stdenv.mkDerivation rec {
pname = "crypto++";
majorVersion = "5.6";
version = "${majorVersion}.5";
version = "8.2.0";
underscoredVersion = strings.replaceStrings ["."] ["_"] version;

src = fetchFromGitHub {
owner = "weidai11";
repo = "cryptopp";
rev = "CRYPTOPP_5_6_5";
sha256 = "1yk7jyf4va9425cg05llskpls2jm7n3jwy2hj5jm74zkr4mwpvl7";
rev = "CRYPTOPP_${underscoredVersion}";
sha256 = "01zrrzjn14yhkb9fzzl57vmh7ig9a6n6fka45f8za0gf7jpcq3mj";
};

patches = stdenv.lib.concatLists [
(stdenv.lib.optional (stdenv.hostPlatform.system != "i686-cygwin") ./dll.patch)
(stdenv.lib.optional stdenv.hostPlatform.isDarwin ./GNUmakefile-darwin.patch)
];


configurePhase = ''
sed -i GNUmakefile \
-e 's|-march=native|-fPIC|g' \
-e '/^CXXFLAGS =/s|-g ||'
postPatch = ''
substituteInPlace GNUmakefile \
--replace "AR = libtool" "AR = ar" \
--replace "ARFLAGS = -static -o" "ARFLAGS = -cru"
'';

enableParallelBuilding = true;
nativeBuildInputs = optionals stdenv.hostPlatform.isx86 [ nasm which ];

makeFlags = [ "PREFIX=$(out)" ];
buildFlags = [ "libcryptopp.so" ];
installFlags = [ "LDCONF=true" ];
preBuild = optionalString stdenv.hostPlatform.isx86 "${stdenv.shell} rdrand-nasm.sh";
makeFlags = [ "PREFIX=${placeholder "out"}" ];
buildFlags = [ "shared" "libcryptopp.pc" ];
enableParallelBuilding = true;

doCheck = true;
checkPhase = "LD_LIBRARY_PATH=`pwd` make test";

# prefer -fPIC and .so to .a; cryptotest.exe seems superfluous
postInstall = ''
rm "$out"/lib/*.a -r "$out/bin"
ln -sf "$out"/lib/libcryptopp.so.${version} "$out"/lib/libcryptopp.so.${majorVersion}
preInstall = "rm libcryptopp.a"; # built for checks but we don't install static lib into the nix store
installTargets = "install-lib";
installFlags = [ "LDCONF=true" ];
postInstall = optionalString (!stdenv.hostPlatform.isDarwin) ''
ln -sr $out/lib/libcryptopp.so.${version} $out/lib/libcryptopp.so.${versions.majorMinor version}
ln -sr $out/lib/libcryptopp.so.${version} $out/lib/libcryptopp.so.${versions.major version}
'';

meta = with stdenv.lib; {
meta = {
description = "Crypto++, a free C++ class library of cryptographic schemes";
homepage = http://cryptopp.com/;
license = licenses.boost;
homepage = "https://cryptopp.com/";
changelog = "https://raw.githubusercontent.com/weidai11/cryptopp/CRYPTOPP_${underscoredVersion}/History.txt";
license = with licenses; [ boost publicDomain ];
platforms = platforms.all;
maintainers = [ ];
maintainers = with maintainers; [ c0bw3b ];
};
}
28 changes: 0 additions & 28 deletions pkgs/development/libraries/crypto++/dll.patch

This file was deleted.

15 changes: 13 additions & 2 deletions pkgs/development/python-modules/pycryptopp/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, fetchpatch
, isPy3k
, setuptoolsDarcs
, darcsver
@@ -14,17 +15,27 @@ buildPythonPackage rec {

src = fetchPypi {
inherit pname version;
sha256 = "08ad57a1a39b7ed23c173692281da0b8d49d98ad3dcc09f8cca6d901e142699f";
sha256 = "17v98bhh3nd6rkw0kk1xmnc9vm5ql0fji4in2wyd4zlvlfhmgb88";
};

patches = [
(fetchpatch {
name = "pycryptopp-cryptopp_6.patch";
url = "https://aur.archlinux.org/cgit/aur.git/plain/api_change.patch?h=pycryptopp&id=55f2973d6ca5e9e70438f2eadb7fb575b1a5048d";
sha256 = "0lvl2d32d2vkb0v6d39p9whda5bdrmlsjd41zy0x0znqm53a9i99";
stripLen = 1;
extraPrefix = "src/";
})
];

# Prefer crypto++ library from the Nix store over the one that's included
# in the pycryptopp distribution.
preConfigure = "export PYCRYPTOPP_DISABLE_EMBEDDED_CRYPTOPP=1";

buildInputs = [ setuptoolsDarcs darcsver pkgs.cryptopp ];

meta = with stdenv.lib; {
homepage = http://allmydata.org/trac/pycryptopp;
homepage = "https://tahoe-lafs.org/trac/pycryptopp";
description = "Python wrappers for the Crypto++ library";
license = licenses.gpl2Plus;
platforms = platforms.linux;
5 changes: 5 additions & 0 deletions pkgs/tools/networking/p2p/amule/default.nix
Original file line number Diff line number Diff line change
@@ -25,6 +25,11 @@ stdenv.mkDerivation rec {
sha256 = "1n24r1j28083b8ipbnh1nf6i4j6vx59pdkfl1c0g6bb4psx9wvvi";
name = "libupnp_18.patch";
})
(fetchpatch {
name = "amule-cryptopp_6.patch";
url = "https://github.com/amule-project/amule/commit/27c13f3e622b8a3eaaa05bb62b0149604bdcc9e8.patch";
sha256 = "0kq095gi3xl665wr864zlhp5f3blk75pr725yany8ilzcwrzdrnm";
})
];

postPatch = ''