Commit Graph

49 Commits

Author SHA1 Message Date
Jan Tojnar
eb04659fc2 treewide: wrapGAppsHook → wrapGAppsHook3
This was achieved using the following command:

    sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b')

And then manually reverted the following changes:

- alias in top-level.nix
- function name in wrap-gapps-hook.sh
- comment in postFixup of at-spi2-core
- comment in gtk4
- comment in preFixup of 1password-gui/linux.nix
- comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix
- comment in postFixup of telegram-desktop
- comment in postFixup of fwupd
- buildCommand of mongodb-compass
- postFixup of xflux-gui
- comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config
- description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
2024-04-27 02:23:22 +02:00
stuebinm
ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00
Robert Schütz
9e6b054555 lxpanel: don't use alias libwnck3 2022-11-26 15:57:52 -08:00
Robert Schütz
e61cc2ab02 lxpanel: use gtk3 by default 2022-11-25 19:52:48 -08:00
Artturin
0734f54ef2 treewide: move pkg-config, autoreconfHook, intltool to nativeBuildInputs
found with nixpkgs-lint
2022-09-26 17:53:26 +03:00
ajs124
b67a9bffcc maintainers: remove hinton
no github account linked
2022-06-29 00:54:59 +02:00
AndersonTorres
d51fa87975 lxde: bring gtk2-x11 to the scope 2022-05-07 20:51:41 -03:00
AndersonTorres
c268cb0725 lxde: refactor
To be more in line with the other desktops. Indeed it is strange to look at all
those lxde packages spread over all-packages.nix.
2022-05-07 19:05:38 -03:00
Jörg Thalheim
d015fb1edb lxappearance: add wrapGAppsHook 2021-07-18 08:43:05 +02:00
Olli Helenius
8609f3fd20
libwnck: make 3.36.0 default 2021-06-24 18:04:30 +03:00
AndersonTorres
e9e5f5f84d Change all alsaLib references to alsa-lib 2021-06-10 01:12:49 -03:00
R. RyanTM
4623281417 lxpanel: 0.10.0 -> 0.10.1 2021-02-07 17:27:10 +00:00
AndersonTorres
4ba25bcd02 lxde: cosmetical changes
Things such as setting licenses as gpl2Plus, name->pname, meta ordering etc.
2021-02-08 09:54:36 -03:00
Sandro
a5f9a7bbfe
Merge pull request #93645 from SCOTT-HAMILTON/lxsession
lxsession: init at 0.5.5
2021-01-18 23:05:07 +01:00
SCOTT-HAMILTON
5f5165350c lxsession: Init at 0.5.5 2021-01-18 17:32:57 +01:00
Ben Siraphob
5fffcef915 pkgs/desktops: pkgconfig -> pkg-config 2021-01-16 23:49:59 -08:00
Ben Siraphob
badf51221d treewide: stdenv.lib -> lib 2021-01-16 17:58:11 +07: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
R. RyanTM
809c4f6588 lxtask: 0.1.9 -> 0.1.10 2020-11-03 05:28:04 +00:00
Ben Siraphob
db74029e3e treewide: remove package names from prefix of descriptions 2020-10-27 09:15:07 -07:00
Ben Siraphob
683a87dbeb treewide: remove periods from end of package descriptions 2020-10-17 08:22:31 -07:00
ryneeverett
52c3214ea6 lxpanel: 0.9.3 -> 0.10.0
Curl is a new requirement so the weather plugin can use libcurl to pull
weather data.
2020-09-16 08:39:13 +02:00
ryneeverett
5b49a74747 lxpanel: fix build by switching to gdk-pixbuf-xlib
The build has been broken since gdk-pixbuf-xlib was broken out into a
separate package in #88086.

