aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/editors/textadept/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/applications/editors/textadept/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/applications/editors/textadept/default.nix49
1 files changed, 0 insertions, 49 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/applications/editors/textadept/default.nix b/infra/libkookie/nixpkgs/pkgs/applications/editors/textadept/default.nix
deleted file mode 100644
index bb771c89010b..000000000000
--- a/infra/libkookie/nixpkgs/pkgs/applications/editors/textadept/default.nix
+++ /dev/null
@@ -1,49 +0,0 @@
-{ lib, stdenv, fetchhg, fetchurl, gtk2, glib, pkgconfig, unzip, ncurses, zip }:
-stdenv.mkDerivation rec {
- version = "10.2";
- pname = "textadept";
-
- nativeBuildInputs = [ pkgconfig ];
- buildInputs = [
- gtk2 ncurses glib unzip zip
- ];
-
- src = fetchhg {
- url = "http://foicica.com/hg/textadept";
- rev = "textadept_${version}";
- sha256 = "0fai8xqddkkprmbf0cf8wwgv7ccfdb1iyim30nppm2m16whkc8fl";
- };
-
- preConfigure =
- lib.concatStringsSep "\n" (lib.mapAttrsToList (name: params:
- "ln -s ${fetchurl params} $PWD/src/${name}"
- ) (import ./deps.nix)) + ''
-
- # work around trying to download stuff in `make deps`
- function wget() { true; }
- export -f wget
-
- cd src
- make deps
- '';
-
- postBuild = ''
- make curses
- '';
-
- postInstall = ''
- make curses install PREFIX=$out MAKECMDGOALS=curses
- '';
-
- makeFlags = [
- "PREFIX=$(out)"
- ];
-
- meta = with stdenv.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 ];
- platforms = platforms.linux;
- };
-}