lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

xmlsec: propagate libxslt, cleanup meta

+14 -8
+14 -8
pkgs/development/libraries/xmlsec/default.nix
··· 22 22 23 23 nativeBuildInputs = [ pkg-config ]; 24 24 25 - buildInputs = [ libxml2 gnutls libxslt libgcrypt libtool openssl nss ]; 25 + buildInputs = [ libxml2 gnutls libgcrypt libtool openssl nss ]; 26 + 27 + propagatedBuildInputs = [ 28 + # required by xmlsec/transforms.h 29 + libxslt 30 + ]; 26 31 27 32 enableParallelBuilding = true; 28 33 doCheck = true; 29 34 checkInputs = [ nss.tools ]; 30 35 preCheck = '' 31 - substituteInPlace tests/testrun.sh \ 32 - --replace 'timestamp=`date +%Y%m%d_%H%M%S`' 'timestamp=19700101_000000' \ 33 - --replace 'TMPFOLDER=/tmp' '$(mktemp -d)' 36 + substituteInPlace tests/testrun.sh \ 37 + --replace 'timestamp=`date +%Y%m%d_%H%M%S`' 'timestamp=19700101_000000' \ 38 + --replace 'TMPFOLDER=/tmp' '$(mktemp -d)' 34 39 ''; 35 40 36 41 # enable deprecated soap headers required by lasso ··· 67 72 touch $out 68 73 ''; 69 74 70 - meta = { 75 + meta = with lib; { 71 76 description = "XML Security Library in C based on libxml2"; 72 - homepage = "http://www.aleksey.com/xmlsec"; 77 + homepage = "https://www.aleksey.com/xmlsec/"; 73 78 downloadPage = "https://www.aleksey.com/xmlsec/download.html"; 74 - license = lib.licenses.mit; 79 + license = licenses.mit; 75 80 mainProgram = "xmlsec1"; 76 - platforms = with lib.platforms; linux ++ darwin; 81 + maintainers = with maintainers; [ ]; 82 + platforms = with platforms; linux ++ darwin; 77 83 }; 78 84 } 79 85 )