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

Commits on Nov 27, 2020

  1. libmtp: fix sha

    incorrectly added in c75b9da
    
    ```
    hash mismatch in fixed-output derivation '/nix/store/x8zj5b5kjb6r4m7zpkpv9bm1f39y8z3j-source':
      wanted: sha256:0lniy0xq397zddlhsv6n4qjn0wwakli5p3ydzxmbzn0z0jgngjja
      got:    sha256:0rya6dsb67a7ny2i1jzdicnday42qb8njqw6r902k712k5p7d1r9
    ```
    Jonathan Ringer committed Nov 27, 2020
    Copy the full SHA
    d4dd72e View commit details
  2. Merge pull request #105170 from jonringer/fix-libmtp

    libmtp: fix sha
    nh2 authored Nov 27, 2020
    Copy the full SHA
    5f59830 View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 pkgs/development/libraries/libmtp/default.nix
2 changes: 1 addition & 1 deletion pkgs/development/libraries/libmtp/default.nix
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
owner = "libmtp";
repo = "libmtp";
rev = "libmtp-${builtins.replaceStrings [ "." ] [ "-" ] version}";
sha256 = "0lniy0xq397zddlhsv6n4qjn0wwakli5p3ydzxmbzn0z0jgngjja";
sha256 = "0rya6dsb67a7ny2i1jzdicnday42qb8njqw6r902k712k5p7d1r9";
};

outputs = [ "bin" "dev" "out" ];