Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

ocamlPackages.cairo2: 0.6.1 -> 0.6.2

authored by

superherointj and committed by
Vincent Laporte
ea8ebdb0 f210479f

+9 -10
+9 -10
pkgs/development/ocaml-modules/cairo2/default.nix
··· 1 - { stdenv, lib, fetchurl, buildDunePackage, ocaml, dune-configurator 2 - , pkg-config, cairo 3 - }: 1 + { stdenv, lib, fetchurl, buildDunePackage, ocaml, dune-configurator, pkg-config, cairo }: 4 2 5 3 buildDunePackage rec { 6 4 pname = "cairo2"; 7 - version = "0.6.1"; 8 - 9 - useDune2 = true; 5 + version = "0.6.2"; 10 6 11 7 src = fetchurl { 12 8 url = "https://github.com/Chris00/ocaml-cairo/releases/download/${version}/cairo2-${version}.tbz"; 13 - sha256 = "1ik4qf4b9443sliq2z7x9acd40rmzvyzjh3bh98wvjklxbb84a9i"; 9 + sha256 = "sha256-a7P1kiVmIwT6Fhtwxs29ffgO4iexsulxUoc9cnJmEK4="; 14 10 }; 15 11 12 + minimalOCamlVersion = "4.02"; 13 + useDune2 = true; 14 + 16 15 nativeBuildInputs = [ pkg-config ]; 17 16 buildInputs = [ cairo dune-configurator ]; 18 17 ··· 20 19 # https://github.com/Chris00/ocaml-cairo/issues/19 21 20 || lib.versionAtLeast ocaml.version "4.10"); 22 21 23 - meta = { 22 + meta = with lib; { 24 23 homepage = "https://github.com/Chris00/ocaml-cairo"; 25 24 description = "Binding to Cairo, a 2D Vector Graphics Library"; 26 25 longDescription = '' ··· 29 28 the X Window System, Quartz, Win32, image buffers, PostScript, PDF, 30 29 and SVG file output. 31 30 ''; 32 - license = lib.licenses.lgpl3; 33 - maintainers = with lib.maintainers; [ jirkamarsik vbgl ]; 31 + license = licenses.lgpl3; 32 + maintainers = with maintainers; [ jirkamarsik vbgl ]; 34 33 }; 35 34 }