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: 2c074fc6c8d2
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: a5d19a22b5e1
Choose a head ref
  • 13 commits
  • 13 files changed
  • 10 contributors

Commits on May 7, 2019

  1. nixos/plasma5: Remove phonon-backend-gstreamer pinned to Qt 5.6

    Adds closure size for seemingly no reason
    adisbladis committed May 7, 2019
    Copy the full SHA
    d5887ec View commit details

Commits on May 13, 2019

  1. nixos/desktop-managers: let them work when 'services.xserver.enable =…

    … false'
    
    they can be used by remote desktop software, without X11 running locally
    volth committed May 13, 2019
    Copy the full SHA
    ac6875d View commit details
  2. Copy the full SHA
    b51aae1 View commit details

Commits on May 29, 2019

  1. agave: 009 -> v10

    dtzWill committed May 29, 2019
    Copy the full SHA
    94b155a View commit details

Commits on May 30, 2019

  1. Copy the full SHA
    f093847 View commit details
  2. Merge pull request #61423 from volth/de-xrdp

    nixos/desktop-managers: let them work when 'services.xserver.enable = false'
    matthewbauer authored May 30, 2019
    Copy the full SHA
    b64b2b5 View commit details
  3. Merge pull request #61104 from adisbladis/plasma5-no-qt56

    nixos/plasma5: Remove phonon-backend-gstreamer pinned to Qt 5.6
    matthewbauer authored May 30, 2019
    Copy the full SHA
    a472b14 View commit details
  4. thefuck: 3.28 -> 3.29

    Synthetica9 committed May 30, 2019
    Copy the full SHA
    5f20b10 View commit details
  5. Merge pull request #62264 from Synthetica9/thefuck329

    thefuck: 3.28 -> 3.29
    Ma27 authored May 30, 2019
    Copy the full SHA
    19195b2 View commit details

Commits on May 31, 2019

  1. python37Packages.eve: 0.8.1 -> 0.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/python3.7-eve/versions
    r-ryantm authored and marsam committed May 31, 2019
    Copy the full SHA
    14cf7cf View commit details
  2. Merge pull request #61896 from r-ryantm/auto-update/python3.7-Eve

    python37Packages.eve: 0.8.1 -> 0.9
    marsam authored May 31, 2019
    Copy the full SHA
    d0ad25a View commit details
  3. crystal_0_26: fix hash

    hash has been changed since initial commit:
    
    https://hydra.nixos.org/build/93668775
    matthewbauer committed May 31, 2019
    Copy the full SHA
    67abc01 View commit details
  4. Merge pull request #62197 from dtzWill/update/agave-10

    agave: 009 -> v10
    dtzWill authored May 31, 2019
    Copy the full SHA
    a5d19a2 View commit details
10 changes: 5 additions & 5 deletions nixos/modules/services/x11/desktop-managers/enlightenment.nix
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ in

};

