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

Commits on Oct 3, 2019

  1. strace: 5.2 -> 5.3

    globin committed Oct 3, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    joshka Josh McKinney
    Copy the full SHA
    ffb7d6a View commit details
  2. Merge pull request #70346 from mayflower/strace-5.3

    strace: 5.2 -> 5.3
    globin authored Oct 3, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    e1f95ed View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/tools/misc/strace/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/tools/misc/strace/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
pname = "strace";
version = "5.2";
version = "5.3";

src = fetchurl {
url = "https://strace.io/files/${version}/${pname}-${version}.tar.xz";
sha256 = "1li49i75wrdw91hchyyd8spnzfcmxcfyfb5g9zbaza89aq4bq4ym";
sha256 = "0ix06z4vnc49mv76f22kixz8dsh7daqv9mpgwcgl0mlnfjc124vc";
};

depsBuildBuild = [ buildPackages.stdenv.cc ];