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

50 lines
1.1 KiB
Nix
Raw Normal View History

2019-02-09 14:08:24 +00:00
{ lib, stdenv, fetchhg, fetchurl, gtk2, glib, pkgconfig, unzip, ncurses, zip }:
2016-06-22 04:58:50 +00:00
stdenv.mkDerivation rec {
2019-02-09 14:08:24 +00:00
version = "10.2";
2015-06-02 17:31:57 +00:00
name = "textadept-${version}";
2016-06-22 04:58:50 +00:00
nativeBuildInputs = [ pkgconfig ];
2016-06-22 04:58:50 +00:00
buildInputs = [
2019-02-09 14:08:24 +00:00
gtk2 ncurses glib unzip 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;
rev = "textadept_${version}";
2019-02-09 14:08:24 +00:00
sha256 = "0fai8xqddkkprmbf0cf8wwgv7ccfdb1iyim30nppm2m16whkc8fl";
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
# work around trying to download stuff in `make deps`
function wget() { true; }
export -f wget
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
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 = [
"PREFIX=$(out)"
];
meta = with stdenv.lib; {
2015-06-02 17:31:57 +00:00
description = "An extensible text editor based on Scintilla with Lua scripting";
2016-06-22 04:58:50 +00:00
homepage = http://foicica.com/textadept;
license = licenses.mit;
maintainers = with maintainers; [ raskin mirrexagon ];
platforms = platforms.linux;
2015-06-02 17:31:57 +00:00
};
}