Commit Graph

5490 Commits

Author SHA1 Message Date
Robert Helgesson
7742f1c67b
kak-prelude: add missing lib argument 2021-01-20 19:02:30 +01:00
Sandro
df1e6ef90e
Merge pull request #110063 from romildo/upd.codeblocks
codeblocks: 17.12 -> 20.03
2021-01-20 13:11:04 +01:00
José Romildo Malaquias
70e780d1b7 codeblocks: 17.12 -> 20.03 2021-01-19 23:40:52 -03:00
zowoq
31f5dd3f36 treewide: editorconfig fixes
- remove trailing whitespace
- use spaces for indentation
2021-01-20 09:11:11 +10:00
Sandro
9ea5bd6df3
Merge pull request #109979 from eraserhd/quickscope-kak-fix
kakounePlugins.quickscope-kak: Fix stdenv.lib -> lib breakage
2021-01-19 18:14:52 +01:00
Jason Felice
a1bb960c13 kakounePlugins.quickscope-kak: Fix stdenv.lib -> lib breakage 2021-01-19 10:57:34 -05:00
AndersonTorres
d7257afaf2 tecoc: 20150606 -> unstable-2020-11-03 2021-01-19 12:29:04 -03:00
Stefan Frijters
6de3a58833
emacs-modes: Add missing 'lib' arguments 2021-01-19 15:14:17 +01:00
Sandro
34095f8d96
Merge pull request #109630 from SeTSeR/master
melpaPackages.telega: Fix build
2021-01-19 14:15:31 +01:00
Jonathan Ringer
9bb3fccb5b treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
continuation of #109595

pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.

python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
2021-01-19 01:16:25 -08:00
Jonathan Ringer
a2cca0669e quartus-prime-lite: remove hydraPlatforms 2021-01-19 01:16:25 -08:00
Sandro
a6ff47644b
Merge pull request #96461 from loewenheim/kak-powerline
kak-powerline: 2019-07-23 -> 2020-08-22
2021-01-18 20:22:45 +01:00
Sandro
79fa5c1c45
Merge pull request #107033 from malte-v/kak-prelude-update
kakounePlugins.kak-prelude: 2020-03-15 -> 2020-09-06
2021-01-18 20:20:22 +01:00
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