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: 74d0b82f29cb
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: ca3f089a836c
Choose a head ref
  • 13 commits
  • 7 files changed
  • 9 contributors

Commits on Dec 2, 2018

  1. Verified

    This commit was signed with the committer’s verified signature.
    bagder Daniel Stenberg
    Copy the full SHA
    953be3e View commit details

Commits on Dec 6, 2018

  1. Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    da314a4 View commit details
  2. skaffold: 0.18.0 -> 0.19.0

    Signed-off-by: Vincent Demeester <vincent@sbr.pm>
    vdemeester committed Dec 6, 2018

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    4a783b8 View commit details

Commits on Dec 7, 2018

  1. grobi: 0.3.0 -> 0.5.1

    Tobias Pflug committed Dec 7, 2018

    Partially verified

    This commit is signed with the committer’s verified signature.
    vcunat’s contribution has been verified via GPG key.
    We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
    Copy the full SHA
    691f6cc View commit details
  2. todoman: 3.4.1 -> 3.5.0

    updating to latest version and remove already included patch
    pacien authored Dec 7, 2018
    Copy the full SHA
    8273e65 View commit details
  3. bundix: 2.4.0 -> 2.4.1 (#51660)

    fixes #51656
    zimbatm authored Dec 7, 2018
    Copy the full SHA
    4a8d092 View commit details
  4. Merge pull request #51666 from holidaycheck/update-grobi

    grobi: 0.3.0 -> 0.5.1
    alyssais authored Dec 7, 2018
    Copy the full SHA
    c7798cf View commit details
  5. opusTools: 0.1.10 -> 0.2

    Philipp Middendorf committed Dec 7, 2018
    Copy the full SHA
    a17d94a View commit details
  6. Merge pull request #51667 from pacien/patch-2

    todoman: 3.4.1 -> 3.5.0
    alyssais authored Dec 7, 2018
    Copy the full SHA
    1efca5e View commit details
  7. Merge pull request #51665 from plapadoo/opus-tools-0.1.10-to-0.2

    opusTools: 0.1.10 -> 0.2
    alyssais authored Dec 7, 2018
    Copy the full SHA
    21ed8b1 View commit details
  8. Merge pull request #51625 from vdemeester/update-skaffold

    skaffold: 0.18.0 -> 0.19.0
    alyssais authored Dec 7, 2018
    Copy the full SHA
    33c66f0 View commit details
  9. Merge pull request #51620 from smaret/gildas-update

    gildas: 20181101_a -> 20181201_a
    alyssais authored Dec 7, 2018
    Copy the full SHA
    716a38d View commit details
  10. Merge pull request #51314 from Izorkin/mariadb-my.cnf

    mariadb: change location configuration file to /etc/my.cnf
    grahamc authored Dec 7, 2018
    Copy the full SHA
    ca3f089 View commit details
34 changes: 17 additions & 17 deletions nixos/modules/services/databases/mysql.nix
Original file line number Diff line number Diff line change
@@ -29,21 +29,6 @@ let
installOptions =
"${mysqldAndInstallOptions} ${lib.optionalString isMysqlAtLeast57 "--insecure"}";

myCnf = pkgs.writeText "my.cnf"
''
[mysqld]
port = ${toString cfg.port}
datadir = ${cfg.dataDir}
${optionalString (cfg.bind != null) "bind-address = ${cfg.bind}" }
${optionalString (cfg.replication.role == "master" || cfg.replication.role == "slave") "log-bin=mysql-bin"}
${optionalString (cfg.replication.role == "master" || cfg.replication.role == "slave") "server-id = ${toString cfg.replication.serverId}"}
${optionalString (cfg.ensureUsers != [])
''
plugin-load-add = auth_socket.so
''}
${cfg.extraOptions}
'';

in

{
@@ -242,6 +227,21 @@ in

environment.systemPackages = [mysql];

environment.etc."my.cnf".text =
''
[mysqld]
port = ${toString cfg.port}
datadir = ${cfg.dataDir}
${optionalString (cfg.bind != null) "bind-address = ${cfg.bind}" }
${optionalString (cfg.replication.role == "master" || cfg.replication.role == "slave") "log-bin=mysql-bin"}
${optionalString (cfg.replication.role == "master" || cfg.replication.role == "slave") "server-id = ${toString cfg.replication.serverId}"}
${optionalString (cfg.ensureUsers != [])
''
plugin-load-add = auth_socket.so
''}
${cfg.extraOptions}
'';

systemd.services.mysql = let
hasNotify = (cfg.package == pkgs.mariadb);
in {
@@ -263,7 +263,7 @@ in
if ! test -e ${cfg.dataDir}/mysql; then
mkdir -m 0700 -p ${cfg.dataDir}
chown -R ${cfg.user} ${cfg.dataDir}
${mysql}/bin/mysql_install_db ${installOptions}
${mysql}/bin/mysql_install_db --defaults-file=/etc/my.cnf ${installOptions}
touch /tmp/mysql_init
fi
@@ -274,7 +274,7 @@ in
serviceConfig = {
Type = if hasNotify then "notify" else "simple";
RuntimeDirectory = "mysqld";
ExecStart = "${mysql}/bin/mysqld --defaults-extra-file=${myCnf} ${mysqldOptions}";
ExecStart = "${mysql}/bin/mysqld --defaults-file=/etc/my.cnf ${mysqldOptions}";
};

postStart = ''
8 changes: 4 additions & 4 deletions pkgs/applications/audio/opus-tools/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{stdenv, fetchurl, libogg, libao, pkgconfig, libopus, flac}:
{stdenv, fetchurl, libogg, libao, pkgconfig, flac, opusfile, libopusenc}:

stdenv.mkDerivation rec {
name = "opus-tools-0.1.10";
name = "opus-tools-0.2";
src = fetchurl {
url = "http://downloads.xiph.org/releases/opus/${name}.tar.gz";
sha256 = "135jfb9ny3xvd27idsxj7j5ns90lslbyrq70cq3bfwcls4r7add2";
sha256 = "11pzl27s4vcz4m18ch72nivbhww2zmzn56wspb7rll1y1nq6rrdl";
};

nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libogg libao libopus flac ];
buildInputs = [ libogg libao flac opusfile libopusenc ];

meta = {
description = "Tools to work with opus encoded audio streams";
11 changes: 2 additions & 9 deletions pkgs/applications/office/todoman/default.nix
Original file line number Diff line number Diff line change
@@ -5,12 +5,12 @@ let
in
buildPythonApplication rec {
pname = "todoman";
version = "3.4.1";
version = "3.5.0";
name = "${pname}-${version}";

src = fetchPypi {
inherit pname version;
sha256 = "1rvid1rklvgvsf6xmxd91j2fi46v4fzn5z6zbs5yn0wpb0k605r5";
sha256 = "051qjdpwif06x7qspnb4pfwdhb8nnmz99yqcp4kla5hv0n3jh0w9";
};

LOCALE_ARCHIVE = stdenv.lib.optionalString stdenv.isLinux
@@ -29,13 +29,6 @@ buildPythonApplication rec {
makeWrapperArgs = [ "--set LOCALE_ARCHIVE ${glibcLocales}/lib/locale/locale-archive"
"--set CHARSET en_us.UTF-8" ];

patches = [
(fetchpatch {
url = "https://github.com/pimutils/todoman/commit/3e191111b72df9ec91a773befefa291799374422.patch";
sha256 = "12mskbp0d8p2lllkxm3m9wyy2hsbnz2qs297civsc3ly2l5bcrag";
})
];

preCheck = ''
# Remove one failing test that only checks whether the command line works
rm tests/test_main.py
6 changes: 3 additions & 3 deletions pkgs/applications/science/astronomy/gildas/default.nix
Original file line number Diff line number Diff line change
@@ -7,16 +7,16 @@ let
in

stdenv.mkDerivation rec {
srcVersion = "nov18a";
version = "20181101_a";
srcVersion = "dec18a";
version = "20181201_a";
name = "gildas-${version}";

src = fetchurl {
# For each new release, the upstream developers of Gildas move the
# source code of the previous release to a different directory
urls = [ "http://www.iram.fr/~gildas/dist/gildas-src-${srcVersion}.tar.gz"
"http://www.iram.fr/~gildas/dist/archive/gildas/gildas-src-${srcVersion}.tar.gz" ];
sha256 = "1dl2v8y6vrwaxm3b7nf6dv3ipzybhlhy2kxwnwgc7gqz5704251v";
sha256 = "f295b5b7f999c0d746a52b307af7b7bdbed0d9b3d87100a6a102e0cc64f3a9bd";
};

enableParallelBuilding = true;
4 changes: 2 additions & 2 deletions pkgs/development/ruby-modules/bundix/default.nix
Original file line number Diff line number Diff line change
@@ -6,13 +6,13 @@ buildRubyGem rec {

name = "${gemName}-${version}";
gemName = "bundix";
version = "2.4.0";
version = "2.4.1";

src = fetchFromGitHub {
owner = "manveru";
repo = "bundix";
rev = version;
sha256 = "1lq8nday6031mj7ivnk2wd47v2smz6frnb8xh2yhyhpld045v1rz";
sha256 = "175qmv7dj7v50v71b78dzn5pb4a35ml6p15asks9q1rrlkz0n4gn";
};

buildInputs = [ ruby bundler ];
8 changes: 4 additions & 4 deletions pkgs/development/tools/skaffold/default.nix
Original file line number Diff line number Diff line change
@@ -2,9 +2,9 @@

buildGoPackage rec {
name = "skaffold-${version}";
version = "0.18.0";
# rev is the 0.18.0 commit, mainly for skaffold version command output
rev = "34651689be78b2c6bcfbace5072b00b93661f895";
version = "0.19.0";
# rev is the 0.19.0 commit, mainly for skaffold version command output
rev = "9eb0dfc1bf634b97462c66b4dfb80e4cea378ade";

goPackagePath = "github.com/GoogleContainerTools/skaffold";
subPackages = ["cmd/skaffold"];
@@ -20,7 +20,7 @@ buildGoPackage rec {
owner = "GoogleContainerTools";
repo = "skaffold";
rev = "v${version}";
sha256 = "0an3g4jqch7a6ckh8yhia7lykpvb5lvz4kd5kqfmw9479kygv9sa";
sha256 = "0s7dyfdmgslwnmbkzyqvf2622gj5d7vx9igwz3bf6dpaz382mk6h";
};

meta = {
6 changes: 3 additions & 3 deletions pkgs/tools/X11/grobi/default.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{ stdenv, fetchFromGitHub, buildGoPackage }:

buildGoPackage rec {
version = "0.3.0";
version = "0.5.1";
name = "grobi-${version}";

goPackagePath = "github.com/fd0/grobi";

src = fetchFromGitHub {
rev = "78a0639ffad765933a5233a1c94d2626e24277b8";
rev = "5ddc167b9e4f84755a515828360abda15c54b7de";
owner = "fd0";
repo = "grobi";
sha256 = "16q7vnhb1p6ds561832sfdszvlafww67bjn3lc0d18v7lyak2l3i";
sha256 = "0iyxidq60pf6ki52f8fffplf10nl8w9jx1b7igg98csnc6iqxh89";
};

meta = with stdenv.lib; {