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

Commits on Jun 5, 2019

  1. libmatroska: 1.5.0 -> 1.5.2

    Fixes the build, broken by #62459
    (libmatroska 1.5.0 expects libebml 1.3.7)
    ivan committed Jun 5, 2019
    Copy the full SHA
    3c54135 View commit details
  2. Merge pull request #62731 from ivan/libmatroska-1.5.2

    libmatroska: 1.5.0 -> 1.5.2
    globin authored Jun 5, 2019
    Copy the full SHA
    e9369ef View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/libmatroska/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/libmatroska/default.nix
Original file line number Diff line number Diff line change
@@ -3,13 +3,13 @@

stdenv.mkDerivation rec {
pname = "libmatroska";
version = "1.5.0";
version = "1.5.2";

src = fetchFromGitHub {
owner = "Matroska-Org";
repo = "libmatroska";
rev = "release-${version}";
sha256 = "01kp48ih9pqkm518ylbxicjmknqvb3njb71il2h2wa37whsaals8";
sha256 = "057iib6p62x31g1ikdjsjzmqzjlajqx6p74h7y4r524pzgb27fzy";
};

nativeBuildInputs = [ cmake pkgconfig ];