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: b0fa740b89c1
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 81b6dd7b0902
Choose a head ref
  • 4 commits
  • 4 files changed
  • 1 contributor

Commits on Mar 2, 2019

  1. xmr-stak: 2.8.2 -> 2.8.3

    fpletz committed Mar 2, 2019
    Copy the full SHA
    df77847 View commit details
  2. Copy the full SHA
    86199e0 View commit details
  3. xmrig: 2.11.0 -> 2.13.1

    fpletz committed Mar 2, 2019
    Copy the full SHA
    63bd0d5 View commit details
  4. smcroute: 2.4.3 -> 2.4.4

    fpletz committed Mar 2, 2019
    Copy the full SHA
    81b6dd7 View commit details
4 changes: 2 additions & 2 deletions pkgs/applications/misc/xmr-stak/default.nix
Original file line number Diff line number Diff line change
@@ -12,13 +12,13 @@ in

stdenv'.mkDerivation rec {
name = "xmr-stak-${version}";
version = "2.8.2";
version = "2.8.3";

src = fetchFromGitHub {
owner = "fireice-uk";
repo = "xmr-stak";
rev = "${version}";
sha256 = "0z0fdh5fmiisx5dgfyyin3ddl8g28fpd64gn8nl8dd6sf3iw8z7p";
sha256 = "1yanyaz6gh5wbccj9mfd39pyrg69gb4jn6sjvx1k63pkjrwr2ap3";
};

NIX_CFLAGS_COMPILE = "-O3";
4 changes: 2 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.11.0";
version = "2.13.1";

src = fetchFromGitHub {
owner = "xmrig";
repo = "xmrig";
rev = "v${version}";
sha256 = "0k897lx60gjf464j2ndindxhr6x3l90fv81bcqyglsv47danivlc";
sha256 = "1s6hz9r0079r9sd1wgd1nm6wn1dmix4smz7174g9a29z2zcqr160";
};

nativeBuildInputs = [ cmake ];
4 changes: 2 additions & 2 deletions pkgs/servers/smcroute/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
name = "smcroute-${version}";
version = "2.4.3";
version = "2.4.4";

src = fetchFromGitHub {
owner = "troglobit";
repo = "smcroute";
rev = version;
sha256 = "1bdz3dic12lwl3rfczd9bxpgjbpw2g7yap2zddz6dvgkqvyjjf1h";
sha256 = "0mjq9cx093b0825rqbcq3z0lzy81pd8h0fz6rda6npg3604rxj81";
};

nativeBuildInputs = [ autoreconfHook pkgconfig ];
4 changes: 2 additions & 2 deletions pkgs/tools/misc/youtube-dl/default.nix
Original file line number Diff line number Diff line change
@@ -19,11 +19,11 @@ buildPythonPackage rec {
# The websites youtube-dl deals with are a very moving target. That means that
# downloads break constantly. Because of that, updates should always be backported
# to the latest stable release.
version = "2019.02.18";
version = "2019.03.01";

src = fetchurl {
url = "https://yt-dl.org/downloads/${version}/${pname}-${version}.tar.gz";
sha256 = "1sr0f6ixpaqyp3cf29zswx84y3nfabwnk3sljcgvgnmjp73zzfv1";
sha256 = "0bxk6adyppdv50jnp5cika8wc6wfgd6d8zbg1njgmcs1pxskllmf";
};

nativeBuildInputs = [ makeWrapper ];