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

Commits on Jan 6, 2020

  1. libdeflate: 1.3 -> 1.5

    r-ryantm committed Jan 6, 2020
    Copy the full SHA
    634d640 View commit details

Commits on Jan 11, 2020

  1. libdeflate: enable on darwin

    marsam committed Jan 11, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    marsam Mario Rodas
    Copy the full SHA
    2170b1e View commit details

Commits on Jan 12, 2020

  1. Merge pull request #77128 from r-ryantm/auto-update/libdeflate

    libdeflate: 1.3 -> 1.5
    markuskowa authored Jan 12, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    a23a985 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/libraries/libdeflate/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/libraries/libdeflate/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
pname = "libdeflate";
version = "1.3";
version = "1.5";

src = fetchFromGitHub {
owner = "ebiggers";
repo = "libdeflate";
rev = "v${version}";
sha256 = "019xsz5dnbpxiz29j3zqsxyi4ksjkkygi6a2zyc8fxbm8lvaa9ar";
sha256 = "1v0y7998p8a8wpblnpdyk5zzvpj8pbrpzxwxmv0b0axrhaarxrf3";
};

postPatch = ''
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
description = "Fast DEFLATE/zlib/gzip compressor and decompressor";
license = licenses.mit;
homepage = https://github.com/ebiggers/libdeflate;
platforms = platforms.linux;
platforms = platforms.unix;
maintainers = with maintainers; [ orivej ];
};
}