Unverified Commit 7dd302a6 authored by Nikolay Korotkiy's avatar Nikolay Korotkiy Committed by GitHub
Browse files

jupp: 40 -> 41 (#378678)

parents 7a7ccb29 9d336fde
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -8,15 +8,15 @@

stdenv.mkDerivation rec {
  pname = "jupp";
  version = "40";
  version = "41";
  srcName = "joe-3.1${pname}${version}";

  src = fetchurl {
    urls = [
      "https://www.mirbsd.org/MirOS/dist/jupp/${srcName}.tgz"
      "https://pub.allbsd.org/MirOS/dist/jupp/${srcName}.tgz"
      "https://mbsd.evolvis.org/MirOS/dist/jupp/${srcName}.tgz"
    ];
    sha256 = "S+1DnN5/K+KU6W5J7z6RPqkPvl6RTbiIQD46J+gDWxo=";
    hash = "sha256-e7jqivUZvv7/+T7DyeMhCNfyuDIWybx7Aa71CYhhyC8=";
  };

  preConfigure = "chmod +x ./configure";
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
    "--enable-termidx"
  ];

  meta = with lib; {
  meta = {
    homepage = "http://www.mirbsd.org/jupp.htm";
    downloadPage = "https://www.mirbsd.org/MirOS/dist/jupp/";
    description = "Portable fork of Joe's editor";
@@ -46,8 +46,8 @@ stdenv.mkDerivation rec {
      and has a lot of bugs fixed. It is based upon an older version of joe
      because these behave better overall.
    '';
    license = licenses.gpl1Only;
    maintainers = with maintainers; [ AndersonTorres ];
    platforms = with platforms; unix;
    license = lib.licenses.gpl1Only;
    maintainers = with lib.maintainers; [ AndersonTorres ];
    platforms = with lib.platforms; unix;
  };
}