jupp: 40 -> 41 (#378678)

This commit is contained in:
Nikolay Korotkiy
2025-02-08 20:45:37 +04:00
committed by GitHub
+7 -7
View File
@@ -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;
};
}