Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c76a1ea594e8
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 57c43ad8d025
Choose a head ref
  • 6 commits
  • 6 files changed
  • 5 contributors

Commits on Oct 3, 2019

  1. nixos/gnome-settings-daemon: move systemd config here

    As I've decided that it doesn't make sense for the module to be shared [0]
    we can move this config here.
    
    [0]: 68ab37a
    worldofpeace committed Oct 3, 2019
    Copy the full SHA
    fb7b158 View commit details
  2. Merge pull request #70296 from worldofpeace/targets-want-gsd

    nixos/gnome-settings-daemon: move systemd config here
    worldofpeace authored Oct 3, 2019
    Copy the full SHA
    7e89933 View commit details
  3. Copy the full SHA
    c83db0c View commit details
  4. pythonPackages.trackpy: disable plot tests

    Jonathan Ringer committed Oct 3, 2019
    Copy the full SHA
    64205fa View commit details
  5. Copy the full SHA
    31c4f79 View commit details
  6. qutebrowser: 1.7.0 -> 1.8.1

    Rommel MARTINEZ authored and Jon committed Oct 3, 2019
    Copy the full SHA
    57c43ad View commit details
26 changes: 26 additions & 0 deletions nixos/modules/services/desktops/gnome3/gnome-settings-daemon.nix
Original file line number Diff line number Diff line change
@@ -43,6 +43,32 @@ in
pkgs.gnome3.gnome-settings-daemon
];

systemd.packages = [
pkgs.gnome3.gnome-settings-daemon
];

systemd.user.targets."gnome-session-initialized".wants = [
"gsd-color.target"
"gsd-datetime.target"
"gsd-keyboard.target"
"gsd-media-keys.target"
"gsd-print-notifications.target"
"gsd-rfkill.target"
"gsd-screensaver-proxy.target"
"gsd-sharing.target"
"gsd-smartcard.target"
"gsd-sound.target"
"gsd-wacom.target"
"gsd-wwan.target"
"gsd-a11y-settings.target"
"gsd-housekeeping.target"
"gsd-power.target"
];

systemd.user.targets."gnome-session-x11-services".wants = [
"gsd-xsettings.target"
];

};

}
17 changes: 1 addition & 16 deletions nixos/modules/services/x11/desktop-managers/gnome3.nix
Original file line number Diff line number Diff line change
@@ -230,22 +230,7 @@ in
services.system-config-printer.enable = (mkIf config.services.printing.enable (mkDefault true));
services.telepathy.enable = mkDefault true;

systemd.packages = with pkgs.gnome3; [ vino gnome-session gnome-settings-daemon ];

# gnome-settings-daemon.nix is shared between several desktop
# environments (eg. mate and pantheon) so specify these gnome-shell specific
# service dependencies here instead.
systemd.user.targets."gnome-session-initialized".wants = [
"gsd-a11y-settings.target" "gsd-housekeeping.target" "gsd-power.target"
"gsd-color.target" "gsd-keyboard.target" "gsd-print-notifications.target"
"gsd-datetime.target" "gsd-media-keys.target" "gsd-rfkill.target"
"gsd-screensaver-proxy.target" "gsd-sound.target" "gsd-smartcard.target"
"gsd-sharing.target" "gsd-wacom.target" "gsd-wwan.target"
];

systemd.user.targets."gnome-session-x11-services".wants = [
"gsd-xsettings.target"
];
systemd.packages = with pkgs.gnome3; [ vino gnome-session ];

services.avahi.enable = mkDefault true;

10 changes: 5 additions & 5 deletions pkgs/applications/networking/browsers/qutebrowser/default.nix
Original file line number Diff line number Diff line change
@@ -10,23 +10,23 @@ assert withMediaPlayback -> gst_all_1 != null;

let
pdfjs = let
version = "2.1.266";
version = "2.2.228";
in
fetchzip rec {
name = "pdfjs-${version}";
url = "https://github.com/mozilla/pdf.js/releases/download/v${version}/${name}-dist.zip";
sha256 = "1ybbnpz2jcdikzwr7r13lq528vxj3bpms1fqmg3n1zgs30cqpkby";
sha256 = "0yik4vfnz46j844jfw1gq5cshgzry42kpy2d5rr7fbn9fjf98bw6";
stripRoot = false;
};

in mkDerivationWith python3Packages.buildPythonApplication rec {
pname = "qutebrowser";
version = "1.7.0";
version = "1.8.1";

# the release tarballs are different from the git checkout!
src = fetchurl {
url = "https://github.com/qutebrowser/qutebrowser/releases/download/v${version}/${pname}-${version}.tar.gz";
sha256 = "0wyjmb2qvnw3gn0ypgckwblmn7kasi12dfwp343hi6wscqripw7i";
sha256 = "0ckffbw2zlg0afz4rgyywzdprnqs74va5qj0xqlaqc14ziiypxnw";
};

# Needs tox
@@ -108,6 +108,6 @@ in mkDerivationWith python3Packages.buildPythonApplication rec {
homepage = https://github.com/The-Compiler/qutebrowser;
description = "Keyboard-focused browser with a minimal GUI";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ jagajaga rnhmjoj ];
maintainers = with maintainers; [ jagajaga rnhmjoj ebzzry ];
};
}
4 changes: 2 additions & 2 deletions pkgs/applications/version-management/sourcehut/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ python37, openssl
, callPackage }:
, callPackage, recurseIntoAttrs }:

# To expose the *srht modules, they have to be a python module so we use `buildPythonModule`
# Then we expose them through all-packages.nix as an application through `toPythonApplication`
@@ -25,7 +25,7 @@ let
scmsrht = self.callPackage ./scm.nix { };
};
};
in with python.pkgs; {
in with python.pkgs; recurseIntoAttrs {
inherit python;
buildsrht = toPythonApplication buildsrht;
dispatchsrht = toPythonApplication dispatchsrht;
3 changes: 2 additions & 1 deletion pkgs/development/python-modules/bleach/default.nix
Original file line number Diff line number Diff line change
@@ -5,6 +5,7 @@
, pytestrunner
, six
, html5lib
, setuptools
}:

buildPythonPackage rec {
@@ -17,7 +18,7 @@ buildPythonPackage rec {
};

checkInputs = [ pytest pytestrunner ];
propagatedBuildInputs = [ six html5lib ];
propagatedBuildInputs = [ six html5lib setuptools ];

postPatch = ''
substituteInPlace setup.py --replace ",<3dev" ""
1 change: 1 addition & 0 deletions pkgs/development/python-modules/trackpy/default.nix
Original file line number Diff line number Diff line change
@@ -45,6 +45,7 @@ buildPythonPackage rec {
pytest trackpy --ignore trackpy/tests/test_motion.py \
--ignore trackpy/tests/test_feature_saving.py \
--ignore trackpy/tests/test_feature.py \
--ignore trackpy/tests/test_plots.py \
--ignore trackpy/tests/test_legacy_linking.py
'';