AndersonTorres
bc48e9499f
dwl: init at 0.1
2021-02-09 22:47:13 -03:00
06kellyjac
0e1bf2f254
dwm: cleanup
...
- nixpkgs-fmt
- use pname and version
- use multiline for prePatch to make tree-wide modifications easier
- remove global `with lib;`
- update homepage to dwm page
- copy description from git repo
- add longDescription
- remove unused config.dwm.patches
2021-02-09 14:51:56 +00:00
06kellyjac
f5d906922b
dwm-git: drop
2021-02-09 14:25:21 +00:00
Mario Rodas
3f93f23dfc
Merge pull request #111944 from r-ryantm/auto-update/leftwm
...
leftwm: 0.2.5 -> 0.2.6
2021-02-08 20:55:43 -05:00
Alyssa Ross
c841a939c8
wcm: 0.6.0 -> 0.7.0
2021-02-07 23:03:25 +00:00
Alyssa Ross
938bbbdb1b
wayfirePlugins.wf-shell: 0.6.1 -> 0.7.0
2021-02-07 23:00:55 +00:00
Alyssa Ross
403e5ef797
wayfire: 0.6.0 -> 0.7.0
2021-02-07 19:16:13 +00:00
Alyssa Ross
2cea4f865c
wf-config: 0.6.0 -> 0.7.0
2021-02-07 18:54:12 +00:00
Ivan Kovnatsky
8d1f23cdd3
dwm-git: 20180602 -> 20200303
2021-02-07 08:31:36 -08:00
AndersonTorres
2d458701e7
labwc: unstable-2021-01-12 -> unstable-2021-02-06
...
Fixes a SIGSEGV bug when called from an already running session.
2021-02-06 15:05:37 -03:00
AndersonTorres
d3060cb33f
labwc: init at 2021-01-12
2021-02-05 18:56:20 -03:00
R. RyanTM
1d474062fb
leftwm: 0.2.5 -> 0.2.6
2021-02-04 17:20:40 +00:00
R. RyanTM
724853a591
icewm: 2.0.0 -> 2.1.1
2021-02-04 12:44:46 +00:00
R. RyanTM
3b6e0a552e
i3-gaps: 4.19 -> 4.19.1
2021-02-03 14:51:11 +00:00
AndersonTorres
f5e4a32d4b
waybox: init at unstable-2020-05-01
2021-02-01 21:36:46 -03:00
Pavol Rusnak
a6ce00c50c
treewide: remove stdenv where not needed
2021-01-25 18:31:47 +01:00
Sandro
ff83114922
Merge pull request #85490 from jluttine/picom-debug
2021-01-25 17:14:43 +01:00
Jaakko Luttinen
e788a4a22c
picom: add withDebug option
2021-01-24 18:18:57 +02:00
Jaakko Luttinen
33532c4756
picom: apply nixpkgs-fmt
2021-01-24 18:14:35 +02:00
Nicolas Berbiche
a6fe222911
cagebreak: 1.4.4 -> 1.5.0
2021-01-22 00:31:02 -05:00
zowoq
31f5dd3f36
treewide: editorconfig fixes
...
- remove trailing whitespace
- use spaces for indentation
2021-01-20 09:11:11 +10:00
Sandro
bc73d42ad6
Merge pull request #109864 from r-ryantm/auto-update/i3lock-color
...
i3lock-color: 2.12.c.5 -> 2.13.c.1
2021-01-19 14:41:44 +01:00
Michael Weiss
fdc1e37440
Merge pull request #109647 from deviant/remove-swaybg-from-path
...
sway: remove swaybg from path
2021-01-19 12:01:59 +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
R. RyanTM
f0af99a20f
i3lock-color: 2.12.c.5 -> 2.13.c.1
2021-01-19 00:31:49 +00:00
V
29b14dfd9b
sway: remove swaybg from path
...
Avoids polluting the environment for sway's children.
2021-01-18 17:56:31 +01:00
Thibaut Marty
a6cdb113bd
herbstluftwm: add NixOS test
2021-01-18 16:12:52 +00:00
Thibaut Marty
b1eb0af283
herbstluftwm: 0.8.3 → 0.9.1
...
Also enables the packages' tests.
The tests need a few patches to fix runtime generated script's shebangs.
There is also a fix to pass PATH environment variable to subprocess'
calls so that they can find some binaries (like xterm).
2021-01-18 16:12:29 +00:00
Thibaut Marty
5ce3719c43
herbstluftwm: add maintainership
2021-01-17 16:03:52 +00:00
Ben Siraphob
badf51221d
treewide: stdenv.lib -> lib
2021-01-16 17:58:11 +07:00
marzzzello
af56bbf6ac
i3, i3-gaps: 4.18.3 -> 4.19
...
Upstream switched from the autotools build system to the meson build system.
Also the source archive format switched from tar.bz2 to tar.xz
The build now supports application documentation in /share/doc/i3/
https://i3wm.org/downloads/RELEASE-NOTES-4.19.txt
2021-01-12 16:55:21 +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
Sandro Jäckel
55a9cbedca
i3altlayout: Disable tests
2021-01-10 13:18:41 +01:00
Thiago Kenji Okada
5902802e14
picom: add thiagokokada as maintainer
2021-01-06 19:20:05 -03:00
Thiago Kenji Okada
67e2cb0a02
picom: misc fixes
...
- Build option `build_docs` was renamed to `with_docs` quite sometime ago:
3f2a6718df
.
This means that the manpage were not being build.
- Remove CFLAG `-fno-strict-aliasing` seems to not be used anywhere in the
upstream repository. This was probably added for `compton` a long time
ago and never removed, since I can't find the commit that added this.
- Use release build. This is recommended upstream:
https://github.com/yshui/picom#to-build .
2021-01-06 19:18:41 -03:00
Michael Hoang
31f9051cf6
treewide: stop maintaining most packages
2021-01-06 17:06:03 +11:00
AndersonTorres
19cef431e6
icewm: 1.9.2 -> 2.0.0
2021-01-05 08:55:26 -03:00
AndersonTorres
ea2d4e5445
pekwm: 0.1.17 -> 0.1.18
2021-01-05 08:55:26 -03:00
Maximilian Bosch
097cd34db0
Merge pull request #108126 from Ma27/cleanup-maintained-pkgs
...
treewide: remove maintainership of `ma27` from a few packages
2021-01-02 18:58:26 +01:00
AndersonTorres
f90045d24c
wio: init at unstable-2020-11-02
2021-01-01 16:39:31 -03:00
Maximilian Bosch
e7d1be840c
treewide: remove maintainership of ma27
from a few packages
...
Those are packages I don't use anymore for a longer time and I therefore
don't think that listing me as maintainer is a good idea. If those
should be removed now, I'd be fine with that.
SuperSandro2000 will take care of a few packages[1].
[1] https://github.com/NixOS/nixpkgs/pull/108126#pullrequestreview-560599381
2021-01-01 19:48:01 +01:00
pacien
ad75bac50a
i3-balance-workspace: init at 1.8.3
2020-12-29 14:17:10 +01:00
Anderson Torres
e3bc01a6f4
Merge pull request #107325 from raboof/notion-4.0.1-to-4.0.2
...
notion: 4.0.1 -> 4.0.2
2020-12-21 17:58:41 -03:00
Arnout Engelen
e8488ab545
notion: 4.0.1 -> 4.0.2
...
What's New
The highlight of this release is fixing the long-standing issue
where Firefox popups would sometimes show up in the wrong place
on multi-monitor setups (https://github.com/raboof/notion/issue/59 ),
thanks to great detective work by @florolf . Thanks!
* Initial implementation of _NET_FRAME_EXTENTS (https://github.com/raboof/notion/pull/303 ) @florolf/@raboof
* Fix potential livelock in do_timer_set (https://github.com/raboof/notion/pull/302 ) @dnr
Docs
* Add more docs to cfg_notion.lua (https://github.com/raboof/notion/pull/283 ) @raboof
Under the hood
* Trigger release drafter from github actions (https://github.com/raboof/notion/pull/304 ) @raboof
* Remove some colorful language (https://github.com/raboof/notion/pull/296 ) @raboof
https://github.com/raboof/notion/releases/tag/4.0.2
2020-12-21 15:36:39 +01:00
Christian Luetke Stetzkamp
c8c598e20c
i3lock-color: reenable all platforms
...
It was restricted in 40b347f205
due to its
need for the SSE2 instruction set. However the upstream issue is now
resolved [1], so reenable support for all platforms.
[1] https://github.com/chrjguill/i3lock-color/issues/44
2020-12-19 23:03:14 +01:00
Alyssa Ross
c898defdbf
wayfire: add plugin support
...
The top-level "wayfire" attribute is a Wayfire with wf-shell installed
and nothing else. But wayfireApplications.withPlugins can be used to
create a Wayfire with arbitrary plugins, or no plugins at all.
2020-12-19 01:41:29 +00:00
Alyssa Ross
e2243140f9
wcm: init at 0.6.0
2020-12-19 01:41:29 +00:00
Alyssa Ross
37a5f70361
wf-shell: init at 0.6.1
2020-12-19 01:41:29 +00:00
Alyssa Ross
1a0155b5b9
wayfire: init at 0.6.0
2020-12-19 01:41:29 +00:00
Alyssa Ross
3720a1ad18
wf-config: init at 0.6.0
2020-12-19 01:41:29 +00:00
Doron Behar
8fec2111f2
Merge pull request #96116 from benmezger/patch-3
...
i3-gaps: Set platform to BSD and Linux like
2020-12-18 10:58:55 +02:00
Doron Behar
82b12cd7c7
Merge pull request #104324 from magnetophon/i3-resurrect
...
i3-resurrect: init at 1.4.3
2020-12-17 11:17:00 +02:00
Bart Brouns
9ce1ec8d2d
i3-resurrect: init at 1.4.3
...
corrected from https://github.com/NixOS/nixpkgs/pull/97480 by @vldn-dev
2020-12-16 22:37:52 +01:00
SCOTT-HAMILTON
c654952235
berry: fix missing libXext
2020-12-08 19:10:27 +01:00
Bart Brouns
121cff0565
i3-layout-manager: unstable-2019-12-06 -> unstable-2020-05-04
2020-12-06 00:45:38 +01:00
R. RyanTM
2194eaba68
i3status-rust: 0.14.2 -> 0.14.3
2020-12-04 14:20:22 +00:00
R. RyanTM
52f74c9d03
lemonbar: 1.3 -> 1.4
2020-11-28 07:55:44 +00:00
Nicolas Berbiche
80b1ecca9d
cagebreak: 1.4.3 -> 1.4.4
2020-11-24 23:49:45 -05:00
R. RyanTM
a5da205cca
windowchef: 0.5.1 -> 0.5.2
2020-11-23 20:39:47 +01:00
Guillaume Girol
47680042d9
Merge pull request #104321 from magnetophon/i3altlayout
...
i3altlayout: init at 0.3
2020-11-20 21:31:42 +00:00
Bart Brouns
36118d4a9d
i3altlayout: init at 0.3
2020-11-20 21:38:22 +01:00
Anderson Torres
ead04a6639
Merge pull request #104316 from AndersonTorres/at1985-update
2020-11-20 12:12:43 -03:00
R. RyanTM
f5a21c70fd
leftwm: 0.2.4 -> 0.2.5
2020-11-19 21:39:45 -08:00
AndersonTorres
da0c48706a
sawfish: cleanup
2020-11-19 19:05:23 -03:00
AndersonTorres
bd36a2da98
berry: 0.1.5 -> 0.1.7
2020-11-19 19:05:23 -03:00
R. RyanTM
04d5b2f80c
icewm: 1.9.0 -> 1.9.2
2020-11-13 16:53:31 +00:00
Michael Weiss
4c0972e8d7
sway: 1.5 -> 1.5.1
...
This is basically a no-op, apart from the version bump.
2020-11-10 21:08:58 +01:00
Frederik Rietdijk
379aaa1e0c
Merge master into staging-next
2020-11-10 10:11:08 +01:00
Anderson Torres
5e9d9f07d1
Merge pull request #103050 from AndersonTorres/create-dockapps
...
Reorganize windowmaker dockapps
2020-11-09 17:48:42 -03:00
AndersonTorres
46bc1e2f86
wmsystemtray: stay at 1.4
2020-11-09 17:35:31 -03:00
AndersonTorres
dc4a01d8f5
wmsm-app: stay at 0.2.1
2020-11-09 17:35:31 -03:00
AndersonTorres
9f20bdc582
wmCalClock: stay at 1.25
2020-11-09 17:35:31 -03:00
AndersonTorres
7a7b4b49d5
AlsaMixer-app: stay at 0.2.1
2020-11-09 17:35:31 -03:00
AndersonTorres
04e33d64aa
libdockapp: init at 0.7.3
2020-11-09 17:35:31 -03:00
AndersonTorres
8741edb2ec
Dockapps: fetch sources
...
Most of dockapps live in a monorepo maintained by dockapps.net. Unfortunately
there is not an obvious way to fix a particular release, tag or whatever from
this monorepo.
2020-11-09 17:35:31 -03:00
AndersonTorres
ce009bb0e2
Dockapps: new structure
2020-11-09 17:35:31 -03:00
AndersonTorres
2cc1860faf
Dockapps: cleanup
2020-11-09 17:32:21 -03:00
Frederik Rietdijk
20f001c01e
Merge master into staging-next
2020-11-09 14:33:52 +01:00
Bruno Bigras
327e84900f
swaylock-effects: v1.6-1 -> v1.6-2
2020-11-09 11:48:49 +00:00
Samuel Gräfenstein
22b73d1282
pkgs/*: add final newline to .nix files
2020-11-09 11:39:28 +00:00
Michael Weiss
db6b85391f
sway: Fix the build with wlroots 0.12.0
...
Sway 1.5 isn't affected by the breaking changes of wlroots 0.12.0 so we
can simply relax the version requirement.
2020-11-08 16:52:40 +01:00
Thiago Kenji Okada
4fcf71f9a2
picom: 8.1 -> 8.2
2020-11-07 22:34:43 +01:00
Frederik Rietdijk
10c57af49c
Merge staging-next into staging
2020-11-04 09:28:07 +01:00
Andreas Rammhold
db530f4490
i3status-rust: add missing ethtool and notmuch buildInputs
...
i3status-rust requires `ethtool` for the net block to work since 0.14.2.
The notmuch feature is also available and all we've to do for that is to
pass the `notmuch` input and enable the feature.
2020-11-03 22:47:36 -08:00
Michal Sojka
e90cfc722d
i3: 4.18.2 -> 4.18.3
2020-11-03 18:25:40 +01:00
Anderson Torres
4e116914cc
Merge pull request #102445 from r-ryantm/auto-update/icewm
...
icewm: 1.8.3 -> 1.9.0
2020-11-03 09:16:09 -03:00
Frederik Rietdijk
470f05cb5d
Merge staging-next into staging
2020-11-03 12:06:41 +01:00
Mario Rodas
456192eb54
Merge pull request #102441 from r-ryantm/auto-update/hikari
...
hikari: 2.1.2 -> 2.2.2
2020-11-02 17:58:05 -05:00
R. RyanTM
9190daba45
i3-gaps: 4.18.2 -> 4.18.3
2020-11-02 07:54:51 -08:00
R. RyanTM
657c6d3875
i3lock: 2.12 -> 2.13
2020-11-02 09:12:23 +00:00
R. RyanTM
eab501c27a
icewm: 1.8.3 -> 1.9.0
2020-11-02 07:46:46 +00:00
R. RyanTM
138f9de4d5
hikari: 2.1.2 -> 2.2.2
2020-11-02 07:13:19 +00:00
Frederik Rietdijk
83dde6c52c
Merge staging-next into staging
2020-11-01 10:11:12 +01:00
Jonathan Wilkins
d7ea518958
i3status-rust: 0.14.1 -> 0.14.2
2020-10-31 10:34:23 +00: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
Ben Siraphob
db74029e3e
treewide: remove package names from prefix of descriptions
2020-10-27 09:15:07 -07:00
Bart Brouns
6d10913002
wmfocus: 1.1.3 -> 1.1.5
2020-10-26 16:35:11 +01:00
Jan Tojnar
6d94553dde
xmonad_log_applet: Mark as broken
...
libpanel-applet was removed in favour of libgnome-applet
2020-10-24 01:18:46 +02:00
Lassulus
46fac2ff10
Merge pull request #99538 from vividn/patch-1
...
qtile: add missing python package dependencies
2020-10-21 16:06:59 +02:00
Ben Siraphob
683a87dbeb
treewide: remove periods from end of package descriptions
2020-10-17 08:22:31 -07:00