Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ocamlPackages.camlimages: 5.0.0 -> 5.0.1 #51648

Merged
merged 1 commit into from Dec 7, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions pkgs/development/ocaml-modules/camlimages/default.nix
@@ -1,17 +1,17 @@
{ stdenv, fetchzip, buildDunePackage, configurator, cppo, lablgtk }:
{ lib, fetchzip, buildDunePackage, configurator, cppo, lablgtk }:

buildDunePackage rec {
pname = "camlimages";
version = "5.0.0";
version = "5.0.1";

src = fetchzip {
url = "https://bitbucket.org/camlspotter/${pname}/get/${version}.tar.gz";
sha256 = "00qvwxkfnhv93yi1iq7vy3p5lxyi9xigxcq464s4ii6bmp32d998";
sha256 = "1figrgzsdrrxzfza0bhz0225g1rwawdf5x2m9lw2kzrdb815khs5";
};

buildInputs = [ configurator cppo lablgtk ];

meta = with stdenv.lib; {
meta = with lib; {
branch = "5.0";
homepage = https://bitbucket.org/camlspotter/camlimages;
description = "OCaml image processing library";
Expand Down