Skip to content

Commit

Permalink
Merge pull request #42200 from qolii/cryptsetup_2_0_3_libressl_2_7__v2
Browse files Browse the repository at this point in the history
Cryptsetup: 2.0.2 -> 2.0.3. Also, add upstream libressl-2.7 patch.
  • Loading branch information
xeji committed Jul 9, 2018
2 parents 2bb4088 + 8100691 commit c4adce7
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions pkgs/os-specific/linux/cryptsetup/default.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,24 @@
{ stdenv, fetchurl, devicemapper, json_c, openssl, libuuid, pkgconfig, popt
{ stdenv, fetchurl, fetchpatch, devicemapper, json_c, openssl, libuuid, pkgconfig, popt
, enablePython ? false, python2 ? null }:

assert enablePython -> python2 != null;

stdenv.mkDerivation rec {
name = "cryptsetup-2.0.2";
name = "cryptsetup-2.0.3";

src = fetchurl {
url = "mirror://kernel/linux/utils/cryptsetup/v2.0/${name}.tar.xz";
sha256 = "15wyjfgcqjf0wy5gxnmjj8aah33csv5v6n1hv9c8sxdzygbhb0ag";
sha256 = "1m01wl8njjraz69fsk97l3nqfc32nbpr1la5s1l4mzzmq42clv2d";
};

patches = [
# NOTE: Patch to support LibreSSL-2.7. It is from upstream, and can be removed when cryptsetup is next updated.
(fetchpatch {
url = "https://gitlab.com/cryptsetup/cryptsetup/commit/5fcf430c8105fbeeb07a8cacbae84f941d2a3d55.patch";
sha256 = "1d3ycsqszq0frlv9r7kmfdfmnk4qa4b4mv25iivmayvpgc8yja7m";
})
];

NIX_LDFLAGS = "-lgcc_s";

configureFlags = [
Expand Down

0 comments on commit c4adce7

Please sign in to comment.