mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
ocamlPackages.camlimages: 5.0.1 → 5.0.3
This commit is contained in:
parent
1d3b373443
commit
0385e6094f
@ -1,21 +1,27 @@
|
||||
{ lib, fetchzip, buildDunePackage, configurator, cppo, lablgtk }:
|
||||
{ lib, fetchFromGitLab, buildDunePackage, dune-configurator, cppo, lablgtk, stdio }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "camlimages";
|
||||
version = "5.0.1";
|
||||
version = "5.0.3";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://bitbucket.org/camlspotter/${pname}/get/${version}.tar.gz";
|
||||
sha256 = "1figrgzsdrrxzfza0bhz0225g1rwawdf5x2m9lw2kzrdb815khs5";
|
||||
useDune2 = true;
|
||||
|
||||
minimumOCamlVersion = "4.07";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "camlspotter";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1ng9pkvrzlibfyf97iqvmbsqcykz8v1ln106xhq9nigih5i68zyd";
|
||||
};
|
||||
|
||||
buildInputs = [ configurator cppo lablgtk ];
|
||||
buildInputs = [ dune-configurator cppo lablgtk stdio ];
|
||||
|
||||
meta = with lib; {
|
||||
branch = "5.0";
|
||||
homepage = "https://bitbucket.org/camlspotter/camlimages";
|
||||
inherit (src.meta) homepage;
|
||||
description = "OCaml image processing library";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.lgpl2;
|
||||
maintainers = [ maintainers.vbgl maintainers.mt-caret ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user