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

Commits on Mar 8, 2018

  1. gmic: 1.7.9 -> 2.2.0

    Semi-automatic update. These checks were done:
    
    - built on NixOS
    - ran `/nix/store/akcdj31wk383lglx9afg3vyyilvfmbnb-gmic-2.2.0/bin/gmic --version` and found version 2.2.0
    - ran `/nix/store/akcdj31wk383lglx9afg3vyyilvfmbnb-gmic-2.2.0/bin/gmic version` and found version 2.2.0
    - found 2.2.0 in filename of file in /nix/store/akcdj31wk383lglx9afg3vyyilvfmbnb-gmic-2.2.0
    ryantm committed Mar 8, 2018
    Copy the full SHA
    6eeb06f View commit details

Commits on Mar 23, 2018

  1. Merge pull request #36550 from ryantm/auto-update/gmic

    gmic: 1.7.9 -> 2.2.0
    matthewbauer authored Mar 23, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    12d79ca View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/tools/graphics/gmic/default.nix
4 changes: 2 additions & 2 deletions pkgs/tools/graphics/gmic/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
name = "gmic-${version}";
version = "1.7.9";
version = "2.2.0";

src = fetchurl {
url = "http://gmic.eu/files/source/gmic_${version}.tar.gz";
sha256 = "0cvi5kmcrrg5pm774ligyy33fasgsfp3mr6ingjzd99rn4710bqm";
sha256 = "0yvb9iwwmjxvck2in3ymqszaddz502v2ryk50qs0wskhbhdh96c7";
};

nativeBuildInputs = [ pkgconfig ];