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

Commits on Jan 31, 2018

  1. Copy the full SHA
    293424b View commit details
  2. Merge pull request #34471 from dtzWill/update/gdb-8.1

    gdb: 8.0.1 -> 8.1
    LnL7 authored Jan 31, 2018
    Copy the full SHA
    f004802 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/tools/misc/gdb/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/tools/misc/gdb/default.nix
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@

let
basename = "gdb-${version}";
version = "8.0.1";
version = "8.1";
in

assert targetPlatform.isHurd -> mig != null && hurd != null;
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {

src = fetchurl {
url = "mirror://gnu/gdb/${basename}.tar.xz";
sha256 = "1qwmcbaxf0jc7yjl0fimgcfj2yqcrl6h7azgs1d838kbwf9mzg9x";
sha256 = "0d2bpqk58fqlx21rbnk8mbcjlggzc9kb5sjirrfrrrjq70ka0qdg";
};

patches = [ ./debug-info-from-env.patch ];