Commit graph

16 commits

Author SHA1 Message Date
oxalica eefa2ee38e
editline: 1.17.0 -> 1.17.1 and add patch to fix Home and End key in tmux (#124853)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-06-01 18:31:31 +02:00
Ben Siraphob 66e44425c6 pkgs/development/libraries: stdenv.lib -> lib 2021-01-21 19:11:02 -08:00
Patrick Hilhorst f7e390e6d4 treewide: fix redirected urls (run 3)
Related:
 - 9fc5e7e473
 - 593e11fd94
 - 508ae42a0f

Since the last time I ran this script, the Repology API changed, so I had to
adapt the script used in the previous PR. The new API should be more robust, so
overall this is a positive (no more grepping the error messages for our relevant
data but just a nice json structure).

Here's the new script I used:

```sh
curl https://repology.org/api/v1/repository/nix_unstable/problems \
   | jq -r '.[] | select(.type == "homepage_permanent_https_redirect") | .data | "s@\(.url)@\(.target)@"' \
   | sort | uniq | tee script.sed
find -name '*.nix' | xargs -P4 -- sed -f script.sed -i
```

I will also add this script to `maintainers/scripts`.
2020-10-02 09:01:35 -07:00
Michael Reilly 84cf00f980
treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01:00
Will Dietz 0285a20b48
editline: patch for improved handling of multiline input
Minor but observable in `nix repl` when history contains
expression that wraps and one that doesn't and using up/down
arrows to toggle between (for example).
2020-01-15 09:49:56 -06:00
R. RyanTM 525e296c2c editline: 1.16.1 -> 1.17.0 2020-01-06 03:20:22 -08:00
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00
volth f3282c8d1e treewide: remove unused variables (#63177)
* treewide: remove unused variables

* making ofborg happy
2019-06-16 19:59:05 +00:00
Will Dietz 74e40dcdef editline: 1.16.0 -> 1.16.1 (#62847)
https://github.com/troglobit/editline/releases/tag/1.16.1
2019-06-09 11:41:33 +02:00
Will Dietz f052db16e4 editline: fix crash with term narrower than completions
Fixes issue mentioned on #nixos earlier today by @edef1c.
2019-04-26 13:45:45 -05:00
Daiderd Jordan 238f4a0a90
editline: add redisplay patch 2018-12-26 13:19:26 +01:00
Eelco Dolstra 0385cb33c6
libeditline: Use multiple outputs
Also disable static build by default per Nixpkgs policy. (Really
static libraries should be moved to the 'dev' output, in which case it
wouldn't be a problem to enable them by default.)
2018-10-30 16:01:49 +01:00
Will Dietz d6b9252d67 editline: 1.15.3 -> 1.16.0 (#46897)
https://github.com/troglobit/editline/releases/tag/1.16.0
2018-09-19 23:55:50 +02:00
Will Dietz 4f1b14b513 editline: init at 1.15.3 2018-06-13 17:17:00 -05:00
Eelco Dolstra 79cb8d11a6 * editline: renamed to libedit (which seems to be the proper name for
the package).
* Removed the old ghc-wrapper, which hasn't been used for a long time.
* Renamed the "boot" GHC to "binary", which is more descriptive.
  (They *can* be used for other things than bootstrapping a GHC
  source build.)
* Updated the GHC 6.10.1 binary to 6.10.2.

svn path=/nixpkgs/trunk/; revision=15095
2009-04-16 19:25:22 +00:00
Andres Löh 25fa56e74f * updated the ghc HEAD snapshot
svn path=/nixpkgs/trunk/; revision=12454
2008-07-31 12:36:47 +00:00