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

Commits on Apr 5, 2020

  1. gd: 2.2.5 -> 2.3.0

    r-ryantm authored and FRidh committed Apr 5, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    alyssais Alyssa Ross
    Copy the full SHA
    e895cac View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/libraries/gd/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/libraries/gd/default.nix
Original file line number Diff line number Diff line change
@@ -12,11 +12,11 @@

stdenv.mkDerivation rec {
pname = "gd";
version = "2.2.5";
version = "2.3.0";

src = fetchurl {
url = "https://github.com/libgd/libgd/releases/download/${pname}-${version}/libgd-${version}.tar.xz";
sha256 = "0lfy5f241sbv8s3splm2zqiaxv7lxrcshh875xryryk7yk5jqc4c";
sha256 = "0n5czhxzinvjvmhkf5l9fwjdx5ip69k5k7pj6zwb6zs1k9dibngc";
};

hardeningDisable = [ "format" ];
@@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
doCheck = false; # fails 2 tests

meta = with stdenv.lib; {
homepage = https://libgd.github.io/;
homepage = "https://libgd.github.io/";
description = "A dynamic image creation library";
license = licenses.free; # some custom license
platforms = platforms.unix;