Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a225186cae6a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 35ecd632afcd
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Apr 15, 2020

  1. jupp: 31 -> 39

    AndersonTorres committed Apr 15, 2020
    Copy the full SHA
    92b28ac View commit details
  2. Copy the full SHA
    35ecd63 View commit details
Showing with 5 additions and 7 deletions.
  1. +5 −7 pkgs/applications/editors/jupp/default.nix
12 changes: 5 additions & 7 deletions pkgs/applications/editors/jupp/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
{ stdenv, fetchurl
, ncurses, gpm
}:
{ stdenv, fetchurl, ncurses, gpm }:

stdenv.mkDerivation rec {

pname = "jupp";
version = "3.1";
srcName = "joe-3.1jupp31";
version = "39";
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" ];
sha256 = "1fnf9jsd6p4jyybkhjjs328qx38ywy8w029ngc7j7kqp0ixn0l0s";
sha256 = "14gys92dy3kq9ikigry7q2x4w5v2z76d97vp212bddrxiqy5np8d";
};

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
because these behave better overall.
'';
homepage = "http://mirbsd.de/jupp";
homepage = "http://www.mirbsd.org/jupp.htm";
license = licenses.gpl1;
maintainers = with maintainers; [ AndersonTorres ];
};