forked from mirrors/nixpkgs
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
54 lines
1.3 KiB
Nix
54 lines
1.3 KiB
Nix
{ lib, stdenv, fetchhg, fetchFromGitHub, fetchurl, gtk2, glib, pkgconfig, unzip, ncurses, zip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "11.0_beta";
|
|
pname = "textadept11";
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [
|
|
gtk2 ncurses glib unzip zip
|
|
];
|
|
|
|
src = fetchFromGitHub {
|
|
name = "textadept11";
|
|
owner = "orbitalquark";
|
|
repo = "textadept";
|
|
rev = "8da5f6b4a13f14b9dd3cb9dc23ad4f7bf41e91c1";
|
|
sha256 = "0v11v3x8g6v696m3l1bm52zy2g9xzz7hlmn912sn30nhcag3raxs";
|
|
};
|
|
|
|
preConfigure =
|
|
lib.concatStringsSep "\n" (lib.mapAttrsToList (name: params:
|
|
"ln -s ${fetchurl params} $PWD/src/${name}"
|
|
) (import ./deps.nix)) + ''
|
|
|
|
cd src
|
|
make deps
|
|
'';
|
|
|
|
postBuild = ''
|
|
make curses
|
|
'';
|
|
|
|
preInstall = ''
|
|
mkdir -p $out/share/applications
|
|
mkdir -p $out/share/pixmaps
|
|
'';
|
|
|
|
postInstall = ''
|
|
make curses install PREFIX=$out MAKECMDGOALS=curses
|
|
'';
|
|
|
|
makeFlags = [
|
|
"PREFIX=$(out) WGET=true PIXMAPS_DIR=$(out)/share/pixmaps"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "An extensible text editor based on Scintilla with Lua scripting. Version 11_beta";
|
|
homepage = "http://foicica.com/textadept";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ raskin mirrexagon ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|