ocamlPackages.lablgtk3: 3.1.3 → 3.1.4

This commit is contained in:
Vincent Laporte 2024-01-31 06:46:53 +01:00
parent 632751bf0c
commit 5196cfabda
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F

View File

@ -1,19 +1,17 @@
{ lib, fetchFromGitHub, pkg-config, buildDunePackage, dune-configurator
{ lib, fetchurl, pkg-config, buildDunePackage, dune-configurator
, gtk3, cairo2
, camlp-streams
}:
buildDunePackage rec {
version = "3.1.3";
version = "3.1.4";
pname = "lablgtk3";
minimalOCamlVersion = "4.05";
src = fetchFromGitHub {
owner = "garrigue";
repo = "lablgtk";
rev = version;
sha256 = "sha256-1kXJP+tKudP3qfosTgZAQueNK46H9aLevEj6wxPKDWY=";
src = fetchurl {
url = "https://github.com/garrigue/lablgtk/releases/download/${version}/lablgtk3-${version}.tbz";
hash = "sha256-bxEVMzfnaH5yHVxAmifNYOy8GnSivLLgSE/9+1yxBI4=";
};
nativeBuildInputs = [ pkg-config ];