nixpkgs-suyu/pkgs/applications/editors/jove/default.nix

45 lines
1,011 B
Nix
Raw Normal View History

2021-01-15 14:21:58 +01:00
{ lib, stdenv, fetchFromGitHub
2021-01-02 11:43:19 +01:00
, groff
, ncurses
, makeWrapper
} :
stdenv.mkDerivation rec {
pname = "jove";
2021-04-28 16:24:57 +02:00
version = "4.17.3.7";
2021-01-02 11:43:19 +01:00
src = fetchFromGitHub {
owner = "jonmacs";
repo = "jove";
rev = version;
2021-04-28 16:24:57 +02:00
sha256 = "sha256-fD87FIWZlfJE2tVX+0QaiGGqu+tJFHheXe1guJR/Hxg=";
2021-01-02 11:43:19 +01:00
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [
groff
ncurses
];
dontConfigure = true;
preBuild = ''
makeFlagsArray+=(SYSDEFS="-DSYSVR4 -D_XOPEN_SOURCE=500" \
TERMCAPLIB=-lncurses JOVEHOME=${placeholder "out"})
'';
postInstall = ''
wrapProgram $out/bin/teachjove \
--prefix PATH ":" "$out/bin"
'';
2021-01-15 14:21:58 +01:00
meta = with lib; {
2022-02-05 12:42:02 +01:00
description = "Jonathan's Own Version of Emacs";
2021-01-02 11:43:19 +01:00
homepage = "https://github.com/jonmacs/jove";
license = licenses.bsd2;
maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.unix;
2022-01-20 18:15:12 +01:00
broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/jove.x86_64-darwin
2021-01-02 11:43:19 +01:00
};
}