summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/display-managers
AgeCommit message (Collapse)Author
2021-01-16pkgs/applications: pkgconfig -> pkg-configBen Siraphob
2021-01-15pkgs/applications: stdenv.lib -> libBen Siraphob
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch
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-01treewide: remove trailing whitespacesBen Siraphob
2020-12-07Remove myself from maintainers setsOllie Charles
Unfortunately I can't reliably commit time to nixpkgs, so I would like to remove myself from being a formal maintainer for these packages.
2020-11-04sddm: 0.18.1 -> 0.19.0Martin Weinelt
https://github.com/sddm/sddm/releases/tag/v0.19.0 Fixes: CVE-2020-28049
2020-07-29treewide: use nix-update updateScript for packages I maintainworldofpeace
2020-04-14Merge pull request #84255 from prikhi/lightdm-mini-greeter-040worldofpeace
lightdm-mini-greeter: 0.3.4 -> 0.4.0
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly
2020-04-04lightdm-mini-greeter: Add Changelog LinkPavan Rikhi
2020-04-04lightdm-mini-greeter: 0.3.4 -> 0.4.0Pavan Rikhi
2020-03-11lightdm-tiny-greeter: init at 1.2Edward Tjörnhammar
2019-12-31treewide: NIX_*_FLAGS -> stringRobin Gloster
2019-12-15lightdm: add patch to fix wayland sessionsworldofpeace
This was a nixos specific issue.
2019-12-01lightdm_gtk_greeter: 2.0.6 -> 2.0.7R. RyanTM
2019-11-20yelp-tools: move to top-levelJan Tojnar
2019-11-11nixos/slim: removeworldofpeace
The SLIM project is abandoned and their last release was in 2013. Because of this it poses a security risk to systems, no one is working on it or picked up maintenance. It also lacks compatibility with systemd and logind sessions. For users, there liikely isn't anything like slim that's as lightweight in terms of dependencies.
2019-10-13lightdm: cleanup uneeded filesworldofpeace
2019-10-13lightdm: hardcode path to plymouthworldofpeace
2019-09-18Merge branch 'staging-next' into stagingJan Tojnar
2019-09-18lightdm-mini-greeter: put xgreeters in passthruworldofpeace
2019-09-18lightdm-mini-greeter: use wrapGAppsHookworldofpeace
2019-09-18nixos/lightdm-gtk-greeter: don't wrap in moduleworldofpeace
2019-09-18nixos/enso-os: don't wrap in moduleworldofpeace
2019-09-16sddm: Move D-Bus conf file to share/dbus-1/system.dworldofpeace
Since D-Bus 1.9.18 configuration files installed by third-party should go in share/dbus-1/system.d. The old location is for sysadmin overrides.
2019-09-16lightdm: Move D-Bus conf file to share/dbus-1/system.dworldofpeace
Since D-Bus 1.9.18 configuration files installed by third-party should go in share/dbus-1/system.d. The old location is for sysadmin overrides.
2019-09-04Merge branch 'master' into staging-nextVladimír Čunát
2019-09-03treewide: don't use single quotes with placeholderworldofpeace
2019-08-31treewide: Remove unnecessary `--disable-static` (#66759)Niklas Hambüchen
* freetype: Remove unnecessary `--disable-static`. The true-by-default `dontDisableStatic` already takes care of it. Fixes freetype not being overridable to have static libs. * treewide: Remove unnecessary `--disable-static`. The true-by-default `dontDisableStatic` already takes care of it. Fixes these packages not being overridable to have static libs.
2019-08-28treewide: remove redundant recvolth
2019-08-17treewide: name -> pnamevolth
2019-08-16sddm: add missing dependency for breeze themenyanloutre
2019-08-15treewide: name -> pname (easy cases) (#66585)volth
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
2019-07-22gdk-pixbuf: rename from gdk_pixbufworldofpeace
2019-05-18lightdm: 1.28.0 -> 1.30.0Will Dietz
2019-03-31sddm: 0.18.0 -> 0.18.1Will Dietz
2019-03-19lightdm: drop run-dir.patchworldofpeace
That patched the bundled configuration which is useless to NixOS.
2019-03-13lightdm: disable writing dmrc files to homeworldofpeace
Can cause issues where lightdm prefers the last saved session in .dmrc even if it doesn't exist anymore, preventing people from logging in to a session.
2019-03-12lightdm_gtk_greeter: fix configureFlags to not be one long stringWill Dietz
For whatever reason, setting `configureFlagsArray` causes the configure invocation to escape spaces between parameters: configure flags: --disable-static --disable-dependency-tracking --prefix=/nix/store/4bn8dsr743dp0g5j020jf8why5hkld3p-lightdm-gtk-greeter-2.0.6 --localstatedir=/var\ --sysconfdir=/etc\ --disable-indicator-services-command\ --enable-at-spi-command=/nix/store/li9bsxl8qja8qw0pa70xd572gw5hqsdm-at-spi2-core-2.30.1/libexec/at-spi-bus-launcher\ \ --launch-immediately This actually doesn't break the build (!) but it does break lightdm pretty badly for me and it's not hard to imagine why :). Instead, use configureFlags as normal but just append the command in `preConfigure` directly, so we can preserve the space.
2019-03-12lightdm_gtk_greeter: disable indicator servicesworldofpeace
Needs upstart [0] and that's long gone now. [0]: https://git.launchpad.net/lightdm-gtk-greeter/tree/configure.ac?id=f6ce16f2107de712a0edd8f5fb6853ea6ab8a399#n154
2019-03-12lightdm_gtk_greeter: correct at-spi-commandworldofpeace
Without manually setting the command with the flag, it's hardcoded to some FHS path.
2019-01-26treewide: remove wkennington as maintainerJörg Thalheim
He prefers to contribute to his own nixpkgs fork triton. Since he is still marked as maintainer in many packages this leaves the wrong impression he still maintains those.
2018-12-02gobject-introspection: rename packageJan Tojnar
camelCase package name was a huge inconsistency in GNOME package set.
2018-11-08ly: init at 0.2.1Katharina Fey
2018-11-03lightdm-mini-greeter: 0.3.3 -> 0.3.4 (#49655)Lysergia
New upstream release.
2018-11-02lightdm-mini-greeter: 0.3.2 -> 0.3.3 (#49619)Lysergia
New upstream release.
2018-10-26sddm: 0.17.0 -> 0.18.0Andreas Rammhold
Bumps to the latest stable version while fixing CVE-2018-14345 [1]. Changelog [2]: - Support theme supplied avatars - Compile against Qt 5.11 - Fix platform detection for HighDPI - On close, switch VT to a running session if applicable - Better ConsoleKit support - Fix authentication when non-default hidden option ReuseSession=true is used (CVE-2018-14345) - Hide sessions with NoDisplay=true - Honor PAM's ambient supplemental groups - Cleanup socket destruction - Don't quit on SIGHUP - Updated translations [1] https://nvd.nist.gov/vuln/detail/CVE-2018-14345 [2] https://github.com/sddm/sddm/releases/tag/v0.18.0
2018-10-08Merge pull request #44920 from eadwu/init/lightdm-enso-os-greeterMatthew Bauer
lightdm-enso-os-greeter: init at 0.2.1
2018-09-28lightdm_gtk_greeter: 2.0.5 -> 2.0.6 (#47021)R. RyanTM
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/lightdm-gtk-greeter/versions
2018-09-19lightdm: ensure run-directory is /run/lightdm (#46907)worldofpeace