config = mkIf (xcfg.enable && cfg.enable) {
config = mkIf cfg.enable {

environment.systemPackages = [
e.efl e.enlightenment
@@ -38,10 +38,10 @@ in
pkgs.xorg.xcursorthemes
];

environment.pathsToLink = [
"/etc/enlightenment"
"/share/enlightenment"
"/share/elementary"
environment.pathsToLink = [
"/etc/enlightenment"
"/share/enlightenment"
"/share/elementary"
"/share/locale"
];

2 changes: 1 addition & 1 deletion nixos/modules/services/x11/desktop-managers/lumina.nix
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ in
};


config = mkIf (xcfg.enable && cfg.enable) {
config = mkIf cfg.enable {

services.xserver.desktopManager.session = singleton {
name = "lumina";
2 changes: 1 addition & 1 deletion nixos/modules/services/x11/desktop-managers/lxqt.nix
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ in

};

config = mkIf (xcfg.enable && cfg.enable) {
config = mkIf cfg.enable {

services.xserver.desktopManager.session = singleton {
name = "lxqt";
2 changes: 1 addition & 1 deletion nixos/modules/services/x11/desktop-managers/mate.nix
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@ in

};

config = mkIf (xcfg.enable && cfg.enable) {
config = mkIf cfg.enable {

services.xserver.desktopManager.session = singleton {
name = "mate";
2 changes: 1 addition & 1 deletion nixos/modules/services/x11/desktop-managers/maxx.nix
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ in {
enable = mkEnableOption "MaXX desktop environment";
};

config = mkIf (xcfg.enable && cfg.enable) {
config = mkIf cfg.enable {
environment.systemPackages = [ pkgs.maxx ];

# there is hardcoded path in binaries
3 changes: 1 addition & 2 deletions nixos/modules/services/x11/desktop-managers/plasma5.nix
Original file line number Diff line number Diff line change
@@ -36,7 +36,7 @@ in


config = mkMerge [
(mkIf (xcfg.enable && cfg.enable) {
(mkIf cfg.enable {
services.xserver.desktopManager.session = singleton {
name = "plasma5";
bgSupport = true;
@@ -161,7 +161,6 @@ in

qtvirtualkeyboard

libsForQt56.phonon-backend-gstreamer
libsForQt5.phonon-backend-gstreamer

xdg-user-dirs # Update user dirs as described in https://freedesktop.org/wiki/Software/xdg-user-dirs/
2 changes: 1 addition & 1 deletion nixos/modules/services/x11/desktop-managers/xterm.nix
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ in

};

config = mkIf (config.services.xserver.enable && cfg.enable) {
config = mkIf cfg.enable {

services.xserver.desktopManager.session = singleton
{ name = "xterm";
3 changes: 1 addition & 2 deletions nixos/modules/services/x11/xserver.nix
Original file line number Diff line number Diff line change
@@ -347,6 +347,7 @@ in

xkbDir = mkOption {
type = types.path;
default = "${pkgs.xkeyboard_config}/etc/X11/xkb";
description = ''
Path used for -xkbdir xserver parameter.
'';
@@ -708,8 +709,6 @@ in
xorg.xf86inputevdev.out
];

services.xserver.xkbDir = mkDefault "${pkgs.xkeyboard_config}/etc/X11/xkb";

system.extraDependencies = singleton (pkgs.runCommand "xkb-validated" {
inherit (cfg) xkbModel layout xkbVariant xkbOptions;
nativeBuildInputs = [ pkgs.xkbvalidate ];
4 changes: 2 additions & 2 deletions pkgs/data/fonts/agave/default.nix
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

let
pname = "agave";
version = "009";
version = "10";
in fetchurl {
name = "${pname}-${version}";
url = "https://github.com/agarick/agave/releases/download/v${version}/agave-r.ttf";
@@ -13,7 +13,7 @@ in fetchurl {
install -D $downloadedFile $out/share/fonts/truetype/agave-r.ttf
'';

sha256 = "16qvz3zpwiq2nw0gxygva5pssswcia5xp0q6ir5jfkackvqf3fql";
sha256 = "1mfj6a9sp00mjz7420yyrbbs5bqks3fz2slwgcppklxnz0890r9f";

meta = with lib; {
description = "truetype monospaced typeface designed for X environments";
2 changes: 1 addition & 1 deletion pkgs/development/compilers/crystal/default.nix
Original file line number Diff line number Diff line change
@@ -129,7 +129,7 @@ in rec {
sha256s = {
"x86_64-linux" = "1xban102yiiwmlklxvn3xp3q546bp8hlxxpakayajkhhnpl6yv45";
"i686-linux" = "1igspf1lrv7wpmz0pfrkbx8m1ykvnv4zhic53cav4nicppm2v0ic";
"x86_64-darwin" = "0hzc65ccajr0yhmvi5vbdgbzbp1gbjy56da24ds3zwwkam1ddk0k";
"x86_64-darwin" = "1mri8bfrcldl69gczxpihxpv1shn4bijx28m3qby8vnk0ii63n9s";
};
};

10 changes: 6 additions & 4 deletions pkgs/development/python-modules/eve/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{ stdenv, buildPythonPackage, fetchPypi, flask, events
, pymongo, simplejson, cerberus }:
, pymongo, simplejson, cerberus, werkzeug }:

buildPythonPackage rec {
pname = "Eve";
version = "0.8.1";
version = "0.9";

src = fetchPypi {
inherit pname version;
sha256 = "88105080e8a2567a1a8d50a5cded0d7d95e95f704b310c8107ef2ff7696f5316";
sha256 = "18shfaxa1vqshnyiqx3jqsri2wxz9ibip3mdxaz8pljmk734r4b1";
};

propagatedBuildInputs = [
@@ -16,14 +16,16 @@ buildPythonPackage rec {
flask
pymongo
simplejson
werkzeug
];

# tests call a running mongodb instance
doCheck = false;

meta = with stdenv.lib; {
homepage = "http://python-eve.org/";
homepage = "https://python-eve.org/";
description = "Open source Python REST API framework designed for human beings";
license = licenses.bsd3;
maintainers = [ maintainers.marsam ];
};
}
4 changes: 2 additions & 2 deletions pkgs/tools/misc/thefuck/default.nix
Original file line number Diff line number Diff line change
@@ -5,13 +5,13 @@

buildPythonApplication rec {
pname = "thefuck";
version = "3.28";
version = "3.29";

src = fetchFromGitHub {
owner = "nvbn";
repo = "${pname}";
rev = version;
sha256 = "070b2sx8r0b4hry6xg97psxlikxghmz91zicg2cm6kc1yhgz4agc";
sha256 = "1qhxwjjgrzpqrqjv7l2847ywpln76lyd6j8bl9gz2r6kl0fx2fqs";
};

propagatedBuildInputs = [ colorama decorator psutil pyte six ];
7 changes: 7 additions & 0 deletions pkgs/tools/misc/yubikey-manager/default.nix
Original file line number Diff line number Diff line change
@@ -31,8 +31,15 @@ python3Packages.buildPythonPackage rec {
];

postInstall = ''
mkdir -p "$out/man/man1"
cp man/ykman.1 "$out/man/man1"
mkdir -p $out/share/bash-completion/completions
_YKMAN_COMPLETE=source $out/bin/ykman > $out/share/bash-completion/completions/ykman || :
mkdir -p $out/share/zsh/site-functions/
_YKMAN_COMPLETE=source_zsh "$out/bin/ykman" > "$out/share/zsh/site-functions/_ykman" || :
substituteInPlace "$out/share/zsh/site-functions/_ykman" \
--replace 'compdef _ykman_completion ykman;' '_ykman_completion "$@"'
'';

# See https://github.com/NixOS/nixpkgs/issues/29169