Unverified Commit ef795629 authored by Ryan Omasta's avatar Ryan Omasta
Browse files

veracrypt: remove `with lib;`, add myself as maintainer

parent 202021fa
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -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;
  };
})