veracrypt: remove with lib;, add myself as maintainer

This commit is contained in:
Ryan Omasta
2024-09-25 11:42:24 -06:00
parent 202021faf6
commit ef7956291f

View File

@@ -65,14 +65,17 @@ stdenv.mkDerivation (finalAttrs: {
--replace "Icon=veracrypt" "Icon=veracrypt.xpm"
'';
meta = with lib; {
meta = {
description = "Free Open-Source filesystem on-the-fly encryption";
homepage = "https://www.veracrypt.fr/";
license = with licenses; [
license = with lib.licenses; [
asl20 # and
unfree # TrueCrypt License version 3.0
];
maintainers = with maintainers; [ dsferruzza ];
platforms = platforms.linux;
maintainers = with lib.maintainers; [
dsferruzza
ryand56
];
platforms = lib.platforms.linux;
};
})