mirror of
https://github.com/simplex-chat/haskell.nix.git
synced 2026-06-03 09:17:32 +00:00
09526c8555
* Spelling and typo fixes in doc and code comments * Trailing whitespace or whitespace only truncation * readTheDocs formatting corrections
300 lines
7.7 KiB
Nix
300 lines
7.7 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;
|
|
|
|
# Work around issue that can cause _lots_ of files to be copied into the store.
|
|
# See https://github.com/NixOS/nixpkgs/pull/64691
|
|
let path = types.path // { check = x: types.path.check (x.origSrc or x); };
|
|
|
|
in {
|
|
# 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 = [];
|
|
};
|
|
|
|
detailLevel = mkOption {
|
|
type = str;
|
|
default = "MinimalDetails";
|
|
};
|
|
|
|
licenseFiles = mkOption {
|
|
type = listOfFilteringNulls unspecified;
|
|
default = [];
|
|
};
|
|
|
|
dataDir = mkOption {
|
|
type = str;
|
|
default = "";
|
|
};
|
|
|
|
dataFiles = mkOption {
|
|
type = listOfFilteringNulls unspecified;
|
|
default = [];
|
|
};
|
|
|
|
extraSrcFiles = mkOption {
|
|
type = listOfFilteringNulls unspecified;
|
|
default = [];
|
|
};
|
|
|
|
extraTmpFiles = mkOption {
|
|
type = listOfFilteringNulls unspecified;
|
|
default = [];
|
|
};
|
|
|
|
extraDocFiles = mkOption {
|
|
type = listOfFilteringNulls unspecified;
|
|
default = [];
|
|
};
|
|
|
|
cleanHpack = mkOption {
|
|
type = bool;
|
|
default = false;
|
|
};
|
|
|
|
isLocal = mkOption {
|
|
type = bool;
|
|
default = false;
|
|
};
|
|
|
|
ghcOptions = mkOption {
|
|
type = nullOr str;
|
|
default = null;
|
|
};
|
|
};
|
|
|
|
components = let
|
|
componentType = submodule {
|
|
# add the shared componentOptions
|
|
options = (packageOptions config) // {
|
|
buildable = mkOption {
|
|
type = bool;
|
|
default = true;
|
|
};
|
|
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 = [];
|
|
};
|
|
modules = mkOption {
|
|
type = listOfFilteringNulls unspecified;
|
|
default = [];
|
|
};
|
|
asmSources = mkOption {
|
|
type = listOfFilteringNulls unspecified;
|
|
default = [];
|
|
};
|
|
cmmSources = mkOption {
|
|
type = listOfFilteringNulls unspecified;
|
|
default = [];
|
|
};
|
|
cSources = mkOption {
|
|
type = listOfFilteringNulls unspecified;
|
|
default = [];
|
|
};
|
|
cxxSources = mkOption {
|
|
type = listOfFilteringNulls unspecified;
|
|
default = [];
|
|
};
|
|
jsSources = mkOption {
|
|
type = listOfFilteringNulls unspecified;
|
|
default = [];
|
|
};
|
|
hsSourceDirs = mkOption {
|
|
type = listOfFilteringNulls unspecified;
|
|
default = ["."];
|
|
};
|
|
includeDirs = mkOption {
|
|
type = listOfFilteringNulls unspecified;
|
|
default = [];
|
|
};
|
|
includes = mkOption {
|
|
type = listOfFilteringNulls unspecified;
|
|
default = [];
|
|
};
|
|
mainPath = mkOption {
|
|
type = listOfFilteringNulls unspecified;
|
|
default = [];
|
|
};
|
|
extraSrcFiles = mkOption {
|
|
type = listOfFilteringNulls unspecified;
|
|
default = [];
|
|
};
|
|
platforms = mkOption {
|
|
type = nullOr (listOfFilteringNulls unspecified);
|
|
default = null;
|
|
};
|
|
};
|
|
};
|
|
in {
|
|
setup = mkOption {
|
|
type = nullOr componentType;
|
|
default = {
|
|
depends = [];
|
|
libs = [];
|
|
frameworks = [];
|
|
doExactConfig = false;
|
|
# We have to set hsSourceDirs or cleanCabalComponent will
|
|
# include everything (and as a result all the components of
|
|
# the package will depend on everything in the package).
|
|
# TODO find a better way
|
|
hsSourceDirs = ["setup-src"];
|
|
includeDirs = [];
|
|
asmSources = [];
|
|
cSources = [];
|
|
cmmSources = [];
|
|
cxxSources = [];
|
|
jsSources = [];
|
|
extraSrcFiles = [ "Setup.hs" "Setup.lhs" ];
|
|
platforms = null;
|
|
};
|
|
};
|
|
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 = {};
|
|
};
|
|
};
|
|
|
|
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 = [];
|
|
};
|
|
};
|
|
}
|