For some reason if I just add gdk-pixbuf-xlib.dev the headers don't make it
into CFLAGS.
2020-09-09 23:30:34 +00:00
José Romildo Malaquias
9644b56c74 lxappearance: format with nixpkgs-fmt
Also:
- use pkg-config instead of the alias pkgconfig
- add romildo as maintainer
2020-06-03 22:11:01 -03:00
José Romildo Malaquias
6e3b3bf117 lxappearance: default to Gtk3
- make Gtk3 the default
- remove lxappearance-gtk3
- add lxappearance-gtk2
2020-06-03 12:35:44 -03:00
Michael Reilly
84cf00f980
treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01:00
Jan Tojnar
72e7d569a7
tree-wide: s/GTK+/GTK/g
GTK was renamed.
2019-09-06 02:54:53 +02: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
worldofpeace
b1bc0645ea gdk-pixbuf: rename from gdk_pixbuf 2019-07-22 18:50:57 -04:00
R. RyanTM
0b47bc2957 lxrandr: 0.3.1 -> 0.3.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/lxrandr/versions
2019-03-25 20:48:34 -07:00
R. RyanTM
b8b2f3cbbb lxtask: 0.1.8 -> 0.1.9
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/lxtask/versions
2019-03-10 15:47:50 -07:00
David McKay
125ad34dc8 lxrandr: init at 0.3.1 2018-12-12 11:25:45 +00:00
Matthew Bauer
c605d171bb treewide: remove lintl references
libintl should be used directly, not through NIX_LDFLAGS.
2018-05-16 01:02:31 -05:00
Matthew Justin Bauer
8f3091939b
Merge pull request #37752 from ryantm/fix-urls
treewide: use more HTTPS URLs
2018-03-25 00:40:17 -05:00
Ryan Mulligan
b189247ba0 treewide: use more HTTPS URLs
Uses the HTTPS url for cases where the existing URL has a permanent
redirect. For each domain, at least one fixed derivation URL was
downloaded to test the domain is properly serving downloads.

Also fixes jbake source URL, which was broken.
2018-03-24 22:04:25 -07:00
Daiderd Jordan
9b5669b5a6
lxtask: fix darwin build
/cc ZHF #36454
2018-03-21 21:28:54 +01:00
Samuel Dionne-Riel
7b97c8c0c8 treewide: homepage+src updates (found by repology, #33263) 2018-01-05 20:42:46 +01:00
José Romildo Malaquias
e8712da846 lxtask: init at 0.1.8 2017-11-18 10:03:31 -02:00
Tuomas Tynkkynen
ab71280823 darwin: Disable some packages that have never built successfully
mate.mate-desktop: https://hydra.nixos.org/build/61110037
gdmap: https://hydra.nixos.org/build/61144743
redsocks: https://hydra.nixos.org/build/61123106
resolv_wrapper: https://hydra.nixos.org/build/61121132
ogmtools: https://hydra.nixos.org/build/61108726
mp3info: https://hydra.nixos.org/build/61139015
lxappearance-gtk3: https://hydra.nixos.org/build/61126327
hdf5-fortran: https://hydra.nixos.org/build/61146631
pqiv: https://hydra.nixos.org/build/61124724
2017-09-22 17:25:38 +03:00
Silvan Mosberger
f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00
romildo
11623c5fca lxappearance: add variant for Gtk+-3
lxappearance supports both Gtk+-2 and Gtk+-3. The current `lxappearance'
package continues to be for Gtk+-2. Add `lxappearance-gtk3' for Gtk+-3.

A patch is needed in order to look for themes in system data dirs with
Gtk+-3.
2017-06-09 18:05:09 -03:00
ryneeverett
34bdf451c3 lxpanel: init at 0.9.3
[Bjørn: break overlong lines.]
2017-05-20 15:41:09 +02:00
José Romildo Malaquias
a46258ed0a lxappearance: 0.6.2 -> 0.6.3 (#22865) 2017-02-16 13:31:42 +00:00
José Romildo Malaquias
75960d4690 lxappearance: 0.6.1 -> 0.6.2 2016-09-19 22:30:05 -03:00
José Romildo Malaquias
18e696e97b lxappearance: move from pkgs/applications/misc/ to pkgs/desktops/lxde/core/ 2016-09-19 22:26:10 -03:00
J Phani Mahesh
7262486743 lxmenu-data: switch sf downloads to mirror://
This allows fallback to all configured mirrors for sourceforge
to download, instead of relying on just downloads.sourceforge.net
2016-08-20 19:14:29 +05:30
Joachim Fasting
ba0f9cfa49
Revert "Merge pull request #16980 from phanimahesh/sf-use-mirrors"
This reverts commit 217594fd1d, reversing
changes made to 8e8a89d8a8.

Turns out it wasn't ready afterall ...
2016-08-20 15:14:23 +02:00
J Phani Mahesh
e3c18f04dd lxmenu-data: switch sf downloads to mirror://
This allows fallback to all configured mirrors for sourceforge
to download, instead of relying on just downloads.sourceforge.net
2016-08-20 17:19:56 +05:30
Balletie
e9e5cf98ed lxmenu-data: init at 0.1.5
Provides menus for LXDE, or for e.g. PCManFM if no desktop environment is installed
2016-04-08 15:42:37 +02:00