about summary refs log tree commit diff
path: root/pkgs/applications/editors/dit/default.nix
blob: 03c3c5d5eec6c7d9c81a5e93034d1fe4c71f9386 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib, fetchurl, stdenv, coreutils, ncurses, lua }:

stdenv.mkDerivation rec {
  name = "dit-${version}";
  version = "0.4";

  src = fetchurl {
    url = "https://hisham.hm/dit/releases/${version}/${name}.tar.gz";
    sha256 = "0bwczbv7annbbpg7bgbsqd5kwypn81sza4v7v99fin94wwmcn784";
  };

  buildInputs = [ coreutils ncurses lua ];

  prePatch = ''
    patchShebangs tools/GenHeaders
  '';

  # needs GNU tail for tail -r
  postPatch = ''
    substituteInPlace Prototypes.h --replace 'tail' "$(type -P tail)"
  '';

  meta = with stdenv.lib; {
    description = "A console text editor for Unix that you already know how to use";
    homepage = https://hisham.hm/dit/;
    license = licenses.gpl2;
    platforms = with platforms; linux;
    maintainers = with maintainers; [ davidak ];
  };
}