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

Commits on Mar 27, 2019

  1. oxipng: 2.2.0 -> 2.2.1

    dtzWill committed Mar 27, 2019
    Copy the full SHA
    40f9083 View commit details

Commits on Mar 28, 2019

  1. Merge pull request #58440 from dtzWill/update/oxipng-2.2.1

    oxipng: 2.2.0 -> 2.2.1
    dywedir authored Mar 28, 2019
    Copy the full SHA
    2dfb251 View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/tools/graphics/oxipng/default.nix
10 changes: 5 additions & 5 deletions pkgs/tools/graphics/oxipng/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{ stdenv, fetchFromGitHub, rustPlatform }:

rustPlatform.buildRustPackage rec {
version = "2.2.0";
name = "oxipng-${version}";
version = "2.2.1";
pname = "oxipng";

src = fetchFromGitHub {
owner = "shssoichiro";
repo = "oxipng";
repo = pname;
rev = "v${version}";
sha256 = "00ys1dy8r1g84j04w50qcjas0qnfw4vphazvbfasd9q2b1p5z69l";
sha256 = "1r195x3wdkshjwy23fpqsyyrw7iaj7yb39nhcnx9d4nhgq8w0pcl";
};

cargoSha256 = "125r3jmgwcq8qddm8hjpyzaam96kkifaxixksyaw2iqk9xq0nrpm";
cargoSha256 = "08mw937s61r4fj9bqrg492ss13zkik9557n9yk90r97a81972zbn";

# https://crates.io/crates/cloudflare-zlib#arm-vs-nightly-rust
cargoBuildFlags = [ "--features=cloudflare-zlib/arm-always" ];