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: 0e6ee9d2d814
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: 97f93789a9cc
Choose a head ref
  • 4 commits
  • 3 files changed
  • 4 contributors

Commits on Mar 28, 2018

  1. Verified

    This commit was signed with the committer’s verified signature.
    sxzz Kevin Deng 三咲智子
    Copy the full SHA
    690fcc9 View commit details

Commits on Mar 29, 2018

  1. Copy the full SHA
    4e645a2 View commit details
  2. mysql: remove broken link

    macOS will not have the .so link
    
    Fixes #36570
    matthewbauer authored Mar 29, 2018
    Copy the full SHA
    b539064 View commit details
  3. Merge pull request #38020 from ryantm/monit-reload

    nixos/monit: restart if config changes
    wmertens authored Mar 29, 2018
    Copy the full SHA
    97f9378 View commit details
Showing with 13 additions and 17 deletions.
  1. +6 −10 nixos/modules/services/monitoring/monit.nix
  2. +6 −6 pkgs/applications/editors/android-studio/default.nix
  3. +1 −1 pkgs/servers/sql/mysql/5.7.x.nix
16 changes: 6 additions & 10 deletions nixos/modules/services/monitoring/monit.nix
Original file line number Diff line number Diff line change
@@ -26,16 +26,10 @@ in

environment.systemPackages = [ pkgs.monit ];

environment.etc = [
{
source = pkgs.writeTextFile {
name = "monitrc";
text = config.services.monit.config;
};
target = "monitrc";
mode = "0400";
}
];
environment.etc."monitrc" = {
text = config.services.monit.config;
mode = "0400";
};

systemd.services.monit = {
description = "Pro-active monitoring utility for unix systems";
@@ -48,6 +42,8 @@ in
KillMode = "process";
Restart = "always";
};
restartTriggers = [ config.environment.etc."monitrc".source ];
};

};
}
12 changes: 6 additions & 6 deletions pkgs/applications/editors/android-studio/default.nix
Original file line number Diff line number Diff line change
@@ -21,9 +21,9 @@ in rec {
stable = mkStudio {
pname = "android-studio";
#pname = "android-studio-stable"; # TODO: Rename and provide symlink
version = "3.0.1.0"; # "Android Studio 3.0.1"
build = "171.4443003";
sha256Hash = "1krahlqr70nq3csqiinq2m4fgs68j11hd9gg2dx2nrpw5zni0wdd";
version = "3.1.0.16"; # "Android Studio 3.1"
build = "173.4670197";
sha256Hash = "1i0ldyadrcyy5pl9vjpm2k755mf08xi9x5qz8655qsbiajzqf9fy";

meta = with stdenv.lib; {
description = "The Official IDE for Android (stable channel)";
@@ -41,9 +41,9 @@ in rec {
beta = mkStudio {
pname = "android-studio-preview";
#pname = "android-studio-beta"; # TODO: Rename and provide symlink
version = "3.1.0.15"; # "Android Studio 3.1 RC 3"
build = "173.4658569";
sha256Hash = "0jvq7k5vhrli41bj2imnsp3z70c7yws3fvs8m873qrjvfgmi5qrq";
version = "3.1.0.16"; # "Android Studio 3.1"
build = "173.4670197";
sha256Hash = "1i0ldyadrcyy5pl9vjpm2k755mf08xi9x5qz8655qsbiajzqf9fy";

meta = stable.meta // {
description = "The Official IDE for Android (beta channel)";
2 changes: 1 addition & 1 deletion pkgs/servers/sql/mysql/5.7.x.nix
Original file line number Diff line number Diff line change
@@ -60,7 +60,7 @@ self = stdenv.mkDerivation rec {
install -vD $out/lib/*.a -t $static/lib
rm -r $out/mysql-test
rm $out/share/man/man1/mysql-test-run.pl.1 $out/lib/*.a
ln -s libmysqlclient.so $out/lib/libmysqlclient_r.so
ln -s libmysqlclient${stdenv.hostPlatform.extensions.sharedLibrary} $out/lib/libmysqlclient_r${stdenv.hostPlatform.extensions.sharedLibrary}
'';

passthru = {