The external opam2nix-packages
repository became unnecessary as of opam2nix
v1. It remains here only to support users of prior opam2nix
versions. All new users should go to the opam2nix repository.
Don't try to clone opam2nix
as part of your own derivation. If you instead copy the current nix/release
directory into your own source code you can import just that derivation (using pkgs.callPackage
) and it'll in turn clone the relevant commit from this repository and bootstrap itself. If needed, you can replace in the git URLs or revisions with the latest commits (or a commit in your fork).
Alternatively, you can ln -s /path/to/nix/release/overlay.nix ~/.config/nixpkgs/overlays/opam2nix.nix
to make opam2nix
available at the toplevel of your nixpkgs installation.
The easiest way to get started is to check out the examples/ directory. It's got small, working examples that you can probably adapt to your own use very easily.
Once you've copied nix/release/default.nix
as opam2nix-packages.nix
, you can use it like so:
let
opam2nix = pkgs.callPackage ./opam2nix-packages.nix {};
in
# for simply building one package, use:
opam2nix.buildPackage "someOpamPackage";
# for non-opam software, you'll build selections based on direct dependencies,
# and include each direct dependency in your `buildInputs`. This will
# include the `ocaml` dependency:
mkDerivation {
buildInputs = opam2nix.build {
specs = [
{ name = "lwt"; }
{ name = "irmin"; constraint = "=1.3.2"; }
];
};
( ... )
};
# If you are developing your own package with an .opam file, you can save yourself the
# trouble of replicating your dependencies in `nix`-land by using the `buildOpamPackage` function
# instead of `mkDerivation`:
opam2nix.buildOpamPackage rec {
name = "pkgname-version";
src = ( ... );
};
The utility buildPackageSet
is very useful for re-exposing all transitive ocaml dependencies for debugging purposes:
passThru.ocamlPackages = opam2nix.buildPackageSet { packages = [ { name = "lwt"; } ]' };
This can be used with e.g. nix-build -A ocamlPackages.lwt default.nix
if you need to build an individual dependency (but in your project's configuration; i.e. taking all optional dependencies and constraints into account). It accepts all the same arguments as build
and produces an object with keys for every transitive dependency, rather than a list of direct dependencies.
The build
, buildPackageSet
and buildOpamPackage
functions all accept the union of options
accepted by the lower level selectionsFile
and importSelectionsFile
functions (see "Configuration" section).
-
opam2nix.selectionsFile
takes an attribute set with the following properties:ocamlAttr
: defaults to "ocaml". Alternate versions are e.g.ocaml-ng.ocamlPackages_4_05.ocaml
ocaml
: defaults topkgs.<ocamlAttr>
. If provided,ocamlAttr
is ignored. Typically this is neater than usingocamlAttr
, since you passing a derivation instead of a string.ocamlVersion
: default is extracted from the derivaiton name ofocaml
, should rarely need to be overriddenbasePackages
: defaults to["base-unix" "base-bigarray" "base-threads"]
, which is hacky.specs
: list of records with a name and optional constraint field.verbose
: boolean, defaults to falseargs
: extra list of string arguments to pass to theopam2nix
tool (default[]
)extraRepos
: extra list of opam repos (directories) to include
-
opam2nix.importSelectionsFile selections_file
takes an attribute set with the following properties, all optional:pkgs
: defaults to thepkgs
set opam2nix was imported withoverrides
: function accepting{self, super}
arguments and returning attributes to be overridden / added
-
opam2nix.buildOpamRepo
: builds an opam repository suitable for passing in toextraRepos
from the following arguments:src
: path to a folder or archivepackage
: must match the opam package nameversion
: must match the opam package versionopamFile
: name of.opam
file (defaults to trying$name.opam
andopam
)
-
opam2nix.buildPackageSet
: returns an attrset with an attribute for each selected package- accepts any option accepted by either
selectionsFile
orimportSelectionsFile
- accepts any option accepted by either
-
opam2nix.build
: returns a list of all selected packages (plus ocaml)- accepts any option accepted by either
selectionsFile
orimportSelectionsFile
- accepts any option accepted by either
-
opam2nix.buildPackageSpec
: build and import a package (by spec)- accepts two arguments - a single spec and a set of
buildPackageSet
options
- accepts two arguments - a single spec and a set of
-
opam2nix.buildPackage
: build and import a package (by name)- accepts two arguments - a single package name and a set of
buildPackageSet
options
- accepts two arguments - a single package name and a set of
-
opam2nix.buildOpamPackage
: build an opam package from source, rather than from a repositorysrc
name
packageName
: optional, defaults to the first component ofname
version
: optional, defaults to the second component ofname
opamFile
: the opam file path withinsrc
passthru
: extra passthru attributes, optional- also accepts options accepted by either
selectionsFile
orimportSelectionsFile
-
opam2nix.buildOpamPackages
: build multiple opam packages from source, rather than from a repository. Takes two arguments:- first, a list of attrsets containing package attributes (meanings and defaults match those described in
buildOpamPackage
):src
name
packageName
: optional, defaults to the first component ofname
version
: optional, defaults to the second component ofname
opamFile
: the opam file path withinsrc
- second, an attrset of additional options accepted by either
selectionsFile
orimportSelectionsFile
- first, a list of attrsets containing package attributes (meanings and defaults match those described in
For depexts specifically of type "nixpkgs", those will become mandatory (and they're resolved as attributes on whatever pkgs is in use).
If a package has depexts but none of them are for nixpkgs, they'll all become optional depexts - if there is a nixpkgs attribute matching that name it'll be used, otherwise no dep is added.
The inputs that define whether a given package needs to be rebuilt are:
- The exact version of the
opam2nix
tool used. This is used as part of the build step for every package, so that's unavoidable. - Any dependant package changes. This could either be a version change of it (or one of its transitive dependencies), or the availability / unavailability of an optional dependency in the selection.
Notably, an update to this repository itself will cause a new set of nix
files to be generated (one per available package version), but if the version of the opam2nix
tool has not changed, no package implementations will need to be rebuilt.
Currently regeneration of the packageset and the selection process are both lightweight (they produce a bunch of small files very quickly), but they are also extremely verbose. This is a holdover from the days where things failed a lot more often, and should be turned off by default in the future.
To work with the dependencies of this package, you can clone the relevant dependency into your workspace with one of:
git clone git://github.com/gfxmonk/opam2nix.git
git clone git://github.com/ocaml/opam-repository.git
If you run gup nix/all
at the root, files in nix/release
will be updated to use the locally checked-out versions of these dependencies. Note that opam2nix
will only use a released version, while opam-repository will use the exact commit SHA. If you need to use an unreleased opam2nix
version, you should use nix-pin.
You hopefully don't have to know in order to use this repo - the above instructions should be enough to use these packages without ever delving into the guts of it, but chances are something will break, or maybe you're just curious:
The inputs are:
- opam2nix
- a checkout of the official
opam-repository
git repo - a digest map
See makeRepository
in nix/default.nix
for the flags passed to opam2nix generate
.
This traverses the repo and generates a nix expression for each version of each package. The mapping of opam digests to nix digests means we can produce a working nix derivation without actually downloading any sources.
During development or to perform updates, this derivation can be invoked as a shell, in order to download unknown sources, verify them and add them to the existing digest map. This is used in gup repo/packages
.
The above step generates "pure" package definitions based only on the information in the opam
repository. But in order to integrate cleanly with nixpkgs
, some generated packages need to be modified. This is implemented as a nix expression which wraps the generated packages. You should probably start with the repo/default.nix
and repo/overrides
from the opam2nix-packages
repo, and make any changes you need from there.
The generated .nix
files are pretty dumb - they know the difference between mandatory and optional dependencies, but that's about all. They rely on you giving them a valid set of dependencies which satisfy all versioning constraints, conflicts, etc. Conveniently, this is exactly what opam
's solver does - but instead of actually installing everything, let's just get it to create a nix
expression of the packages it would install.
This is done by selectStrict
in nix/default.nix
, and uses opam2nix select
.
We have the pure packages, generated from the upstream repo. We also have the selections, which picks the appropriate version of each necessary package.
Since nothing is perfect, we also have a number of hooks so we can modify packages, add additional repos, etc. This set of customizations is imaginatively called the "world", and is built from the arguments you pass to buildPackage
, etc (described above). This is implemented as a fixpoint in applyWorld
(in nix/default.nix
), melding the generated package set, all customizations (including the builtin ones in ./repo/overrides
), plus the selections.
The building of individual package versions is also done by opam2nix
- instead of trying to convert the build phase of each package into a shell script, we run opam2nix invoke {configure|build}
, and pass it (via the environment) a JSON document describing the context of this package - where the opam
file is, which of its optional dependencies are installed (and where), etc. This uses the opam API to execute the appropriate build actions directly.