Merge pull request #13897 from nbp/fix-ocaml-pkgs-platform

Ensure that we can evaluate the platform attribute of ocaml packages.

+130 -130
+1 -1
pkgs/applications/science/logic/acgtk/default.nix
··· 50 50 homepage = "http://www.loria.fr/equipes/calligramme/acg"; 51 51 description = "A toolkit for developing ACG signatures and lexicon"; 52 52 license = licenses.cecill20; 53 - platforms = ocaml.meta.platforms; 53 + platforms = ocaml.meta.platforms or []; 54 54 maintainers = [ maintainers.jirkamarsik ]; 55 55 }; 56 56 }
+1 -1
pkgs/build-support/ocaml/default.nix
··· 11 11 let 12 12 ocaml_version = (builtins.parseDrvName ocaml.name).version; 13 13 defaultMeta = { 14 - platforms = ocaml.meta.platforms; 14 + platforms = ocaml.meta.platforms or []; 15 15 }; 16 16 in 17 17 assert minimumSupportedOcamlVersion != null ->
+1 -1
pkgs/development/compilers/mezzo/default.nix
··· 36 36 homepage = http://protz.github.io/mezzo/; 37 37 description = "A programming language in the ML tradition, which places strong emphasis on the control of aliasing and access to mutable memory"; 38 38 license = licenses.gpl2; 39 - platforms = ocaml.meta.platforms; 39 + platforms = ocaml.meta.platforms or []; 40 40 }; 41 41 } 42 42
+1 -1
pkgs/development/interpreters/eff/default.nix
··· 29 29 backtracking, multi-threading, and much more... 30 30 ''; 31 31 license = licenses.bsd2; 32 - platforms = ocaml.meta.platforms; 32 + platforms = ocaml.meta.platforms or []; 33 33 maintainers = [ maintainers.jirkamarsik ]; 34 34 }; 35 35 }
+1 -1
pkgs/development/ocaml-modules/ansiterminal/default.nix
··· 28 28 this part is currently work in progress). 29 29 ''; 30 30 license = licenses.lgpl3; 31 - platforms = ocaml.meta.platforms; 31 + platforms = ocaml.meta.platforms or []; 32 32 maintainers = [ maintainers.jirkamarsik ]; 33 33 }; 34 34 }
+1 -1
pkgs/development/ocaml-modules/asn1-combinators/default.nix
··· 24 24 meta = { 25 25 homepage = https://github.com/mirleft/ocaml-asn1-combinators; 26 26 description = "Combinators for expressing ASN.1 grammars in OCaml"; 27 - platforms = ocaml.meta.platforms; 27 + platforms = ocaml.meta.platforms or []; 28 28 license = stdenv.lib.licenses.bsd2; 29 29 maintainers = with stdenv.lib.maintainers; [ vbgl ]; 30 30 broken = stdenv.isi686; # https://github.com/mirleft/ocaml-asn1-combinators/issues/13
+1 -1
pkgs/development/ocaml-modules/base64/default.nix
··· 16 16 17 17 meta = { 18 18 homepage = https://github.com/mirage/ocaml-base64; 19 - platforms = ocaml.meta.platforms; 19 + platforms = ocaml.meta.platforms or []; 20 20 description = "Base64 encoding and decoding in OCaml"; 21 21 license = stdenv.lib.licenses.isc; 22 22 maintainers = with stdenv.lib.maintainers; [ vbgl ];
+1 -1
pkgs/development/ocaml-modules/batteries/default.nix
··· 28 28 language. 29 29 ''; 30 30 license = stdenv.lib.licenses.lgpl21Plus; 31 - platforms = ocaml.meta.platforms; 31 + platforms = ocaml.meta.platforms or []; 32 32 maintainers = [ 33 33 stdenv.lib.maintainers.z77z 34 34 ];
+1 -1
pkgs/development/ocaml-modules/biniou/default.nix
··· 31 31 homepage = "${webpage}"; 32 32 license = licenses.bsd3; 33 33 maintainers = [ maintainers.vbgl ]; 34 - platforms = ocaml.meta.platforms; 34 + platforms = ocaml.meta.platforms or []; 35 35 }; 36 36 }
+1 -1
pkgs/development/ocaml-modules/bolt/default.nix
··· 48 48 modeled after the famous log4j logging framework for Java. 49 49 ''; 50 50 license = licenses.lgpl3; 51 - platforms = ocaml.meta.platforms; 51 + platforms = ocaml.meta.platforms or []; 52 52 maintainers = [ maintainers.jirkamarsik ]; 53 53 }; 54 54 }
+1 -1
pkgs/development/ocaml-modules/calendar/default.nix
··· 15 15 homepage = https://forge.ocamlcore.org/projects/calendar/; 16 16 description = "An Objective Caml library managing dates and times"; 17 17 license = "LGPL"; 18 - platforms = ocaml.meta.platforms; 18 + platforms = ocaml.meta.platforms or []; 19 19 maintainers = [ 20 20 stdenv.lib.maintainers.gal_bolle 21 21 ];
+1 -1
pkgs/development/ocaml-modules/camlzip/default.nix
··· 40 40 for reading from and writing to compressed files in these formats. 41 41 ''; 42 42 license = "LGPL+linking exceptions"; 43 - platforms = ocaml.meta.platforms; 43 + platforms = ocaml.meta.platforms or []; 44 44 maintainers = [ 45 45 stdenv.lib.maintainers.z77z 46 46 ];
+1 -1
pkgs/development/ocaml-modules/camomile/0.8.2.nix
··· 22 22 description = "A comprehensive Unicode library for OCaml"; 23 23 license = stdenv.lib.licenses.lgpl21; 24 24 branch = "0.8.2"; 25 - platforms = ocaml.meta.platforms; 25 + platforms = ocaml.meta.platforms or []; 26 26 maintainers = [ 27 27 stdenv.lib.maintainers.z77z 28 28 ];
+1 -1
pkgs/development/ocaml-modules/camomile/default.nix
··· 20 20 homepage = https://github.com/yoriyuki/Camomile/tree/master/Camomile; 21 21 description = "A comprehensive Unicode library for OCaml"; 22 22 license = stdenv.lib.licenses.lgpl21; 23 - platforms = ocaml.meta.platforms; 23 + platforms = ocaml.meta.platforms or []; 24 24 maintainers = [ 25 25 stdenv.lib.maintainers.z77z 26 26 ];
+1 -1
pkgs/development/ocaml-modules/cil/default.nix
··· 20 20 description = "A front-end for the C programming language that facilitates program analysis and transformation"; 21 21 license = licenses.bsd3; 22 22 maintainers = [ maintainers.vbgl ]; 23 - platforms = ocaml.meta.platforms; 23 + platforms = ocaml.meta.platforms or []; 24 24 }; 25 25 }
+1 -1
pkgs/development/ocaml-modules/cmdliner/default.nix
··· 35 35 description = "An OCaml module for the declarative definition of command line interfaces"; 36 36 license = licenses.bsd3; 37 37 maintainers = [ maintainers.vbgl ]; 38 - platforms = ocaml.meta.platforms; 38 + platforms = ocaml.meta.platforms or []; 39 39 }; 40 40 }
+1 -1
pkgs/development/ocaml-modules/config-file/default.nix
··· 14 14 15 15 meta = { 16 16 homepage = http://config-file.forge.ocamlcore.org/; 17 - platforms = ocaml.meta.platforms; 17 + platforms = ocaml.meta.platforms or []; 18 18 description = "An OCaml library used to manage the configuration file(s) of an application"; 19 19 license = stdenv.lib.licenses.lgpl2Plus; 20 20 maintainers = with stdenv.lib.maintainers; [ vbgl ];
+1 -1
pkgs/development/ocaml-modules/containers/default.nix
··· 42 42 helpers for unix and threads. 43 43 ''; 44 44 license = stdenv.lib.licenses.bsd2; 45 - platforms = ocaml.meta.platforms; 45 + platforms = ocaml.meta.platforms or []; 46 46 }; 47 47 }
+1 -1
pkgs/development/ocaml-modules/cpdf/default.nix
··· 28 28 29 29 meta = { 30 30 homepage = http://www.coherentpdf.com/; 31 - platforms = ocaml.meta.platforms; 31 + platforms = ocaml.meta.platforms or []; 32 32 description = "PDF Command Line Tools"; 33 33 maintainers = with stdenv.lib.maintainers; [ vbgl ]; 34 34 };
+1 -1
pkgs/development/ocaml-modules/cryptgps/default.nix
··· 29 29 itself. 30 30 ''; 31 31 license = stdenv.lib.licenses.mit; 32 - platforms = ocaml.meta.platforms; 32 + platforms = ocaml.meta.platforms or []; 33 33 maintainers = [ 34 34 stdenv.lib.maintainers.z77z 35 35 ];
+1 -1
pkgs/development/ocaml-modules/cryptokit/default.nix
··· 23 23 meta = { 24 24 homepage = "http://pauillac.inria.fr/~xleroy/software.html"; 25 25 description = "A library of cryptographic primitives for OCaml"; 26 - platforms = ocaml.meta.platforms; 26 + platforms = ocaml.meta.platforms or []; 27 27 maintainers = [ 28 28 stdenv.lib.maintainers.z77z 29 29 ];
+1 -1
pkgs/development/ocaml-modules/cstruct/default.nix
··· 24 24 description = "Map OCaml arrays onto C-like structs"; 25 25 license = stdenv.lib.licenses.isc; 26 26 maintainers = [ maintainers.vbgl maintainers.ericbmerritt ]; 27 - platforms = ocaml.meta.platforms; 27 + platforms = ocaml.meta.platforms or []; 28 28 }; 29 29 }
+1 -1
pkgs/development/ocaml-modules/csv/default.nix
··· 27 27 homepage = https://github.com/Chris00/ocaml-csv; 28 28 license = licenses.lgpl21; 29 29 maintainers = [ maintainers.vbgl ]; 30 - platforms = ocaml.meta.platforms; 30 + platforms = ocaml.meta.platforms or []; 31 31 }; 32 32 }
+1 -1
pkgs/development/ocaml-modules/dolog/default.nix
··· 19 19 meta = { 20 20 homepage = https://github.com/UnixJunkie/dolog; 21 21 description = "Minimalistic lazy logger in OCaml"; 22 - platforms = ocaml.meta.platforms; 22 + platforms = ocaml.meta.platforms or []; 23 23 license = stdenv.lib.licenses.bsd3; 24 24 maintainers = with stdenv.lib.maintainers; [ vbgl ]; 25 25 };
+1 -1
pkgs/development/ocaml-modules/dypgen/default.nix
··· 28 28 homepage = http://dypgen.free.fr; 29 29 description = "Dypgen GLR self extensible parser generator"; 30 30 license = stdenv.lib.licenses.cecill-b; 31 - platforms = ocaml.meta.platforms; 31 + platforms = ocaml.meta.platforms or []; 32 32 }; 33 33 }
+1 -1
pkgs/development/ocaml-modules/eliom/default.nix
··· 51 51 52 52 license = stdenv.lib.licenses.lgpl21; 53 53 54 - platforms = ocaml.meta.platforms; 54 + platforms = ocaml.meta.platforms or []; 55 55 56 56 maintainers = [ stdenv.lib.maintainers.gal_bolle ]; 57 57 };
+1 -1
pkgs/development/ocaml-modules/enumerate/default.nix
··· 19 19 homepage = https://ocaml.janestreet.com/; 20 20 description = "Quotation expanders for enumerating finite types"; 21 21 license = stdenv.lib.licenses.asl20; 22 - platforms = ocaml.meta.platforms; 22 + platforms = ocaml.meta.platforms or []; 23 23 }; 24 24 }
+1 -1
pkgs/development/ocaml-modules/erm_xml/default.nix
··· 17 17 meta = { 18 18 homepage = https://github.com/ermine/xml; 19 19 description = "XML Parser for discrete data"; 20 - platforms = ocaml.meta.platforms; 20 + platforms = ocaml.meta.platforms or []; 21 21 license = stdenv.lib.licenses.bsd3; 22 22 maintainers = with stdenv.lib.maintainers; [ vbgl ]; 23 23 };
+1 -1
pkgs/development/ocaml-modules/erm_xmpp/default.nix
··· 26 26 meta = { 27 27 homepage = https://github.com/ermine/xmpp; 28 28 description = "OCaml based XMPP implementation"; 29 - platforms = ocaml.meta.platforms; 29 + platforms = ocaml.meta.platforms or []; 30 30 license = stdenv.lib.licenses.bsd3; 31 31 maintainers = with stdenv.lib.maintainers; [ vbgl ]; 32 32 };
+1 -1
pkgs/development/ocaml-modules/extlib/default.nix
··· 23 23 homepage = http://code.google.com/p/ocaml-extlib/; 24 24 description = "Enhancements to the OCaml Standard Library modules"; 25 25 license = stdenv.lib.licenses.lgpl21; 26 - platforms = ocaml.meta.platforms; 26 + platforms = ocaml.meta.platforms or []; 27 27 }; 28 28 }
+1 -1
pkgs/development/ocaml-modules/ezjsonm/default.nix
··· 21 21 homepage = https://github.com/mirage/ezjsonm; 22 22 license = stdenv.lib.licenses.isc; 23 23 maintainers = with stdenv.lib.maintainers; [ vbgl ]; 24 - platforms = ocaml.meta.platforms; 24 + platforms = ocaml.meta.platforms or []; 25 25 }; 26 26 }
+1 -1
pkgs/development/ocaml-modules/fieldslib/default.nix
··· 20 20 description = "OCaml syntax extension to define first class values representing record fields, to get and set record fields, iterate and fold over all fields of a record and create new record values"; 21 21 license = licenses.asl20; 22 22 maintainers = [ maintainers.vbgl ]; 23 - platforms = ocaml.meta.platforms; 23 + platforms = ocaml.meta.platforms or []; 24 24 }; 25 25 }
+1 -1
pkgs/development/ocaml-modules/fileutils/default.nix
··· 20 20 21 21 meta = { 22 22 homepage = https://forge.ocamlcore.org/projects/ocaml-fileutils/; 23 - platforms = ocaml.meta.platforms; 23 + platforms = ocaml.meta.platforms or []; 24 24 description = "Library to provide pure OCaml functions to manipulate real file (POSIX like) and filename"; 25 25 license = stdenv.lib.licenses.lgpl21Plus; 26 26 maintainers = with stdenv.lib.maintainers; [ vbgl ];
+1 -1
pkgs/development/ocaml-modules/fix/default.nix
··· 20 20 description = "A simple OCaml module for computing the least solution of a system of monotone equations"; 21 21 license = licenses.cecill-c; 22 22 maintainers = [ maintainers.vbgl ]; 23 - platforms = ocaml.meta.platforms; 23 + platforms = ocaml.meta.platforms or []; 24 24 }; 25 25 }
+1 -1
pkgs/development/ocaml-modules/fontconfig/default.nix
··· 15 15 meta = { 16 16 description = "Fontconfig bindings for OCaml"; 17 17 license = stdenv.lib.licenses.gpl2Plus; 18 - platforms = ocaml.meta.platforms; 18 + platforms = ocaml.meta.platforms or []; 19 19 maintainers = with stdenv.lib.maintainers; [ vbgl ]; 20 20 }; 21 21 }
+1 -1
pkgs/development/ocaml-modules/functory/default.nix
··· 22 22 description = "A distributed computing library for Objective Caml which facilitates distributed execution of parallelizable computations in a seamless fashion"; 23 23 license = licenses.lgpl21; 24 24 maintainers = [ maintainers.vbgl ]; 25 - platforms = ocaml.meta.platforms; 25 + platforms = ocaml.meta.platforms or []; 26 26 }; 27 27 }
+1 -1
pkgs/development/ocaml-modules/gapi-ocaml/default.nix
··· 19 19 homepage = http://gapi-ocaml.forge.ocamlcore.org; 20 20 license = stdenv.lib.licenses.mit; 21 21 maintainers = with stdenv.lib.maintainers; [ bennofs ]; 22 - platforms = ocaml.meta.platforms; 22 + platforms = ocaml.meta.platforms or []; 23 23 }; 24 24 }
+1 -1
pkgs/development/ocaml-modules/gen/default.nix
··· 20 20 homepage = https://github.com/c-cube/gen; 21 21 description = "Simple, efficient iterators for OCaml"; 22 22 license = stdenv.lib.licenses.bsd3; 23 - platforms = ocaml.meta.platforms; 23 + platforms = ocaml.meta.platforms or []; 24 24 }; 25 25 }
+1 -1
pkgs/development/ocaml-modules/gg/default.nix
··· 41 41 raster data. 42 42 ''; 43 43 homepage = "${webpage}"; 44 - platforms = ocaml.meta.platforms; 44 + platforms = ocaml.meta.platforms or []; 45 45 license = licenses.bsd3; 46 46 maintainers = [ maintainers.jirkamarsik ]; 47 47 };
+1 -1
pkgs/development/ocaml-modules/gtktop/default.nix
··· 20 20 description = "A small OCaml library to ease the creation of graphical toplevels"; 21 21 license = stdenv.lib.licenses.lgpl3; 22 22 maintainers = with stdenv.lib.maintainers; [ vbgl ]; 23 - platforms = ocaml.meta.platforms; 23 + platforms = ocaml.meta.platforms or []; 24 24 }; 25 25 }
+1 -1
pkgs/development/ocaml-modules/hex/default.nix
··· 22 22 homepage = https://github.com/mirage/ocaml-hex; 23 23 license = stdenv.lib.licenses.isc; 24 24 maintainers = with stdenv.lib.maintainers; [ vbgl ]; 25 - platforms = ocaml.meta.platforms; 25 + platforms = ocaml.meta.platforms or []; 26 26 }; 27 27 }
+1 -1
pkgs/development/ocaml-modules/http/default.nix
··· 27 27 28 28 meta = with stdenv.lib; { 29 29 homepage = http://ocaml-http.forge.ocamlcore.org/; 30 - platforms = ocaml.meta.platforms; 30 + platforms = ocaml.meta.platforms or []; 31 31 description = "do it yourself (OCaml) HTTP daemon"; 32 32 license = licenses.lgpl2; 33 33 maintainers = with maintainers; [ roconnor vbgl ];
+1 -1
pkgs/development/ocaml-modules/io-page/default.nix
··· 17 17 18 18 meta = { 19 19 homepage = https://github.com/mirage/io-page; 20 - platforms = ocaml.meta.platforms; 20 + platforms = ocaml.meta.platforms or []; 21 21 description = "IO memory page library for Mirage backends"; 22 22 maintainers = with stdenv.lib.maintainers; [ vbgl ]; 23 23 };
+1 -1
pkgs/development/ocaml-modules/iso8601/default.nix
··· 16 16 homepage = http://sagotch.github.io/ISO8601.ml/; 17 17 description = "ISO 8601 and RFC 3999 date parsing for OCaml"; 18 18 license = stdenv.lib.licenses.mit; 19 - platforms = ocaml.meta.platforms; 19 + platforms = ocaml.meta.platforms or []; 20 20 maintainers = with stdenv.lib.maintainers; [ vbgl ]; 21 21 }; 22 22 }
+1 -1
pkgs/development/ocaml-modules/javalib/default.nix
··· 38 38 homepage = "${webpage}"; 39 39 license = licenses.lgpl3; 40 40 maintainers = [ maintainers.vbgl ]; 41 - platforms = ocaml.meta.platforms; 41 + platforms = ocaml.meta.platforms or []; 42 42 }; 43 43 }
+1 -1
pkgs/development/ocaml-modules/jsonm/default.nix
··· 25 25 homepage = http://erratique.ch/software/jsonm; 26 26 license = stdenv.lib.licenses.bsd3; 27 27 maintainers = with stdenv.lib.maintainers; [ vbgl ]; 28 - platforms = ocaml.meta.platforms; 28 + platforms = ocaml.meta.platforms or []; 29 29 }; 30 30 }
+1 -1
pkgs/development/ocaml-modules/lablgtk-extras/1.4.nix
··· 13 13 createFindlibDestdir = true; 14 14 15 15 meta = { 16 - platforms = ocaml.meta.platforms; 16 + platforms = ocaml.meta.platforms or []; 17 17 maintainers = with stdenv.lib.maintainers; [ vbgl ]; 18 18 homepage = http://gtk-extras.forge.ocamlcore.org/; 19 19 description = "A collection of libraries and modules useful when developing OCaml/LablGtk2 applications";
+1 -1
pkgs/development/ocaml-modules/lablgtk-extras/default.nix
··· 15 15 createFindlibDestdir = true; 16 16 17 17 meta = { 18 - platforms = ocaml.meta.platforms; 18 + platforms = ocaml.meta.platforms or []; 19 19 maintainers = with stdenv.lib.maintainers; [ vbgl ]; 20 20 homepage = http://gtk-extras.forge.ocamlcore.org/; 21 21 description = "A collection of libraries and modules useful when developing OCaml/LablGtk2 applications";
+1 -1
pkgs/development/ocaml-modules/lablgtk/2.14.0.nix
··· 26 26 27 27 meta = { 28 28 branch = "2.14"; 29 - platforms = ocaml.meta.platforms; 29 + platforms = ocaml.meta.platforms or []; 30 30 maintainers = [ 31 31 stdenv.lib.maintainers.z77z 32 32 stdenv.lib.maintainers.roconnor
+1 -1
pkgs/development/ocaml-modules/lablgtk/default.nix
··· 26 26 ''; 27 27 28 28 meta = with stdenv.lib; { 29 - platforms = ocaml.meta.platforms; 29 + platforms = ocaml.meta.platforms or []; 30 30 maintainers = with maintainers; [ 31 31 z77z roconnor vbgl 32 32 ];
+1 -1
pkgs/development/ocaml-modules/lambda-term/1.6.nix
··· 33 33 34 34 homepage = https://github.com/diml/lambda-term; 35 35 license = stdenv.lib.licenses.bsd3; 36 - platforms = ocaml.meta.platforms; 36 + platforms = ocaml.meta.platforms or []; 37 37 branch = "1.6"; 38 38 maintainers = [ 39 39 stdenv.lib.maintainers.gal_bolle
+1 -1
pkgs/development/ocaml-modules/lambda-term/default.nix
··· 35 35 36 36 homepage = https://github.com/diml/lambda-term; 37 37 license = stdenv.lib.licenses.bsd3; 38 - platforms = ocaml.meta.platforms; 38 + platforms = ocaml.meta.platforms or []; 39 39 maintainers = [ 40 40 stdenv.lib.maintainers.gal_bolle 41 41 ];
+1 -1
pkgs/development/ocaml-modules/llvm/default.nix
··· 27 27 28 28 meta = { 29 29 inherit (llvm.meta) license homepage; 30 - inherit (ocaml.meta) platforms; 30 + platforms = ocaml.meta.platforms or []; 31 31 description = "OCaml bindings distributed with LLVM"; 32 32 maintainers = with stdenv.lib.maintainers; [ vbgl ]; 33 33 };
+1 -1
pkgs/development/ocaml-modules/lwt/default.nix
··· 29 29 homepage = http://ocsigen.org/lwt; 30 30 description = "Lightweight thread library for Objective Caml"; 31 31 license = licenses.lgpl21; 32 - platforms = ocaml.meta.platforms; 32 + platforms = ocaml.meta.platforms or []; 33 33 maintainers = with maintainers; [ 34 34 z77z vbgl gal_bolle 35 35 ];
+1 -1
pkgs/development/ocaml-modules/macaque/default.nix
··· 16 16 description = "Macros for Caml Queries"; 17 17 homepage = https://github.com/ocsigen/macaque; 18 18 license = licenses.lgpl2; 19 - platforms = ocaml.meta.platforms; 19 + platforms = ocaml.meta.platforms or []; 20 20 maintainers = with maintainers; [ vbgl ]; 21 21 }; 22 22 }
+1 -1
pkgs/development/ocaml-modules/magic-mime/default.nix
··· 17 17 meta = { 18 18 homepage = https://github.com/mirage/ocaml-magic-mime; 19 19 description = "Convert file extensions to MIME types"; 20 - platforms = ocaml.meta.platforms; 20 + platforms = ocaml.meta.platforms or []; 21 21 license = stdenv.lib.licenses.isc; 22 22 maintainers = with stdenv.lib.maintainers; [ vbgl ]; 23 23 };
+1 -1
pkgs/development/ocaml-modules/menhir/generic.nix
··· 41 41 qpl /* generator */ 42 42 lgpl2 /* library */ 43 43 ]; 44 - platforms = ocaml.meta.platforms; 44 + platforms = ocaml.meta.platforms or []; 45 45 maintainers = with maintainers; [ z77z ]; 46 46 }; 47 47 }
+1 -1
pkgs/development/ocaml-modules/nocrypto/default.nix
··· 26 26 meta = { 27 27 homepage = https://github.com/mirleft/ocaml-nocrypto; 28 28 description = "Simplest possible crypto to support TLS"; 29 - platforms = ocaml.meta.platforms; 29 + platforms = ocaml.meta.platforms or []; 30 30 license = stdenv.lib.licenses.bsd2; 31 31 maintainers = with stdenv.lib.maintainers; [ vbgl ]; 32 32 };
+1 -1
pkgs/development/ocaml-modules/ocaml-cairo/default.nix
··· 40 40 homepage = http://cairographics.org/cairo-ocaml; 41 41 description = "ocaml bindings for cairo library"; 42 42 license = stdenv.lib.licenses.gpl2; 43 - platforms = ocaml.meta.platforms; 43 + platforms = ocaml.meta.platforms or []; 44 44 }; 45 45 }
+1 -1
pkgs/development/ocaml-modules/ocaml-cairo2/default.nix
··· 47 47 and SVG file output. 48 48 ''; 49 49 license = licenses.lgpl3; 50 - platforms = ocaml.meta.platforms; 50 + platforms = ocaml.meta.platforms or []; 51 51 maintainers = [ maintainers.jirkamarsik ]; 52 52 }; 53 53 }
+1 -1
pkgs/development/ocaml-modules/ocaml-result/default.nix
··· 25 25 Result module defined in this library. 26 26 ''; 27 27 license = stdenv.lib.licenses.bsd3; 28 - platforms = ocaml.meta.platforms; 28 + platforms = ocaml.meta.platforms or []; 29 29 }; 30 30 }
+1 -1
pkgs/development/ocaml-modules/ocaml-text/default.nix
··· 19 19 homepage = "http://ocaml-text.forge.ocamlcore.org/"; 20 20 description = "A library for convenient text manipulation"; 21 21 license = stdenv.lib.licenses.bsd3; 22 - platforms = ocaml.meta.platforms; 22 + platforms = ocaml.meta.platforms or []; 23 23 }; 24 24 }
+1 -1
pkgs/development/ocaml-modules/ocamlgraph/default.nix
··· 38 38 homepage = http://ocamlgraph.lri.fr/; 39 39 description = "Graph library for Objective Caml"; 40 40 license = stdenv.lib.licenses.gpl2Oss; 41 - platforms = ocaml.meta.platforms; 41 + platforms = ocaml.meta.platforms or []; 42 42 maintainers = [ 43 43 stdenv.lib.maintainers.kkallio 44 44 ];
+1 -1
pkgs/development/ocaml-modules/ocamlnat/default.nix
··· 32 32 x86 or x86-64 processors. Support for additional architectures and 33 33 operating systems is planned, but not yet available. 34 34 ''; 35 - platforms = ocaml.meta.platforms; 35 + platforms = ocaml.meta.platforms or []; 36 36 maintainers = [ 37 37 stdenv.lib.maintainers.z77z 38 38 ];
+1 -1
pkgs/development/ocaml-modules/ocamlnet/default.nix
··· 42 42 homepage = http://projects.camlcity.org/projects/ocamlnet.html; 43 43 description = "A library implementing Internet protocols (http, cgi, email, etc.) for OCaml"; 44 44 license = "Most Ocamlnet modules are released under the zlib/png license. The HTTP server module Nethttpd is, however, under the GPL."; 45 - platforms = ocaml.meta.platforms; 45 + platforms = ocaml.meta.platforms or []; 46 46 maintainers = [ 47 47 stdenv.lib.maintainers.z77z 48 48 ];
+1 -1
pkgs/development/ocaml-modules/ocplib-endian/default.nix
··· 18 18 description = "Optimised functions to read and write int16/32/64"; 19 19 homepage = https://github.com/OCamlPro/ocplib-endian; 20 20 license = stdenv.lib.licenses.lgpl21; 21 - platforms = ocaml.meta.platforms; 21 + platforms = ocaml.meta.platforms or []; 22 22 maintainers = with stdenv.lib.maintainers; [ vbgl ]; 23 23 }; 24 24 }
+1 -1
pkgs/development/ocaml-modules/ocsigen-deriving/default.nix
··· 17 17 homepage = https://github.com/ocsigen/deriving; 18 18 description = "Extension to OCaml for deriving functions from type declarations"; 19 19 license = stdenv.lib.licenses.mit; 20 - platforms = ocaml.meta.platforms; 20 + platforms = ocaml.meta.platforms or []; 21 21 maintainers = with stdenv.lib.maintainers; [ 22 22 gal_bolle vbgl 23 23 ];
+1 -1
pkgs/development/ocaml-modules/ocsigen-server/default.nix
··· 42 42 A full featured Web server. It implements most features of the HTTP protocol, and has a very powerful extension mechanism that make very easy to plug your own OCaml modules for generating pages. 43 43 ''; 44 44 license = stdenv.lib.licenses.lgpl21; 45 - platforms = ocaml.meta.platforms; 45 + platforms = ocaml.meta.platforms or []; 46 46 maintainers = [ stdenv.lib.maintainers.gal_bolle ]; 47 47 }; 48 48
+1 -1
pkgs/development/ocaml-modules/ocurl/default.nix
··· 14 14 license = stdenv.lib.licenses.bsd3; 15 15 homepage = http://ocurl.forge.ocamlcore.org/; 16 16 maintainers = with stdenv.lib.maintainers; [ bennofs ]; 17 - platforms = ocaml.meta.platforms; 17 + platforms = ocaml.meta.platforms or []; 18 18 }; 19 19 }
+1 -1
pkgs/development/ocaml-modules/odn/default.nix
··· 20 20 description = "Store data using OCaml notation"; 21 21 homepage = https://forge.ocamlcore.org/projects/odn/; 22 22 license = licenses.lgpl21; 23 - platforms = ocaml.meta.platforms; 23 + platforms = ocaml.meta.platforms or []; 24 24 maintainers = with maintainers; [ 25 25 vbgl z77z 26 26 ];
+1 -1
pkgs/development/ocaml-modules/ojquery/default.nix
··· 18 18 description = "jQuery Binding for Eliom"; 19 19 homepage = http://ocsigen.org/ojquery/; 20 20 license = stdenv.lib.licenses.lgpl3; 21 - platforms = ocaml.meta.platforms; 21 + platforms = ocaml.meta.platforms or []; 22 22 maintainers = with stdenv.lib.maintainers; [ vbgl ]; 23 23 }; 24 24 }
+1 -1
pkgs/development/ocaml-modules/optcomp/default.nix
··· 16 16 homepage = https://github.com/diml/optcomp; 17 17 description = "Optional compilation for OCaml with cpp-like directives"; 18 18 license = stdenv.lib.licenses.bsd3; 19 - platforms = ocaml.meta.platforms; 19 + platforms = ocaml.meta.platforms or []; 20 20 maintainers = [ 21 21 stdenv.lib.maintainers.gal_bolle 22 22 ];
+1 -1
pkgs/development/ocaml-modules/otfm/default.nix
··· 42 42 of them. 43 43 ''; 44 44 homepage = "${webpage}"; 45 - platforms = ocaml.meta.platforms; 45 + platforms = ocaml.meta.platforms or []; 46 46 license = licenses.bsd3; 47 47 maintainers = [ maintainers.jirkamarsik ]; 48 48 };
+1 -1
pkgs/development/ocaml-modules/ounit/default.nix
··· 26 26 homepage = http://ounit.forge.ocamlcore.org/; 27 27 description = "Unit test framework for OCaml"; 28 28 license = stdenv.lib.licenses.mit; 29 - platforms = ocaml.meta.platforms; 29 + platforms = ocaml.meta.platforms or []; 30 30 maintainers = [ 31 31 stdenv.lib.maintainers.z77z 32 32 ];
+1 -1
pkgs/development/ocaml-modules/pcre/default.nix
··· 22 22 homepage = "https://bitbucket.org/mmottl/pcre-ocaml"; 23 23 description = "An efficient C-library for pattern matching with Perl-style regular expressions in OCaml"; 24 24 license = licenses.lgpl21; 25 - platforms = ocaml.meta.platforms; 25 + platforms = ocaml.meta.platforms or []; 26 26 maintainers = with maintainers; [ z77z vbmithr ]; 27 27 }; 28 28 }
+1 -1
pkgs/development/ocaml-modules/pgocaml/default.nix
··· 16 16 description = "An interface to PostgreSQL databases for OCaml applications"; 17 17 homepage = http://pgocaml.forge.ocamlcore.org/; 18 18 license = licenses.lgpl2; 19 - platforms = ocaml.meta.platforms; 19 + platforms = ocaml.meta.platforms or []; 20 20 maintainers = with maintainers; [ vbgl ]; 21 21 }; 22 22 }
+1 -1
pkgs/development/ocaml-modules/pprint/default.nix
··· 23 23 description = "An OCaml adaptation of Wadler’s and Leijen’s prettier printer"; 24 24 license = licenses.cecill-c; 25 25 maintainers = [ maintainers.vbgl ]; 26 - platforms = ocaml.meta.platforms; 26 + platforms = ocaml.meta.platforms or []; 27 27 }; 28 28 }
+1 -1
pkgs/development/ocaml-modules/ppx_tools/default.nix
··· 15 15 description = "Tools for authors of ppx rewriters"; 16 16 homepage = http://www.lexifi.com/ppx_tools; 17 17 license = licenses.mit; 18 - platforms = ocaml.meta.platforms; 18 + platforms = ocaml.meta.platforms or []; 19 19 maintainers = with maintainers; [ vbgl ]; 20 20 }; 21 21 }
+1 -1
pkgs/development/ocaml-modules/pycaml/default.nix
··· 46 46 homepage = "http://github.com/chemoelectric/pycaml"; 47 47 description = "Bindings for python and ocaml"; 48 48 license = "LGPL"; 49 - platforms = ocaml.meta.platforms; 49 + platforms = ocaml.meta.platforms or []; 50 50 }; 51 51 }
+1 -1
pkgs/development/ocaml-modules/qcheck/default.nix
··· 24 24 homepage = https://github.com/c-cube/qcheck/; 25 25 license = stdenv.lib.licenses.bsd2; 26 26 maintainers = with stdenv.lib.maintainers; [ vbgl ]; 27 - platforms = ocaml.meta.platforms; 27 + platforms = ocaml.meta.platforms or []; 28 28 }; 29 29 }
+1 -1
pkgs/development/ocaml-modules/qtest/default.nix
··· 19 19 meta = { 20 20 description = "Inline (Unit) Tests for OCaml (formerly “qtest”)"; 21 21 homepage = https://github.com/vincent-hugot/iTeML; 22 - platforms = ocaml.meta.platforms; 22 + platforms = ocaml.meta.platforms or []; 23 23 maintainers = with stdenv.lib.maintainers; [ vbgl ]; 24 24 }; 25 25 }
+1 -1
pkgs/development/ocaml-modules/re/default.nix
··· 20 20 21 21 meta = { 22 22 homepage = https://github.com/ocaml/ocaml-re; 23 - platforms = ocaml.meta.platforms; 23 + platforms = ocaml.meta.platforms or []; 24 24 description = "Pure OCaml regular expressions, with support for Perl and POSIX-style strings"; 25 25 license = stdenv.lib.licenses.lgpl2; 26 26 maintainers = with stdenv.lib.maintainers; [ vbgl ];
+1 -1
pkgs/development/ocaml-modules/react/default.nix
··· 29 29 homepage = http://erratique.ch/software/react; 30 30 description = "Applicative events and signals for OCaml"; 31 31 license = licenses.bsd3; 32 - platforms = ocaml.meta.platforms; 32 + platforms = ocaml.meta.platforms or []; 33 33 maintainers = with maintainers; [ z77z vbmithr gal_bolle]; 34 34 }; 35 35 }
+1 -1
pkgs/development/ocaml-modules/reactivedata/default.nix
··· 28 28 description = "An OCaml module for functional reactive programming (FRP) based on React"; 29 29 homepage = https://github.com/hhugo/reactiveData; 30 30 license = licenses.lgpl21; 31 - platforms = ocaml.meta.platforms; 31 + platforms = ocaml.meta.platforms or []; 32 32 maintainers = with maintainers; [ vbgl ]; 33 33 }; 34 34 }
+1 -1
pkgs/development/ocaml-modules/safepass/default.nix
··· 15 15 homepage = http://ocaml-safepass.forge.ocamlcore.org/; 16 16 description = "An OCaml library offering facilities for the safe storage of user passwords"; 17 17 license = stdenv.lib.licenses.lgpl21; 18 - platforms = ocaml.meta.platforms; 18 + platforms = ocaml.meta.platforms or []; 19 19 maintainers = with stdenv.lib.maintainers; [ vbgl ]; 20 20 }; 21 21 }
+1 -1
pkgs/development/ocaml-modules/sawja/default.nix
··· 34 34 homepage = "${webpage}"; 35 35 license = licenses.gpl3Plus; 36 36 maintainers = [ maintainers.vbgl ]; 37 - platforms = ocaml.meta.platforms; 37 + platforms = ocaml.meta.platforms or []; 38 38 }; 39 39 }
+1 -1
pkgs/development/ocaml-modules/sequence/default.nix
··· 33 33 sequence is iterated/folded on. 34 34 ''; 35 35 license = stdenv.lib.licenses.bsd2; 36 - platforms = ocaml.meta.platforms; 36 + platforms = ocaml.meta.platforms or []; 37 37 }; 38 38 }
+1 -1
pkgs/development/ocaml-modules/sexplib/108.08.00.nix
··· 25 25 description = "Library for serializing OCaml values to and from S-expressions"; 26 26 license = licenses.asl20; 27 27 maintainers = [ maintainers.vbgl ]; 28 - platforms = ocaml.meta.platforms; 28 + platforms = ocaml.meta.platforms or []; 29 29 }; 30 30 }
+1 -1
pkgs/development/ocaml-modules/sexplib/111.25.00.nix
··· 24 24 description = "Library for serializing OCaml values to and from S-expressions"; 25 25 license = licenses.asl20; 26 26 maintainers = [ maintainers.vbgl maintainers.ericbmerritt ]; 27 - platforms = ocaml.meta.platforms; 27 + platforms = ocaml.meta.platforms or []; 28 28 }; 29 29 }
+1 -1
pkgs/development/ocaml-modules/sqlite3/default.nix
··· 17 17 homepage = http://mmottl.github.io/sqlite3-ocaml/; 18 18 description = "OCaml bindings to the SQLite 3 database access library"; 19 19 license = licenses.mit; 20 - platforms = ocaml.meta.platforms; 20 + platforms = ocaml.meta.platforms or []; 21 21 maintainers = with maintainers; [ 22 22 z77z vbgl 23 23 ];
+1 -1
pkgs/development/ocaml-modules/sqlite3EZ/default.nix
··· 21 21 description = "A thin wrapper for sqlite3-ocaml with a simplified interface"; 22 22 license = licenses.mit; 23 23 maintainers = [ maintainers.vbgl ]; 24 - platforms = ocaml.meta.platforms; 24 + platforms = ocaml.meta.platforms or []; 25 25 }; 26 26 }
+1 -1
pkgs/development/ocaml-modules/ssl/default.nix
··· 26 26 homepage = http://savonet.rastageeks.org/; 27 27 description = "OCaml bindings for libssl "; 28 28 license = "LGPL+link exception"; 29 - platforms = ocaml.meta.platforms; 29 + platforms = ocaml.meta.platforms or []; 30 30 maintainers = [ 31 31 stdenv.lib.maintainers.z77z 32 32 ];
+1 -1
pkgs/development/ocaml-modules/stringext/default.nix
··· 26 26 27 27 meta = { 28 28 homepage = https://github.com/rgrinberg/stringext; 29 - platforms = ocaml.meta.platforms; 29 + platforms = ocaml.meta.platforms or []; 30 30 description = "Extra string functions for OCaml"; 31 31 license = stdenv.lib.licenses.mit; 32 32 maintainers = with stdenv.lib.maintainers; [ vbgl ];
+1 -1
pkgs/development/ocaml-modules/tsdl/default.nix
··· 44 44 homepage = "${webpage}"; 45 45 description = "Thin bindings to the cross-platform SDL library"; 46 46 license = licenses.bsd3; 47 - platforms = ocaml.meta.platforms; 47 + platforms = ocaml.meta.platforms or []; 48 48 }; 49 49 }
+1 -1
pkgs/development/ocaml-modules/twt/default.nix
··· 25 25 description = "“The Whitespace Thing” for OCaml"; 26 26 license = licenses.mit; 27 27 maintainers = [ maintainers.vbgl ]; 28 - platforms = ocaml.meta.platforms; 28 + platforms = ocaml.meta.platforms or []; 29 29 }; 30 30 }
+1 -1
pkgs/development/ocaml-modules/type_conv/108.08.00.nix
··· 23 23 description = "Support library for OCaml preprocessor type conversions"; 24 24 license = licenses.asl20; 25 25 branch = "108"; 26 - platforms = ocaml.meta.platforms; 26 + platforms = ocaml.meta.platforms or []; 27 27 maintainers = with maintainers; [ z77z ]; 28 28 }; 29 29 }
+1 -1
pkgs/development/ocaml-modules/type_conv/109.60.01.nix
··· 22 22 homepage = "http://forge.ocamlcore.org/projects/type-conv/"; 23 23 description = "Support library for OCaml preprocessor type conversions"; 24 24 license = stdenv.lib.licenses.lgpl21; 25 - platforms = ocaml.meta.platforms; 25 + platforms = ocaml.meta.platforms or []; 26 26 maintainers = with stdenv.lib.maintainers; [ z77z ]; 27 27 }; 28 28 }
+1 -1
pkgs/development/ocaml-modules/tyxml/default.nix
··· 18 18 homepage = http://ocsigen.org/tyxml/; 19 19 description = "A library that makes it almost impossible for your OCaml programs to generate wrong XML output, using static typing"; 20 20 license = licenses.lgpl21; 21 - platforms = ocaml.meta.platforms; 21 + platforms = ocaml.meta.platforms or []; 22 22 maintainers = with maintainers; [ 23 23 gal_bolle vbgl 24 24 ];
+1 -1
pkgs/development/ocaml-modules/ulex/default.nix
··· 26 26 homepage = http://www.cduce.org/download.html; 27 27 description = "A lexer generator for Unicode and OCaml"; 28 28 license = stdenv.lib.licenses.mit; 29 - platforms = ocaml.meta.platforms; 29 + platforms = ocaml.meta.platforms or []; 30 30 maintainers = [ stdenv.lib.maintainers.roconnor ]; 31 31 }; 32 32 }
+1 -1
pkgs/development/ocaml-modules/uri/default.nix
··· 28 28 29 29 meta = { 30 30 homepage = https://github.com/mirage/ocaml-uri; 31 - platforms = ocaml.meta.platforms; 31 + platforms = ocaml.meta.platforms or []; 32 32 description = "RFC3986 URI parsing library for OCaml"; 33 33 license = stdenv.lib.licenses.isc; 34 34 maintainers = with stdenv.lib.maintainers; [ vbgl ];
+1 -1
pkgs/development/ocaml-modules/uucd/default.nix
··· 33 33 meta = with stdenv.lib; { 34 34 description = "An OCaml module to decode the data of the Unicode character database from its XML representation"; 35 35 homepage = "${webpage}"; 36 - platforms = ocaml.meta.platforms; 36 + platforms = ocaml.meta.platforms or []; 37 37 maintainers = [ maintainers.vbgl ]; 38 38 license = licenses.bsd3; 39 39 };
+1 -1
pkgs/development/ocaml-modules/uucp/default.nix
··· 35 35 meta = with stdenv.lib; { 36 36 description = "An OCaml library providing efficient access to a selection of character properties of the Unicode character database"; 37 37 homepage = "${webpage}"; 38 - platforms = ocaml.meta.platforms; 38 + platforms = ocaml.meta.platforms or []; 39 39 license = licenses.bsd3; 40 40 maintainers = [ maintainers.vbgl ]; 41 41 };
+1 -1
pkgs/development/ocaml-modules/uuidm/default.nix
··· 22 22 description = "An OCaml module implementing 128 bits universally unique identifiers version 3, 5 (name based with MD5, SHA-1 hashing) and 4 (random based) according to RFC 4122"; 23 23 homepage = http://erratique.ch/software/uuidm; 24 24 license = licenses.bsd3; 25 - platforms = ocaml.meta.platforms; 25 + platforms = ocaml.meta.platforms or []; 26 26 maintainers = [ maintainers.maurer ]; 27 27 }; 28 28 }
+1 -1
pkgs/development/ocaml-modules/uunf/default.nix
··· 34 34 meta = with stdenv.lib; { 35 35 description = "An OCaml module for normalizing Unicode text"; 36 36 homepage = "${webpage}"; 37 - platforms = ocaml.meta.platforms; 37 + platforms = ocaml.meta.platforms or []; 38 38 license = licenses.bsd3; 39 39 maintainers = [ maintainers.vbgl ]; 40 40 };
+1 -1
pkgs/development/ocaml-modules/uuseg/default.nix
··· 40 40 meta = with stdenv.lib; { 41 41 description = "An OCaml library for segmenting Unicode text"; 42 42 homepage = "${webpage}"; 43 - platforms = ocaml.meta.platforms; 43 + platforms = ocaml.meta.platforms or []; 44 44 license = licenses.bsd3; 45 45 maintainers = [ maintainers.vbgl ]; 46 46 };
+1 -1
pkgs/development/ocaml-modules/uutf/default.nix
··· 34 34 meta = with stdenv.lib; { 35 35 description = "Non-blocking streaming Unicode codec for OCaml"; 36 36 homepage = "${webpage}"; 37 - platforms = ocaml.meta.platforms; 37 + platforms = ocaml.meta.platforms or []; 38 38 license = licenses.bsd3; 39 39 maintainers = [ maintainers.vbgl ]; 40 40 };
+1 -1
pkgs/development/ocaml-modules/vg/default.nix
··· 55 55 module. An API allows to implement new renderers. 56 56 ''; 57 57 homepage = "${webpage}"; 58 - platforms = ocaml.meta.platforms; 58 + platforms = ocaml.meta.platforms or []; 59 59 license = licenses.bsd3; 60 60 maintainers = [ maintainers.jirkamarsik ]; 61 61 };
+1 -1
pkgs/development/ocaml-modules/x509/default.nix
··· 21 21 meta = { 22 22 homepage = https://github.com/mirleft/ocaml-x509; 23 23 description = "X509 (RFC5280) handling in OCaml"; 24 - platforms = ocaml.meta.platforms; 24 + platforms = ocaml.meta.platforms or []; 25 25 license = stdenv.lib.licenses.bsd2; 26 26 maintainers = with stdenv.lib.maintainers; [ vbgl ]; 27 27 };
+1 -1
pkgs/development/ocaml-modules/xml-light/default.nix
··· 38 38 homepage = "http://tech.motion-twin.com/xmllight.html"; 39 39 license = stdenv.lib.licenses.lgpl21; 40 40 maintainers = [ stdenv.lib.maintainers.romildo ]; 41 - platforms = ocaml.meta.platforms; 41 + platforms = ocaml.meta.platforms or []; 42 42 }; 43 43 }
+1 -1
pkgs/development/ocaml-modules/xmlm/default.nix
··· 34 34 meta = with stdenv.lib; { 35 35 description = "An OCaml streaming codec to decode and encode the XML data format"; 36 36 homepage = "${webpage}"; 37 - platforms = ocaml.meta.platforms; 37 + platforms = ocaml.meta.platforms or []; 38 38 maintainers = [ maintainers.vbgl ]; 39 39 license = licenses.bsd3; 40 40 };
+1 -1
pkgs/development/ocaml-modules/yojson/default.nix
··· 29 29 homepage = "http://mjambon.com/${pname}.html"; 30 30 license = licenses.bsd3; 31 31 maintainers = [ maintainers.vbgl ]; 32 - platforms = ocaml.meta.platforms; 32 + platforms = ocaml.meta.platforms or []; 33 33 }; 34 34 }
+1 -1
pkgs/development/ocaml-modules/zarith/default.nix
··· 30 30 description = "fast, arbitrary precision OCaml integers"; 31 31 homepage = "http://forge.ocamlcore.org/projects/zarith"; 32 32 license = licenses.lgpl2; 33 - platforms = ocaml.meta.platforms; 33 + platforms = ocaml.meta.platforms or []; 34 34 maintainers = with maintainers; [ thoughtpolice vbgl ]; 35 35 }; 36 36 }
+1 -1
pkgs/development/ocaml-modules/zed/default.nix
··· 26 26 ''; 27 27 homepage = https://github.com/diml/zed; 28 28 license = stdenv.lib.licenses.bsd3; 29 - platforms = ocaml.meta.platforms; 29 + platforms = ocaml.meta.platforms or []; 30 30 maintainers = [ 31 31 stdenv.lib.maintainers.gal_bolle 32 32 ];
+1 -1
pkgs/development/tools/misc/trv/default.nix
··· 34 34 description = "Shim for vrt to enable bootstrapping"; 35 35 license = licenses.asl20; 36 36 maintainers = [ maintainers.ericbmerritt ]; 37 - platforms = ocaml.meta.platforms; 37 + platforms = ocaml.meta.platforms or []; 38 38 }; 39 39 }
+1 -1
pkgs/development/tools/ocaml/camlp4/default.nix
··· 39 39 meta = with stdenv.lib; { 40 40 description = "A software system for writing extensible parsers for programming languages"; 41 41 homepage = https://github.com/ocaml/camlp4; 42 - platforms = ocaml.meta.platforms; 42 + platforms = ocaml.meta.platforms or []; 43 43 }; 44 44 }
+1 -1
pkgs/development/tools/ocaml/camlp5/5.15.nix
··· 39 39 homepage = "${webpage}"; 40 40 license = stdenv.lib.licenses.bsd3; 41 41 branch = "5"; 42 - platforms = ocaml.meta.platforms; 42 + platforms = ocaml.meta.platforms or []; 43 43 maintainers = [ 44 44 stdenv.lib.maintainers.z77z 45 45 ];
+1 -1
pkgs/development/tools/ocaml/camlp5/default.nix
··· 33 33 ''; 34 34 homepage = http://pauillac.inria.fr/~ddr/camlp5/; 35 35 license = licenses.bsd3; 36 - platforms = ocaml.meta.platforms; 36 + platforms = ocaml.meta.platforms or []; 37 37 maintainers = with maintainers; [ 38 38 z77z vbgl 39 39 ];
+1 -1
pkgs/development/tools/ocaml/findlib/default.nix
··· 51 51 homepage = http://projects.camlcity.org/projects/findlib.html; 52 52 description = "O'Caml library manager"; 53 53 license = stdenv.lib.licenses.mit; 54 - platforms = ocaml.meta.platforms; 54 + platforms = ocaml.meta.platforms or []; 55 55 maintainers = [ 56 56 stdenv.lib.maintainers.z77z 57 57 stdenv.lib.maintainers.vbmithr
+1 -1
pkgs/development/tools/ocaml/js_of_ocaml/default.nix
··· 26 26 homepage = http://ocsigen.org/js_of_ocaml/; 27 27 description = "Compiler of OCaml bytecode to Javascript. It makes it possible to run Ocaml programs in a Web browser"; 28 28 license = licenses.lgpl2; 29 - platforms = ocaml.meta.platforms; 29 + platforms = ocaml.meta.platforms or []; 30 30 maintainers = [ 31 31 maintainers.gal_bolle 32 32 ];
+1 -1
pkgs/development/tools/ocaml/oasis/default.nix
··· 26 26 homepage = http://oasis.forge.ocamlcore.org/; 27 27 description = "Configure, build and install system for OCaml projects"; 28 28 license = licenses.lgpl21; 29 - platforms = ocaml.meta.platforms; 29 + platforms = ocaml.meta.platforms or []; 30 30 maintainers = with maintainers; [ 31 31 vbgl z77z 32 32 ];
+1 -1
pkgs/development/tools/ocaml/ocaml-top/default.nix
··· 25 25 homepage = http://www.typerex.org/ocaml-top.html; 26 26 license = stdenv.lib.licenses.gpl3; 27 27 description = "A simple cross-platform OCaml code editor built for top-level evaluation"; 28 - platforms = ocamlPackages.ocaml.meta.platforms; 28 + platforms = ocamlPackages.ocaml.meta.platforms or []; 29 29 maintainers = with stdenv.lib.maintainers; [ vbgl ]; 30 30 }; 31 31 }
+1 -1
pkgs/development/tools/ocaml/ocamlify/default.nix
··· 17 17 meta = { 18 18 homepage = http://forge.ocamlcore.org/projects/ocamlmod/ocamlmod; 19 19 description = "Generate OCaml modules from source files"; 20 - platforms = ocaml.meta.platforms; 20 + platforms = ocaml.meta.platforms or []; 21 21 license = stdenv.lib.licenses.lgpl21; 22 22 maintainers = with stdenv.lib.maintainers; [ 23 23 z77z
+1 -1
pkgs/development/tools/ocaml/ocamlmod/default.nix
··· 17 17 meta = { 18 18 homepage = http://forge.ocamlcore.org/projects/ocamlmod/ocamlmod; 19 19 description = "Generate OCaml modules from source files"; 20 - platforms = ocaml.meta.platforms; 20 + platforms = ocaml.meta.platforms or []; 21 21 maintainers = with stdenv.lib.maintainers; [ 22 22 z77z 23 23 ];
+1 -1
pkgs/development/tools/ocaml/ocamlscript/default.nix
··· 19 19 meta = with stdenv.lib; { 20 20 homepage = http://martin.jambon.free.fr/ocamlscript.html; 21 21 license = licenses.boost; 22 - platforms = ocaml.meta.platforms; 22 + platforms = ocaml.meta.platforms or []; 23 23 description = "Natively-compiled OCaml scripts"; 24 24 maintainers = [ maintainers.vbgl ]; 25 25 };
+1 -1
pkgs/development/tools/ocaml/ocp-build/default.nix
··· 33 33 between source files. 34 34 ''; 35 35 license = licenses.gpl3; 36 - platforms = ocaml.meta.platforms; 36 + platforms = ocaml.meta.platforms or []; 37 37 maintainers = [ maintainers.jirkamarsik ]; 38 38 }; 39 39 }
+1 -1
pkgs/development/tools/ocaml/ocp-indent/default.nix
··· 28 28 homepage = "http://typerex.ocamlpro.com/ocp-indent.html"; 29 29 description = "A customizable tool to indent OCaml code"; 30 30 license = licenses.gpl3; 31 - platforms = ocaml.meta.platforms; 31 + platforms = ocaml.meta.platforms or []; 32 32 maintainers = [ maintainers.jirkamarsik ]; 33 33 }; 34 34 }
+1 -1
pkgs/development/tools/ocaml/ocp-index/default.nix
··· 38 38 homepage = http://typerex.ocamlpro.com/ocp-index.html; 39 39 description = "A simple and light-weight documentation extractor for OCaml"; 40 40 license = stdenv.lib.licenses.lgpl3; 41 - platforms = ocaml.meta.platforms; 41 + platforms = ocaml.meta.platforms or []; 42 42 maintainers = with stdenv.lib.maintainers; [ vbgl ]; 43 43 }; 44 44 }
+1 -1
pkgs/development/tools/ocaml/omake/0.9.8.6-rc1.nix
··· 33 33 description = "Omake build system"; 34 34 homepage = "${webpage}"; 35 35 license = "GPL"; 36 - platforms = ocaml.meta.platforms; 36 + platforms = ocaml.meta.platforms or []; 37 37 }; 38 38 }
+1 -1
pkgs/development/tools/ocaml/utop/default.nix
··· 43 43 ''; 44 44 homepage = https://github.com/diml/utop; 45 45 license = stdenv.lib.licenses.bsd3; 46 - platforms = ocaml.meta.platforms; 46 + platforms = ocaml.meta.platforms or []; 47 47 maintainers = [ 48 48 stdenv.lib.maintainers.gal_bolle 49 49 ];
+1 -1
pkgs/tools/audio/liquidsoap/full.nix
··· 40 40 homepage = http://liquidsoap.fm/; 41 41 maintainers = with maintainers; [ ehmry ]; 42 42 license = licenses.gpl2; 43 - platforms = ocaml.meta.platforms; 43 + platforms = ocaml.meta.platforms or []; 44 44 }; 45 45 }