Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
46 lines
890 B
Nix
46 lines
890 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
ocaml,
|
|
findlib,
|
|
camlp4,
|
|
config-file,
|
|
lablgtk,
|
|
xmlm,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ocaml-lablgtk-extras";
|
|
version = "1.4";
|
|
|
|
src = fetchurl {
|
|
url = "http://forge.ocamlcore.org/frs/download.php/1282/lablgtkextras-${version}.tar.gz";
|
|
sha256 = "09fqxwdib7r9yxynknc9gv3jw2hnhj5cak7q5jngk6m8rzvmhfcc";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
ocaml
|
|
findlib
|
|
camlp4
|
|
];
|
|
propagatedBuildInputs = [
|
|
config-file
|
|
lablgtk
|
|
xmlm
|
|
];
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
meta = {
|
|
platforms = ocaml.meta.platforms or [ ];
|
|
maintainers = with lib.maintainers; [ vbgl ];
|
|
homepage = "http://gtk-extras.forge.ocamlcore.org/";
|
|
description = "Collection of libraries and modules useful when developing OCaml/LablGtk2 applications";
|
|
license = lib.licenses.lgpl2Plus;
|
|
branch = "1.4";
|
|
};
|
|
}
|