3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #84538 from AndersonTorres/update-jupp

jupp: 31 -> 39
This commit is contained in:
Anderson Torres 2020-04-15 01:13:09 -03:00 committed by GitHub
commit 35ecd632af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,18 +1,16 @@
{ stdenv, fetchurl { stdenv, fetchurl, ncurses, gpm }:
, ncurses, gpm
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "jupp"; pname = "jupp";
version = "3.1"; version = "39";
srcName = "joe-3.1jupp31"; srcName = "joe-3.1${pname}${version}";
src = fetchurl { src = fetchurl {
urls = [ urls = [
"https://www.mirbsd.org/MirOS/dist/jupp/${srcName}.tgz" "https://www.mirbsd.org/MirOS/dist/jupp/${srcName}.tgz"
"https://pub.allbsd.org/MirOS/dist/jupp/${srcName}.tgz" ]; "https://pub.allbsd.org/MirOS/dist/jupp/${srcName}.tgz" ];
sha256 = "1fnf9jsd6p4jyybkhjjs328qx38ywy8w029ngc7j7kqp0ixn0l0s"; sha256 = "14gys92dy3kq9ikigry7q2x4w5v2z76d97vp212bddrxiqy5np8d";
}; };
preConfigure = "chmod +x ./configure"; preConfigure = "chmod +x ./configure";
@ -37,7 +35,7 @@ stdenv.mkDerivation rec {
and has a lot of bugs fixed. It is based upon an older version of joe and has a lot of bugs fixed. It is based upon an older version of joe
because these behave better overall. because these behave better overall.
''; '';
homepage = "http://mirbsd.de/jupp"; homepage = "http://www.mirbsd.org/jupp.htm";
license = licenses.gpl1; license = licenses.gpl1;
maintainers = with maintainers; [ AndersonTorres ]; maintainers = with maintainers; [ AndersonTorres ];
}; };