Files
haskell.nix/modules/package.nix
T
2019-05-20 18:09:28 +08:00

193 lines
5.3 KiB
Nix

# package descriptions in hackage will look like:
# { system, compiler, flags, pkgs, hsPkgs, pkgconfPkgs }:
# { flags = { flag1 = false; flags2 = true; ... };
# package = { specVersion = "X.Y"; identifier = { name = "..."; version = "a.b.c.d"; };
# license = "..."; copyright = "..."; maintainer = "..."; author = "...";
# homepage = "..."; url = "..."; synopsis = "..."; description = "...";
# buildType = "Simple"; # or Custom, Autoconf, ...
# };
# components = {
# "..." = { depends = [ (hsPkgs.base) ... ]; };
# exes = { "..." = { depends = ... };
# "..." = { depends = ... }; };
# tests = { "..." = { depends = ... }; ... };
# };
{ parentConfig, mod_args, listOfFilteringNulls, componentOptions, packageOptions }:
{ lib, config, pkgs, haskellLib, ... }:
with lib;
with types;
{
# This is how the Nix expressions generated by *-to-nix receive
# their flags argument.
config._module.args = mod_args // { flags = config.flags; };
options = (packageOptions parentConfig) // {
# TODO: Add descriptions to everything.
flags = mkOption {
type = attrsOf bool;
};
package = {
specVersion = mkOption {
type = str;
};
identifier.name = mkOption {
type = str;
};
identifier.version = mkOption {
type = str;
};
license = mkOption {
type = str;
};
copyright = mkOption {
type = str;
};
maintainer = mkOption {
type = str;
};
author = mkOption {
type = str;
};
homepage = mkOption {
type = str;
};
url = mkOption {
type = str;
};
synopsis = mkOption {
type = str;
};
description = mkOption {
type = str;
};
buildType = mkOption {
type = str;
};
setup-depends = mkOption {
type = listOfFilteringNulls unspecified;
default = [];
};
};
components = let
componentType = submodule {
# add the shared componentOptions
options = (componentOptions config) // {
depends = mkOption {
type = listOfFilteringNulls unspecified;
default = [];
};
libs = mkOption {
type = listOfFilteringNulls (nullOr package);
default = [];
};
frameworks = mkOption {
type = listOfFilteringNulls package;
default = [];
};
pkgconfig = mkOption {
type = listOf (listOfFilteringNulls package);
default = [];
};
build-tools = mkOption {
type = listOfFilteringNulls unspecified;
default = [];
};
};
};
in {
library = mkOption {
type = nullOr componentType;
default = null;
};
sublibs = mkOption {
type = attrsOf componentType;
default = {};
};
foreignlibs = mkOption {
type = attrsOf componentType;
default = {};
};
exes = mkOption {
type = attrsOf componentType;
default = {};
};
tests = mkOption {
type = attrsOf componentType;
default = {};
};
benchmarks = mkOption {
type = attrsOf componentType;
default = {};
};
all = mkOption {
type = componentType;
apply = all: all // {
# TODO: Should this check for the entire component
# definition to match, rather than just the identifier?
depends = builtins.filter (p: p.identifier != config.package.identifier) all.depends;
};
description = "The merged dependencies of all other components";
};
};
name = mkOption {
type = str;
default = "${config.package.identifier.name}-${config.package.identifier.version}";
defaultText = "\${config.package.identifier.name}-\${config.package.identifier.version}";
};
sha256 = mkOption {
type = nullOr str;
default = null;
};
src = mkOption {
type = either path package;
default = pkgs.fetchurl { url = "mirror://hackage/${config.name}.tar.gz"; inherit (config) sha256; };
defaultText = "pkgs.fetchurl { url = \"mirror://hackage/\${config.name}.tar.gz\"; inherit (config) sha256; };";
};
cabal-generator = mkOption {
type = nullOr str;
default = null;
};
revision = mkOption {
type = nullOr int;
default = null;
};
revisionSha256 = mkOption {
type = nullOr str;
default = null;
};
patches = mkOption {
type = listOf (either unspecified path);
default = [];
};
};
# This has one quirk. Manually setting options on the all component
# will be considered a conflict. This is almost always fine; most
# settings should be modified in either the package options, or an
# individual component's options. When this isn't sufficient,
# mkForce is a reasonable workaround.
#
# An alternative solution to mkForce for many of the options where
# this is relevant would be to switch from the bool type to
# something like an anyBool type, which would merge definitions by
# returning true if any is true.
config.components.all = lib.mkMerge (haskellLib.getAllComponents config);
}