aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/editors/textadept/default.nix
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-12-09 18:55:19 +0000
committerMx Kookie <kookie@spacekookie.de>2020-12-09 18:55:19 +0000
commit80d90d9b204f7c17912740f9f414fe5d59f293ba (patch)
tree5f2065a06e724270610760d59d01c6888b375a46 /infra/libkookie/nixpkgs/pkgs/applications/editors/textadept/default.nix
parent3a31a84c7d3e589035ad08499206aac44a81f424 (diff)
parent83cbad92d73216bb0d9187c56cce0b91f9121d5a (diff)
Merge commit '83cbad92d73216bb0d9187c56cce0b91f9121d5a' into main
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;
- };
-}