2021-03-07 04:19:20 -08:00
{ lib , stdenv , fetchurl , gettext , libgpgerror , enableCapabilities ? false , libcap , buildPackages }:
2015-05-01 17:39:02 -07:00
2015-06-04 02:14:24 -07:00
assert enableCapabilities -> stdenv . isLinux ;
2015-05-01 17:39:02 -07:00
stdenv . mkDerivation rec {
2019-08-15 05:41:18 -07:00
pname = " l i b g c r y p t " ;
2021-09-07 12:55:37 -07:00
version = " 1 . 9 . 4 " ;
2007-08-16 14:44:48 -07:00
src = fetchurl {
2019-08-15 05:41:18 -07:00
url = " m i r r o r : / / g n u p g / l i b g c r y p t / ${ pname } - ${ version } . t a r . b z 2 " ;
2021-09-07 12:55:37 -07:00
sha256 = " 1 x x a b j v 4 5 z l x y r y i w h m b f b l s x 4 1 k l 2 6 7 w s b 7 8 b n y 6 m 1 4 l y 1 r r 1 7 a " ;
2007-08-16 14:44:48 -07:00
} ;
2016-08-28 17:30:01 -07:00
outputs = [ " o u t " " d e v " " i n f o " ] ;
2015-10-13 11:03:22 -07:00
outputBin = " d e v " ;
2017-08-05 06:20:13 -07:00
# The CPU Jitter random number generator must not be compiled with
# optimizations and the optimize -O0 pragma only works for gcc.
# The build enables -O2 by default for everything else.
2021-01-21 09:00:13 -08:00
hardeningDisable = lib . optional stdenv . cc . isClang " f o r t i f y " ;
2017-08-05 06:20:13 -07:00
2018-02-25 05:24:34 -08:00
depsBuildBuild = [ buildPackages . stdenv . cc ] ;
2018-02-24 19:51:22 -08:00
2017-08-05 06:20:13 -07:00
buildInputs = [ libgpgerror ]
2021-01-21 09:00:13 -08:00
++ lib . optional stdenv . isDarwin gettext
++ lib . optional enableCapabilities libcap ;
2008-09-09 01:48:46 -07:00
2021-02-12 03:23:37 -08:00
strictDeps = true ;
2019-10-31 03:27:43 -07:00
configureFlags = [ " - - w i t h - l i b g p g - e r r o r - p r e f i x = ${ libgpgerror . dev } " ]
2021-02-09 10:43:08 -08:00
++ lib . optional ( stdenv . hostPlatform . isMusl || ( stdenv . hostPlatform . isDarwin && stdenv . hostPlatform . isAarch64 ) ) " - - d i s a b l e - a s m " ; # for darwin see https://dev.gnupg.org/T5157
2018-02-24 19:51:22 -08:00
2020-05-14 14:12:06 -07:00
# Necessary to generate correct assembly when compiling for aarch32 on
# aarch64
configurePlatforms = [ " h o s t " " b u i l d " ] ;
2020-12-26 02:27:37 -08:00
postConfigure = ''
sed - i configure \
- e ' s/NOEXECSTACK_FLAGS = $ /NOEXECSTACK_FLAGS = " - W a , - - n o e x e c s t a c k " / '
'' ;
2015-05-01 17:39:02 -07:00
# Make sure libraries are correct for .pc and .la files
# Also make sure includes are fixed for callers who don't use libgpgcrypt-config
2015-10-13 11:03:22 -07:00
postFixup = ''
sed - i ' s , #include <gpg-error.h>,#include "${libgpgerror.dev}/include/gpg-error.h",g' "$dev/include/gcrypt.h"
2021-01-21 09:00:13 -08:00
'' + l i b . o p t i o n a l S t r i n g e n a b l e C a p a b i l i t i e s ''
2016-05-07 12:49:16 -07:00
sed - i ' s , \ ( - lcap \ ) , - L $ { libcap . lib } /lib \ 1 , ' $ out/lib/libgcrypt.la
2008-09-09 01:48:46 -07:00
'' ;
2015-08-25 12:08:59 -07:00
# TODO: figure out why this is even necessary and why the missing dylib only crashes
# random instead of every test
2021-01-21 09:00:13 -08:00
preCheck = lib . optionalString stdenv . isDarwin ''
2015-08-25 12:08:59 -07:00
mkdir - p $ out/lib
cp src/.libs/libgcrypt.20.dylib $ out/lib
'' ;
2018-06-17 17:16:35 -07:00
doCheck = true ;
2014-04-08 16:15:38 -07:00
2021-01-21 09:00:13 -08:00
meta = with lib ; {
2020-03-31 18:11:51 -07:00
homepage = " h t t p s : / / w w w . g n u . o r g / s o f t w a r e / l i b g c r y p t / " ;
2021-04-30 15:35:48 -07:00
changelog = " h t t p s : / / g i t . g n u p g . o r g / c g i - b i n / g i t w e b . c g i ? p = l i b g c r y p t . g i t ; a = b l o b ; f = N E W S ; h b = r e f s / t a g s / ${ pname } - ${ version } " ;
2017-09-02 06:56:11 -07:00
description = " G e n e r a l - p u r p o s e c r y p t o g r a p h i c l i b r a r y " ;
2016-06-23 00:32:25 -07:00
license = licenses . lgpl2Plus ;
platforms = platforms . all ;
2019-01-26 02:01:09 -08:00
maintainers = with maintainers ; [ vrthra ] ;
2020-03-31 18:11:51 -07:00
repositories . git = " g i t : / / g i t . g n u p g . o r g / l i b g c r y p t . g i t " ;
2008-09-09 01:48:46 -07:00
} ;
2015-05-01 17:39:02 -07:00
}