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

Commits on Mar 5, 2019

  1. cabextract: 1.9 -> 1.9.1

    pSub committed Mar 5, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2ec1b90 View commit details

Commits on Mar 6, 2019

  1. Merge pull request #56899 from NixOS/update-cabextract

    cabextract: 1.9 -> 1.9.1
    pSub authored Mar 6, 2019
    Copy the full SHA
    9498718 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/tools/archivers/cabextract/default.nix
4 changes: 2 additions & 2 deletions pkgs/tools/archivers/cabextract/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
name = "cabextract-1.9";
name = "cabextract-1.9.1";

src = fetchurl {
url = "https://www.cabextract.org.uk/${name}.tar.gz";
sha256 = "1hf4zhjxfdgq9x172r5zfdnafma9q0zf7372syn8hcn7hcypkg0v";
sha256 = "19qwhl2r8ip95q4vxzxg2kp4p125hjmc9762sns1dwwf7ikm7hmg";
};

meta = with stdenv.lib; {