microfetch: 0.4.4 -> 0.4.6 (#377799)
[NixPkgs.git] / pkgs / by-name / ue / uemacs / package.nix
blobf5c92580fc6bbc2e284c1c8814185fe75587cbff
2   lib,
3   stdenv,
4   fetchgit,
5   ncurses,
6 }:
8 stdenv.mkDerivation {
9   pname = "uemacs";
10   version = "4.0-unstable-2018-07-19";
12   src = fetchgit {
13     url = "https://git.kernel.org/pub/scm/editors/uemacs/uemacs.git";
14     rev = "1cdcf9df88144049750116e36fe20c8c39fa2517";
15     hash = "sha256-QSouqZiBmKBU6FqRRfWtTGRIl5sqJ8tVPYwdytt/43w=";
16   };
18   nativeBuildInputs = [
19     ncurses
20   ];
22   postPatch = ''
23     substituteInPlace Makefile --replace "lcurses" "lncurses"
24     substituteInPlace Makefile --replace "/usr/bin" "$out/bin"
25     substituteInPlace Makefile --replace "/usr/lib" "$out/share/uemacs"
27     substituteInPlace epath.h --replace "/usr/global/lib/" "$out/share/uemacs/"
28   '';
30   installPhase = ''
31     mkdir -p $out/{bin,share/uemacs}
32     make install
33   '';
35   meta = with lib; {
36     description = "Linus Torvalds's random version of microemacs with his personal modifications";
37     homepage = "https://git.kernel.org/pub/scm/editors/uemacs/uemacs.git/about/";
38     platforms = platforms.linux;
39     maintainers = with maintainers; [ networkexception ];
40     mainProgram = "em";
41     # MicroEMACS 3.9 can be copied and distributed freely for any
42     # non-commercial purposes. MicroEMACS 3.9 can only be incorporated
43     # into commercial software with the permission of the current author
44     # [Daniel M. Lawrence].
45     license = licenses.unfree;
46   };