nixpkgs/pkgs/applications/editors/textadept/10/default.nix

52 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchhg, fetchurl, gtk2, glib, pkg-config, unzip, ncurses, zip }:
2020-10-11 18:30:19 +00:00
2016-06-22 04:58:50 +00:00
stdenv.mkDerivation rec {
2020-10-11 18:30:19 +00:00
version = "10.8";
pname = "textadept";
2016-06-22 04:58:50 +00:00
nativeBuildInputs = [ pkg-config unzip ];
2016-06-22 04:58:50 +00:00
buildInputs = [
gtk2 ncurses glib zip
2016-06-22 04:58:50 +00:00
];
2015-06-02 17:31:57 +00:00
src = fetchhg {
url = "http://foicica.com/hg/textadept";
2015-06-02 17:31:57 +00:00
rev = "textadept_${version}";
2020-10-11 18:30:19 +00:00
sha256 = "sha256-dEZSx2tuHTWYhk9q5iGlrWTAvDvKaM8HaHwXcFcv33s=";
2015-06-02 17:31:57 +00:00
};
2016-06-22 04:58:50 +00:00
2019-02-09 14:08:24 +00:00
preConfigure =
lib.concatStringsSep "\n" (lib.mapAttrsToList (name: params:
"ln -s ${fetchurl params} $PWD/src/${name}"
) (import ./deps.nix)) + ''
2016-06-22 04:58:50 +00:00
2019-02-09 14:08:24 +00:00
cd src
2015-06-02 17:31:57 +00:00
make deps
'';
2016-06-22 04:58:50 +00:00
2015-06-02 17:31:57 +00:00
postBuild = ''
make curses
'';
2016-06-22 04:58:50 +00:00
2020-10-11 18:30:19 +00:00
preInstall = ''
mkdir -p $out/share/applications
mkdir -p $out/share/pixmaps
'';
2015-06-02 17:31:57 +00:00
postInstall = ''
make curses install PREFIX=$out MAKECMDGOALS=curses
'';
2016-06-22 04:58:50 +00:00
makeFlags = [
2020-10-11 18:30:19 +00:00
"PREFIX=$(out) WGET=true PIXMAPS_DIR=$(out)/share/pixmaps"
2016-06-22 04:58:50 +00:00
];
meta = with lib; {
2015-06-02 17:31:57 +00:00
description = "An extensible text editor based on Scintilla with Lua scripting";
homepage = "http://foicica.com/textadept";
2016-06-22 04:58:50 +00:00
license = licenses.mit;
maintainers = with maintainers; [ raskin mirrexagon ];
platforms = platforms.linux;
2015-06-02 17:31:57 +00:00
};
}