Commit graph

5677 commits

Author SHA1 Message Date
Lars Mühmel f4d0aad708 kakoune.plugins.kak-auto-pairs: fix lib 2021-01-18 18:39:54 +01:00
Sandro 05e6e64817
Merge pull request #107399 from r-ryantm/auto-update/quilter
quilter: 2.5.1 -> 2.5.4
2021-01-18 12:13:17 +01:00
Sergey 90febc0e34
telega: Fix pkg-config dependency
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-01-18 13:37:48 +03:00
Sandro fff42b1d70
Merge pull request #109718 from jonringer/fix-kakoune
kakoune.plugins.kak-fzf: fix assertion
2021-01-18 11:10:27 +01:00
Jonathan Ringer 68fcde294d kakoune.plugins.kak-fzf: fix assertion 2021-01-18 01:45:34 -08:00
Robert Schütz 629065b91c setzer: 0.3.9 -> 0.4.0 2021-01-18 09:40:24 +01:00
Sergey Makarov 327e535e95
telega: Fix build 2021-01-17 01:23:13 +03:00
Anderson Torres c5323df4f7
Merge pull request #106727 from r-ryantm/auto-update/kdevelop
kdevelop-unwrapped: 5.6.0 -> 5.6.1
2021-01-16 16:26:33 -03:00
Jörg Thalheim d8d06d1cec
Merge pull request #109455 from siraben/remove-stdenv-lib 2021-01-16 16:17:07 +00:00
Sandro c2462bb391
Merge pull request #109508 from dotlambda/setzer-0.3.9
setzer: 0.3.2 -> 0.3.9
2021-01-16 14:09:41 +01:00
Ben Siraphob badf51221d treewide: stdenv.lib -> lib 2021-01-16 17:58:11 +07:00
Robert Schütz 8d0cd6112f setzer: 0.3.2 -> 0.3.9 2021-01-16 10:47:15 +01:00
adisbladis 5f69227d55
emacs.pkgs.melpa-packages: 2021-01-15 2021-01-15 13:07:59 +01:00
adisbladis abc6fca7ca
emacs.pkgs.elpa-packages: 2021-01-15 2021-01-15 13:07:21 +01:00
Maximilian Bosch b0c732b698
Merge pull request #109403 from lsix/nano-5.5
nano: 5.4 -> 5.5
2021-01-15 09:21:21 +01:00
Alyssa Ross 3893d6c6d7 gitAndTools: move everything to the top level
The comment at the top of git-and-tools/default.nix said:

    /* All git-relates tools live here, in a separate attribute set so that users
     * can get a fast overview over what's available.

but unfortunately that hasn't actually held up in practice.

Git-related packages have continued to be added to the top level, or
into gitAndTools, or sometimes both, basically at random, so having
gitAndTools is just confusing.  In fact, until I looked as part of
working on getting rid of gitAndTools, one program (ydiff) was
packaged twice independently, once in gitAndTools and once at the top
level (I fixed this in 98c3490196).

So I think it's for the best if we move away from gitAndTools, and
just put all the packages it previously contained at the top level.
I've implemented this here by just making gitAndTools an alias for the
top level -- this saves having loads of lines in aliases.nix.  This
means that people can keep referring to gitAndTools in their
configuration, but it won't be allowed to be used within Nixpkgs, and
it won't be presented to new users by e.g. nix search.

The only other change here that I'm aware of is that
appendToName "minimal" is not longer called on the default git
package, because doing that would have necessitated having a private
gitBase variable like before.  I think it makes more sense not to do
that anyway, and reserve the "minimal" suffix only for gitMinimal.
2021-01-14 21:27:48 +00:00
Lancelot SIX b4255f82c0
nano: 5.4 -> 5.5 2021-01-14 20:36:47 +00:00
Anderson Torres 956afcd713
Merge pull request #106548 from eraserhd/quickscope-kak
kakounePlugins.quickscope-kak: init at 1.0.0
2021-01-14 10:26:31 -03:00
Silvan Mosberger 7ddb89332c
Merge pull request #109293 from ilian/u/reaper
reaper: 6.12c -> 6.19
2021-01-14 01:15:46 +01:00
ilian e10bf33327 bonzomatic: update maintainers 2021-01-13 23:09:02 +01:00
adisbladis 4003f8cbc7
treewide: emacsPackages -> emacs.pkgs & emacsWithPackages -> emacs.pkgs.withPackages
The previous names are now aliases and shouldn't be used anywhere inside nixpkgs.
2021-01-13 17:13:10 +01:00
adisbladis 6347f78fd9
emacsPackages*: Move to emacs*.pkgs
This makes it much easier to create customisations around emacs via
the a new convenience passthru attr:
- `emacs.pkgs`: What used to be emacsPackages is now `emacs.pkgs`

The previous versioned names `emacs*Packages` have been moved to
aliases.nix and are now considered deprecated in favour of `emacs*.pkgs`.
2021-01-13 17:04:55 +01:00
adisbladis 5ea6dcd1d2
emacsPackages.melpa-packages: 2021-01-13 2021-01-13 03:54:10 +01:00
adisbladis 19d9d0023d
emacsPackages.org-packages: 2021-01-13 2021-01-13 03:53:14 +01:00
adisbladis 051af70ce5
emacsPackages.elpa-packages: 2021-01-13 2021-01-13 03:53:13 +01:00
adisbladis 35fca4864e
emacs.update-from-overlay: Allow broken in all nix-instantiate calls 2021-01-13 03:52:39 +01:00
Sandro 724887c85e
Merge pull request #107772 from nrdxp/kak-fzf
kak-fzf: 2020-05-24 -> 2020-07-26
2021-01-11 19:09:03 +01:00
Profpatsch 4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
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
2021-01-11 10:38:22 +01:00
Jan Tojnar dd72357155
Merge branch 'master' into staging-next 2021-01-10 23:24:33 +01:00
John Ericson 05b5b5491e
Merge pull request #108507 from Ericson2314/ott-mode
ott-mode: Factor our from ott
2021-01-10 14:30:59 -05:00
github-actions[bot] e251591528
Merge master into staging-next 2021-01-09 01:00:25 +00:00
Anderson Torres d54d5f6602
Merge pull request #108194 from Vonfry/fix/emacs/gnuplot
emacsPackages.gnuplot: autoreconf is not needed any longer.
2021-01-08 16:25:28 -03:00
Jan Tojnar e6c0c98940
Merge branch 'master' into staging-next
zynaddsubfx conflict has been updated to 3.0.1, which conflicted with rewrite after 3.0.5 update on a different branch.
2021-01-08 02:07:34 +01:00
Sandro 7a5c1d3cd5
Merge pull request #108474 from erictapen/ghostwriter-2.0.0 2021-01-07 21:07:29 +01:00
Justin Humm 5d815cce8a
ghostwriter: 1.0.1 -> 2.0.0-rc3, build with newest libsForQt5
- mark as broken on darwin
- add myself as maintainer
2021-01-07 13:38:31 +01:00
Jan Tojnar f19eb635b4
Merge branch 'master' into staging-next
b04fc593e7 seems to have accidentally changed mkDerivation function for dfilemanager and solarus-quest-editor so I have reverted that here.
2021-01-07 13:04:31 +01:00
Sandro 861a561419
Merge pull request #108628 from r-ryantm/auto-update/thonny
thonny: 3.3.1 -> 3.3.2
2021-01-07 02:52:14 +01:00
R. RyanTM a6f27eb1fe thonny: 3.3.1 -> 3.3.2 2021-01-07 00:58:51 +00:00
John Ericson 0f52f30928 ott-mode: Init (version inherited from ott)
This way it is pre-compiled.
2021-01-05 14:41:51 -05:00
WORLDofPEACE cce45c73b9
Merge pull request #108471 from andyrichardson/patch-2
vscodium: Fix invalid download URL (404)
2021-01-05 10:05:07 -05:00
Andy Richardson 049311bc4b
vscodium: Fix invalid download URL (404) 2021-01-05 12:20:19 +00:00
AndersonTorres e2a3c74126 moe: 1.10 -> 1.11 2021-01-05 08:55:25 -03:00
Frederik Rietdijk b20838eb4a Merge staging-next into staging 2021-01-04 20:51:32 +01:00
Anderson Torres a5c848382c
Merge pull request #108261 from AndersonTorres/updates
Misc updates
2021-01-04 10:17:22 -03:00
Arnout Engelen 28564278c0 jetbrains: updates 2021-01-04 13:44:30 +01:00
github-actions[bot] f0187a2cf3
Merge staging-next into staging 2021-01-04 12:26:43 +00:00
AndersonTorres aeffc753fa joe: cleanup
Add a longDescription, and also add myself as maintainer.
2021-01-03 23:19:42 -03:00
AndersonTorres 03b1d53ace jed: init at 0.99-19 2021-01-03 23:16:17 -03:00
AndersonTorres 7d370b0fa3 jove: init at 4.17.3.6 2021-01-03 23:16:17 -03:00
Ben Siraphob 3ae5e6ce03 treewide: remove enableParallelBuilding = true if using cmake 2021-01-03 18:37:40 +07:00
zowoq fb2311d430 Merge staging-next into staging 2021-01-03 16:33:28 +10:00
Vonfry 4e677ba476
emacsPackages.gnuplot: autoreconf is not needed any longer. 2021-01-02 13:15:23 +08:00
Ben Siraphob 3496ce2a0c treewide: remove trailing whitespaces 2021-01-01 10:41:04 -08:00
AndersonTorres bbf4d0ddde Emacs Elpa updates
Generated via auto-update scripts.
2021-01-01 10:54:50 -03:00
AndersonTorres f42856b37e Emacs Melpa updates
Generated via auto-update scripts.
2021-01-01 10:54:50 -03:00
AndersonTorres 69503ada0c Emacs Org: 20201207 -> 20201228
Generated via auto-update scripts.
2021-01-01 10:54:50 -03:00
Frederik Rietdijk 3f08495212
Merge pull request #108022 from siraben/cmake-native-build-inputs
[staging] treewide: cmake buildInputs to nativeBuildInputs, minor cleanups
2021-01-01 10:54:25 +01:00
Ben Siraphob b04fc593e7 treewide: cmake buildInputs to nativeBuildInputs, minor cleanups 2021-01-01 11:52:33 +07:00
Sandro e5c488c154
Merge pull request #106741 from cyplo/mindforger1.52
mindforger: 1.48.2 -> 1.52.0
2021-01-01 03:32:49 +01:00
Kim Lindberger ee5a73f5ac
Merge pull request #107839 from collares/update-emacs2nix
emacs2nix: update to fix locale issues and a missing elpa package
2020-12-30 21:30:08 +01:00
Cyryl Płotnicki 31f845840c mindforger: 1.48.2 -> 1.52.0 2020-12-30 14:57:25 +00:00
ajs124 39c6139dd5 texstudio: 3.0.1 -> 3.0.3 2020-12-30 00:40:02 +01:00
Mauricio Collares a0c2d672f7 emacs2nix: update to fix locale issues and a missing elpa package 2020-12-28 20:19:16 -03:00
Graham Christensen 14c2379fa7
Merge pull request #107052 from drewrisinger/dr-pr-vscode-arm
vscode, vscodium: 1.51.1 -> 1.52.1 & add aarch64-linux, armv7l-linux builds
2020-12-28 16:55:48 -05:00
Bjørn Forsman d0ecbe67b8 eclipses.plugins.cdt: fix hash
The last update had a copy-pasta error: the hash for jdt was also used
for cdt.

Fixes: 66a14b3e23 ("eclipses: 2020-09 -> 2020-12")
2020-12-28 20:54:33 +01:00
Timothy DeHerrera 0cf9d539be
kak-fzf: 2020-05-24 -> 2020-07-26 2020-12-27 18:40:35 -07:00
Michael Weiss 669e4df42a
Merge pull request #107669 from meutraa/update/android-studio
Update Android Studio
2020-12-27 11:58:15 +01:00
Sandro 441ccfeb5b
Merge pull request #104982 from sikmir/cudatext
cudatext: 1.115.0 → 1.118.2
2020-12-27 02:18:47 +01:00
Nikolay Korotkiy 5694379992
cudatext: 1.115.0 → 1.118.2 2020-12-27 01:15:14 +03:00
meutraa e253027617
androidStudioPackages.{canary,dev}: 20.3.1.2 -> 2020.3.1.3 2020-12-26 21:32:05 +00:00
meutraa c12a3a31ff
androidStudioPackages.beta: 4.2.0.17 -> 4.2.0.18 2020-12-26 20:38:02 +00:00
Nicolas Martin ff42b4ae55
glow: add changelog meta-attribute 2020-12-25 15:07:12 +01:00
Nicolas Martin 6f400cf290
glow: 1.2.1 -> 1.3.0 2020-12-25 14:02:54 +01:00
Lassulus 16b80104bf
Merge pull request #107383 from cole-h/kakoune
kakoune: fix installCheck
2020-12-24 20:07:09 +01:00
Drew Risinger 9485b86453 vscodium: add arm64-linux & armv7l-linux builds 2020-12-24 13:35:18 -05:00
Drew Risinger 93c067206d vscodium: 1.51.1 -> 1.52.1 2020-12-24 13:33:16 -05:00
Drew Risinger f0f18ad16c vscode: add arm64-linux & armv7l-linux builds 2020-12-24 13:32:02 -05:00
upkeep-bot e24bf9062b vscode: 1.51.1 -> 1.52.1 2020-12-23 18:16:05 -08:00
R. RyanTM 37375215cc quilter: 2.5.1 -> 2.5.4 2020-12-22 12:55:32 +00:00
Cole Helbling 9b3fe2eef4
kakoune: fix installCheck
* `doInstallCheckPhase` -> `doInstallCheck`
* `-E` throws an exception that is uncaught, leading the check to fail.
`-e` works as expected.
2020-12-21 16:21:22 -08:00
Sebastian Zivota 53cc6bbce3 kak-powerline: 2019-07-23 -> 2020-08-22
Moreover, the original repository is unmaintained. I changed it
to the current maintainer's fork.
2020-12-20 19:01:24 +01:00
mohe2015 56b0eb0c6f
eclipses.eclipse-rust: init at 2020-12 2020-12-20 19:25:29 +01:00
mohe2015 66a14b3e23
eclipses: 2020-09 -> 2020-12 2020-12-20 19:25:28 +01:00
Edward Tjörnhammar e3c8f10cbb
jetbrains: configurable vmoptions
All products are now configurable through `config.jetbrains.vmoptions`

Closes #107032
2020-12-19 23:19:52 +01:00
Edward Tjörnhammar 83bd601310
jetbrains.clion: address minor globchange 2020-12-19 23:19:43 +01:00
kolaente 657b567eaf
jetbrains: updates 2020-12-19 23:19:21 +01:00
Mario Rodas 230e0a31a0
Merge pull request #106997 from samuela/patch-2
vscodium: update script artifact names have changed
2020-12-17 12:42:35 -05:00
Aaron Andersen ba2e5e624a
Merge pull request #106717 from r-ryantm/auto-update/kdev-php
kdev-php: 5.6.0 -> 5.6.1
2020-12-17 07:11:21 -05:00
R. RyanTM a488984368 kdev-python: 5.6.0 -> 5.6.1 2020-12-17 07:51:34 +01:00
Tad Fisher a7cb8e36ac
emacs: Add comp-eln-load-path infrastructure 2020-12-16 19:45:07 +01:00
Malte Voos 2c1f5efd3a kakounePlugins.kak-prelude: 2020-03-15 -> 2020-09-06 2020-12-16 15:36:50 +01:00
Samuel Ainsworth 551ff760ce
vscodium: update script artifact names have changed
The vscodium project is now releasing artifacts with slightly different naming: `VSCodium-darwin-${VSCODIUM_VER}.zip` is now `VSCodium-darwin-x64-${VSCODIUM_VER}.zip`. This is likely due to arrival of the new ARM-based macs. In any case, it does mean that we need to update `update-vscodium.sh` to pull the correct artifact down.
2020-12-15 18:55:47 -08:00
Alyssa Ross 1fe24de3a2
emacs2nix: update to add trailing newline
Files generated by emacs2nix will now end in a final newline, as is
now required by the Nixpkgs editorconfig-checker CI action.
See <https://github.com/ttuegel/emacs2nix/pull/51>.
2020-12-13 16:24:12 +00:00
R. RyanTM 99b4c714e3 kdevelop-unwrapped: 5.6.0 -> 5.6.1 2020-12-12 09:44:23 +00:00
R. RyanTM 9c5747aab0 kdev-php: 5.6.0 -> 5.6.1 2020-12-12 07:07:59 +00:00
Mario Rodas a91ec89845
Merge pull request #106630 from r-ryantm/auto-update/vis
vis: 0.6 -> 0.7
2020-12-11 07:36:19 -05:00
Sandro 6304650805
Merge pull request #106139 from austinbutler/zile-2.6.0.90
zile: 2.4.14 -> 2.6.0.90
2020-12-11 06:34:54 +01:00
R. RyanTM 08d5d9c117 vis: 0.6 -> 0.7 2020-12-11 05:12:20 +00:00
Sandro 2c0f6135aa
Merge pull request #104510 from markus1189/rehex-0.3.1 2020-12-11 05:27:27 +01:00
adisbladis a8d8f916f2
Merge pull request #106607 from alyssais/emacs-broken
emacsPackages: mark some packages as broken
2020-12-11 00:29:33 +01:00
adisbladis a9fe36cd0b
Merge pull request #106547 from alyssais/siteVersionDir
emacs: fix siteVersionDir path
2020-12-11 00:19:21 +01:00
adisbladis 09e349206d
Merge pull request #106486 from alyssais/emacsWithPackages
emacsWithPackages: EMACSLOADPATH correctness fixes
2020-12-11 00:08:59 +01:00
Alyssa Ross 23d4bfb666
emacsWithPackages: don't tell sub-Emacs about pkgs
If I'm running an Emacs executable from emacsWithPackages as my main
programming environment, and I'm hacking on Emacs, or the Emacs
packaging in Nixpkgs, or whatever, I don't want the Emacs packages
from the wrapper to show up in the load path of that child Emacs.  It
results in differing behaviour depending on whether the child Emacs is
run from Emacs or from, for example, an external terminal emulator,
which is very surprising.

To avoid this, pass another environment variable containing the
wrapper site-lisp path, and use that value to remove the corresponding
entry in EMACSLOADPATH, so it won't be propagated to child Emacsen.
2020-12-10 22:52:31 +00:00
Alyssa Ross 609843b478
emacsPackages.sql-presto: mark broken 2020-12-10 21:22:04 +00:00
Alyssa Ross 322ee87a10
emacsPackages.per-buffer-theme: mark broken 2020-12-10 21:22:03 +00:00
Alyssa Ross 75bd468468
emacsPackages.instapaper: mark broken 2020-12-10 21:22:01 +00:00
Alyssa Ross 183364f96f
emacsPackages.melancholy-theme: mark broken 2020-12-10 21:21:59 +00:00
Alyssa Ross 4300a94d2f
emacsPackages.magit-stgit: mark broken 2020-12-10 21:21:05 +00:00
Jason Felice 4c486c1314 kakounePlugins.quickscope-kak: init at 1.0.0 2020-12-10 07:34:43 -05:00
Alyssa Ross 755670f5e4
emacs: fix siteVersionDir path
siteVersionDir isn't a full path, it's just the name of the version
directory entry in $out/share/emacs, e.g. "27.1", so since
d1b0eef9b5 ("emacs: Don't use interpolation for version"), we've been
trying to remove a non-existent directory.  This would have been
caught if we hadn't been giving -f to rm unnecessarily, because -f
suppresses errors.  As well as fixing the path, I've removed the -f
from rm.  Doing this to the line above as well revealed that rm-ing
$out/var was no longer necessary, since nothing has been put there
since ac23a7c459 ("emacs: 25.3 → 26.1") -- it would now only be
created if we set the --with-gameuser configure option, which we
don't.
2020-12-10 12:19:14 +00:00
Alyssa Ross f493e62643 emacsPackages.melpa-packages: 2020-12-09 2020-12-09 22:57:49 +00:00
Alyssa Ross 33ee2f22c6 emacsPackages.org-packages: 2020-12-09 2020-12-09 22:57:49 +00:00
Alyssa Ross a43c6fc025 emacsPackages.elpa-packages: 2020-12-09 2020-12-09 22:57:49 +00:00
Niklaus Giger d955d0ad33
eclipses: add Eclipse IDE for RCP and RAP developers 2020-12-09 22:40:49 +01:00
Thomas Friese 4c842c97b0
standardnotes: 3.3.3 -> 3.5.11 2020-12-08 23:45:30 +01:00
Sandro 5f56dd84b7
Merge pull request #106322 from r-ryantm/auto-update/rednotebook
rednotebook: 2.20 -> 2.21
2020-12-08 21:10:05 +01:00
Timo Kaufmann 39ad6d5374
Merge pull request #106300 from asbachb/update/netbeans
netbeans: 12.1 -> 12.2
2020-12-08 17:18:08 +01:00
Mario Rodas 09766f8e8a
Merge pull request #106301 from r-ryantm/auto-update/mg
mg: 6.7 -> 6.8.1
2020-12-08 03:56:42 -05:00
R. RyanTM 1ecb8e72c2 rednotebook: 2.20 -> 2.21 2020-12-08 04:46:29 +00:00
Austin Butler 6a94d50d46 zile: 2.4.14 -> 2.6.0.90 2020-12-07 20:30:21 -08:00
Sandro 395cfa475d
Merge pull request #93365 from fzakaria/spacevim
spacevim: init at v1.5.0
2020-12-08 05:29:16 +01:00
Benjamin Asbach a9616e521f netbeans: remove windows binaries before copying package to output 2020-12-08 01:08:27 +01:00
R. RyanTM d4d86340c0 mg: 6.7 -> 6.8.1 2020-12-08 00:07:21 +00:00
Benjamin Asbach 4437752e39 netbeans: 12.1 -> 12.2 2020-12-08 00:44:04 +01:00
R. RyanTM 9a0e2b9f39 thonny: 3.3.0 -> 3.3.1 2020-12-07 05:11:09 +00:00
Emery Hemingway c3bd560905 glow: remove ehmry from maintainers
Glow is potential spyware.
2020-12-06 12:39:19 +01:00
markuskowa 46f7fbd5fc
Merge pull request #98968 from charvp/pr/init-greenfoot
greenfoot: init at 3.6.1
2020-12-06 11:48:35 +01:00
meutraa b822982d77
androidStudioPackages.{canary,dev}: 4.2.0.16 -> 2020.3.1.2 2020-12-05 16:08:26 +00:00
meutraa 83374d3bf1
androidStudioPackages.beta: 4.1.0.18 -> 4.2.0.17 2020-12-05 16:08:21 +00:00
Charlotte Van Petegem 6ea99ff06b
greenfoot: init at 3.6.1 2020-12-05 10:09:20 +01:00
R. RyanTM 656f8d9831 sigil: 1.4.2 -> 1.4.3 2020-12-04 23:25:35 +00:00
Farid Zakaria 01f5b9aaba spacevim: init at v1.5.0
Spacevim is a fully loaded vim/neovim installation in the spirit
of https://www.spacemacs.org/

It's configured with a TOML file rather than vimscript and includes
a wide array of configuration found at https://spacevim.org/

Update pkgs/applications/editors/spacevim/default.nix

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

Update pkgs/applications/editors/spacevim/init.nix

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

Update pkgs/applications/editors/spacevim/default.nix

Co-authored-by: risson <18313093+rissson@users.noreply.github.com>
2020-12-03 20:09:36 -08:00
Sandro 7fbbf88ae8
Merge pull request #104929 from SuperSandro2000/auto-update/kdevelop 2020-12-04 03:11:18 +01:00
Matt Jones 571b17de5e
emacs: Link native-lisp directory into Mac app (#103933)
Without the symlink, the application can't be launched.

Fixes <https://github.com/nix-community/emacs-overlay/issues/71>

Co-authored-by: Dmitry Kalinkin <dmitry.kalinkin@gmail.com>
2020-12-03 11:41:46 -05:00
Lancelot SIX 5e7ca51832
nano: 5.3 -> 5.4 2020-12-02 17:30:22 +00:00
Arnout Engelen 3eb7f016b9 jetbrains: updates 2020-12-02 13:36:58 +00:00
Anderson Torres 77f29c6e22
Merge pull request #103969 from eraserhd/openscad.kak
kakounePlugins.openscad-kak: init at unstable-2020-11-16
2020-11-30 22:45:11 -03:00
Sandro 36ff5e89c9
Merge pull request #93933 from buffet/kak-auto-pairs-update
Kak auto pairs update
2020-11-29 04:18:38 +01:00
Benjamin Hipple 9426084fec
Merge pull request #102114 from MetaDark/fetchzip
fetchzip: remove write permissions for unpacked files
2020-11-28 19:18:14 -05:00
Sandro c40ba614a1
Merge pull request #99894 from loskutov/patch-2
datagrip: remove loskutov from maintainers
2020-11-28 00:30:06 +01:00
Maximilian Bosch b124d00d4d
Merge pull request #105135 from raboof/jetbrains-updates
jetbrains: updates
2020-11-27 19:01:40 +01:00
Arnout Engelen 06f2fd5fb9
jetbrains: updates 2020-11-27 12:04:23 +01:00
Sandro 40e1df7cf9
Merge pull request #105069 from r-ryantm/auto-update/sigil
sigil: 1.4.0 -> 1.4.2
2020-11-26 23:07:29 +01:00
MetaDark 4a5c49363a fetchzip: remove write permissions for unpacked files
Fixes https://github.com/NixOS/nixpkgs/issues/38649
2020-11-26 15:30:12 -05:00
R. RyanTM b4b4919543 sigil: 1.4.0 -> 1.4.2 2020-11-26 20:10:12 +00:00
Pavol Rusnak b431a2bf0c
Merge pull request #103682 from evils/elvis
fix some dead meta.homepage entries
2020-11-26 17:35:38 +01:00
Sandro Jäckel a7e81dcde9
kdev-python: 5.5.2 -> 5.6.0 2020-11-25 20:54:45 +01:00
Sandro Jäckel f6aa5a84ef
kdev-php: 5.5.2 -> 5.6.0 2020-11-25 20:52:39 +01:00
Oleksii Filonenko 78974082cc
Merge pull request #104832 from penguwin/glow
glow: 1.2.0 -> 1.2.1
2020-11-25 11:46:09 +02:00
Sandro 9ead4e3b17
Merge pull request #102470 from sgraf812/patch-1
case.kak.nix: Update description
2020-11-25 03:07:56 +01:00
Nicolas Martin 5451c908e2
glow: 1.2.0 -> 1.2.1 2020-11-25 02:08:35 +01:00
Sandro 13da973573
Merge pull request #102411 from freezeboy/unbreak-prolog-mode
emacs26Packages.prolog-mode: unbreak
2020-11-25 02:07:43 +01:00
Vincent Cui a0f0927013 vscode: fix opening files with pcmanfm 2020-11-24 19:00:54 +01:00
Sandro dc0d766f2d
Merge pull request #103515 from r-ryantm/auto-update/rednotebook
rednotebook: 2.19 -> 2.20
2020-11-24 18:13:23 +01:00
Jason Felice 08a6eed624 kakounePlugins.openscad-kak: init at unstable-2020-11-16 2020-11-24 08:49:06 -05:00
Sandro 156a9954d3 leo-editor: drop ramkromberg from maintainer
per https://github.com/NixOS/nixpkgs/pull/103444#issuecomment-727590668
2020-11-23 22:04:00 -08:00
Sandro 6861bc093f
Merge pull request #103924 from r-ryantm/auto-update/sigil
sigil: 1.3.0 -> 1.4.0
2020-11-23 23:22:58 +01:00
Sandro 0f96ab0a5f
Merge pull request #103937 from buffet/fix-kak-prelude-path
kak-prelude: Fix installation path
2020-11-23 22:28:37 +01:00
R. RyanTM 1a3f5049fb edbrowse: 3.7.6 -> 3.7.7 2020-11-23 20:39:13 +01:00
Sandro b3a8771443
Merge pull request #104391 from r-ryantm/auto-update/thonny
thonny: 3.2.7 -> 3.3.0
2020-11-23 11:25:54 +01:00
Vladyslav M 39d59682b8
Merge pull request #104601 from r-ryantm/auto-update/tiled
tiled: 1.4.2 -> 1.4.3
2020-11-22 23:41:06 +02:00
Michael Raskin eee54dba79
Merge pull request #103913 from catern/copysrc
emacs: properly include source code when withCsrc is true
2020-11-22 16:37:40 +00:00
Nicolas Martin 97c0e0768b glow: 1.1.0 -> 1.2.0 2020-11-22 17:23:20 +01:00
R. RyanTM bf3a700c5b tiled: 1.4.2 -> 1.4.3 2020-11-22 13:33:52 +00:00
Markus Hauck cdb23e9abd Add darwin support from @SuperSandro2000 2020-11-22 09:13:00 +01:00
Markus Hauck 07540daf4d rehex: init at 0.3.1 2020-11-21 19:22:24 +01:00
Matt McHenry a7cad45d93
eclipses: 2020-06 -> 2020-09 2020-11-20 23:58:44 +01:00
freezeboy bb18d1dcf1 sigil: migrate to Qt5.15 and fix segfault 2020-11-20 22:24:27 +01:00
R. RyanTM 11672f2d56 thonny: 3.2.7 -> 3.3.0 2020-11-20 17:21:45 +00:00
Mario Rodas a449934477
Merge pull request #102241 from marsam/emacs27-optional-imagemagick
emacs: make ImageMagick dependency optional in Emacs≥27
2020-11-19 21:58:16 -05:00
Florian Franzen d5eb9fbe53 texmacs: 1.99.14 -> 1.99.15 2020-11-19 14:35:19 +01:00
R. RyanTM 8e80af2e89 bluefish: 2.2.11 -> 2.2.12 2020-11-18 11:07:33 -08:00
Tim Steinbach 0984125676
Merge pull request #103988 from NeQuissimus/nano_update
nano: Update script, test
2020-11-17 12:14:51 -05:00
Oleksii Filonenko 512c3c0a05 maintainers: rename filalex77 -> Br1ght0ne 2020-11-17 13:09:31 +02:00
Tim Steinbach 0338f728c0
nano: Add test 2020-11-16 14:00:34 -05:00
Tim Steinbach 701df1a3dc
nano: Add update script 2020-11-16 12:57:20 -05:00
buffet 0916fa453e kak-prelude: Fix installation path 2020-11-15 21:42:11 +00:00
Spencer Baugh 802fa5b9d1 emacs: properly calculate the path of the src directory 2020-11-15 13:32:05 -05:00
R. RyanTM 50ac9db524 sigil: 1.3.0 -> 1.4.0 2020-11-15 17:46:06 +00:00
Spencer Baugh e4fcc9aed1 emacs: properly include source code when withCsrc is true
Previously, we just copied it into a separate directory in the build
directory. That's not useful, and not what was intended.
2020-11-15 10:59:19 -05:00
Mario Rodas d958359453
Merge pull request #103693 from JesusMtnez/vscode
vscode: 1.51.0 -> 1.51.1
2020-11-13 22:25:02 -05:00
Mario Rodas 47e2120a4a
Merge pull request #103692 from JesusMtnez/vscodium
vscodium: 1.51.0 -> 1.51.1
2020-11-13 22:24:13 -05:00
Ryan Mulligan 13a3e50231
Merge pull request #103691 from r-ryantm/auto-update/geany
geany: 1.37 -> 1.37.1
2020-11-13 13:16:03 -08:00
JesusMtnez aa9a29c4ce
vscode: 1.51.0 -> 1.51.1 2020-11-13 14:11:54 +01:00
JesusMtnez bca0c78dc4
vscodium: 1.51.0 -> 1.51.1 2020-11-13 14:10:26 +01:00
R. RyanTM 325d97780d geany: 1.37 -> 1.37.1 2020-11-13 13:08:06 +00:00
Evils 91852f17ef elvis: update meta.homepage 2020-11-13 09:24:48 +01:00
R. RyanTM 416f9732d4 rednotebook: 2.19 -> 2.20 2020-11-11 23:22:35 +00:00
meutraa 7bbff896df
androidStudioPackages.stable: 4.1.0.19 -> 4.1.1.0 2020-11-11 16:21:15 +00:00
Daniël de Kok 3497b757d3
Merge pull request #102472 from helsinki-systems/feat/vim-python3
vim: Get rid of Python 2 dependency
2020-11-11 11:52:02 +01:00
Frederik Rietdijk 379aaa1e0c Merge master into staging-next 2020-11-10 10:11:08 +01:00
Michael Weiss da8c1a8192
Merge pull request #103136 from meutraa/update/android-studio-canary
androidStudioPackages.{canary,dev}: 4.2.0.15 -> 4.2.0.16
2020-11-09 15:29:41 +01:00
Frederik Rietdijk 20f001c01e Merge master into staging-next 2020-11-09 14:33:52 +01:00
Janne Heß 576a928794
vim: Get rid of Python 2 dependency 2020-11-09 13:02:04 +01:00
Samuel Gräfenstein 2c9497b430 qxmledit: add final newline to qxmledit.json 2020-11-09 11:39:28 +00:00
meutraa 412b1c3ee5
androidStudioPackages.{canary,dev}: 4.2.0.15 -> 4.2.0.16 2020-11-08 14:03:32 +00:00
Niklas Hambüchen ca94c1f0cb
Merge pull request #103035 from nh2/texmacs-1.99.14
texmacs: 1.99.13 -> 1.99.14
2020-11-08 01:18:10 +01:00
StigP c54c614000
Merge pull request #103060 from r-ryantm/auto-update/quilter
quilter: 2.5.0 -> 2.5.1
2020-11-07 14:42:26 +00:00
Michael Raskin 1badf89e03
Merge pull request #102488 from ioplker/textadept-11
Textadept 11
2020-11-07 12:09:29 +00:00
R. RyanTM 7c0d90e11e quilter: 2.5.0 -> 2.5.1 2020-11-07 06:19:11 +00:00
Niklas Hambüchen b5008f9e30 texmacs: 1.99.13 -> 1.99.14 2020-11-06 20:54:12 +01:00
upkeep-bot 55fc82d6d2 vscode: 1.50.1 -> 1.51.0 2020-11-06 09:05:28 -08:00
upkeep-bot d8d1dc1071 vscodium: 1.50.1 -> 1.51.0 2020-11-06 09:04:26 -08:00
Tim Steinbach 831ffe26a7
Merge pull request #102978 from NeQuissimus/nanorc_update
nanorc: 2020-01-25 -> 2020-10-10
2020-11-06 08:52:20 -05:00
Frederik Rietdijk 99fb79ae84 Merge master into staging-next 2020-11-06 12:51:56 +01:00
Lily Ballard 93b0accc76
macvim: fix building with nix-daemon (#102975)
When building MacVim with nix-daemon it tries to place the derived data
into a path rooted in `/var/empty`, which fails. Specifying the derived
data path ourselves fixes this problem.
2020-11-05 21:00:31 -05:00
Tim Steinbach adf334a0c6
nanorc: 2020-01-25 -> 2020-10-10
Add update script
2020-11-05 20:38:18 -05:00
Klemens Nanni e0f258f596
neovim: Do $PATH lookup in neovim.desktop instead of hardcoding derivation
See db236e588d "steam: Do $PATH lookup in steam.desktop [...]".
tl;dr: Otherwise widget/panel/desktop icons in DEs like KDE break.

Simply stop adding the full derivation path for neovim and stick with
how upstream uses no path at all.

While here, take care of gnvim.desktop as well by adjusting the sed(1)
expression (and simplifying it in one go);  I do not use gnvim.desktop
but built it and confirmed the resulting files to contain no full paths
any longer.
2020-11-05 11:41:53 +01:00
Frederik Rietdijk 470f05cb5d Merge staging-next into staging 2020-11-03 12:06:41 +01:00
Matthieu Coudron 86d7ed8d10 neovim: take into account vi(m)Alias
restore feature broken by compatibility layer
2020-11-03 09:31:56 +01:00
Matthieu Coudron 42cc40ddc8 neovim: fix nodejs and ruby generation
These were not translated correctly in the new wrapper.
2020-11-02 23:27:49 +01:00
R. RyanTM 14b5651165 kdevelop-unwrapped: 5.5.2 -> 5.6.0 2020-11-02 17:09:17 +00:00
Kevin Cox 8ab0db800e
Merge pull request #101766 from eraserhd/rep-for-kakoune
kakounePlugins.rep: inherit from rep
2020-11-02 09:47:34 -05:00
Kir Ax 2f00a2b066 textadept-11: add textadept 11_beta 2020-11-02 21:19:55 +07:00
Kir Ax ef7fff6a49 textadept: moved to subdir for 10th version 2020-11-02 21:13:09 +07:00
Sebastian Graf 5e9dab5b2d
Update description of case.kak.nix
Probably Copy and pasted from `kak-buffers.nix`.
2020-11-02 12:14:32 +01:00
Pavol Rusnak 2c931312ce treewide: simplify rev/repo arguments in src
+ use fetchFromGithub where possible
2020-11-01 23:02:24 -08:00
freezeboy 6e386e1c46 emacs26Packages.prolog-mode: unbreak
Unfortunately this package doesn't contain the version number in the URL
so it might break easily again, but it is just a matter of updating the
sha256
2020-11-02 02:09:27 +01:00
Kevin Cox ce3a2e6e49
Merge pull request #91792 from jcpetruzza/kakoune-plugins
kakoune: rework plugin support
2020-11-01 15:07:28 -05:00
Matthieu Coudron 295948f40f neovim: dont wrap when is null
restore previous behavior
2020-11-01 18:55:57 +01:00
Daniel Gorin 464804b43f kakoune: Fix :doc when using plugins
So, kakoune takes the documentation shown for `:doc` from
`$KAKOUNE_RUNTIME/share/kak/doc`. Unfortunately, it seems
that it will ignore files that are symlinks. This is arguably
a bug in kakoune, we workaround it for now by copying the
content of the docfiles.
2020-11-01 14:35:49 +00:00
Daniel Gorin 550389392a kakoune: rework plugin support
The previous implementation of plugin-support for the kakoune derivation
was based on generating, at build time, a `plugins.kak` file that would
source all .kak files in the list of plugins, and wrap the `kak` binary
in a script that would add some command-line arguments so that this
file gets loaded on start-up. The main problem with this approach
is that the plugins' code get executed *after* the user's configuration
file is loaded, so effectively one cannot automatically activate/configure
these plugins.

The idiomatic way of loading plugins is ensuring they end up installed
somwhere under `share/kak/autoload`. Because plugins are already being
packaged to have their code in `share/kak/autoload/plugins/<name-of-plugin>`,
we can obtain a derivation that includes the plugins simply by doing a
`symlinkJoin` of `kakoune-unwrapped` and all the requested plugins.

For this to work, we need to fix two issues:

  1. By default, kakoune makes `share/kak/autoload` a symbolic link to
     `share/kak/rc`, which contains all builtin definitions. We need
     to patch this to put the symlink under `share/kak/autoload/rc`, so that
     the join works.

  2. By default kakoune expects the `autoload` directory to be in
     `../share/kak/autoload` relative to the location of the `kak` binary.
     We need to set the `KAKOUNE_RUNTIME` to point the symlinked
     share/kak for this to work.
2020-11-01 14:35:49 +00:00
Frederik Rietdijk 409ca6f1f9 Merge staging-next into staging 2020-11-01 11:06:35 +01:00
Frederik Rietdijk 54f7498601
Merge pull request #101369 from doronbehar/pkg/kdeApplications/qt515
kdeApplications: Use latest qt515 by default
2020-11-01 11:05:05 +01:00
Frederik Rietdijk 83dde6c52c Merge staging-next into staging 2020-11-01 10:11:12 +01:00
Matthieu Coudron 95702fe6d2 neovim: revert change to extraMakeWrapperArgs
wrapNeovim incited users to use a list instead of a string. Revert that:
the change is not super useful while breaking home-manager.
2020-10-31 14:32:02 +01:00
Mario Rodas ed047f80bf emacs: make ImageMagick dependency optional in Emacs≥27
Emacs 27 doesn't use ImageMagick by default to display images [1]:

    ** Emacs no longer defaults to using ImageMagick to display images.
    This is due to security and stability concerns with ImageMagick.  To
    override the default, use 'configure --with-imagemagick'.

[1] https://github.com/emacs-mirror/emacs/blob/emacs-27.1/etc/NEWS#L96-L98
2020-10-31 04:20:00 +00:00
WORLDofPEACE 99600df584
Merge pull request #101112 from deviant/remove-uemacs
uemacs: remove
2020-10-30 16:01:47 -04:00
Doron Behar 09fd4270d7 kile: some slight improvements/fixes
Use `buildInputs` instead of `propagatedBuildInputs` - should reduce
closure size a bit. Don't wrap executables twice. Move `kdoctools` to
native. Use libsForQt5 - default version (works).

Co-authored-by: Frederik Rietdijk <fridh@fridh.nl>
2020-10-30 20:39:19 +02:00
Benjamin Hipple a2aa0cbf89
Merge pull request #100266 from jnetod/textadept-update
textadept: 10.2 -> 10.8
2020-10-29 22:24:13 -04:00
Timo Kaufmann aee8263788
Merge pull request #100653 from trepetti/marker
marker: init at 2020.04.04
2020-10-29 18:47:37 +01:00
Michael Weiss 4c92053749
Merge pull request #101957 from meutraa/update/android-studio-canary
androidStudioPackages.{canary,dev}: 4.2.0.14 -> 4.2.0.15
2020-10-29 12:56:51 +01:00
Matthieu Coudron 2eb1610725
neovimUtils: neovim utilities to handle more usecases
Current nixpkgs always wraps neovim with the "-u" which has sideeffects as explained in https://github.com/NixOS/nixpkgs/issues/55376 : 
1.  vim won't set the variable $MYVIMRC as explained #34215
 2. vim skips loading folder-specific .vimrc / .nvimrc

I wanted to provide a way for users to better control what flags are used to wrap neovim. This is achived by introducing wrapNeovimUnstable et neovimUtils, utilities to help with that. We provide a compatibility layer so that wrapNeovim still works and to let us experiment with wrapNeovimUnstable to better control neovim configuration, plugin dependencies, haskell environment etc so that it becomes easier to generate per-project neovim config.

With this commit, it's possible for instance for home-manager to wrap neovim without the `-u` and just write the config in the
expected $XDG_CONFIG_HOME/nvim/init.vim .
Expect wrapNeovimUnstable interface to evolve in the upcoming months.
2020-10-29 09:50:26 +01:00
Tom Repetti 7559a99131 marker: init at 2020.04.04 2020-10-28 23:01:47 -04:00
meutraa 01b58c0240
androidStudioPackages.{canary,dev}: 4.2.0.14 -> 4.2.0.15 2020-10-28 17:57:00 +00:00
Vladimír Čunát 0b32140b34
Merge branch 'staging-next' into staging 2020-10-28 18:48:56 +01:00
Mario Rodas 5b4331e2c9
Merge pull request #99949 from marsam/update-micro
micro: 2.0.7 -> 2.0.8
2020-10-28 05:22:00 -05:00
Andreas Rammhold db0fe5c3eb
Merge branch master into staging to fix eval error
This fixes the eval error of the small (and "big"?) NixOS test set that
was fixed in 1088f05 & eba8f542.
2020-10-28 03:03:27 +01:00
Nicolas Martin e129f41522 glow: 1.0.2 -> 1.1.0 2020-10-27 21:58:00 +01:00
Ben Siraphob db74029e3e treewide: remove package names from prefix of descriptions 2020-10-27 09:15:07 -07:00
Jason Felice 03faeaa8b3 kakounePlugins.rep: inherit from rep 2020-10-26 10:00:28 -04:00
Jason O'Conal aeb6d3edab idea: 2020.2.2 -> 2020.2.3 2020-10-26 14:25:34 +10:30
Frank Lanitz b1b7551cb0 geany: 1.36.0 -> 1.37.0 2020-10-25 19:56:55 +01:00
Vladimír Čunát 2f6b00b15e
Merge branch 'staging-next' into staging 2020-10-25 09:47:04 +01:00
meutraa eb7e78ee99
androidStudioPackages.{canary,dev}: 4.2.0.13 -> 4.2.0.14 2020-10-24 15:02:26 +01:00
Jan Tojnar bfd818e711
gnome-builder: 3.38.0 → 3.38.1 2020-10-24 06:00:37 +02:00
Jan Tojnar 2c7d0b5362
gnome-latex: 3.36.0 → 3.38.0
https://ftp.gnome.org/pub/GNOME/sources/gnome-latex/3.37/gnome-latex-3.37.1.news
https://ftp.gnome.org/pub/GNOME/sources/gnome-latex/3.37/gnome-latex-3.37.2.news
https://ftp.gnome.org/pub/GNOME/sources/gnome-latex/3.38/gnome-latex-3.38.0.news
2020-10-24 01:17:52 +02:00
WORLDofPEACE f0712e782c
gnome-builder: 3.36.1 -> 3.38.0
https://gitlab.gnome.org/GNOME/gnome-builder/-/blob/3.38.0/NEWS
2020-10-24 01:15:50 +02:00
Kevin Cox 7eddff6821
Merge pull request #99931 from sikmir/cudatext
cudatext: 1.111.0 -> 1.115.0
2020-10-23 15:23:25 -04:00
Doron Behar 0f3d40ef68
Merge pull request #84816 from FlorianFranzen/texmacs
texmacs: 1.99.11 -> 1.99.13
2020-10-20 20:17:26 +03:00