summary refs log tree commit diff
path: root/pkgs/desktops/deepin
Commit message (Collapse)AuthorAge
* rfkill: removeV2020-08-24
| | | | | | | | | | rfkill was subsumed by util-linux in 2017 [1], and the upstream has not been updated in over 5 years [2]. This package shadows the rfkill from util-linux, so it can be completely removed with no breaking changes, because util-linux is in the base package set in nixos/system-path. [1] https://github.com/karelzak/util-linux/commit/d17fb726b562a69e8f174d46fa6cf794abc129cd [2] https://git.sipsolutions.net/rfkill.git/log/
* deepin.dde-api: mark as brokenzowoq2020-08-22
|
* treewide: use ffmpeg_3 explicitly if not wanted otherwiseDoron Behar2020-06-12
| | | | | | After making `ffmpeg` point to the latest `ffmpeg_4`, all packages that used `ffmpeg` without requiring a specific version now use ffmpeg_3 explicitly so they shouldn't change.
* treewide: replace base64 encoded hashesDaiderd Jordan2020-06-03
|
* deepin.deepin-screenshot: remove (has been archived upstream)José Romildo Malaquias2020-05-27
| | | | It has been deprecated (migrated to deepin-screen-recorder after v20).
* Merge pull request #88960 from romildo/upd.qcefJosé Romildo Malaquias2020-05-27
|\ | | | | deepin.qcef: 1.1.7 -> 1.1.8
| * deepin.qcef: 1.1.7 -> 1.1.8José Romildo Malaquias2020-05-26
| |
* | Merge pull request #88954 from romildo/upd.go-dbus-generatorJosé Romildo Malaquias2020-05-27
|\ \ | | | | | | deepin.{go-dbus-generator;dbus-factory}: remove
| * | deepin.dbus-factory: removeJosé Romildo Malaquias2020-05-26
| | | | | | | | | | | | It is not really needed by the other packages.
| * | deepin.go-dbus-generator: removeJosé Romildo Malaquias2020-05-26
| |/ | | | | | | | | It has been archived upstream and no other package currently depends on it.
* | Merge pull request #88969 from romildo/upd.qt5dxcb-pluginJosé Romildo Malaquias2020-05-27
|\ \ | | | | | | deepin.qt5dxcb-plugin: 5.0.1 -> 5.0.11
| * | deepin.qt5dxcb-plugin: rename to qt5platform-pluginsJosé Romildo Malaquias2020-05-26
| | | | | | | | | | | | It has been renamed upstream.
| * | deepin.qt5dxcb-plugin: qmake already enables parallel buildingJosé Romildo Malaquias2020-05-26
| | |
| * | deepin.qt5dxcb-plugin: 5.0.1 -> 5.0.11José Romildo Malaquias2020-05-26
| |/
* | Merge pull request #88907 from romildo/upd.go-libJosé Romildo Malaquias2020-05-26
|\ \ | | | | | | deepin.go-lib: 5.0.0 -> 5.4.5
| * | deepin.go-lib: 5.0.0 -> 5.4.5José Romildo Malaquias2020-05-25
| |/
* | Merge pull request #88902 from romildo/upd.udisks2-qt5José Romildo Malaquias2020-05-26
|\ \ | | | | | | deepin.udisks2-qt5: 5.0.0 -> 5.0.3
| * | deepin.udisks2-qt5: 5.0.0 -> 5.0.3José Romildo Malaquias2020-05-25
| |/
* | Merge pull request #88901 from romildo/upd.disomasterJosé Romildo Malaquias2020-05-26
|\ \ | | | | | | deepin.disomaster: 5.0.0 -> 5.0.1
| * | deepin.disomaster: 5.0.0 -> 5.0.1José Romildo Malaquias2020-05-25
| |/
* / deepin.deepin-icon-theme: 15.12.71 -> 2020.05.21José Romildo Malaquias2020-05-25
|/
* deepin.dde-control-center: always run systemctl of the currently running systemdFlorian Klink2020-05-21
|
* Merge pull request #86708 from romildo/deepin.updateScriptJosé Romildo Malaquias2020-05-07
|\ | | | | deepin: redefine updateScript to use genericUpdater
| * deepin: redefine updateScript to use genericUpdaterJosé Romildo Malaquias2020-05-04
| |
| * deepin: format with nixpkgs-fmtJosé Romildo Malaquias2020-05-04
| |
* | Merge master into staging-nextFrederik Rietdijk2020-05-05
|\|
| * Merge pull request #85883 from romildo/fix.deepin-anythingJosé Romildo Malaquias2020-05-04
| |\ | | | | | | deepin.deepin-anything: fix building with linux kernel 5.6
| | * deepin.deepin-anything: fix building with linux kernel 5.6José Romildo Malaquias2020-04-25
| | |
* | | treewide: use $out instead of $bin with buildGoPackagezowoq2020-04-28
|/ /
* / deepin.deepin-icon-theme: add missing parent icon themesJosé Romildo Malaquias2020-04-19
|/
* treewide: Per RFC45, remove all unquoted URLsMichael Reilly2020-04-10
|
* deepin.deepin-terminal: fix buildworldofpeace2020-04-03
| | | | https://github.com/linuxdeepin/deepin-terminal/pull/221
* Merge staging-next into stagingFrederik Rietdijk2020-03-28
|\
| * deepin.startdde: fix strict deps buildJörg Thalheim2020-03-28
| |
| * deepin.dde-daemon: fix strict deps buildJörg Thalheim2020-03-28
| |
| * deepin.dde-api: fix strict buildJörg Thalheim2020-03-28
| |
* | deepin.go-gir-generator: Fix compat with glib 2.63+Jan Tojnar2020-03-24
|/
* treewide: Fix unsafe concatenation of $LD_LIBRARY_PATHAnders Kaseorg2020-01-15
| | | | | | | | | | Naive concatenation of $LD_LIBRARY_PATH can result in an empty colon-delimited segment; this tells glibc to load libraries from the current directory, which is definitely wrong, and may be a security vulnerability if the current directory is untrusted. (See #67234, for example.) Fix this throughout the tree. Signed-off-by: Anders Kaseorg <andersk@mit.edu>
* Merge pull request #63813 from romildo/upd.deepin.startddeworldofpeace2020-01-07
|\ | | | | deepin.startdde: init at 5.0.1
| * deepin.dde-session-ui: use gapps wrapperworldofpeace2020-01-07
| | | | | | | | | | | | Forgot about wrapQtAppsHook only wrapping binaries that are ELF headers. So it can't wrap it if it already is.
| * deepin.dde-launcher: use gapps wrapperworldofpeace2020-01-07
| | | | | | | | | | | | Forgot about wrapQtAppsHook only wrapping binaries that are ELF headers. So it can't wrap it if it already is.
| * deepin.dde-file-manager: use gapps wrapperworldofpeace2020-01-07
| | | | | | | | | | | | Forgot about wrapQtAppsHook only wrapping binaries that are ELF headers. So it can't wrap it if it already is.
| * deepin.dde-dock: use gapps wrapperworldofpeace2020-01-07
| | | | | | | | | | | | Forgot about wrapQtAppsHook only wrapping binaries that are ELF headers. So it can't wrap it if it already is.
| * deepin.dde-control-center: use gapps wrapperworldofpeace2020-01-07
| | | | | | | | | | | | Forgot about wrapQtAppsHook only wrapping binaries that are ELF headers. So it can't wrap it if it already is.
| * deepin.startdde: init at 5.0.1José Romildo Malaquias2020-01-07
| |
* | treewide: *inputs are listsRobin Gloster2019-12-31
|/
* treewide: remove empty inheritsMario Rodas2019-12-04
| | | | These empty inherits were accidentally introduced by https://github.com/NixOS/nixpkgs/pull/66585
* dconf: move to top-levelJan Tojnar2019-12-01
|
* deepin.deepin-editor: init at 1.2.9.1José Romildo Malaquias2019-11-22
|
* deepin.udisks2-qt5: 0.0.1 -> 5.0.0José Romildo Malaquias2019-11-13
|