Skip to content
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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a8768c610efd
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4dc33d06b98a
Choose a head ref
  • 3 commits
  • 1 file changed
  • 3 contributors

Commits on May 7, 2018

  1. xmrig: 2.5.3 -> 2.6.1

    Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
    
    This update was made based on information from https://repology.org/metapackage/xmrig/versions.
    
    These checks were done:
    
    - built on NixOS
    - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
    - found 2.6.1 with grep in /nix/store/wsy4vdhmqcr0mydcgp77dncf2xq906kf-xmrig-2.6.1
    - directory tree listing: https://gist.github.com/ff33b30777a95f9fa0654b4da0ae47c2
    R. RyanTM committed May 7, 2018
    Copy the full SHA
    2f467dd View commit details

Commits on May 8, 2018

  1. xmrig: restrict to x86

    Mic92 committed May 8, 2018
    Copy the full SHA
    c2b4cfb View commit details
  2. Merge pull request #40056 from r-ryantm/auto-update/xmrig

    xmrig: 2.5.3 -> 2.6.1
    Mic92 authored May 8, 2018
    Copy the full SHA
    4dc33d0 View commit details
Showing with 3 additions and 2 deletions.
  1. +3 −2 pkgs/applications/misc/xmrig/default.nix
5 changes: 3 additions & 2 deletions pkgs/applications/misc/xmrig/default.nix
Original file line number Diff line number Diff line change
@@ -4,13 +4,13 @@

stdenv.mkDerivation rec {
name = "xmrig-${version}";
version = "2.5.3";
version = "2.6.1";

src = fetchFromGitHub {
owner = "xmrig";
repo = "xmrig";
rev = "v${version}";
sha256 = "1f9z9akgaf27r5hjrsjw0clk47p7igi0slbg7z6c3rvy5q9kq0wp";
sha256 = "05gd3jl8nvj2b73l4x72rfbbxrkw3r8q1h761ly4z35v4f3lahk8";
};

nativeBuildInputs = [ cmake ];
@@ -28,6 +28,7 @@ stdenv.mkDerivation rec {
description = "Monero (XMR) CPU miner";
homepage = "https://github.com/xmrig/xmrig";
license = licenses.gpl3Plus;
platforms = [ "x86_64-linux" "x86_64-darwin" ];
maintainers = with maintainers; [ fpletz ];
};
}