about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2022-12-04 01:07:08 +0000
committerGitHub <noreply@github.com>2022-12-04 01:07:08 +0000
commit5298b5e021adfc58880f27b482ffdef0050139b2 (patch)
tree4ce633b8281ca6b9863012572128b20a1c6fc246
parent89c0048d1ac701c064c0b116fdd023885eabd062 (diff)
parent433cd931b65a132c576a6bd3ec54881ca3b16117 (diff)
downloadnixlib-5298b5e021adfc58880f27b482ffdef0050139b2.tar
nixlib-5298b5e021adfc58880f27b482ffdef0050139b2.tar.gz
nixlib-5298b5e021adfc58880f27b482ffdef0050139b2.tar.bz2
nixlib-5298b5e021adfc58880f27b482ffdef0050139b2.tar.lz
nixlib-5298b5e021adfc58880f27b482ffdef0050139b2.tar.xz
nixlib-5298b5e021adfc58880f27b482ffdef0050139b2.tar.zst
nixlib-5298b5e021adfc58880f27b482ffdef0050139b2.zip
Merge pull request #204323 from marsam/libtomcrypt-darwin
libtomcrypt: enable on darwin
-rw-r--r--pkgs/development/libraries/libtomcrypt/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libtomcrypt/default.nix b/pkgs/development/libraries/libtomcrypt/default.nix
index 936c92bf7c5d..929e62ca2b89 100644
--- a/pkgs/development/libraries/libtomcrypt/default.nix
+++ b/pkgs/development/libraries/libtomcrypt/default.nix
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ libtool libtommath ];
 
   postPatch = ''
-    substituteInPlace makefile.shared --replace "LT:=glibtool" "LT:=libtool"
+    substituteInPlace makefile.shared --replace "LIBTOOL:=glibtool" "LIBTOOL:=libtool"
   '';
 
   preBuild = ''
@@ -36,9 +36,11 @@ stdenv.mkDerivation rec {
   enableParallelBuilding = true;
 
   meta = with lib; {
-    homepage = "https://www.libtom.net/LibTomCrypt/";
     description = "A fairly comprehensive, modular and portable cryptographic toolkit";
+    homepage = "https://www.libtom.net/LibTomCrypt/";
+    changelog = "https://github.com/libtom/libtomcrypt/raw/v${version}/changes";
     license = with licenses; [ publicDomain wtfpl ];
-    platforms = platforms.linux;
+    maintainers = with maintainers; [ ];
+    platforms = platforms.all;
   };
 }