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

Commits on Mar 19, 2019

  1. Copy the full SHA
    d0133e6 View commit details

Commits on Mar 22, 2019

  1. Merge pull request #57903 from dtzWill/update/strace-5

    strace: 4.26 -> 5.0
    7c6f434c authored Mar 22, 2019
    Copy the full SHA
    22b73cc 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 {
name = "strace-${version}";
version = "4.26";
version = "5.0";

src = fetchurl {
url = "https://strace.io/files/${version}/${name}.tar.xz";
sha256 = "070yz8xii8gnb4psiz628zwm5srh266sfb06f7f1qzagxzz2ykbw";
sha256 = "1nj7wvsdmhpp53yffj1pnrkjn96mxrbcraa6h03wc7dqn9zdfyiv";
};

depsBuildBuild = [ buildPackages.stdenv.cc ];