about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/textadept/default.nix
blob: 47a7445bd7f190cfb86ae34a31a45556f24a1a2e (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
31
32
33
34
35
36
37
38
39
40
41
42
43
{ lib, stdenv, fetchFromGitHub, fetchurl, cmake
, withQt ? true, qtbase, wrapQtAppsHook
, withCurses ? false, ncurses
}:
stdenv.mkDerivation rec {
  version = "12.1";
  pname = "textadept";

  src = fetchFromGitHub {
    name = "textadept11";
    owner = "orbitalquark";
    repo = "textadept";
    rev = "textadept_${version}";
    sha256 = "sha256-ce7U/GR/4zkjnRN3fx3FLecc9vuvFqCONy275SWnpNc=";
  };

  nativeBuildInputs = [ cmake ]
  ++ lib.optionals withQt [ wrapQtAppsHook ];

  buildInputs =
     lib.optionals withQt [ qtbase ]
  ++ lib.optionals withCurses ncurses;

  cmakeFlags =
     lib.optional withQt [ "-DQT=ON" ]
  ++ lib.optional withCurses [ "-DCURSES=ON" "-DQT=OFF"];

  preConfigure = ''
    mkdir -p $PWD/build/_deps

    '' +
    lib.concatStringsSep "\n" (lib.mapAttrsToList (name: params:
      "ln -s ${fetchurl params} $PWD/build/_deps/${name}"
    ) (import ./deps.nix));

  meta = with lib; {
    description = "An extensible text editor based on Scintilla with Lua scripting.";
    homepage = "http://foicica.com/textadept";
    license = licenses.mit;
    maintainers = with maintainers; [ raskin mirrexagon arcuru ];
    platforms = platforms.linux;
  };
}