Doron Behar
1d0cd06d37
Merge pull request #82249 from caadar/gtklp
...
gtklp: init at 1.3.4
2021-03-06 11:19:53 +02:00
Sandro Jäckel
7e36d21546
expect: fetchpatch commit instead of master
...
Closes #114983
2021-03-06 05:33:44 +01:00
Sandro
9675484462
Merge pull request #115197 from SuperSandro2000/fix-collection21
2021-03-06 04:56:45 +01:00
Profpatsch
c7c81dced8
lorri: 1.2.0 -> 1.3.0
...
We forked lorri to nix-community, so this release also moves us over
to the new official repository.
Release notes:
Fix the build loop.
Previously, any change (for example a direnv ping or a change in the
nix files) would add a new build invocation to the queue, and the
builds would all be done one after the other.
However, a new build will always use the newest state of the files
anyway, so the CPU time spent on all the other builds will be
wasted (and hog your processor).
Now lorri will only
finish the current build (if running)
schedule at maximum one additional build if requested
This should improve the resource use drastically in some situations.
---
Make lorri daemon exit with exit code 0 instead of 130/143 on
SIGINT or SIGTERM.
---
Add lorri self-upgrade branch sub-subcommand.
This enables us to point users to a branch name, in order to test out
fixes from repository branches.
2021-03-05 23:49:36 +01:00
Sandro Jäckel
f8204cc751
gti: fix cross compile
2021-03-05 18:14:38 +01:00
Sandro Jäckel
cda4171d11
expect: fix cross-compilation
...
Closes #114983
2021-03-05 18:14:36 +01:00
Sandro
054e9b37fd
Merge pull request #114618 from fortuneteller2k/add-sacad
2021-03-05 17:42:57 +01:00
Michael Weiss
dac4672072
html-proofer: Add bundlerUpdateScript and remove myself as maintainer
2021-03-05 14:59:24 +01:00
Michael Weiss
e2285e1fd1
html-proofer: 3.18.6 -> 3.18.8
2021-03-05 14:59:19 +01:00
Lassulus
90b45eda99
Merge pull request #112564 from r-ryantm/auto-update/yad
...
yad: 7.2 -> 7.3
2021-03-05 13:13:22 +01:00
Fabian Affolter
949ab1fb96
Merge pull request #115086 from r-ryantm/auto-update/disfetch
...
disfetch: 1.18 -> 1.20
2021-03-05 08:47:51 +01:00
Bernardo Meurer
11783453fa
Merge pull request #115056 from danieldk/exa-no-perl
...
exa: remove perl dependency
2021-03-04 19:43:51 +00:00
Lassulus
025b801914
Merge pull request #111602 from 0x4A6F/master-blflash
...
blflash: init at 0.3.2
2021-03-04 20:02:59 +01:00
R. RyanTM
2d518dd72a
disfetch: 1.18 -> 1.20
2021-03-04 14:33:32 +00:00
Daniël de Kok
4f841cba84
exa: remove perl dependency
...
The perl dependency does not seem to be necessary (anymore?).
2021-03-04 10:29:09 +01:00
Peter Hoeg
e336d3d636
typo
2021-03-04 15:14:12 +08:00
Peter Hoeg
568b976279
broadlink-cli: 0.15 -> 0.16
2021-03-04 15:14:12 +08:00
Sandro Jäckel
35218c2c23
topgrade: 6.6.0 -> 6.7.0
2021-03-04 03:18:36 +01:00
Sandro
d496205cf2
Merge pull request #114597 from thiagokokada/patch-mons
2021-03-04 00:56:09 +01:00
Sandro
fd440fcaa2
Merge pull request #114550 from fortuneteller2k/update-exa
...
exa: 0.9.0 -> unstable-2021-01-14
2021-03-04 00:43:22 +01:00
Cole Helbling
9d74b73a07
lifecycled: init at 3.1.0
2021-03-03 11:15:35 -08:00
Sandro
58a5417197
Merge pull request #114989 from SuperSandro2000/fix-collection20
2021-03-03 19:21:19 +01:00
Felix Singer
a2b0ea6865
coreboot-utils: Add Felix Singer as a maintainer ( #115001 )
...
Signed-off-by: Felix Singer <felixsinger@posteo.net>
2021-03-03 18:25:12 +01:00
Sandro
ce258a0664
Merge pull request #114976 from siraben/darwin-mass-fix-buildInputs=0
2021-03-03 17:58:53 +01:00
Sandro Jäckel
e19f061476
calamares: remove enableParallelBuilding, remove unused input
2021-03-03 16:23:58 +01:00
Sandro Jäckel
25aa76bb6b
cloud-utils: remove unused inputs
2021-03-03 16:23:53 +01:00
Ben Siraphob
5a8065a15e
0x0: add meta.platforms
2021-03-03 19:19:07 +07:00
Domen Kožar
52041b5d02
remove myself from a bunch of software I no longer use/maintain
2021-03-03 10:50:26 +00:00
Jörg Thalheim
8445826ef5
Merge pull request #114622 from aaschmid/fix/nix-direnv
...
nix-direnv: fix NIX_BIN_PREFIX substitution in built direnvrc
2021-03-03 09:46:11 +00:00
zowoq
694721374b
youtube-dl: 2021.03.02 -> 2021.03.03
...
https://github.com/ytdl-org/youtube-dl/releases/tag/2021.03.03
2021-03-03 17:55:48 +10:00
Andreas Schmid
d81d591d13
nix-direnv: fix NIX_BIN_PREFIX substitution in built direnvrc
...
* Reason: statically set `${NIX_BIN_PREFIX}` within generated
`direnvrc`.
* Before it only replaced the `-z ${NIX_BIN_PREFIX:-}` check
which therefore never was `true`. So, also `NIX_BIN_PREFIX` never got
set such that its usage later always failed execution with
`NIX_BIN_PREFIX: unbound variable`. With the fix, the line containing
the check will no longer be replaced.
* Solves https://github.com/nix-community/nix-direnv/issues/70
* See also discussion on #114622
Signed-off-by: Andreas Schmid <service@aaschmid.de>
2021-03-03 08:49:32 +01:00
Mario Rodas
6521bf53d0
Merge pull request #114898 from r-ryantm/auto-update/fselect
...
fselect: 0.7.2 -> 0.7.3
2021-03-02 21:26:32 -05:00
R. RyanTM
7be023a3a6
fselect: 0.7.2 -> 0.7.3
2021-03-02 22:17:07 +00:00
AndersonTorres
e763719a20
grc: 1.12 -> 1.13
2021-03-02 17:20:01 -03:00
zowoq
4dc3b8ba52
youtube-dl: 2021.02.22 -> 2021.03.02
...
https://github.com/ytdl-org/youtube-dl/releases/tag/2021.03.02
2021-03-02 17:47:22 +10:00
R. RyanTM
3bf04ba9bf
pspg: 4.2.1 -> 4.3.0
2021-03-01 22:55:44 -05:00
Mario Rodas
77e75f1ed1
bat: 0.17.1 -> 0.18.0
...
https://github.com/sharkdp/bat/releases/tag/v0.18.0
2021-03-01 16:36:19 +10:00
R. RyanTM
87b3a29d0a
entr: 4.7 -> 4.8
2021-03-01 00:49:58 +00:00
Thiago Kenji Okada
d79c466e99
mons: declare xrandr explicitly instead of using it from PATH
...
mons tries to detect if xrandr is installed in the PATH, failing
otherwise. However, this is not the way that packages are generally
packaged in nixpkgs.
This commit changes it to hardcode the path of xrandr explicitly instead
of depending of xrandr being declared in PATH.
2021-02-28 20:57:52 -03:00
R. RyanTM
ed95819c9d
flameshot: 0.8.5 -> 0.9.0
2021-02-28 20:34:27 +01:00
Fabian Affolter
cf0a9c1fea
Merge pull request #114651 from r-ryantm/auto-update/gammy
...
gammy: 0.9.63 -> 0.9.64
2021-02-28 19:51:52 +01:00
Fabian Affolter
be2b2d4b64
Merge pull request #114636 from r-ryantm/auto-update/disfetch
...
disfetch: 1.14 -> 1.18
2021-02-28 19:50:57 +01:00
fortuneteller2k
38ea3741bc
sacad: init at 2.3.4
2021-03-01 00:53:52 +08:00
Michael Weiss
00529f5bba
lf: 20 -> 21
2021-02-28 14:01:59 +01:00
R. RyanTM
1ff4731640
gammy: 0.9.63 -> 0.9.64
2021-02-28 12:29:14 +00:00
R. RyanTM
6ff9aeebc1
disfetch: 1.14 -> 1.18
2021-02-28 10:56:04 +00:00
fortuneteller2k
ed8a3061c5
exa: 0.9.0 -> unstable-2021-01-14
2021-02-28 12:35:06 +08:00
zowoq
77a087facc
miniserve: 0.10.4 -> 0.11.0
...
https://github.com/svenstaro/miniserve/releases/tag/v0.11.0
2021-02-28 14:31:10 +10:00
Thiago Kenji Okada
3081bd0ca9
mons: add thiagokokada as maintainer
2021-02-27 17:53:44 -03:00
caadar
1a4033b73c
gtklp: init at 1.3.4
2021-02-27 19:06:47 +03:00