diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 6ef9a4d21e8..aac1650ae7a 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,7 +1,10 @@ ###### Things done: - [ ] Tested using sandboxing (`nix-build --option build-use-chroot true` or [nix.useChroot](http://nixos.org/nixos/manual/options.html#opt-nix.useChroot) on NixOS) -- [ ] Built on platform(s): NixOS / OSX / Linux +- Built on platform(s) + - [ ] NixOS + - [ ] OS X + - [ ] Linux - [ ] Tested compilation of all pkgs that depend on this change using `nix-shell -p nox --run "nox-review wip"` - [ ] Tested execution of all binary files (usually in `./result/bin/`) - [ ] Fits [CONTRIBUTING.md](https://github.com/NixOS/nixpkgs/blob/master/.github/CONTRIBUTING.md). diff --git a/default.nix b/default.nix index 12c3cf87618..c384a5bb694 100644 --- a/default.nix +++ b/default.nix @@ -6,4 +6,4 @@ if ! builtins ? nixVersion || builtins.compareVersions requiredVersion builtins. else - import ./pkgs/top-level/all-packages.nix + import ./pkgs/top-level diff --git a/doc/languages-frameworks/index.xml b/doc/languages-frameworks/index.xml index e63ff3ab140..ab62afa40d6 100644 --- a/doc/languages-frameworks/index.xml +++ b/doc/languages-frameworks/index.xml @@ -23,22 +23,8 @@ such as Perl or Haskell. These are described in this chapter. - - - + + diff --git a/doc/languages-frameworks/ruby.xml b/doc/languages-frameworks/ruby.xml index d81422b610e..15c0802ad69 100644 --- a/doc/languages-frameworks/ruby.xml +++ b/doc/languages-frameworks/ruby.xml @@ -12,25 +12,26 @@ Gemfile source 'https://rubygems.org' gem 'sensu' -$ bundler package --path /tmp/vendor/bundle +$ nix-shell -p bundler --command "bundler package --path /tmp/vendor/bundle" $ $(nix-build '' -A bundix)/bin/bundix $ cat > default.nix { lib, bundlerEnv, ruby }: -bundlerEnv { - name = "sensu-0.17.1"; +bundlerEnv rec { + name = "sensu-${version}"; + version = (import gemset).sensu.version; inherit ruby; gemfile = ./Gemfile; lockfile = ./Gemfile.lock; gemset = ./gemset.nix; meta = with lib; { - description = "A monitoring framework that aims to be simple, malleable, -and scalable."; + description = "A monitoring framework that aims to be simple, malleable, and scalable"; homepage = http://sensuapp.org/; license = with licenses; mit; maintainers = with maintainers; [ theuni ]; diff --git a/doc/languages-frameworks/texlive.xml b/doc/languages-frameworks/texlive.xml new file mode 100644 index 00000000000..0e3c1dd13d7 --- /dev/null +++ b/doc/languages-frameworks/texlive.xml @@ -0,0 +1,59 @@ +
+ +TeX Live + +Since release 15.09 there is a new TeX Live packaging that lives entirely under attribute texlive. +
User's guide + + + For basic usage just pull texlive.combined.scheme-basic for an environment with basic LaTeX support. + + It typically won't work to use separately installed packages together. + Instead, you can build a custom set of packages like this: + +texlive.combine { + inherit (texlive) scheme-small collection-langkorean algorithms cm-super; +} + + There are all the schemes, collections and a few thousand packages, as defined upstream (perhaps with tiny differences). + + + By default you only get executables and files needed during runtime, and a little documentation for the core packages. To change that, you need to add pkgFilter function to combine. + +texlive.combine { + # inherit (texlive) whatever-you-want; + pkgFilter = pkg: + pkg.tlType == "run" || pkg.tlType == "bin" || pkg.pname == "cm-super"; + # elem tlType [ "run" "bin" "doc" "source" ] + # there are also other attributes: version, name +} + + + + You can list packages e.g. by nix-repl. + +$ nix-repl +nix-repl> texlive.collection-<TAB> + + + +
+ +
Known problems + + + Some tools are still missing, e.g. luajittex; + + some apps aren't packaged/tested yet (asymptote, biber, etc.); + + feature/bug: when a package is rejected by pkgFilter, its dependencies are still propagated; + + in case of any bugs or feature requests, file a github issue or better a pull request and /cc @vcunat. + +
+ + +
+ diff --git a/lib/attrsets.nix b/lib/attrsets.nix index 84f6cb3658b..4161fa546c8 100644 --- a/lib/attrsets.nix +++ b/lib/attrsets.nix @@ -12,9 +12,15 @@ rec { inherit (builtins) attrNames listToAttrs hasAttr isAttrs getAttr; - /* Return an attribute from nested attribute sets. For instance - ["x" "y"] applied to some set e returns e.x.y, if it exists. The - default value is returned otherwise. */ + /* Return an attribute from nested attribute sets. + + Example: + x = { a = { b = 3; }; } + attrByPath ["a" "b"] 6 x + => 3 + attrByPath ["z" "z"] 6 x + => 6 + */ attrByPath = attrPath: default: e: let attr = head attrPath; in @@ -24,8 +30,15 @@ rec { else default; /* Return if an attribute from nested attribute set exists. - For instance ["x" "y"] applied to some set e returns true, if e.x.y exists. False - is returned otherwise. */ + + Example: + x = { a = { b = 3; }; } + hasAttrByPath ["a" "b"] x + => true + hasAttrByPath ["z" "z"] x + => false + + */ hasAttrByPath = attrPath: e: let attr = head attrPath; in @@ -35,14 +48,28 @@ rec { else false; - /* Return nested attribute set in which an attribute is set. For instance - ["x" "y"] applied with some value v returns `x.y = v;' */ + /* Return nested attribute set in which an attribute is set. + + Example: + setAttrByPath ["a" "b"] 3 + => { a = { b = 3; }; } + */ setAttrByPath = attrPath: value: if attrPath == [] then value else listToAttrs [ { name = head attrPath; value = setAttrByPath (tail attrPath) value; } ]; + /* Like `getAttrPath' without a default value. If it doesn't find the + path it will throw. + + Example: + x = { a = { b = 3; }; } + getAttrFromPath ["a" "b"] x + => 3 + getAttrFromPath ["z" "z"] x + => error: cannot find attribute `z.z' + */ getAttrFromPath = attrPath: set: let errorMsg = "cannot find attribute `" + concatStringsSep "." attrPath + "'"; in attrByPath attrPath (abort errorMsg) set; @@ -109,9 +136,11 @@ rec { ) (attrNames set) ); - /* foldAttrs: apply fold functions to values grouped by key. Eg accumulate values as list: - foldAttrs (n: a: [n] ++ a) [] [{ a = 2; } { a = 3; }] - => { a = [ 2 3 ]; } + /* Apply fold functions to values grouped by key. + + Example: + foldAttrs (n: a: [n] ++ a) [] [{ a = 2; } { a = 3; }] + => { a = [ 2 3 ]; } */ foldAttrs = op: nul: list_of_attrs: fold (n: a: @@ -147,7 +176,12 @@ rec { /* Utility function that creates a {name, value} pair as expected by - builtins.listToAttrs. */ + builtins.listToAttrs. + + Example: + nameValuePair "some" 6 + => { name = "some"; value = 6; } + */ nameValuePair = name: value: { inherit name value; }; @@ -248,11 +282,19 @@ rec { listToAttrs (map (n: nameValuePair n (f n)) names); - /* Check whether the argument is a derivation. */ + /* Check whether the argument is a derivation. Any set with + { type = "derivation"; } counts as a derivation. + + Example: + nixpkgs = import {} + isDerivation nixpkgs.ruby + => true + isDerivation "foobar" + => false + */ isDerivation = x: isAttrs x && x ? type && x.type == "derivation"; - - /* Convert a store path to a fake derivation. */ + /* Converts a store path to a fake derivation. */ toDerivation = path: let path' = builtins.storePath path; in { type = "derivation"; @@ -262,32 +304,49 @@ rec { }; - /* If the Boolean `cond' is true, return the attribute set `as', - otherwise an empty attribute set. */ + /* If `cond' is true, return the attribute set `as', + otherwise an empty attribute set. + + Example: + optionalAttrs (true) { my = "set"; } + => { my = "set"; } + optionalAttrs (false) { my = "set"; } + => { } + */ optionalAttrs = cond: as: if cond then as else {}; /* Merge sets of attributes and use the function f to merge attributes - values. */ + values. + + Example: + zipAttrsWithNames ["a"] (name: vs: vs) [{a = "x";} {a = "y"; b = "z";}] + => { a = ["x" "y"]; } + */ zipAttrsWithNames = names: f: sets: listToAttrs (map (name: { inherit name; value = f name (catAttrs name sets); }) names); - # implentation note: Common names appear multiple times in the list of - # names, hopefully this does not affect the system because the maximal - # laziness avoid computing twice the same expression and listToAttrs does - # not care about duplicated attribute names. + /* Implentation note: Common names appear multiple times in the list of + names, hopefully this does not affect the system because the maximal + laziness avoid computing twice the same expression and listToAttrs does + not care about duplicated attribute names. + + Example: + zipAttrsWith (name: values: values) [{a = "x";} {a = "y"; b = "z";}] + => { a = ["x" "y"]; b = ["z"] } + */ zipAttrsWith = f: sets: zipAttrsWithNames (concatMap attrNames sets) f sets; + /* Like `zipAttrsWith' with `(name: values: value)' as the function. + Example: + zipAttrs [{a = "x";} {a = "y"; b = "z";}] + => { a = ["x" "y"]; b = ["z"] } + */ zipAttrs = zipAttrsWith (name: values: values); - /* backward compatibility */ - zipWithNames = zipAttrsWithNames; - zip = builtins.trace "lib.zip is deprecated, use lib.zipAttrsWith instead" zipAttrsWith; - - /* Does the same as the update operator '//' except that attributes are merged until the given pedicate is verified. The predicate should accept 3 arguments which are the path to reach the attribute, a part of @@ -351,6 +410,15 @@ rec { !(isAttrs lhs && isAttrs rhs) ) lhs rhs; + /* Returns true if the pattern is contained in the set. False otherwise. + + FIXME(zimbatm): this example doesn't work !!! + + Example: + sys = mkSystem { } + matchAttrs { cpu = { bits = 64; }; } sys + => true + */ matchAttrs = pattern: attrs: fold or false (attrValues (zipAttrsWithNames (attrNames pattern) (n: values: let pat = head values; val = head (tail values); in @@ -359,10 +427,23 @@ rec { else pat == val ) [pattern attrs])); - # override only the attributes that are already present in the old set - # useful for deep-overriding + /* Override only the attributes that are already present in the old set + useful for deep-overriding. + + Example: + x = { a = { b = 4; c = 3; }; } + overrideExisting x { a = { b = 6; d = 2; }; } + => { a = { b = 6; d = 2; }; } + */ overrideExisting = old: new: old // listToAttrs (map (attr: nameValuePair attr (attrByPath [attr] old.${attr} new)) (attrNames old)); - deepSeqAttrs = x: y: deepSeqList (attrValues x) y; + + /*** deprecated stuff ***/ + + deepSeqAttrs = throw "removed 2016-02-29 because unused and broken"; + zipWithNames = zipAttrsWithNames; + zip = builtins.trace + "lib.zip is deprecated, use lib.zipAttrsWith instead" zipAttrsWith; + } diff --git a/lib/licenses.nix b/lib/licenses.nix index 64ba63b146a..f01712500e7 100644 --- a/lib/licenses.nix +++ b/lib/licenses.nix @@ -175,6 +175,12 @@ lib.mapAttrs (n: v: v // { shortName = n; }) rec { fullName = "Eclipse Public License 1.0"; }; + epson = { + fullName = "Seiko Epson Corporation Software License Agreement for Linux"; + url = https://download.ebz.epson.net/dsc/du/02/eula/global/LINUX_EN.html; + free = false; + }; + fdl12 = spdx { spdxId = "GFDL-1.2"; fullName = "GNU Free Documentation License v1.2"; diff --git a/lib/lists.nix b/lib/lists.nix index 3bcf366f0c2..deb7dcfde42 100644 --- a/lib/lists.nix +++ b/lib/lists.nix @@ -6,17 +6,26 @@ rec { inherit (builtins) head tail length isList elemAt concatLists filter elem genList; + /* Create a list consisting of a single element. `singleton x' is + sometimes more convenient with respect to indentation than `[x]' + when x spans multiple lines. - # Create a list consisting of a single element. `singleton x' is - # sometimes more convenient with respect to indentation than `[x]' - # when x spans multiple lines. + Example: + singleton "foo" + => [ "foo" ] + */ singleton = x: [x]; + /* "Fold" a binary function `op' between successive elements of + `list' with `nul' as the starting value, i.e., `fold op nul [x_1 + x_2 ... x_n] == op x_1 (op x_2 ... (op x_n nul))'. (This is + Haskell's foldr). - # "Fold" a binary function `op' between successive elements of - # `list' with `nul' as the starting value, i.e., `fold op nul [x_1 - # x_2 ... x_n] == op x_1 (op x_2 ... (op x_n nul))'. (This is - # Haskell's foldr). + Example: + concat = fold (a: b: a + b) "z" + concat [ "a" "b" "c" ] + => "abcnul" + */ fold = op: nul: list: let len = length list; @@ -26,8 +35,14 @@ rec { else op (elemAt list n) (fold' (n + 1)); in fold' 0; - # Left fold: `fold op nul [x_1 x_2 ... x_n] == op (... (op (op nul - # x_1) x_2) ... x_n)'. + /* Left fold: `fold op nul [x_1 x_2 ... x_n] == op (... (op (op nul + x_1) x_2) ... x_n)'. + + Example: + lconcat = foldl (a: b: a + b) "z" + lconcat [ "a" "b" "c" ] + => "zabc" + */ foldl = op: nul: list: let len = length list; @@ -37,13 +52,22 @@ rec { else op (foldl' (n - 1)) (elemAt list n); in foldl' (length list - 1); + /* Strict version of foldl. - # Strict version of foldl. + The difference is that evaluation is forced upon access. Usually used + with small whole results (in contract with lazily-generated list or large + lists where only a part is consumed.) + */ foldl' = builtins.foldl' or foldl; + /* Map with index - # Map with index: `imap (i: v: "${v}-${toString i}") ["a" "b"] == - # ["a-1" "b-2"]'. FIXME: why does this start to count at 1? + FIXME(zimbatm): why does this start to count at 1? + + Example: + imap (i: v: "${v}-${toString i}") ["a" "b"] + => [ "a-1" "b-2" ] + */ imap = if builtins ? genList then f: list: genList (n: f (n + 1) (elemAt list n)) (length list) @@ -57,73 +81,141 @@ rec { else [ (f (n + 1) (elemAt list n)) ] ++ imap' (n + 1); in imap' 0; + /* Map and concatenate the result. - # Map and concatenate the result. + Example: + concatMap (x: [x] ++ ["z"]) ["a" "b"] + => [ "a" "z" "b" "z" ] + */ concatMap = f: list: concatLists (map f list); + /* Flatten the argument into a single list; that is, nested lists are + spliced into the top-level lists. - # Flatten the argument into a single list; that is, nested lists are - # spliced into the top-level lists. E.g., `flatten [1 [2 [3] 4] 5] - # == [1 2 3 4 5]' and `flatten 1 == [1]'. + Example: + flatten [1 [2 [3] 4] 5] + => [1 2 3 4 5] + flatten 1 + => [1] + */ flatten = x: if isList x then foldl' (x: y: x ++ (flatten y)) [] x else [x]; + /* Remove elements equal to 'e' from a list. Useful for buildInputs. - # Remove elements equal to 'e' from a list. Useful for buildInputs. + Example: + remove 3 [ 1 3 4 3 ] + => [ 1 4 ] + */ remove = e: filter (x: x != e); + /* Find the sole element in the list matching the specified + predicate, returns `default' if no such element exists, or + `multiple' if there are multiple matching elements. - # Find the sole element in the list matching the specified - # predicate, returns `default' if no such element exists, or - # `multiple' if there are multiple matching elements. + Example: + findSingle (x: x == 3) "none" "multiple" [ 1 3 3 ] + => "multiple" + findSingle (x: x == 3) "none" "multiple" [ 1 3 ] + => 3 + findSingle (x: x == 3) "none" "multiple" [ 1 9 ] + => "none" + */ findSingle = pred: default: multiple: list: let found = filter pred list; len = length found; in if len == 0 then default else if len != 1 then multiple else head found; + /* Find the first element in the list matching the specified + predicate or returns `default' if no such element exists. - # Find the first element in the list matching the specified - # predicate or returns `default' if no such element exists. + Example: + findFirst (x: x > 3) 7 [ 1 6 4 ] + => 6 + findFirst (x: x > 9) 7 [ 1 6 4 ] + => 7 + */ findFirst = pred: default: list: let found = filter pred list; in if found == [] then default else head found; + /* Return true iff function `pred' returns true for at least element + of `list'. - # Return true iff function `pred' returns true for at least element - # of `list'. + Example: + any isString [ 1 "a" { } ] + => true + any isString [ 1 { } ] + => false + */ any = builtins.any or (pred: fold (x: y: if pred x then true else y) false); + /* Return true iff function `pred' returns true for all elements of + `list'. - # Return true iff function `pred' returns true for all elements of - # `list'. + Example: + all (x: x < 3) [ 1 2 ] + => true + all (x: x < 3) [ 1 2 3 ] + => false + */ all = builtins.all or (pred: fold (x: y: if pred x then y else false) true); + /* Count how many times function `pred' returns true for the elements + of `list'. - # Count how many times function `pred' returns true for the elements - # of `list'. + Example: + count (x: x == 3) [ 3 2 3 4 6 ] + => 2 + */ count = pred: foldl' (c: x: if pred x then c + 1 else c) 0; + /* Return a singleton list or an empty list, depending on a boolean + value. Useful when building lists with optional elements + (e.g. `++ optional (system == "i686-linux") flashplayer'). - # Return a singleton list or an empty list, depending on a boolean - # value. Useful when building lists with optional elements - # (e.g. `++ optional (system == "i686-linux") flashplayer'). + Example: + optional true "foo" + => [ "foo" ] + optional false "foo" + => [ ] + */ optional = cond: elem: if cond then [elem] else []; + /* Return a list or an empty list, dependening on a boolean value. - # Return a list or an empty list, dependening on a boolean value. + Example: + optionals true [ 2 3 ] + => [ 2 3 ] + optionals false [ 2 3 ] + => [ ] + */ optionals = cond: elems: if cond then elems else []; - # If argument is a list, return it; else, wrap it in a singleton - # list. If you're using this, you should almost certainly - # reconsider if there isn't a more "well-typed" approach. + /* If argument is a list, return it; else, wrap it in a singleton + list. If you're using this, you should almost certainly + reconsider if there isn't a more "well-typed" approach. + + Example: + toList [ 1 2 ] + => [ 1 2 ] + toList "hi" + => [ "hi "] + */ toList = x: if isList x then x else [x]; + /* Return a list of integers from `first' up to and including `last'. - # Return a list of integers from `first' up to and including `last'. + Example: + range 2 4 + => [ 2 3 4 ] + range 3 2 + => [ ] + */ range = if builtins ? genList then first: last: @@ -136,9 +228,13 @@ rec { then [] else [first] ++ range (first + 1) last; + /* Splits the elements of a list in two lists, `right' and + `wrong', depending on the evaluation of a predicate. - # Partition the elements of a list in two lists, `right' and - # `wrong', depending on the evaluation of a predicate. + Example: + partition (x: x > 2) [ 5 1 2 3 4 ] + => { right = [ 5 3 4 ]; wrong = [ 1 2 ]; } + */ partition = pred: fold (h: t: if pred h @@ -146,7 +242,14 @@ rec { else { right = t.right; wrong = [h] ++ t.wrong; } ) { right = []; wrong = []; }; + /* Merges two lists of the same size together. If the sizes aren't the same + the merging stops at the shortest. How both lists are merged is defined + by the first argument. + Example: + zipListsWith (a: b: a + b) ["h" "l"] ["e" "o"] + => ["he" "lo"] + */ zipListsWith = if builtins ? genList then f: fst: snd: genList (n: f (elemAt fst n) (elemAt snd n)) (min (length fst) (length snd)) @@ -161,21 +264,37 @@ rec { else []; in zipListsWith' 0; + /* Merges two lists of the same size together. If the sizes aren't the same + the merging stops at the shortest. + + Example: + zipLists [ 1 2 ] [ "a" "b" ] + => [ { fst = 1; snd = "a"; } { fst = 2; snd = "b"; } ] + */ zipLists = zipListsWith (fst: snd: { inherit fst snd; }); + /* Reverse the order of the elements of a list. - # Reverse the order of the elements of a list. + Example: + + reverseList [ "b" "o" "j" ] + => [ "j" "o" "b" ] + */ reverseList = if builtins ? genList then xs: let l = length xs; in genList (n: elemAt xs (l - n - 1)) l else fold (e: acc: acc ++ [ e ]) []; + /* Sort a list based on a comparator function which compares two + elements and returns true if the first argument is strictly below + the second argument. The returned list is sorted in an increasing + order. The implementation does a quick-sort. - # Sort a list based on a comparator function which compares two - # elements and returns true if the first argument is strictly below - # the second argument. The returned list is sorted in an increasing - # order. The implementation does a quick-sort. + Example: + sort (a: b: a < b) [ 5 3 7 ] + => [ 3 5 7 ] + */ sort = builtins.sort or ( strictLess: list: let @@ -193,8 +312,14 @@ rec { if len < 2 then list else (sort strictLess pivot.left) ++ [ first ] ++ (sort strictLess pivot.right)); + /* Return the first (at most) N elements of a list. - # Return the first (at most) N elements of a list. + Example: + take 2 [ "a" "b" "c" "d" ] + => [ "a" "b" ] + take 2 [ ] + => [ ] + */ take = if builtins ? genList then count: sublist 0 count @@ -209,8 +334,14 @@ rec { [ (elemAt list n) ] ++ take' (n + 1); in take' 0; + /* Remove the first (at most) N elements of a list. - # Remove the first (at most) N elements of a list. + Example: + drop 2 [ "a" "b" "c" "d" ] + => [ "c" "d" ] + drop 2 [ ] + => [ ] + */ drop = if builtins ? genList then count: list: sublist count (length list) list @@ -225,9 +356,15 @@ rec { drop' (n - 1) ++ [ (elemAt list n) ]; in drop' (len - 1); + /* Return a list consisting of at most ‘count’ elements of ‘list’, + starting at index ‘start’. - # Return a list consisting of at most ‘count’ elements of ‘list’, - # starting at index ‘start’. + Example: + sublist 1 3 [ "a" "b" "c" "d" "e" ] + => [ "b" "c" "d" ] + sublist 1 3 [ ] + => [ ] + */ sublist = start: count: list: let len = length list; in genList @@ -236,23 +373,36 @@ rec { else if start + count > len then len - start else count); + /* Return the last element of a list. - # Return the last element of a list. + Example: + last [ 1 2 3 ] + => 3 + */ last = list: assert list != []; elemAt list (length list - 1); + /* Return all elements but the last - # Return all elements but the last + Example: + init [ 1 2 3 ] + => [ 1 2 ] + */ init = list: assert list != []; take (length list - 1) list; - deepSeqList = xs: y: if any (x: deepSeq x false) xs then y else y; - - + /* FIXME(zimbatm) Not used anywhere + */ crossLists = f: foldl (fs: args: concatMap (f: map f args) fs) [f]; - # Remove duplicate elements from the list. O(n^2) complexity. + /* Remove duplicate elements from the list. O(n^2) complexity. + + Example: + + unique [ 3 2 3 4 ] + => [ 3 2 4 ] + */ unique = list: if list == [] then [] @@ -262,12 +412,24 @@ rec { xs = unique (drop 1 list); in [x] ++ remove x xs; + /* Intersects list 'e' and another list. O(nm) complexity. - # Intersects list 'e' and another list. O(nm) complexity. + Example: + intersectLists [ 1 2 3 ] [ 6 3 2 ] + => [ 3 2 ] + */ intersectLists = e: filter (x: elem x e); + /* Subtracts list 'e' from another list. O(nm) complexity. - # Subtracts list 'e' from another list. O(nm) complexity. + Example: + subtractLists [ 3 2 ] [ 1 2 3 4 5 3 ] + => [ 1 4 5 ] + */ subtractLists = e: filter (x: !(elem x e)); + /*** deprecated stuff ***/ + + deepSeqList = throw "removed 2016-02-29 because unused and broken"; + } diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 0b5883f291e..12c8c2369b4 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -12,6 +12,7 @@ abbradar = "Nikolay Amiantov "; aboseley = "Adam Boseley "; adev = "Adrien Devresse "; + Adjective-Object = "Maxwell Huang-Hobbs "; aespinosa = "Allan Espinosa "; aflatter = "Alexander Flatter "; aforemny = "Alexander Foremny "; @@ -59,6 +60,7 @@ bodil = "Bodil Stokke "; boothead = "Ben Ford "; bosu = "Boris Sukholitko "; + bradediger = "Brad Ediger "; bramd = "Bram Duvigneau "; bstrik = "Berno Strik "; bzizou = "Bruno Bzeznik "; @@ -123,6 +125,7 @@ fpletz = "Franz Pletz "; fps = "Florian Paul Schmidt "; fridh = "Frederik Rietdijk "; + frlan = "Frank Lanitz "; fro_ozen = "fro_ozen "; ftrvxmtrx = "Siarhei Zirukin "; funfunctor = "Edward O'Callaghan "; @@ -152,7 +155,6 @@ iElectric = "Domen Kozar "; igsha = "Igor Sharonov "; ikervagyok = "Balázs Lengyel "; - iyzsong = "Song Wenwu "; j-keck = "Jürgen Keck "; jagajaga = "Arseniy Seroka "; javaguirre = "Javier Aguirre "; @@ -208,10 +210,12 @@ malyn = "Michael Alyn Miller "; manveru = "Michael Fellinger "; marcweber = "Marc Weber "; + markus1189 = "Markus Hauck "; markWot = "Markus Wotringer "; matejc = "Matej Cotman "; mathnerd314 = "Mathnerd314 "; matthiasbeyer = "Matthias Beyer "; + mbauer = "Matthew Bauer "; maurer = "Matthew Maurer "; mbakke = "Marius Bakke "; mbe = "Brandon Edens "; @@ -248,6 +252,7 @@ olcai = "Erik Timan "; orbitz = "Malcolm Matalka "; osener = "Ozan Sener "; + otwieracz = "Slawomir Gonet "; oxij = "Jan Malakhovski "; page = "Carles Pagès "; paholg = "Paho Lurie-Gregg "; @@ -255,6 +260,7 @@ palo = "Ingolf Wanger "; pashev = "Igor Pashev "; pesterhazy = "Paulus Esterhazy "; + peterhoeg = "Peter Hoeg "; philandstuff = "Philip Potter "; phile314 = "Philipp Hausmann "; Phlogistique = "Noé Rubinstein "; @@ -273,6 +279,7 @@ psibi = "Sibi "; pSub = "Pascal Wittmann "; puffnfresh = "Brian McKenna "; + pxc = "Patrick Callahan "; qknight = "Joachim Schiele "; ragge = "Ragnar Dahlen "; raskin = "Michael Raskin <7c6f434c@mail.ru>"; @@ -293,13 +300,16 @@ rushmorem = "Rushmore Mushambi "; rvl = "Rodney Lorrimar "; rvlander = "Gaëtan André "; + ryanartecona = "Ryan Artecona "; ryantm = "Ryan Mulligan "; rycee = "Robert Helgesson "; samuelrivas = "Samuel Rivas "; sander = "Sander van der Burg "; schmitthenner = "Fabian Schmitthenner "; schristo = "Scott Christopher "; + scolobb = "Sergiu Ivanov "; sepi = "Raffael Mancini "; + sheenobu = "Sheena Artrip "; sheganinans = "Aistis Raulinaitis "; shell = "Shell Turner "; shlevy = "Shea Levy "; @@ -309,6 +319,7 @@ sjmackenzie = "Stewart Mackenzie "; sjourdois = "Stéphane ‘kwisatz’ Jourdois "; skeidel = "Sven Keidel "; + skrzyp = "Jakub Skrzypnik "; sleexyz = "Sean Lee "; smironov = "Sergey Mironov "; spacefrogg = "Michael Raitza "; @@ -341,6 +352,7 @@ tv = "Tomislav Viljetić "; tvestelind = "Tomas Vestelind "; twey = "James ‘Twey’ Kay "; + uralbash = "Svintsov Dmitry "; urkud = "Yury G. Kudryashov "; vandenoever = "Jos van den Oever "; vanzef = "Ivan Solyankin "; diff --git a/lib/strings-with-deps.nix b/lib/strings-with-deps.nix index bdcc25cbd20..a901940ac12 100644 --- a/lib/strings-with-deps.nix +++ b/lib/strings-with-deps.nix @@ -15,7 +15,7 @@ Usage: Attention: let - pkgs = (import /etc/nixos/nixpkgs/pkgs/top-level/all-packages.nix) {}; + pkgs = (import ) {}; in let inherit (pkgs.stringsWithDeps) fullDepEntry packEntry noDepEntry textClosureMap; inherit (pkgs.lib) id; diff --git a/lib/strings.nix b/lib/strings.nix index fc6c2152b9f..a2a4be11e1b 100644 --- a/lib/strings.nix +++ b/lib/strings.nix @@ -10,65 +10,147 @@ rec { inherit (builtins) stringLength substring head tail isString replaceStrings; + /* Concatenate a list of strings. - # Concatenate a list of strings. + Example: + concatStrings ["foo" "bar"] + => "foobar" + */ concatStrings = if builtins ? concatStringsSep then builtins.concatStringsSep "" else lib.foldl' (x: y: x + y) ""; + /* Map a function over a list and concatenate the resulting strings. - # Map a function over a list and concatenate the resulting strings. + Example: + concatMapStrings (x: "a" + x) ["foo" "bar"] + => "afooabar" + */ concatMapStrings = f: list: concatStrings (map f list); + + /* Like `concatMapStrings' except that the f functions also gets the + position as a parameter. + + Example: + concatImapStrings (pos: x: "${toString pos}-${x}") ["foo" "bar"] + => "1-foo2-bar" + */ concatImapStrings = f: list: concatStrings (lib.imap f list); + /* Place an element between each element of a list - # Place an element between each element of a list, e.g., - # `intersperse "," ["a" "b" "c"]' returns ["a" "," "b" "," "c"]. + Example: + intersperse "/" ["usr" "local" "bin"] + => ["usr" "/" "local" "/" "bin"]. + */ intersperse = separator: list: if list == [] || length list == 1 then list else tail (lib.concatMap (x: [separator x]) list); + /* Concatenate a list of strings with a separator between each element - # Concatenate a list of strings with a separator between each element, e.g. - # concatStringsSep " " ["foo" "bar" "xyzzy"] == "foo bar xyzzy" + Example: + concatStringsSep "/" ["usr" "local" "bin"] + => "usr/local/bin" + */ concatStringsSep = builtins.concatStringsSep or (separator: list: concatStrings (intersperse separator list)); + /* First maps over the list and then concatenates it. + + Example: + concatMapStringsSep "-" (x: toUpper x) ["foo" "bar" "baz"] + => "FOO-BAR-BAZ" + */ concatMapStringsSep = sep: f: list: concatStringsSep sep (map f list); + + /* First imaps over the list and then concatenates it. + + Example: + + concatImapStringsSep "-" (pos: x: toString (x / pos)) [ 6 6 6 ] + => "6-3-2" + */ concatImapStringsSep = sep: f: list: concatStringsSep sep (lib.imap f list); + /* Construct a Unix-style search path consisting of each `subDir" + directory of the given list of packages. - # Construct a Unix-style search path consisting of each `subDir" - # directory of the given list of packages. For example, - # `makeSearchPath "bin" ["x" "y" "z"]' returns "x/bin:y/bin:z/bin". + Example: + makeSearchPath "bin" ["/root" "/usr" "/usr/local"] + => "/root/bin:/usr/bin:/usr/local/bin" + makeSearchPath "bin" ["/"] + => "//bin" + */ makeSearchPath = subDir: packages: concatStringsSep ":" (map (path: path + "/" + subDir) packages); + /* Construct a library search path (such as RPATH) containing the + libraries for a set of packages - # Construct a library search path (such as RPATH) containing the - # libraries for a set of packages, e.g. "${pkg1}/lib:${pkg2}/lib:...". + Example: + makeLibraryPath [ "/usr" "/usr/local" ] + => "/usr/lib:/usr/local/lib" + pkgs = import { } + makeLibraryPath [ pkgs.openssl pkgs.zlib ] + => "/nix/store/9rz8gxhzf8sw4kf2j2f1grr49w8zx5vj-openssl-1.0.1r/lib:/nix/store/wwh7mhwh269sfjkm6k5665b5kgp7jrk2-zlib-1.2.8/lib" + */ makeLibraryPath = makeSearchPath "lib"; - # Construct a binary search path (such as $PATH) containing the - # binaries for a set of packages, e.g. "${pkg1}/bin:${pkg2}/bin:...". + /* Construct a binary search path (such as $PATH) containing the + binaries for a set of packages. + + Example: + makeBinPath ["/root" "/usr" "/usr/local"] + => "/root/bin:/usr/bin:/usr/local/bin" + */ makeBinPath = makeSearchPath "bin"; - # Idem for Perl search paths. + /* Construct a perl search path (such as $PERL5LIB) + + FIXME(zimbatm): this should be moved in perl-specific code + + Example: + pkgs = import { } + makePerlPath [ pkgs.perlPackages.NetSMTP ] + => "/nix/store/n0m1fk9c960d8wlrs62sncnadygqqc6y-perl-Net-SMTP-1.25/lib/perl5/site_perl" + */ makePerlPath = makeSearchPath "lib/perl5/site_perl"; + /* Dependening on the boolean `cond', return either the given string + or the empty string. Useful to contatenate against a bigger string. - # Dependening on the boolean `cond', return either the given string - # or the empty string. + Example: + optionalString true "some-string" + => "some-string" + optionalString false "some-string" + => "" + */ optionalString = cond: string: if cond then string else ""; + /* Determine whether a string has given prefix. - # Determine whether a string has given prefix/suffix. + Example: + hasPrefix "foo" "foobar" + => true + hasPrefix "foo" "barfoo" + => false + */ hasPrefix = pref: str: substring 0 (stringLength pref) str == pref; + + /* Determine whether a string has given suffix. + + Example: + hasSuffix "foo" "foobar" + => false + hasSuffix "foo" "barfoo" + => true + */ hasSuffix = suff: str: let lenStr = stringLength str; @@ -76,36 +158,55 @@ rec { in lenStr >= lenSuff && substring (lenStr - lenSuff) lenStr str == suff; + /* Convert a string to a list of characters (i.e. singleton strings). + This allows you to, e.g., map a function over each character. However, + note that this will likely be horribly inefficient; Nix is not a + general purpose programming language. Complex string manipulations + should, if appropriate, be done in a derivation. + Also note that Nix treats strings as a list of bytes and thus doesn't + handle unicode. - # Convert a string to a list of characters (i.e. singleton strings). - # For instance, "abc" becomes ["a" "b" "c"]. This allows you to, - # e.g., map a function over each character. However, note that this - # will likely be horribly inefficient; Nix is not a general purpose - # programming language. Complex string manipulations should, if - # appropriate, be done in a derivation. + Example: + stringToCharacters "" + => [ ] + stringToCharacters "abc" + => [ "a" "b" "c" ] + stringToCharacters "💩" + => [ "�" "�" "�" "�" ] + */ stringToCharacters = s: map (p: substring p 1 s) (lib.range 0 (stringLength s - 1)); + /* Manipulate a string character by character and replace them by + strings before concatenating the results. - # Manipulate a string charactter by character and replace them by - # strings before concatenating the results. + Example: + stringAsChars (x: if x == "a" then "i" else x) "nax" + => "nix" + */ stringAsChars = f: s: concatStrings ( map f (stringToCharacters s) ); + /* Escape occurrence of the elements of ‘list’ in ‘string’ by + prefixing it with a backslash. - # Escape occurrence of the elements of ‘list’ in ‘string’ by - # prefixing it with a backslash. For example, ‘escape ["(" ")"] - # "(foo)"’ returns the string ‘\(foo\)’. + Example: + escape ["(" ")"] "(foo)" + => "\\(foo\\)" + */ escape = list: replaceChars list (map (c: "\\${c}") list); + /* Escape all characters that have special meaning in the Bourne shell. - # Escape all characters that have special meaning in the Bourne shell. + Example: + escapeShellArg "so([<>])me" + => "so\\(\\[\\<\\>\\]\\)me" + */ escapeShellArg = lib.escape (stringToCharacters "\\ ';$`()|<>\t*[]"); - - # Obsolete - use replaceStrings instead. + /* Obsolete - use replaceStrings instead. */ replaceChars = builtins.replaceStrings or ( del: new: s: let @@ -119,21 +220,52 @@ rec { in stringAsChars subst s); - # Case conversion utilities. lowerChars = stringToCharacters "abcdefghijklmnopqrstuvwxyz"; upperChars = stringToCharacters "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; + + /* Converts an ASCII string to lower-case. + + Example: + toLower "HOME" + => "home" + */ toLower = replaceChars upperChars lowerChars; + + /* Converts an ASCII string to upper-case. + + Example: + toLower "home" + => "HOME" + */ toUpper = replaceChars lowerChars upperChars; + /* Appends string context from another string. This is an implementation + detail of Nix. - # Appends string context from another string. + Strings in Nix carry an invisible `context' which is a list of strings + representing store paths. If the string is later used in a derivation + attribute, the derivation will properly populate the inputDrvs and + inputSrcs. + + Example: + pkgs = import { }; + addContextFrom pkgs.coreutils "bar" + => "bar" + */ addContextFrom = a: b: substring 0 0 a + b; + /* Cut a string with a separator and produces a list of strings which + were separated by this separator. - # Cut a string with a separator and produces a list of strings which - # were separated by this separator; e.g., `splitString "." - # "foo.bar.baz"' returns ["foo" "bar" "baz"]. + NOTE: this function is not performant and should be avoided + + Example: + splitString "." "foo.bar.baz" + => [ "foo" "bar" "baz" ] + splitString "/" "/usr/local/bin" + => [ "" "usr" "local" "bin" ] + */ splitString = _sep: _s: let sep = addContextFrom _s _sep; @@ -157,10 +289,15 @@ rec { in recurse 0 0; + /* Return the suffix of the second argument if the first argument matches + its prefix. - # return the suffix of the second argument if the first argument match its - # prefix. e.g., - # `removePrefix "foo." "foo.bar.baz"' returns "bar.baz". + Example: + removePrefix "foo." "foo.bar.baz" + => "bar.baz" + removePrefix "xxx" "foo.bar.baz" + => "foo.bar.baz" + */ removePrefix = pre: s: let preLen = stringLength pre; @@ -171,6 +308,15 @@ rec { else s; + /* Return the prefix of the second argument if the first argument matches + its suffix. + + Example: + removeSuffix "front" "homefront" + => "home" + removeSuffix "xxx" "homefront" + => "homefront" + */ removeSuffix = suf: s: let sufLen = stringLength suf; @@ -181,25 +327,49 @@ rec { else s; - # Return true iff string v1 denotes a version older than v2. + /* Return true iff string v1 denotes a version older than v2. + + Example: + versionOlder "1.1" "1.2" + => true + versionOlder "1.1" "1.1" + => false + */ versionOlder = v1: v2: builtins.compareVersions v2 v1 == 1; + /* Return true iff string v1 denotes a version equal to or newer than v2. - # Return true iff string v1 denotes a version equal to or newer than v2. + Example: + versionAtLeast "1.1" "1.0" + => true + versionAtLeast "1.1" "1.1" + => true + versionAtLeast "1.1" "1.2" + => false + */ versionAtLeast = v1: v2: !versionOlder v1 v2; + /* This function takes an argument that's either a derivation or a + derivation's "name" attribute and extracts the version part from that + argument. - # This function takes an argument that's either a derivation or a - # derivation's "name" attribute and extracts the version part from that - # argument. For example: - # - # lib.getVersion "youtube-dl-2016.01.01" ==> "2016.01.01" - # lib.getVersion pkgs.youtube-dl ==> "2016.01.01" + Example: + getVersion "youtube-dl-2016.01.01" + => "2016.01.01" + getVersion pkgs.youtube-dl + => "2016.01.01" + */ getVersion = x: (builtins.parseDrvName (x.name or x)).version; + /* Extract name with version from URL. Ask for separator which is + supposed to start extension. - # Extract name with version from URL. Ask for separator which is - # supposed to start extension. + Example: + nameFromURL "https://nixos.org/releases/nix/nix-1.7/nix-1.7-x86_64-linux.tar.bz2" "-" + => "nix" + nameFromURL "https://nixos.org/releases/nix/nix-1.7/nix-1.7-x86_64-linux.tar.bz2" "_" + => "nix-1.7-x86" + */ nameFromURL = url: sep: let components = splitString "/" url; @@ -207,14 +377,24 @@ rec { name = builtins.head (splitString sep filename); in assert name != filename; name; + /* Create an --{enable,disable}- string that can be passed to + standard GNU Autoconf scripts. - # Create an --{enable,disable}- string that can be passed to - # standard GNU Autoconf scripts. + Example: + enableFeature true "shared" + => "--enable-shared" + enableFeature false "shared" + => "--disable-shared" + */ enableFeature = enable: feat: "--${if enable then "enable" else "disable"}-${feat}"; + /* Create a fixed width string with additional prefix to match + required width. - # Create a fixed width string with additional prefix to match - # required width. + Example: + fixedWidthString 5 "0" (toString 15) + => "00015" + */ fixedWidthString = width: filler: str: let strw = lib.stringLength str; @@ -223,25 +403,58 @@ rec { assert strw <= width; if strw == width then str else filler + fixedWidthString reqWidth filler str; + /* Format a number adding leading zeroes up to fixed width. - # Format a number adding leading zeroes up to fixed width. + Example: + fixedWidthNumber 5 15 + => "00015" + */ fixedWidthNumber = width: n: fixedWidthString width "0" (toString n); + /* Check whether a value is a store path. - # Check whether a value is a store path. + Example: + isStorePath "/nix/store/d945ibfx9x185xf04b890y4f9g3cbb63-python-2.7.11/bin/python" + => false + isStorePath "/nix/store/d945ibfx9x185xf04b890y4f9g3cbb63-python-2.7.11/" + => true + isStorePath pkgs.python + => true + */ isStorePath = x: builtins.substring 0 1 (toString x) == "/" && dirOf (builtins.toPath x) == builtins.storeDir; - # Convert string to int - # Obviously, it is a bit hacky to use fromJSON that way. + /* Convert string to int + Obviously, it is a bit hacky to use fromJSON that way. + + Example: + toInt "1337" + => 1337 + toInt "-4" + => -4 + toInt "3.14" + => error: floating point JSON numbers are not supported + */ toInt = str: let may_be_int = builtins.fromJSON str; in if builtins.isInt may_be_int then may_be_int else throw "Could not convert ${str} to int."; - # Read a list of paths from `file', relative to the `rootPath'. Lines - # beginning with `#' are treated as comments and ignored. Whitespace - # is significant. + /* Read a list of paths from `file', relative to the `rootPath'. Lines + beginning with `#' are treated as comments and ignored. Whitespace + is significant. + + NOTE: this function is not performant and should be avoided + + Example: + readPathsFromFile /prefix + ./pkgs/development/libraries/qt-5/5.4/qtbase/series + => [ "/prefix/dlopen-resolv.patch" "/prefix/tzdir.patch" + "/prefix/dlopen-libXcursor.patch" "/prefix/dlopen-openssl.patch" + "/prefix/dlopen-dbus.patch" "/prefix/xdg-config-dirs.patch" + "/prefix/nix-profiles-library-paths.patch" + "/prefix/compose-search-path.patch" ] + */ readPathsFromFile = rootPath: file: let root = toString rootPath; @@ -253,5 +466,4 @@ rec { absolutePaths = builtins.map (path: builtins.toPath (root + "/" + path)) relativePaths; in absolutePaths; - } diff --git a/nixos/doc/manual/default.nix b/nixos/doc/manual/default.nix index 4ce6ea1c111..746ddc071b6 100644 --- a/nixos/doc/manual/default.nix +++ b/nixos/doc/manual/default.nix @@ -187,6 +187,7 @@ in rec { --param man.output.in.separate.dir 1 \ --param man.output.base.dir "'$out/share/man/'" \ --param man.endnotes.are.numbered 0 \ + --param man.break.after.slash 1 \ ${docbook5_xsl}/xml/xsl/docbook/manpages/docbook.xsl \ ./man-pages.xml ''; diff --git a/nixos/doc/manual/installation/installing.xml b/nixos/doc/manual/installation/installing.xml index 9aec57fb6d5..7e71df28cdb 100644 --- a/nixos/doc/manual/installation/installing.xml +++ b/nixos/doc/manual/installation/installing.xml @@ -22,7 +22,10 @@ (with empty password). If you downloaded the graphical ISO image, you can - run start display-manager to start KDE. + run start display-manager to start KDE. If you + want to continue on the terminal, you can use + loadkeys to switch to your preferred keyboard layout. + (We even provide neo2 via loadkeys de neo!) The boot process should have brought up networking (check ip a). Networking is necessary for the diff --git a/nixos/doc/manual/release-notes/rl-1603.xml b/nixos/doc/manual/release-notes/rl-1603.xml index 0ede1a9ce8e..350025da7b0 100644 --- a/nixos/doc/manual/release-notes/rl-1603.xml +++ b/nixos/doc/manual/release-notes/rl-1603.xml @@ -247,6 +247,33 @@ $TTL 1800 + + + service.syncthing.dataDir options now has to point + to exact folder where syncthing is writing to. Example configuration should + loook something like: + + +services.syncthing = { + enable = true; + dataDir = "/home/somebody/.syncthing"; + user = "somebody"; +}; + + + + + + networking.firewall.allowPing is now enabled by + default. Users are encourarged to configure an approiate rate limit for + their machines using the Kernel interface at + /proc/sys/net/ipv4/icmp_ratelimit and + /proc/sys/net/ipv6/icmp/ratelimit or using the + firewall itself, i.e. by setting the NixOS option + networking.firewall.pingLimit. + + + diff --git a/nixos/lib/make-disk-image.nix b/nixos/lib/make-disk-image.nix index 62728c8ac76..7387bf14738 100644 --- a/nixos/lib/make-disk-image.nix +++ b/nixos/lib/make-disk-image.nix @@ -22,12 +22,13 @@ , # Shell code executed after the VM has finished. postVM ? "" +, name ? "nixos-disk-image" }: with lib; pkgs.vmTools.runInLinuxVM ( - pkgs.runCommand "nixos-disk-image" + pkgs.runCommand name { preVM = '' mkdir $out diff --git a/nixos/lib/make-iso9660-image.nix b/nixos/lib/make-iso9660-image.nix index b2409c6006b..75be70dbcb2 100644 --- a/nixos/lib/make-iso9660-image.nix +++ b/nixos/lib/make-iso9660-image.nix @@ -22,7 +22,7 @@ , # Whether this should be an efi-bootable El-Torito CD. efiBootable ? false -, # Wheter this should be an hybrid CD (bootable from USB as well as CD). +, # Whether this should be an hybrid CD (bootable from USB as well as CD). usbBootable ? false , # The path (in the ISO file system) of the boot image. @@ -39,7 +39,6 @@ , # The volume ID. volumeID ? "" - }: assert bootable -> bootImage != ""; @@ -47,7 +46,7 @@ assert efiBootable -> efiBootImage != ""; assert usbBootable -> isohybridMbrImage != ""; stdenv.mkDerivation { - name = "iso9660-image"; + name = isoName; builder = ./make-iso9660-image.sh; buildInputs = [perl xorriso syslinux]; diff --git a/nixos/lib/make-iso9660-image.sh b/nixos/lib/make-iso9660-image.sh index 31bfe23d3d4..c623436f6c5 100644 --- a/nixos/lib/make-iso9660-image.sh +++ b/nixos/lib/make-iso9660-image.sh @@ -133,3 +133,4 @@ fi mkdir -p $out/nix-support echo $system > $out/nix-support/system +echo "file iso $out/iso/$isoName" >> $out/nix-support/hydra-build-products diff --git a/nixos/maintainers/scripts/azure/create-azure.sh b/nixos/maintainers/scripts/azure/create-azure.sh index f87a88404f6..a834566be8f 100755 --- a/nixos/maintainers/scripts/azure/create-azure.sh +++ b/nixos/maintainers/scripts/azure/create-azure.sh @@ -1,11 +1,8 @@ #! /bin/sh -e -BUCKET_NAME=${BUCKET_NAME:-nixos} export NIX_PATH=nixpkgs=../../../.. export NIXOS_CONFIG=$(dirname $(readlink -f $0))/../../../modules/virtualisation/azure-image.nix export TIMESTAMP=$(date +%Y%m%d%H%M) nix-build '' \ - -A config.system.build.azureImage --argstr system x86_64-linux -o azure --option extra-binary-caches http://hydra.nixos.org -j 10 - -azure vm image create nixos-test --location "West Europe" --md5-skip -v --os Linux azure/disk.vhd + -A config.system.build.azureImage --argstr system x86_64-linux -o azure --option extra-binary-caches https://hydra.nixos.org -j 10 diff --git a/nixos/maintainers/scripts/azure/upload-azure.sh b/nixos/maintainers/scripts/azure/upload-azure.sh new file mode 100755 index 00000000000..2ea35d1d4c3 --- /dev/null +++ b/nixos/maintainers/scripts/azure/upload-azure.sh @@ -0,0 +1,22 @@ +#! /bin/sh -e + +export STORAGE=${STORAGE:-nixos} +export THREADS=${THREADS:-8} + +azure-vhd-utils-for-go upload --localvhdpath azure/disk.vhd --stgaccountname "$STORAGE" --stgaccountkey "$KEY" \ + --containername images --blobname nixos-unstable-nixops-updated.vhd --parallelism "$THREADS" --overwrite + + + + + + + + + + + + + + + diff --git a/nixos/modules/config/gnu.nix b/nixos/modules/config/gnu.nix index f8c35b440d1..ad0e35c8a63 100644 --- a/nixos/modules/config/gnu.nix +++ b/nixos/modules/config/gnu.nix @@ -37,7 +37,6 @@ with lib; services.openssh.enable = false; services.lshd.enable = true; programs.ssh.startAgent = false; - services.xserver.startGnuPGAgent = true; # TODO: GNU dico. # TODO: GNU Inetutils' inetd. diff --git a/nixos/modules/config/krb5.nix b/nixos/modules/config/krb5.nix index d2198e4ac1a..b845ef69a75 100644 --- a/nixos/modules/config/krb5.nix +++ b/nixos/modules/config/krb5.nix @@ -32,7 +32,7 @@ in kdc = mkOption { default = "kerberos.mit.edu"; - description = "Kerberos Domain Controller."; + description = "Key Distribution Center"; }; kerberosAdminServer = mkOption { diff --git a/nixos/modules/hardware/opengl.nix b/nixos/modules/hardware/opengl.nix index d3b146be6b3..0bc574d4819 100644 --- a/nixos/modules/hardware/opengl.nix +++ b/nixos/modules/hardware/opengl.nix @@ -103,7 +103,7 @@ in hardware.opengl.extraPackages32 = mkOption { type = types.listOf types.package; default = []; - example = literalExample "with pkgs; [ vaapiIntel libvdpau-va-gl vaapiVdpau ]"; + example = literalExample "with pkgs.pkgsi686Linux; [ vaapiIntel libvdpau-va-gl vaapiVdpau ]"; description = '' Additional packages to add to 32-bit OpenGL drivers on 64-bit systems. Used when is diff --git a/nixos/modules/hardware/video/nvidia.nix b/nixos/modules/hardware/video/nvidia.nix index 711576982ec..8514f765e61 100644 --- a/nixos/modules/hardware/video/nvidia.nix +++ b/nixos/modules/hardware/video/nvidia.nix @@ -14,6 +14,8 @@ let nvidiaForKernel = kernelPackages: if elem "nvidia" drivers then kernelPackages.nvidia_x11 + else if elem "nvidiaBeta" drivers then + kernelPackages.nvidia_x11_beta else if elem "nvidiaLegacy173" drivers then kernelPackages.nvidia_x11_legacy173 else if elem "nvidiaLegacy304" drivers then diff --git a/nixos/modules/misc/ids.nix b/nixos/modules/misc/ids.nix index 0ab2b8a76fc..f71d1e3fe20 100644 --- a/nixos/modules/misc/ids.nix +++ b/nixos/modules/misc/ids.nix @@ -176,7 +176,6 @@ seeks = 148; prosody = 149; i2pd = 150; - dnscrypt-proxy = 151; systemd-network = 152; systemd-resolve = 153; systemd-timesync = 154; @@ -254,6 +253,10 @@ octoprint = 230; avahi-autoipd = 231; nntp-proxy = 232; + mjpg-streamer = 233; + radicale = 234; + hydra-queue-runner = 235; + hydra-www = 236; # When adding a uid, make sure it doesn't match an existing gid. And don't use uids above 399! @@ -410,7 +413,6 @@ seeks = 148; prosody = 149; i2pd = 150; - dnscrypt-proxy = 151; systemd-network = 152; systemd-resolve = 153; systemd-timesync = 154; @@ -482,6 +484,7 @@ cfdyndns = 227; pdnsd = 229; octoprint = 230; + radicale = 234; # When adding a gid, make sure it doesn't match an existing # uid. Users and groups with the same name should have equal diff --git a/nixos/modules/misc/version.nix b/nixos/modules/misc/version.nix index 18f270cd531..f12ecc1b88e 100644 --- a/nixos/modules/misc/version.nix +++ b/nixos/modules/misc/version.nix @@ -104,7 +104,7 @@ in nixosVersion = mkDefault (maybeEnv "NIXOS_VERSION" (cfg.nixosRelease + cfg.nixosVersionSuffix)); # Note: code names must only increase in alphabetical order. - nixosCodeName = "Emu"; + nixosCodeName = "Flounder"; }; # Generate /etc/os-release. See diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 0105cc3cdf2..d317333f963 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -114,6 +114,7 @@ ./services/backup/rsnapshot.nix ./services/backup/sitecopy-backup.nix ./services/backup/tarsnap.nix + ./services/backup/znapzend.nix ./services/cluster/fleet.nix ./services/cluster/kubernetes.nix ./services/cluster/panamax.nix @@ -176,6 +177,7 @@ ./services/hardware/udisks2.nix ./services/hardware/upower.nix ./services/hardware/thermald.nix + ./services/logging/awstats.nix ./services/logging/fluentd.nix ./services/logging/klogd.nix ./services/logging/logcheck.nix @@ -219,6 +221,7 @@ ./services/misc/gitolite.nix ./services/misc/gpsd.nix ./services/misc/ihaskell.nix + ./services/misc/mantisbt.nix ./services/misc/mathics.nix ./services/misc/matrix-synapse.nix ./services/misc/mbpfan.nix @@ -329,6 +332,7 @@ ./services/networking/lambdabot.nix ./services/networking/libreswan.nix ./services/networking/mailpile.nix + ./services/networking/mjpg-streamer.nix ./services/networking/minidlna.nix ./services/networking/miniupnpd.nix ./services/networking/mstpd.nix @@ -439,6 +443,7 @@ ./services/web-servers/varnish/default.nix ./services/web-servers/winstone.nix ./services/web-servers/zope2.nix + ./services/x11/colord.nix ./services/x11/unclutter.nix ./services/x11/desktop-managers/default.nix ./services/x11/display-managers/auto.nix diff --git a/nixos/modules/profiles/base.nix b/nixos/modules/profiles/base.nix index 09183ee1809..b8057cadce2 100644 --- a/nixos/modules/profiles/base.nix +++ b/nixos/modules/profiles/base.nix @@ -17,7 +17,6 @@ pkgs.ddrescue pkgs.ccrypt pkgs.cryptsetup # needed for dm-crypt volumes - pkgs.which # 88K size # Some networking tools. pkgs.fuse diff --git a/nixos/modules/programs/bash/bash.nix b/nixos/modules/programs/bash/bash.nix index e4e264ec003..1c3c07a1c21 100644 --- a/nixos/modules/programs/bash/bash.nix +++ b/nixos/modules/programs/bash/bash.nix @@ -56,7 +56,7 @@ in */ shellAliases = mkOption { - default = config.environment.shellAliases; + default = config.environment.shellAliases // { which = "type -P"; }; description = '' Set of aliases for bash shell. See for an option format description. diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix index 85435884b19..c6a781b6f00 100644 --- a/nixos/modules/rename.nix +++ b/nixos/modules/rename.nix @@ -98,6 +98,9 @@ with lib; (mkRenamedOptionModule [ "services" "hostapd" "extraCfg" ] [ "services" "hostapd" "extraConfig" ]) + # Enlightenment + (mkRenamedOptionModule [ "services" "xserver" "desktopManager" "e19" "enable" ] [ "services" "xserver" "desktopManager" "enlightenment" "enable" ]) + # Options that are obsolete and have no replacement. (mkRemovedOptionModule [ "boot" "initrd" "luks" "enable" ]) (mkRemovedOptionModule [ "programs" "bash" "enable" ]) @@ -108,6 +111,7 @@ with lib; (mkRemovedOptionModule [ "services" "openvpn" "enable" ]) (mkRemovedOptionModule [ "services" "printing" "cupsFilesConf" ]) (mkRemovedOptionModule [ "services" "printing" "cupsdConf" ]) + (mkRemovedOptionModule [ "services" "xserver" "startGnuPGAgent" ]) ]; } diff --git a/nixos/modules/security/grsecurity.nix b/nixos/modules/security/grsecurity.nix index 40942644868..236206026c3 100644 --- a/nixos/modules/security/grsecurity.nix +++ b/nixos/modules/security/grsecurity.nix @@ -26,19 +26,11 @@ in ''; }; - stable = mkOption { - type = types.bool; - default = false; + kernelPatch = mkOption { + type = types.attrs; + example = lib.literalExample "pkgs.kernelPatches.grsecurity_4_1"; description = '' - Enable the stable grsecurity patch, based on Linux 3.14. - ''; - }; - - testing = mkOption { - type = types.bool; - default = false; - description = '' - Enable the testing grsecurity patch, based on Linux 4.0. + Grsecurity patch to use. ''; }; @@ -219,16 +211,7 @@ in config = mkIf cfg.enable { assertions = - [ { assertion = cfg.stable || cfg.testing; - message = '' - If grsecurity is enabled, you must select either the - stable patch (with kernel 3.14), or the testing patch (with - kernel 4.0) to continue. - ''; - } - { assertion = !(cfg.stable && cfg.testing); - message = "Select either one of the stable or testing patch"; - } + [ { assertion = (cfg.config.restrictProc -> !cfg.config.restrictProcWithGroup) || (cfg.config.restrictProcWithGroup -> !cfg.config.restrictProc); message = "You cannot enable both restrictProc and restrictProcWithGroup"; @@ -247,6 +230,8 @@ in } ]; + security.grsecurity.kernelPatch = lib.mkDefault pkgs.kernelPatches.grsecurity_latest; + systemd.services.grsec-lock = mkIf cfg.config.sysctl { description = "grsecurity sysctl-lock Service"; requires = [ "systemd-sysctl.service" ]; diff --git a/nixos/modules/services/backup/crashplan.nix b/nixos/modules/services/backup/crashplan.nix index 74643d1d463..46d4c5192d9 100644 --- a/nixos/modules/services/backup/crashplan.nix +++ b/nixos/modules/services/backup/crashplan.nix @@ -48,6 +48,14 @@ with lib; ensureDir ${crashplan.vardir}/cache 700 ensureDir ${crashplan.vardir}/backupArchives 700 ensureDir ${crashplan.vardir}/log 777 + cp -avn ${crashplan}/conf.template/* ${crashplan.vardir}/conf + for x in app.asar bin EULA.txt install.vars lang lib libjniwrap64.so libjniwrap.so libjtux64.so libjtux.so libmd564.so libmd5.so share skin upgrade; do + if [ -e $x ]; then + true; + else + ln -s ${crashplan}/$x ${crashplan.vardir}/$x; + fi; + done ''; serviceConfig = { diff --git a/nixos/modules/services/backup/tarsnap.nix b/nixos/modules/services/backup/tarsnap.nix index 78776786468..24892a2a59a 100644 --- a/nixos/modules/services/backup/tarsnap.nix +++ b/nixos/modules/services/backup/tarsnap.nix @@ -293,7 +293,7 @@ in # make sure that the tarsnap server is reachable after systemd starts up # the service - therefore we sleep in a loop until we can ping the # endpoint. - preStart = "while ! ping -q -c 1 betatest-server.tarsnap.com &> /dev/null; do sleep 3; done"; + preStart = "while ! ping -q -c 1 v1-0-0-server.tarsnap.com &> /dev/null; do sleep 3; done"; scriptArgs = "%i"; script = '' mkdir -p -m 0755 ${dirOf cfg.cachedir} diff --git a/nixos/modules/services/backup/znapzend.nix b/nixos/modules/services/backup/znapzend.nix new file mode 100644 index 00000000000..648089f90b7 --- /dev/null +++ b/nixos/modules/services/backup/znapzend.nix @@ -0,0 +1,36 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + cfg = config.services.znapzend; +in +{ + options = { + services.znapzend = { + enable = mkEnableOption "ZnapZend daemon"; + }; + }; + + config = mkIf cfg.enable { + environment.systemPackages = [ pkgs.znapzend ]; + + systemd.services = { + "znapzend" = { + description = "ZnapZend - ZFS Backup System"; + after = [ "zfs.target" ]; + + path = with pkgs; [ znapzend zfs mbuffer openssh ]; + + script = '' + znapzend + ''; + + reload = '' + /bin/kill -HUP $MAINPID + ''; + }; + }; + + }; +} diff --git a/nixos/modules/services/logging/awstats.nix b/nixos/modules/services/logging/awstats.nix new file mode 100644 index 00000000000..8ab7e6acd98 --- /dev/null +++ b/nixos/modules/services/logging/awstats.nix @@ -0,0 +1,123 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + cfg = config.services.awstats; + package = pkgs.awstats; +in + +{ + options.services.awstats = { + enable = mkOption { + type = types.bool; + default = cfg.service.enable; + description = '' + Enable the awstats program (but not service). + Currently only simple httpd (Apache) configs are supported, + and awstats plugins may not work correctly. + ''; + }; + vardir = mkOption { + type = types.path; + default = "/var/lib/awstats"; + description = "The directory where variable awstats data will be stored."; + }; + + extraConfig = mkOption { + type = types.lines; + default = ""; + description = "Extra configuration to be appendend to awstats.conf."; + }; + + updateAt = mkOption { + type = types.nullOr types.string; + default = null; + example = "hourly"; + description = '' + Specification of the time at which awstats will get updated. + (in the format described by + systemd.time + 5) + ''; + }; + + service = { + enable = mkOption { + type = types.bool; + default = false; + description = ''Enable the awstats web service. This switches on httpd.''; + }; + urlPrefix = mkOption { + type = types.string; + default = "/awstats"; + description = "The URL prefix under which the awstats service appears."; + }; + }; + }; + + + config = mkIf cfg.enable { + environment.systemPackages = [ package.bin ]; + /* TODO: + - heed config.services.httpd.logPerVirtualHost, etc. + - Can't AllowToUpdateStatsFromBrowser, as CGI scripts don't have permission + to read the logs, and our httpd config apparently doesn't an option for that. + */ + environment.etc."awstats/awstats.conf".source = pkgs.runCommand "awstats.conf" + { preferLocalBuild = true; } + ( let + cfg-httpd = config.services.httpd; + logFormat = + if cfg-httpd.logFormat == "combined" then "1" else + if cfg-httpd.logFormat == "common" then "4" else + throw "awstats service doesn't support Apache log format `${cfg-httpd.logFormat}`"; + in + '' + sed \ + -e 's|^\(DirData\)=.*$|\1="${cfg.vardir}"|' \ + -e 's|^\(DirIcons\)=.*$|\1="icons"|' \ + -e 's|^\(CreateDirDataIfNotExists\)=.*$|\1=1|' \ + -e 's|^\(SiteDomain\)=.*$|\1="${cfg-httpd.hostName}"|' \ + -e 's|^\(LogFile\)=.*$|\1="${cfg-httpd.logDir}/access_log"|' \ + -e 's|^\(LogFormat\)=.*$|\1=${logFormat}|' \ + < '${package.out}/wwwroot/cgi-bin/awstats.model.conf' > "$out" + echo '${cfg.extraConfig}' >> "$out" + ''); + + # The httpd sub-service showing awstats. + services.httpd.enable = mkIf cfg.service.enable true; + services.httpd.extraSubservices = mkIf cfg.service.enable [ { function = { serverInfo, ... }: { + extraConfig = + '' + Alias ${cfg.service.urlPrefix}/classes "${package.out}/wwwroot/classes/" + Alias ${cfg.service.urlPrefix}/css "${package.out}/wwwroot/css/" + Alias ${cfg.service.urlPrefix}/icons "${package.out}/wwwroot/icon/" + ScriptAlias ${cfg.service.urlPrefix}/ "${package.out}/wwwroot/cgi-bin/" + + + Options None + AllowOverride None + Order allow,deny + Allow from all + + ''; + startupScript = + let + inherit (serverInfo.serverConfig) user group; + in pkgs.writeScript "awstats_startup.sh" + '' + mkdir -p '${cfg.vardir}' + chown '${user}:${group}' '${cfg.vardir}' + ''; + };}]; + + systemd.services.awstats-update = mkIf (cfg.updateAt != null) { + description = "awstats log collector"; + script = "exec '${package.bin}/bin/awstats' -update -config=awstats.conf"; + startAt = cfg.updateAt; + }; + }; + +} + diff --git a/nixos/modules/services/mail/dovecot.nix b/nixos/modules/services/mail/dovecot.nix index 3935c14dc8c..127c3da69d1 100644 --- a/nixos/modules/services/mail/dovecot.nix +++ b/nixos/modules/services/mail/dovecot.nix @@ -98,8 +98,8 @@ in package = mkOption { type = types.package; - default = pkgs.dovecot22; - defaultText = "pkgs.dovecot22"; + default = pkgs.dovecot; + defaultText = "pkgs.dovecot"; description = "Dovecot package to use."; }; diff --git a/nixos/modules/services/mail/dspam.nix b/nixos/modules/services/mail/dspam.nix index 46e6f216b21..89076ff0546 100644 --- a/nixos/modules/services/mail/dspam.nix +++ b/nixos/modules/services/mail/dspam.nix @@ -104,6 +104,7 @@ in { systemd.services.dspam = { description = "dspam spam filtering daemon"; wantedBy = [ "multi-user.target" ]; + after = [ "postgresql.service" ]; restartTriggers = [ cfgfile ]; serviceConfig = { @@ -114,7 +115,7 @@ in { RuntimeDirectoryMode = optional (cfg.domainSocket == defaultSock) "0750"; PermissionsStartOnly = true; # DSPAM segfaults on just about every error - Restart = "on-failure"; + Restart = "on-abort"; RestartSec = "1s"; }; diff --git a/nixos/modules/services/mail/mail.nix b/nixos/modules/services/mail/mail.nix index b7e1d295f2c..63e8d78b5b0 100644 --- a/nixos/modules/services/mail/mail.nix +++ b/nixos/modules/services/mail/mail.nix @@ -12,9 +12,9 @@ with lib; sendmailSetuidWrapper = mkOption { default = null; + internal = true; description = '' - Configuration for the sendmail setuid wrwapper (like an element of - security.setuidOwners)"; + Configuration for the sendmail setuid wapper. ''; }; diff --git a/nixos/modules/services/mail/postfix.nix b/nixos/modules/services/mail/postfix.nix index 404cdf0f564..bad9d527f9a 100644 --- a/nixos/modules/services/mail/postfix.nix +++ b/nixos/modules/services/mail/postfix.nix @@ -27,7 +27,7 @@ let mainCf = '' - compatibility_level = 2 + compatibility_level = 9999 mail_owner = ${user} default_privs = nobody diff --git a/nixos/modules/services/misc/autofs.nix b/nixos/modules/services/misc/autofs.nix index 3a95e922820..8913030e0ea 100644 --- a/nixos/modules/services/misc/autofs.nix +++ b/nixos/modules/services/misc/autofs.nix @@ -79,6 +79,11 @@ in wantedBy = [ "multi-user.target" ]; after = [ "network.target" ]; + preStart = '' + # There should be only one autofs service managed by systemd, so this should be safe. + rm -f /tmp/autofs-running + ''; + serviceConfig = { ExecStart = "${pkgs.autofs5}/sbin/automount ${if cfg.debug then "-d" else ""} -f -t ${builtins.toString cfg.timeout} ${autoMaster} ${if cfg.debug then "-l7" else ""}"; ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID"; diff --git a/nixos/modules/services/misc/etcd.nix b/nixos/modules/services/misc/etcd.nix index b3354e33096..bc8064e3c87 100644 --- a/nixos/modules/services/misc/etcd.nix +++ b/nixos/modules/services/misc/etcd.nix @@ -114,6 +114,7 @@ in { }) // (mapAttrs' (n: v: nameValuePair "ETCD_${n}" v) cfg.extraConf); serviceConfig = { + Type = "notify"; ExecStart = "${pkgs.etcd}/bin/etcd"; User = "etcd"; PermissionsStartOnly = true; diff --git a/nixos/modules/services/misc/gitlab.nix b/nixos/modules/services/misc/gitlab.nix index cc50bfbea53..267442bd1f8 100644 --- a/nixos/modules/services/misc/gitlab.nix +++ b/nixos/modules/services/misc/gitlab.nix @@ -206,12 +206,6 @@ in { description = "Gitlab database user."; }; - emailFrom = mkOption { - type = types.str; - default = "example@example.org"; - description = "The source address for emails sent by gitlab."; - }; - host = mkOption { type = types.str; default = config.networking.hostName; @@ -328,7 +322,7 @@ in { Group = cfg.group; TimeoutSec = "300"; WorkingDirectory = "${cfg.packages.gitlab}/share/gitlab"; - ExecStart="${bundler}/bin/bundle exec \"sidekiq -q post_receive -q mailer -q system_hook -q project_web_hook -q gitlab_shell -q common -q default -e production -P ${cfg.statePath}/tmp/sidekiq.pid\""; + ExecStart="${bundler}/bin/bundle exec \"sidekiq -q post_receive -q mailers -q system_hook -q project_web_hook -q gitlab_shell -q common -q default -e production -P ${cfg.statePath}/tmp/sidekiq.pid\""; }; }; diff --git a/nixos/modules/services/misc/mantisbt.nix b/nixos/modules/services/misc/mantisbt.nix new file mode 100644 index 00000000000..7e3474feb67 --- /dev/null +++ b/nixos/modules/services/misc/mantisbt.nix @@ -0,0 +1,68 @@ +{ config, lib, pkgs, ... }: + +with lib; +let + cfg = config.services.mantisbt; + + freshInstall = cfg.extraConfig == ""; + + # combined code+config directory + mantisbt = let + config_inc = pkgs.writeText "config_inc.php" ("nix.binaryCachePublicKeys. If disabled (the - default), signatures are neither required nor checked, so - it's strongly recommended that you use only trustworthy - caches and https to prevent man-in-the-middle attacks. + If enabled (the default), Nix will only download binaries from binary caches if + they are cryptographically signed with any of the keys listed in + . If disabled, signatures are neither + required nor checked, so it's strongly recommended that you use only + trustworthy caches and https to prevent man-in-the-middle attacks. ''; }; diff --git a/nixos/modules/services/misc/octoprint.nix b/nixos/modules/services/misc/octoprint.nix index 9cf46345c22..8ab2a9307a7 100644 --- a/nixos/modules/services/misc/octoprint.nix +++ b/nixos/modules/services/misc/octoprint.nix @@ -6,12 +6,16 @@ let cfg = config.services.octoprint; - cfgUpdate = pkgs.writeText "octoprint-config.yaml" (builtins.toJSON { + baseConfig = { plugins.cura.cura_engine = "${pkgs.curaengine}/bin/CuraEngine"; server.host = cfg.host; server.port = cfg.port; webcam.ffmpeg = "${pkgs.ffmpeg}/bin/ffmpeg"; - }); + }; + + fullConfig = recursiveUpdate cfg.extraConfig baseConfig; + + cfgUpdate = pkgs.writeText "octoprint-config.yaml" (builtins.toJSON fullConfig); pluginsEnv = pkgs.python.buildEnv.override { extraLibs = cfg.plugins pkgs.octoprint-plugins; @@ -62,13 +66,18 @@ in }; plugins = mkOption { - #type = types.functionTo (types.listOf types.package); default = plugins: []; defaultText = "plugins: []"; example = literalExample "plugins: [ m3d-fio ]"; description = "Additional plugins."; }; + extraConfig = mkOption { + type = types.attrs; + default = {}; + description = "Extra options which are added to OctoPrint's YAML configuration file."; + }; + }; }; diff --git a/nixos/modules/services/monitoring/grafana.nix b/nixos/modules/services/monitoring/grafana.nix index 1dec528b5a2..5c6f063b149 100644 --- a/nixos/modules/services/monitoring/grafana.nix +++ b/nixos/modules/services/monitoring/grafana.nix @@ -87,7 +87,7 @@ in { staticRootPath = mkOption { description = "Root path for static assets."; - default = "${cfg.package.out}/share/grafana/public"; + default = "${cfg.package}/share/grafana/public"; type = types.str; }; diff --git a/nixos/modules/services/monitoring/graphite.nix b/nixos/modules/services/monitoring/graphite.nix index 976fd253a7c..7104a5796f7 100644 --- a/nixos/modules/services/monitoring/graphite.nix +++ b/nixos/modules/services/monitoring/graphite.nix @@ -51,7 +51,13 @@ let ''; carbonEnv = { - PYTHONPATH = "${pkgs.python27Packages.carbon}/lib/python2.7/site-packages"; + PYTHONPATH = let + cenv = pkgs.python.buildEnv.override { + extraLibs = [ pkgs.python27Packages.carbon ]; + }; + cenvPack = "${cenv}/${pkgs.python.sitePackages}"; + # opt/graphite/lib contains twisted.plugins.carbon-cache + in "${cenvPack}/opt/graphite/lib:${cenvPack}"; GRAPHITE_ROOT = dataDir; GRAPHITE_CONF_DIR = configDir; GRAPHITE_STORAGE_DIR = dataDir; @@ -445,10 +451,21 @@ in { after = [ "network-interfaces.target" ]; path = [ pkgs.perl ]; environment = { - PYTHONPATH = "${pkgs.python27Packages.graphite_web}/lib/python2.7/site-packages"; + PYTHONPATH = let + penv = pkgs.python.buildEnv.override { + extraLibs = [ + pkgs.python27Packages.graphite_web + pkgs.python27Packages.pysqlite + ]; + }; + penvPack = "${penv}/${pkgs.python.sitePackages}"; + # opt/graphite/webapp contains graphite/settings.py + # explicitly adding pycairo in path because it cannot be imported via buildEnv + in "${penvPack}/opt/graphite/webapp:${penvPack}:${pkgs.pycairo}/${pkgs.python.sitePackages}"; DJANGO_SETTINGS_MODULE = "graphite.settings"; GRAPHITE_CONF_DIR = configDir; GRAPHITE_STORAGE_DIR = dataDir; + LD_LIBRARY_PATH = "${pkgs.cairo}/lib"; }; serviceConfig = { ExecStart = '' @@ -486,9 +503,11 @@ in { wantedBy = [ "multi-user.target" ]; after = [ "network-interfaces.target" ]; environment = { - PYTHONPATH = - "${cfg.api.package}/lib/python2.7/site-packages:" + - concatMapStringsSep ":" (f: f + "/lib/python2.7/site-packages") cfg.api.finders; + PYTHONPATH = let + aenv = pkgs.python.buildEnv.override { + extraLibs = [ cfg.api.package pkgs.cairo ] ++ cfg.api.finders; + }; + in "${aenv}/${pkgs.python.sitePackages}"; GRAPHITE_API_CONFIG = graphiteApiConfig; LD_LIBRARY_PATH = "${pkgs.cairo}/lib"; }; diff --git a/nixos/modules/services/networking/bird.nix b/nixos/modules/services/networking/bird.nix index e7e1db19152..e76cdac14ca 100644 --- a/nixos/modules/services/networking/bird.nix +++ b/nixos/modules/services/networking/bird.nix @@ -30,7 +30,7 @@ in user = mkOption { type = types.string; - default = "ircd"; + default = "bird"; description = '' BIRD Internet Routing Daemon user. ''; @@ -38,7 +38,7 @@ in group = mkOption { type = types.string; - default = "ircd"; + default = "bird"; description = '' BIRD Internet Routing Daemon group. ''; diff --git a/nixos/modules/services/networking/dnscrypt-proxy.nix b/nixos/modules/services/networking/dnscrypt-proxy.nix index c724ee979c2..886bfc30468 100644 --- a/nixos/modules/services/networking/dnscrypt-proxy.nix +++ b/nixos/modules/services/networking/dnscrypt-proxy.nix @@ -5,13 +5,17 @@ let apparmorEnabled = config.security.apparmor.enable; dnscrypt-proxy = pkgs.dnscrypt-proxy; cfg = config.services.dnscrypt-proxy; + resolverListFile = "${dnscrypt-proxy}/share/dnscrypt-proxy/dnscrypt-resolvers.csv"; localAddress = "${cfg.localAddress}:${toString cfg.localPort}"; + daemonArgs = [ "--local-address=${localAddress}" (optionalString cfg.tcpOnly "--tcp-only") + (optionalString cfg.ephemeralKeys "-E") ] ++ resolverArgs; + resolverArgs = if (cfg.customResolver != null) then [ "--resolver-address=${cfg.customResolver.address}:${toString cfg.customResolver.port}" @@ -27,43 +31,63 @@ in { options = { services.dnscrypt-proxy = { - enable = mkEnableOption '' - Enable dnscrypt-proxy. The proxy relays regular DNS queries to a - DNSCrypt enabled upstream resolver. The traffic between the - client and the upstream resolver is encrypted and authenticated, - which may mitigate the risk of MITM attacks and third-party + enable = mkEnableOption "dnscrypt-proxy" // { description = '' + Whether to enable the DNSCrypt client proxy. The proxy relays + DNS queries to a DNSCrypt enabled upstream resolver. The traffic + between the client and the upstream resolver is encrypted and + authenticated, mitigating the risk of MITM attacks and third-party snooping (assuming the upstream is trustworthy). - ''; + + Enabling this option does not alter the system nameserver; to relay + local queries, prepend 127.0.0.1 to + . + + The recommended configuration is to run DNSCrypt proxy as a forwarder + for a caching DNS client, as in + + { + services.dnscrypt-proxy.enable = true; + services.dnscrypt-proxy.localPort = 43; + services.dnsmasq.enable = true; + services.dnsmasq.servers = [ "127.0.0.1#43" ]; + services.dnsmasq.resolveLocalQueries = true; # this is the default + } + + ''; }; localAddress = mkOption { default = "127.0.0.1"; type = types.string; description = '' - Listen for DNS queries on this address. + Listen for DNS queries to relay on this address. The only reason to + change this from its default value is to proxy queries on behalf + of other machines (typically on the local network). ''; }; localPort = mkOption { default = 53; type = types.int; description = '' - Listen on this port. + Listen for DNS queries to relay on this port. The default value + assumes that the DNSCrypt proxy should relay DNS queries directly. + When running as a forwarder for another DNS client, set this option + to a different value; otherwise leave the default. ''; }; resolverName = mkOption { - default = "opendns"; + default = "dnscrypt.eu-nl"; type = types.nullOr types.string; description = '' The name of the upstream DNSCrypt resolver to use. See - ${resolverListFile} for alternative resolvers - (e.g., if you are concerned about logging and/or server - location). + ${resolverListFile} for alternative resolvers. + The default resolver is located in Holland, supports DNS security + extensions, and claims to not keep logs. ''; }; customResolver = mkOption { default = null; description = '' - Use a resolver not listed in the upstream list (e.g., - a private DNSCrypt provider). For advanced users only. - If specified, this option takes precedence. + Use an unlisted resolver (e.g., a private DNSCrypt provider). For + advanced users only. If specified, this option takes precedence. ''; type = types.nullOr (types.submodule ({ ... }: { options = { address = mkOption { @@ -80,20 +104,31 @@ in type = types.str; description = "Provider fully qualified domain name"; example = "2.dnscrypt-cert.opendns.com"; - }; - key = mkOption { - type = types.str; - description = "Provider public key"; - example = "B735:1140:206F:225D:3E2B:D822:D7FD:691E:A1C3:3CC8:D666:8D0C:BE04:BFAB:CA43:FB79"; - }; }; })); + }; + key = mkOption { + type = types.str; + description = "Provider public key"; + example = "B735:1140:206F:225D:3E2B:D822:D7FD:691E:A1C3:3CC8:D666:8D0C:BE04:BFAB:CA43:FB79"; + }; + }; })); }; tcpOnly = mkOption { default = false; type = types.bool; description = '' - Force sending encrypted DNS queries to the upstream resolver - over TCP instead of UDP (on port 443). Enabling this option may - help circumvent filtering, but should not be used otherwise. + Force sending encrypted DNS queries to the upstream resolver over + TCP instead of UDP (on port 443). Use only if the UDP port is blocked. + ''; + }; + ephemeralKeys = mkOption { + default = false; + type = types.bool; + description = '' + Compute a new key pair for every query. Enabling this option + increases CPU usage, but makes it more difficult for the upstream + resolver to track your usage of their service across IP addresses. + The default is to re-use the public key pair for all queries, making + tracking trivial. ''; }; }; @@ -130,16 +165,20 @@ in ${pkgs.xz}/lib/liblzma.so.* mr, ${pkgs.libgcrypt}/lib/libgcrypt.so.* mr, ${pkgs.libgpgerror}/lib/libgpg-error.so.* mr, + ${pkgs.libcap}/lib/libcap.so.* mr, + ${pkgs.lz4}/lib/liblz4.so.* mr, + ${pkgs.attr}/lib/libattr.so.* mr, ${resolverListFile} r, } '')); - users.extraUsers.dnscrypt-proxy = { - uid = config.ids.uids.dnscrypt-proxy; + users.users.dnscrypt-proxy = { description = "dnscrypt-proxy daemon user"; + isSystemUser = true; + group = "dnscrypt-proxy"; }; - users.extraGroups.dnscrypt-proxy.gid = config.ids.gids.dnscrypt-proxy; + users.groups.dnscrypt-proxy = {}; systemd.sockets.dnscrypt-proxy = { description = "dnscrypt-proxy listening socket"; @@ -152,16 +191,21 @@ in systemd.services.dnscrypt-proxy = { description = "dnscrypt-proxy daemon"; + after = [ "network.target" ] ++ optional apparmorEnabled "apparmor.service"; requires = [ "dnscrypt-proxy.socket "] ++ optional apparmorEnabled "apparmor.service"; + serviceConfig = { Type = "simple"; NonBlocking = "true"; ExecStart = "${dnscrypt-proxy}/bin/dnscrypt-proxy ${toString daemonArgs}"; + User = "dnscrypt-proxy"; Group = "dnscrypt-proxy"; + PrivateTmp = true; PrivateDevices = true; + ProtectHome = true; }; }; }; diff --git a/nixos/modules/services/networking/firewall.nix b/nixos/modules/services/networking/firewall.nix index e11fe072be6..9221fe15577 100644 --- a/nixos/modules/services/networking/firewall.nix +++ b/nixos/modules/services/networking/firewall.nix @@ -338,7 +338,7 @@ in }; networking.firewall.allowPing = mkOption { - default = false; + default = true; type = types.bool; description = '' diff --git a/nixos/modules/services/networking/i2pd.nix b/nixos/modules/services/networking/i2pd.nix index e73316a9b1e..15ec9be8012 100644 --- a/nixos/modules/services/networking/i2pd.nix +++ b/nixos/modules/services/networking/i2pd.nix @@ -10,9 +10,10 @@ let extip = "EXTIP=\$(${pkgs.curl}/bin/curl -sf \"http://jsonip.com\" | ${pkgs.gawk}/bin/awk -F'\"' '{print $4}')"; - toOneZero = b: if b then "1" else "0"; + toYesNo = b: if b then "yes" else "no"; mkEndpointOpt = name: addr: port: { + enable = mkEnableOption name; name = mkOption { type = types.str; default = name; @@ -63,9 +64,9 @@ let } // mkEndpointOpt name "127.0.0.1" 0; i2pdConf = pkgs.writeText "i2pd.conf" '' - ipv6 = ${toOneZero cfg.enableIPv6} - notransit = ${toOneZero cfg.notransit} - floodfill = ${toOneZero cfg.floodfill} + ipv6 = ${toYesNo cfg.enableIPv6} + notransit = ${toYesNo cfg.notransit} + floodfill = ${toYesNo cfg.floodfill} ${if isNull cfg.port then "" else "port = ${toString cfg.port}"} ${flip concatMapStrings (collect (proto: proto ? port && proto ? address && proto ? name) cfg.proto) @@ -73,6 +74,7 @@ let [${proto.name}] address = ${proto.address} port = ${toString proto.port} + enabled = ${toYesNo proto.enable} '') } ''; diff --git a/nixos/modules/services/networking/iodined.nix b/nixos/modules/services/networking/iodined.nix index 6bfe62e6261..20d371c4e2d 100644 --- a/nixos/modules/services/networking/iodined.nix +++ b/nixos/modules/services/networking/iodined.nix @@ -64,8 +64,7 @@ in systemd.services.iodined = { description = "iodine, ip over dns daemon"; - after = [ "network.target" ]; - wantedBy = [ "multi-user.target" ]; + wantedBy = [ "ip-up.target" ]; serviceConfig.ExecStart = "${pkgs.iodine}/sbin/iodined -f -u ${iodinedUser} ${cfg.extraConfig} ${cfg.ip} ${cfg.domain}"; }; diff --git a/nixos/modules/services/networking/mjpg-streamer.nix b/nixos/modules/services/networking/mjpg-streamer.nix new file mode 100644 index 00000000000..9986f549aec --- /dev/null +++ b/nixos/modules/services/networking/mjpg-streamer.nix @@ -0,0 +1,75 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + + cfg = config.services.mjpg-streamer; + +in { + + options = { + + services.mjpg-streamer = { + + enable = mkEnableOption "mjpg-streamer webcam streamer"; + + inputPlugin = mkOption { + type = types.str; + default = "input_uvc.so"; + description = '' + Input plugin. See plugins documentation for more information. + ''; + }; + + outputPlugin = mkOption { + type = types.str; + default = "output_http.so -w @www@ -n -p 5050"; + description = '' + Output plugin. @www@ is substituted for default mjpg-streamer www directory. + See plugins documentation for more information. + ''; + }; + + user = mkOption { + type = types.str; + default = "mjpg-streamer"; + description = "mjpg-streamer user name."; + }; + + group = mkOption { + type = types.str; + default = "video"; + description = "mjpg-streamer group name."; + }; + + }; + + }; + + config = mkIf cfg.enable { + + users.extraUsers = optional (cfg.user == "mjpg-streamer") { + name = "mjpg-streamer"; + uid = config.ids.uids.mjpg-streamer; + group = cfg.group; + }; + + systemd.services.mjpg-streamer = { + description = "mjpg-streamer webcam streamer"; + wantedBy = [ "multi-user.target" ]; + + serviceConfig.User = cfg.user; + serviceConfig.Group = cfg.group; + + script = '' + IPLUGIN="${cfg.inputPlugin}" + OPLUGIN="${cfg.outputPlugin}" + OPLUGIN="''${OPLUGIN//@www@/${pkgs.mjpg-streamer}/share/mjpg-streamer/www}" + exec ${pkgs.mjpg-streamer}/bin/mjpg_streamer -i "$IPLUGIN" -o "$OPLUGIN" + ''; + }; + + }; + +} diff --git a/nixos/modules/services/networking/nsd.nix b/nixos/modules/services/networking/nsd.nix index ca08bb57895..333a3378c4c 100644 --- a/nixos/modules/services/networking/nsd.nix +++ b/nixos/modules/services/networking/nsd.nix @@ -346,7 +346,7 @@ in type = types.bool; default = true; description = '' - Wheter NSD should answer VERSION.BIND and VERSION.SERVER CHAOS class queries. + Whether NSD should answer VERSION.BIND and VERSION.SERVER CHAOS class queries. ''; }; @@ -378,7 +378,7 @@ in type = types.bool; default = true; description = '' - Wheter to listen on IPv4 connections. + Whether to listen on IPv4 connections. ''; }; @@ -394,7 +394,7 @@ in type = types.bool; default = true; description = '' - Wheter to listen on IPv6 connections. + Whether to listen on IPv6 connections. ''; }; @@ -434,7 +434,7 @@ in type = types.bool; default = pkgs.stdenv.isLinux; description = '' - Wheter to enable SO_REUSEPORT on all used sockets. This lets multiple + Whether to enable SO_REUSEPORT on all used sockets. This lets multiple processes bind to the same port. This speeds up operation especially if the server count is greater than one and makes fast restarts less prone to fail @@ -445,7 +445,7 @@ in type = types.bool; default = false; description = '' - Wheter if this server will be a root server (a DNS root server, you + Whether this server will be a root server (a DNS root server, you usually don't want that). ''; }; @@ -524,7 +524,7 @@ in type = types.bool; default = true; description = '' - Wheter to check mtime of all zone files on start and sighup. + Whether to check mtime of all zone files on start and sighup. ''; }; diff --git a/nixos/modules/services/networking/radicale.nix b/nixos/modules/services/networking/radicale.nix index 4b77ef22ac1..19762f4e570 100644 --- a/nixos/modules/services/networking/radicale.nix +++ b/nixos/modules/services/networking/radicale.nix @@ -35,12 +35,27 @@ in config = mkIf cfg.enable { environment.systemPackages = [ pkgs.pythonPackages.radicale ]; + users.extraUsers = singleton + { name = "radicale"; + uid = config.ids.uids.radicale; + description = "radicale user"; + home = "/var/lib/radicale"; + createHome = true; + }; + + users.extraGroups = singleton + { name = "radicale"; + gid = config.ids.gids.radicale; + }; + systemd.services.radicale = { description = "A Simple Calendar and Contact Server"; after = [ "network-interfaces.target" ]; wantedBy = [ "multi-user.target" ]; script = "${pkgs.pythonPackages.radicale}/bin/radicale -C ${confFile} -d"; serviceConfig.Type = "forking"; + serviceConfig.User = "radicale"; + serviceConfig.Group = "radicale"; }; }; } diff --git a/nixos/modules/services/networking/ssh/sshd.nix b/nixos/modules/services/networking/ssh/sshd.nix index 20a1777f3cc..5971a5a250d 100644 --- a/nixos/modules/services/networking/ssh/sshd.nix +++ b/nixos/modules/services/networking/ssh/sshd.nix @@ -263,7 +263,7 @@ in serviceConfig = { ExecStart = - "${cfgc.package}/sbin/sshd " + (optionalString cfg.startWhenNeeded "-i ") + + "${cfgc.package}/bin/sshd " + (optionalString cfg.startWhenNeeded "-i ") + "-f ${pkgs.writeText "sshd_config" cfg.extraConfig}"; KillMode = "process"; } // (if cfg.startWhenNeeded then { diff --git a/nixos/modules/services/networking/unbound.nix b/nixos/modules/services/networking/unbound.nix index e154aed0843..89762fe5248 100644 --- a/nixos/modules/services/networking/unbound.nix +++ b/nixos/modules/services/networking/unbound.nix @@ -113,7 +113,7 @@ in ''; serviceConfig = { - ExecStart = "${pkgs.unbound}/sbin/unbound -d -c ${stateDir}/unbound.conf"; + ExecStart = "${pkgs.unbound}/bin/unbound -d -c ${stateDir}/unbound.conf"; ExecStopPost="${pkgs.utillinux}/bin/umount ${stateDir}/dev/random"; }; }; diff --git a/nixos/modules/services/networking/vsftpd.nix b/nixos/modules/services/networking/vsftpd.nix index e7301e9ef5f..7ec484941ed 100644 --- a/nixos/modules/services/networking/vsftpd.nix +++ b/nixos/modules/services/networking/vsftpd.nix @@ -85,6 +85,9 @@ let ssl_enable=YES rsa_cert_file=${cfg.rsaCertFile} ''} + ${optionalString (cfg.rsaKeyFile != null) '' + rsa_private_key_file=${cfg.rsaKeyFile} + ''} ${optionalString (cfg.userlistFile != null) '' userlist_file=${cfg.userlistFile} ''} @@ -147,6 +150,12 @@ in description = "RSA certificate file."; }; + rsaKeyFile = mkOption { + type = types.nullOr types.path; + default = null; + description = "RSA private key file."; + }; + anonymousUmask = mkOption { type = types.string; default = "077"; diff --git a/nixos/modules/services/printing/cupsd.nix b/nixos/modules/services/printing/cupsd.nix index 80d11565e47..9e122dc7bea 100644 --- a/nixos/modules/services/printing/cupsd.nix +++ b/nixos/modules/services/printing/cupsd.nix @@ -238,7 +238,8 @@ in example = literalExample "[ pkgs.splix ]"; description = '' CUPS drivers to use. Drivers provided by CUPS, cups-filters, Ghostscript - and Samba are added unconditionally. + and Samba are added unconditionally. For adding Gutenprint, see + gutenprint. ''; }; @@ -310,7 +311,9 @@ in [ ! -e "/var/lib/cups/$i" ] && ln -s "${rootdir}/etc/cups/$i" "/var/lib/cups/$i" done ${optionalString cfg.gutenprint '' - ${gutenprint}/bin/cups-genppdupdate -p /etc/cups/ppd + if [ -d /var/lib/cups/ppd ]; then + ${gutenprint}/bin/cups-genppdupdate -p /var/lib/cups/ppd + fi ''} ''; }; diff --git a/nixos/modules/services/system/kerberos.nix b/nixos/modules/services/system/kerberos.nix index e0c3f95c3cc..347302c6090 100644 --- a/nixos/modules/services/system/kerberos.nix +++ b/nixos/modules/services/system/kerberos.nix @@ -46,7 +46,7 @@ in }; systemd.services.kdc = { - description = "Kerberos Domain Controller daemon"; + description = "Key Distribution Center daemon"; wantedBy = [ "multi-user.target" ]; preStart = '' mkdir -m 0755 -p ${stateDir} @@ -55,7 +55,7 @@ in }; systemd.services.kpasswdd = { - description = "Kerberos Domain Controller daemon"; + description = "Kerberos Password Changing daemon"; wantedBy = [ "multi-user.target" ]; script = "${heimdal}/sbin/kpasswdd"; }; diff --git a/nixos/modules/services/torrent/transmission.nix b/nixos/modules/services/torrent/transmission.nix index 5ae12ac1e95..7718a721763 100644 --- a/nixos/modules/services/torrent/transmission.nix +++ b/nixos/modules/services/torrent/transmission.nix @@ -128,6 +128,7 @@ in ${pkgs.c-ares}/lib/libcares*.so* mr, ${pkgs.libcap}/lib/libcap*.so* mr, ${pkgs.attr}/lib/libattr*.so* mr, + ${pkgs.lz4}/lib/liblz4*.so* mr, @{PROC}/sys/kernel/random/uuid r, @{PROC}/sys/vm/overcommit_memory r, diff --git a/nixos/modules/services/web-servers/apache-httpd/foswiki.nix b/nixos/modules/services/web-servers/apache-httpd/foswiki.nix new file mode 100644 index 00000000000..8c1ac8935a4 --- /dev/null +++ b/nixos/modules/services/web-servers/apache-httpd/foswiki.nix @@ -0,0 +1,78 @@ +{ config, pkgs, lib, serverInfo, ... }: +let + inherit (pkgs) foswiki; + inherit (serverInfo.serverConfig) user group; + inherit (config) vardir; +in +{ + options.vardir = lib.mkOption { + type = lib.types.path; + default = "/var/www/foswiki"; + description = "The directory where variable foswiki data will be stored and served from."; + }; + + # TODO: this will probably need to be better customizable + extraConfig = + let httpd-conf = pkgs.runCommand "foswiki-httpd.conf" + { preferLocalBuild = true; } + '' + substitute '${foswiki}/foswiki_httpd_conf.txt' "$out" \ + --replace /var/www/foswiki/ "${vardir}/" + ''; + in + '' + RewriteEngine on + RewriteRule /foswiki/(.*) ${vardir}/$1 + + + Require all granted + + + Include ${httpd-conf} + + Options FollowSymlinks + + ''; + + /** This handles initial setup and updates. + It will probably need some tweaking, maybe per-site. */ + startupScript = pkgs.writeScript "foswiki_startup.sh" ( + let storeLink = "${vardir}/package"; in + '' + [ -e '${storeLink}' ] || needs_setup=1 + mkdir -p '${vardir}' + cd '${vardir}' + ln -sf -T '${foswiki}' '${storeLink}' + + if [ -n "$needs_setup" ]; then # do initial setup + mkdir -p bin lib + # setup most of data/ as copies only + cp -r '${foswiki}'/data '${vardir}/' + rm -r '${vardir}'/data/{System,mime.types} + ln -sr -t '${vardir}/data/' '${storeLink}'/data/{System,mime.types} + + ln -sr '${storeLink}/locale' . + + mkdir pub + ln -sr '${storeLink}/pub/System' pub/ + + mkdir templates + ln -sr '${storeLink}'/templates/* templates/ + + ln -sr '${storeLink}/tools' . + + mkdir -p '${vardir}'/working/{logs,tmp} + ln -sr '${storeLink}/working/README' working/ # used to check dir validity + + chown -R '${user}:${group}' . + chmod +w -R . + fi + + # bin/* and lib/* shall always be overwritten, in case files are added + ln -srf '${storeLink}'/bin/* '${vardir}/bin/' + ln -srf '${storeLink}'/lib/* '${vardir}/lib/' + '' + /* Symlinking bin/ one-by-one ensures that ${vardir}/lib/LocalSite.cfg + is used instead of ${foswiki}/... */ + ); +} diff --git a/nixos/modules/services/web-servers/uwsgi.nix b/nixos/modules/services/web-servers/uwsgi.nix index e6c25e6215c..56f077e62a8 100644 --- a/nixos/modules/services/web-servers/uwsgi.nix +++ b/nixos/modules/services/web-servers/uwsgi.nix @@ -32,17 +32,27 @@ let self = pythonPackages; }; - json = builtins.toJSON { + penv = python.buildEnv.override { + extraLibs = (c.pythonPackages or (self: [])) pythonPackages; + }; + + uwsgiCfg = { uwsgi = if c.type == "normal" then { inherit plugins; } // removeAttrs c [ "type" "pythonPackages" ] // optionalAttrs (python != null) { - pythonpath = "@PYTHONPATH@"; - env = (c.env or {}) // { - PATH = optionalString (c ? env.PATH) "${c.env.PATH}:" + "@PATH@"; - }; + pythonpath = "${penv}/${python.sitePackages}"; + env = + # Argh, uwsgi expects list of key-values there instead of a dictionary. + let env' = c.env or []; + getPath = + x: if hasPrefix "PATH=" x + then substring (stringLength "PATH=") (stringLength x) x + else null; + oldPaths = filter (x: x != null) (map getPath env'); + in env' ++ [ "PATH=${optionalString (oldPaths != []) "${last oldPaths}:"}${penv}/bin" ]; } else if c.type == "emperor" then { @@ -55,35 +65,7 @@ let else throw "`type` attribute in UWSGI configuration should be either 'normal' or 'emperor'"; }; - in - if python == null || c.type != "normal" - then pkgs.writeTextDir "${name}.json" json - else pkgs.stdenv.mkDerivation { - name = "uwsgi-config"; - inherit json; - passAsFile = [ "json" ]; - nativeBuildInputs = [ pythonPackages.wrapPython ]; - pythonInputs = (c.pythonPackages or (self: [])) pythonPackages; - - buildCommand = '' - mkdir $out - declare -A pythonPathsSeen=() - program_PYTHONPATH= - program_PATH= - if [ -n "$pythonInputs" ]; then - for i in $pythonInputs; do - _addToPythonPath $i - done - fi - # A hack to replace "@PYTHONPATH@" with a JSON list - if [ -n "$program_PYTHONPATH" ]; then - program_PYTHONPATH="\"''${program_PYTHONPATH//:/\",\"}\"" - fi - substitute $jsonPath $out/${name}.json \ - --replace '"@PYTHONPATH@"' "[$program_PYTHONPATH]" \ - --subst-var-by PATH "$program_PATH" - ''; - }; + in pkgs.writeTextDir "${name}.json" (builtins.toJSON uwsgiCfg); in { diff --git a/nixos/modules/services/x11/colord.nix b/nixos/modules/services/x11/colord.nix new file mode 100644 index 00000000000..d9e81d75072 --- /dev/null +++ b/nixos/modules/services/x11/colord.nix @@ -0,0 +1,39 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + + cfg = config.services.colord; + +in { + + options = { + + services.colord = { + enable = mkEnableOption "colord, the color management daemon"; + }; + + }; + + config = mkIf cfg.enable { + + services.dbus.packages = [ pkgs.colord ]; + + services.udev.packages = [ pkgs.colord ]; + + environment.systemPackages = [ pkgs.colord ]; + + systemd.services.colord = { + description = "Manage, Install and Generate Color Profiles"; + serviceConfig = { + Type = "dbus"; + BusName = "org.freedesktop.ColorManager"; + ExecStart = "${pkgs.colord}/libexec/colord"; + PrivateTmp = true; + }; + }; + + }; + +} diff --git a/nixos/modules/services/x11/desktop-managers/default.nix b/nixos/modules/services/x11/desktop-managers/default.nix index 3e91450a39d..1ea7b5ccf16 100644 --- a/nixos/modules/services/x11/desktop-managers/default.nix +++ b/nixos/modules/services/x11/desktop-managers/default.nix @@ -19,7 +19,7 @@ in # E.g., if KDE is enabled, it supersedes xterm. imports = [ ./none.nix ./xterm.nix ./xfce.nix ./kde4.nix ./kde5.nix - ./e19.nix ./gnome3.nix ./kodi.nix + ./enlightenment.nix ./gnome3.nix ./kodi.nix ]; options = { diff --git a/nixos/modules/services/x11/desktop-managers/e19.nix b/nixos/modules/services/x11/desktop-managers/enlightenment.nix similarity index 74% rename from nixos/modules/services/x11/desktop-managers/e19.nix rename to nixos/modules/services/x11/desktop-managers/enlightenment.nix index 2d5c7b192bc..c981b40f74a 100644 --- a/nixos/modules/services/x11/desktop-managers/e19.nix +++ b/nixos/modules/services/x11/desktop-managers/enlightenment.nix @@ -4,9 +4,9 @@ with lib; let + e = pkgs.enlightenment; xcfg = config.services.xserver; - cfg = xcfg.desktopManager.e19; - e19_enlightenment = pkgs.e19.enlightenment.override { set_freqset_setuid = true; }; + cfg = xcfg.desktopManager.enlightenment; GST_PLUGIN_PATH = lib.makeSearchPath "lib/gstreamer-1.0" [ pkgs.gst_all_1.gst-plugins-base pkgs.gst_all_1.gst-plugins-good @@ -18,10 +18,10 @@ in { options = { - services.xserver.desktopManager.e19.enable = mkOption { + services.xserver.desktopManager.enlightenment.enable = mkOption { default = false; example = true; - description = "Enable the E19 desktop environment."; + description = "Enable the Enlightenment desktop environment."; }; }; @@ -29,8 +29,8 @@ in config = mkIf (xcfg.enable && cfg.enable) { environment.systemPackages = [ - pkgs.e19.efl pkgs.e19.evas pkgs.e19.emotion pkgs.e19.elementary e19_enlightenment - pkgs.e19.terminology pkgs.e19.econnman + e.efl e.evas e.emotion e.elementary e.enlightenment + e.terminology e.econnman pkgs.xorg.xauth # used by kdesu pkgs.gtk # To get GTK+'s themes. pkgs.tango-icon-theme @@ -42,7 +42,7 @@ in environment.pathsToLink = [ "/etc/enlightenment" "/etc/xdg" "/share/enlightenment" "/share/elementary" "/share/applications" "/share/locale" "/share/icons" "/share/themes" "/share/mime" "/share/desktop-directories" ]; services.xserver.desktopManager.session = [ - { name = "E19"; + { name = "Enlightenment"; start = '' # Set GTK_DATA_PREFIX so that GTK+ can find the themes export GTK_DATA_PREFIX=${config.system.path} @@ -53,17 +53,16 @@ in export GST_PLUGIN_PATH="${GST_PLUGIN_PATH}" # make available for D-BUS user services - #export XDG_DATA_DIRS=$XDG_DATA_DIRS''${XDG_DATA_DIRS:+:}:${config.system.path}/share:${pkgs.e19.efl}/share + #export XDG_DATA_DIRS=$XDG_DATA_DIRS''${XDG_DATA_DIRS:+:}:${config.system.path}/share:${e.efl}/share # Update user dirs as described in http://freedesktop.org/wiki/Software/xdg-user-dirs/ ${pkgs.xdg-user-dirs}/bin/xdg-user-dirs-update - ${e19_enlightenment}/bin/enlightenment_start - waitPID=$! + exec ${e.enlightenment}/bin/enlightenment_start ''; }]; - security.setuidPrograms = [ "e19_freqset" ]; + security.setuidPrograms = [ "e_freqset" ]; environment.etc = singleton { source = "${pkgs.xkeyboard_config}/etc/X11/xkb"; @@ -75,13 +74,13 @@ in services.udisks2.enable = true; services.upower.enable = config.powerManagement.enable; - #services.dbus.packages = [ pkgs.efl ]; # dbus-1 folder is not in /etc but in /share, so needs fixing first + services.dbus.packages = [ e.efl ]; systemd.user.services.efreet = { enable = true; description = "org.enlightenment.Efreet"; serviceConfig = - { ExecStart = "${pkgs.e19.efl}/bin/efreetd"; + { ExecStart = "${e.efl}/bin/efreetd"; StandardOutput = "null"; }; }; @@ -90,7 +89,7 @@ in { enable = true; description = "org.enlightenment.Ethumb"; serviceConfig = - { ExecStart = "${pkgs.e19.efl}/bin/ethumbd"; + { ExecStart = "${e.efl}/bin/ethumbd"; StandardOutput = "null"; }; }; diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index 867dea63cc2..9891da2169e 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -128,6 +128,7 @@ in ++ lib.optional config.networking.networkmanager.enable kde5.plasma-nm ++ lib.optional config.hardware.pulseaudio.enable kde5.plasma-pa ++ lib.optional config.powerManagement.enable kde5.powerdevil + ++ lib.optional config.services.colord.enable kde5.colord-kde ++ lib.optionals config.services.samba.enable [ kde5.kdenetwork-filesharing pkgs.samba ] ++ lib.optionals cfg.phonon.gstreamer.enable diff --git a/nixos/modules/services/x11/display-managers/default.nix b/nixos/modules/services/x11/display-managers/default.nix index 533b03aff08..7dffdfc2b36 100644 --- a/nixos/modules/services/x11/display-managers/default.nix +++ b/nixos/modules/services/x11/display-managers/default.nix @@ -49,17 +49,6 @@ let fi ''} - ${optionalString cfg.startGnuPGAgent '' - if test -z "$SSH_AUTH_SOCK"; then - # Restart this script as a child of the GnuPG agent. - exec "${pkgs.gnupg}/bin/gpg-agent" \ - --enable-ssh-support --daemon \ - --pinentry-program "${pkgs.pinentry}/bin/pinentry-gtk-2" \ - --write-env-file "$HOME/.gpg-agent-info" \ - "$0" "$sessionType" - fi - ''} - # Handle being called by kdm. if test "''${1:0:1}" = /; then eval exec "$1"; fi diff --git a/nixos/modules/services/x11/window-managers/default.nix b/nixos/modules/services/x11/window-managers/default.nix index 26dfbb1f4e1..fce71bbda7e 100644 --- a/nixos/modules/services/x11/window-managers/default.nix +++ b/nixos/modules/services/x11/window-managers/default.nix @@ -10,13 +10,13 @@ in imports = [ ./afterstep.nix ./bspwm.nix - ./clfswm.nix ./compiz.nix ./dwm.nix ./exwm.nix ./fluxbox.nix ./herbstluftwm.nix ./i3.nix + ./jwm.nix ./metacity.nix ./openbox.nix ./notion.nix diff --git a/nixos/modules/services/x11/window-managers/jwm.nix b/nixos/modules/services/x11/window-managers/jwm.nix new file mode 100644 index 00000000000..0e8dab2e922 --- /dev/null +++ b/nixos/modules/services/x11/window-managers/jwm.nix @@ -0,0 +1,25 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + cfg = config.services.xserver.windowManager.jwm; +in +{ + ###### interface + options = { + services.xserver.windowManager.jwm.enable = mkEnableOption "jwm"; + }; + + ###### implementation + config = mkIf cfg.enable { + services.xserver.windowManager.session = singleton { + name = "jwm"; + start = '' + ${pkgs.jwm}/bin/jwm & + waitPID=$! + ''; + }; + environment.systemPackages = [ pkgs.jwm ]; + }; +} diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix index cfe5e7f960c..0fcea6ce5e4 100644 --- a/nixos/modules/services/x11/xserver.nix +++ b/nixos/modules/services/x11/xserver.nix @@ -160,7 +160,7 @@ in [ ''' Identifier "Trackpoint Wheel Emulation" MatchProduct "ThinkPad USB Keyboard with TrackPoint" - Option "EmulateWheel" "true + Option "EmulateWheel" "true" Option "EmulateWheelButton" "2" Option "Emulate3Buttons" "false" ''' @@ -219,17 +219,6 @@ in ''; }; - startGnuPGAgent = mkOption { - type = types.bool; - default = false; - description = '' - Whether to start the GnuPG agent when you log in. The GnuPG agent - remembers private keys for you so that you don't have to type in - passphrases every time you make an SSH connection or sign/encrypt - data. Use ssh-add to add a key to the agent. - ''; - }; - startDbusSession = mkOption { type = types.bool; default = true; @@ -444,14 +433,7 @@ in in optional (driver != null) ({ inherit name; driverName = name; } // driver)); assertions = - [ { assertion = !(config.programs.ssh.startAgent && cfg.startGnuPGAgent); - message = - '' - The OpenSSH agent and GnuPG agent cannot be started both. Please - choose between ‘programs.ssh.startAgent’ and ‘services.xserver.startGnuPGAgent’. - ''; - } - { assertion = config.security.polkit.enable; + [ { assertion = config.security.polkit.enable; message = "X11 requires Polkit to be enabled (‘security.polkit.enable = true’)."; } ]; diff --git a/nixos/modules/system/boot/coredump.nix b/nixos/modules/system/boot/coredump.nix index 25b11ed9c8a..3d80da9e457 100644 --- a/nixos/modules/system/boot/coredump.nix +++ b/nixos/modules/system/boot/coredump.nix @@ -33,19 +33,24 @@ with lib; }; - config = mkIf config.systemd.coredump.enable { + config = mkMerge [ + (mkIf config.systemd.coredump.enable { - environment.etc."systemd/coredump.conf".text = - '' - [Coredump] - ${config.systemd.coredump.extraConfig} - ''; + environment.etc."systemd/coredump.conf".text = + '' + [Coredump] + ${config.systemd.coredump.extraConfig} + ''; - # Have the kernel pass core dumps to systemd's coredump helper binary. - # From systemd's 50-coredump.conf file. See: - # - boot.kernel.sysctl."kernel.core_pattern" = "|${pkgs.systemd}/lib/systemd/systemd-coredump %p %u %g %s %t %e"; + # Have the kernel pass core dumps to systemd's coredump helper binary. + # From systemd's 50-coredump.conf file. See: + # + boot.kernel.sysctl."kernel.core_pattern" = "|${pkgs.systemd}/lib/systemd/systemd-coredump %p %u %g %s %t %e"; + }) - }; + (mkIf (!config.systemd.coredump.enable) { + boot.kernel.sysctl."kernel.core_pattern" = mkDefault "core"; + }) + ]; } diff --git a/nixos/modules/system/boot/stage-1.nix b/nixos/modules/system/boot/stage-1.nix index f31620df1d8..757d883373a 100644 --- a/nixos/modules/system/boot/stage-1.nix +++ b/nixos/modules/system/boot/stage-1.nix @@ -58,6 +58,7 @@ let # Add RAID mdadm tool. copy_bin_and_libs ${pkgs.mdadm}/sbin/mdadm + copy_bin_and_libs ${pkgs.mdadm}/sbin/mdmon # Copy udev. copy_bin_and_libs ${udev}/lib/systemd/systemd-udevd diff --git a/nixos/modules/tasks/filesystems.nix b/nixos/modules/tasks/filesystems.nix index 4d1466db22d..dd351306cb6 100644 --- a/nixos/modules/tasks/filesystems.nix +++ b/nixos/modules/tasks/filesystems.nix @@ -93,7 +93,7 @@ let config = { mountPoint = mkDefault name; device = mkIf (config.fsType == "tmpfs") (mkDefault config.fsType); - options = mkIf config.autoResize "x-nixos.autoresize"; + options = mkIf config.autoResize [ "x-nixos.autoresize" ]; # -F needed to allow bare block device without partitions formatOptions = mkIf ((builtins.substring 0 3 config.fsType) == "ext") (mkDefault "-F"); diff --git a/nixos/modules/tasks/network-interfaces.nix b/nixos/modules/tasks/network-interfaces.nix index 503d3813611..0528012adfd 100644 --- a/nixos/modules/tasks/network-interfaces.nix +++ b/nixos/modules/tasks/network-interfaces.nix @@ -882,10 +882,8 @@ in optionalString hasBonds "options bonding max_bonds=0"; boot.kernel.sysctl = { - "net.net.ipv4.conf.all.promote_secondaries" = true; "net.ipv6.conf.all.disable_ipv6" = mkDefault (!cfg.enableIPv6); "net.ipv6.conf.default.disable_ipv6" = mkDefault (!cfg.enableIPv6); - "net.ipv4.conf.all_forwarding" = mkDefault (any (i: i.proxyARP) interfaces); "net.ipv6.conf.all.forwarding" = mkDefault (any (i: i.proxyARP) interfaces); } // listToAttrs (concatLists (flip map (filter (i: i.proxyARP) interfaces) (i: flip map [ "4" "6" ] (v: nameValuePair "net.ipv${v}.conf.${i.name}.proxy_arp" true)) diff --git a/nixos/modules/tasks/swraid.nix b/nixos/modules/tasks/swraid.nix index 8e972891971..d6cb1c96ef4 100644 --- a/nixos/modules/tasks/swraid.nix +++ b/nixos/modules/tasks/swraid.nix @@ -12,4 +12,45 @@ cp -v ${pkgs.mdadm}/lib/udev/rules.d/*.rules $out/ ''; + systemd.services.mdadm-shutdown = { + wantedBy = [ "final.target"]; + after = [ "umount.target" ]; + + unitConfig = { + DefaultDependencies = false; + }; + + serviceConfig = { + Type = "oneshot"; + ExecStart = ''${pkgs.mdadm}/bin/mdadm --wait-clean --scan''; + }; + }; + + systemd.services."mdmon@" = { + description = "MD Metadata Monitor on /dev/%I"; + + unitConfig.DefaultDependencies = false; + + serviceConfig = { + Type = "forking"; + Environment = "IMSM_NO_PLATFORM=1"; + ExecStart = ''${pkgs.mdadm}/bin/mdmon --offroot --takeover %I''; + KillMode = "none"; + }; + }; + + systemd.services."mdadm-grow-continue@" = { + description = "Manage MD Reshape on /dev/%I"; + + unitConfig.DefaultDependencies = false; + + serviceConfig = { + ExecStart = ''${pkgs.mdadm}/bin/mdadm --grow --continue /dev/%I''; + StandardInput = "null"; + StandardOutput = "null"; + StandardError = "null"; + KillMode = "none"; + }; + }; + } diff --git a/nixos/modules/virtualisation/amazon-image.nix b/nixos/modules/virtualisation/amazon-image.nix index a895f66db8e..35af905bc62 100644 --- a/nixos/modules/virtualisation/amazon-image.nix +++ b/nixos/modules/virtualisation/amazon-image.nix @@ -40,7 +40,6 @@ let cfg = config.ec2; in # Force udev to exit to prevent random "Device or resource busy # while trying to open /dev/xvda" errors from fsck. udevadm control --exit || true - kill -9 -1 ''; boot.initrd.network.enable = true; diff --git a/nixos/modules/virtualisation/azure-agent-entropy.patch b/nixos/modules/virtualisation/azure-agent-entropy.patch new file mode 100644 index 00000000000..2a7ad08a4af --- /dev/null +++ b/nixos/modules/virtualisation/azure-agent-entropy.patch @@ -0,0 +1,17 @@ +--- a/waagent 2016-03-12 09:58:15.728088851 +0200 ++++ a/waagent 2016-03-12 09:58:43.572680025 +0200 +@@ -6173,10 +6173,10 @@ + Log("MAC address: " + ":".join(["%02X" % Ord(a) for a in mac])) + + # Consume Entropy in ACPI table provided by Hyper-V +- try: +- SetFileContents("/dev/random", GetFileContents("/sys/firmware/acpi/tables/OEM0")) +- except: +- pass ++ #try: ++ # SetFileContents("/dev/random", GetFileContents("/sys/firmware/acpi/tables/OEM0")) ++ #except: ++ # pass + + Log("Probing for Azure environment.") + self.Endpoint = self.DoDhcpWork() diff --git a/nixos/modules/virtualisation/azure-agent.nix b/nixos/modules/virtualisation/azure-agent.nix index 640519758c7..da97565fd6d 100644 --- a/nixos/modules/virtualisation/azure-agent.nix +++ b/nixos/modules/virtualisation/azure-agent.nix @@ -14,6 +14,9 @@ let rev = "1b3a8407a95344d9d12a2a377f64140975f1e8e4"; sha256 = "10byzvmpgrmr4d5mdn2kq04aapqb3sgr1admk13wjmy5cd6bwd2x"; }; + + patches = [ ./azure-agent-entropy.patch ]; + buildInputs = [ makeWrapper python pythonPackages.wrapPython ]; runtimeDeps = [ findutils gnugrep gawk coreutils openssl openssh nettools # for hostname @@ -54,9 +57,15 @@ in ###### interface - options.virtualisation.azure.agent.enable = mkOption { - default = false; - description = "Whether to enable the Windows Azure Linux Agent."; + options.virtualisation.azure.agent = { + enable = mkOption { + default = false; + description = "Whether to enable the Windows Azure Linux Agent."; + }; + verboseLogging = mkOption { + default = false; + description = "Whether to enable verbose logging."; + }; }; ###### implementation @@ -88,7 +97,7 @@ in Provisioning.DeleteRootPassword=n # Generate fresh host key pair. - Provisioning.RegenerateSshHostKeyPair=y + Provisioning.RegenerateSshHostKeyPair=n # Supported values are "rsa", "dsa" and "ecdsa". Provisioning.SshHostKeyPairType=ed25519 @@ -121,7 +130,7 @@ in Logs.Console=y # Enable verbose logging (y|n) - Logs.Verbose=n + Logs.Verbose=${if cfg.verboseLogging then "y" else "n"} # Root device timeout in seconds. OS.RootDeviceScsiTimeout=300 @@ -146,16 +155,30 @@ in systemd.targets.provisioned = { description = "Services Requiring Azure VM provisioning to have finished"; - wantedBy = [ "sshd.service" ]; - before = [ "sshd.service" ]; }; + systemd.services.consume-hypervisor-entropy = + { description = "Consume entropy in ACPI table provided by Hyper-V"; + + wantedBy = [ "sshd.service" "waagent.service" ]; + before = [ "sshd.service" "waagent.service" ]; + after = [ "local-fs.target" ]; + + path = [ pkgs.coreutils ]; + script = + '' + echo "Fetching entropy..." + cat /sys/firmware/acpi/tables/OEM0 > /dev/random + ''; + serviceConfig.Type = "oneshot"; + serviceConfig.RemainAfterExit = true; + serviceConfig.StandardError = "journal+console"; + serviceConfig.StandardOutput = "journal+console"; + }; systemd.services.waagent = { - wantedBy = [ "sshd.service" ]; - before = [ "sshd.service" ]; - after = [ "ip-up.target" ]; - wants = [ "ip-up.target" ]; + wantedBy = [ "multi-user.target" ]; + after = [ "ip-up.target" "sshd.service" ]; path = [ pkgs.e2fsprogs ]; description = "Windows Azure Agent Service"; diff --git a/nixos/modules/virtualisation/azure-image.nix b/nixos/modules/virtualisation/azure-image.nix index 79d1f7d7cc4..9dc0ce11992 100644 --- a/nixos/modules/virtualisation/azure-image.nix +++ b/nixos/modules/virtualisation/azure-image.nix @@ -2,7 +2,7 @@ with lib; let - diskSize = "4096"; + diskSize = "30720"; in { system.build.azureImage = @@ -23,7 +23,7 @@ in postVM = '' mkdir -p $out - ${pkgs.vmTools.qemu-220}/bin/qemu-img convert -f raw -O vpc -o subformat=fixed $diskImage $out/disk.vhd + ${pkgs.vmTools.qemu-220}/bin/qemu-img convert -f raw -O vpc $diskImage $out/disk.vhd rm $diskImage ''; diskImageBase = "nixos-image-${config.system.nixosLabel}-${pkgs.stdenv.system}.raw"; diff --git a/nixos/modules/virtualisation/virtualbox-image.nix b/nixos/modules/virtualisation/virtualbox-image.nix index da9e75a003a..fab59b2525a 100644 --- a/nixos/modules/virtualisation/virtualbox-image.nix +++ b/nixos/modules/virtualisation/virtualbox-image.nix @@ -22,7 +22,9 @@ in { config = { - system.build.virtualBoxImage = import ../../lib/make-disk-image.nix { + system.build.virtualBoxOVA = import ../../lib/make-disk-image.nix { + name = "nixos-ova-${config.system.nixosLabel}-${pkgs.stdenv.system}"; + inherit pkgs lib config; partitioned = true; diskSize = cfg.baseImageSize; @@ -37,37 +39,36 @@ in { postVM = '' echo "creating VirtualBox disk image..." - ${pkgs.vmTools.qemu}/bin/qemu-img convert -f raw -O vdi $diskImage $out/disk.vdi + ${pkgs.vmTools.qemu}/bin/qemu-img convert -f raw -O vdi $diskImage disk.vdi rm $diskImage + + echo "creating VirtualBox VM..." + export HOME=$PWD + export PATH=${pkgs.linuxPackages.virtualbox}/bin:$PATH + vmName="NixOS ${config.system.nixosLabel} (${pkgs.stdenv.system})" + VBoxManage createvm --name "$vmName" --register \ + --ostype ${if pkgs.stdenv.system == "x86_64-linux" then "Linux26_64" else "Linux26"} + VBoxManage modifyvm "$vmName" \ + --memory 1536 --acpi on --vram 32 \ + ${optionalString (pkgs.stdenv.system == "i686-linux") "--pae on"} \ + --nictype1 virtio --nic1 nat \ + --audiocontroller ac97 --audio alsa \ + --rtcuseutc on \ + --usb on --mouse usbtablet + VBoxManage storagectl "$vmName" --name SATA --add sata --portcount 4 --bootable on --hostiocache on + VBoxManage storageattach "$vmName" --storagectl SATA --port 0 --device 0 --type hdd \ + --medium disk.vdi + + echo "exporting VirtualBox VM..." + mkdir -p $out + fn="$out/nixos-${config.system.nixosLabel}-${pkgs.stdenv.system}.ova" + VBoxManage export "$vmName" --output "$fn" + + mkdir -p $out/nix-support + echo "file ova $fn" >> $out/nix-support/hydra-build-products ''; }; - system.build.virtualBoxOVA = pkgs.runCommand "virtualbox-ova" - { buildInputs = [ pkgs.linuxPackages.virtualbox ]; - vmName = "NixOS ${config.system.nixosLabel} (${pkgs.stdenv.system})"; - fileName = "nixos-image-${config.system.nixosLabel}-${pkgs.stdenv.system}.ova"; - } - '' - echo "creating VirtualBox VM..." - export HOME=$PWD - VBoxManage createvm --name "$vmName" --register \ - --ostype ${if pkgs.stdenv.system == "x86_64-linux" then "Linux26_64" else "Linux26"} - VBoxManage modifyvm "$vmName" \ - --memory 1536 --acpi on --vram 32 \ - ${optionalString (pkgs.stdenv.system == "i686-linux") "--pae on"} \ - --nictype1 virtio --nic1 nat \ - --audiocontroller ac97 --audio alsa \ - --rtcuseutc on \ - --usb on --mouse usbtablet - VBoxManage storagectl "$vmName" --name SATA --add sata --portcount 4 --bootable on --hostiocache on - VBoxManage storageattach "$vmName" --storagectl SATA --port 0 --device 0 --type hdd \ - --medium ${config.system.build.virtualBoxImage}/disk.vdi - - echo "exporting VirtualBox VM..." - mkdir -p $out - VBoxManage export "$vmName" --output "$out/$fileName" - ''; - fileSystems."/".device = "/dev/disk/by-label/nixos"; boot.loader.grub.device = "/dev/sda"; diff --git a/nixos/release-combined.nix b/nixos/release-combined.nix index 958e587444d..731dd36cdfd 100644 --- a/nixos/release-combined.nix +++ b/nixos/release-combined.nix @@ -44,11 +44,11 @@ in rec { (all nixos.manual) (all nixos.iso_minimal) - (all nixos.iso_graphical) - (all nixos.ova) + nixos.iso_graphical.x86_64-linux + nixos.ova.x86_64-linux #(all nixos.tests.containers) - (all nixos.tests.chromium.stable) + #(all nixos.tests.chromium.stable) (all nixos.tests.firefox) (all nixos.tests.firewall) nixos.tests.gnome3.x86_64-linux # FIXME: i686-linux diff --git a/nixos/release.nix b/nixos/release.nix index 069cf3727de..d190733d5c1 100644 --- a/nixos/release.nix +++ b/nixos/release.nix @@ -43,34 +43,14 @@ let makeIso = - { module, type, description ? type, maintainers ? ["eelco"], system }: + { module, type, maintainers ? ["eelco"], system }: with import nixpkgs { inherit system; }; - let - - config = (import lib/eval-config.nix { - inherit system; - modules = [ module versionModule { isoImage.isoBaseName = "nixos-${type}"; } ]; - }).config; - - iso = config.system.build.isoImage; - - in - # Declare the ISO as a build product so that it shows up in Hydra. - hydraJob (runCommand "nixos-iso-${config.system.nixosVersion}" - { meta = { - description = "NixOS installation CD (${description}) - ISO image for ${system}"; - maintainers = map (x: lib.maintainers.${x}) maintainers; - }; - inherit iso; - passthru = { inherit config; }; - preferLocalBuild = true; - } - '' - mkdir -p $out/nix-support - echo "file iso" $iso/iso/*.iso* >> $out/nix-support/hydra-build-products - ''); # */ + hydraJob ((import lib/eval-config.nix { + inherit system; + modules = [ module versionModule { isoImage.isoBaseName = "nixos-${type}"; } ]; + }).config.system.build.isoImage); makeSystemTarball = @@ -130,7 +110,7 @@ in rec { inherit system; }); - iso_graphical = forAllSystems (system: makeIso { + iso_graphical = genAttrs [ "x86_64-linux" ] (system: makeIso { module = ./modules/installer/cd-dvd/installation-cd-graphical-kde.nix; type = "graphical"; inherit system; @@ -138,7 +118,7 @@ in rec { # A variant with a more recent (but possibly less stable) kernel # that might support more hardware. - iso_minimal_new_kernel = forAllSystems (system: makeIso { + iso_minimal_new_kernel = genAttrs [ "x86_64-linux" ] (system: makeIso { module = ./modules/installer/cd-dvd/installation-cd-minimal-new-kernel.nix; type = "minimal-new-kernel"; inherit system; @@ -146,35 +126,17 @@ in rec { # A bootable VirtualBox virtual appliance as an OVA file (i.e. packaged OVF). - ova = forAllSystems (system: + ova = genAttrs [ "x86_64-linux" ] (system: with import nixpkgs { inherit system; }; - let - - config = (import lib/eval-config.nix { - inherit system; - modules = - [ versionModule - ./modules/installer/virtualbox-demo.nix - ]; - }).config; - - in - # Declare the OVA as a build product so that it shows up in Hydra. - hydraJob (runCommand "nixos-ova-${config.system.nixosVersion}-${system}" - { meta = { - description = "NixOS VirtualBox appliance (${system})"; - maintainers = maintainers.eelco; - }; - ova = config.system.build.virtualBoxOVA; - preferLocalBuild = true; - } - '' - mkdir -p $out/nix-support - fn=$(echo $ova/*.ova) - echo "file ova $fn" >> $out/nix-support/hydra-build-products - '') # */ + hydraJob ((import lib/eval-config.nix { + inherit system; + modules = + [ versionModule + ./modules/installer/virtualbox-demo.nix + ]; + }).config.system.build.virtualBoxOVA) ); @@ -240,6 +202,7 @@ in rec { tests.containers = callTest tests/containers.nix {}; tests.docker = hydraJob (import tests/docker.nix { system = "x86_64-linux"; }); tests.dockerRegistry = hydraJob (import tests/docker-registry.nix { system = "x86_64-linux"; }); + tests.dnscrypt-proxy = callTest tests/dnscrypt-proxy.nix { system = "x86_64-linux"; }; tests.etcd = hydraJob (import tests/etcd.nix { system = "x86_64-linux"; }); tests.ec2-nixops = hydraJob (import tests/ec2.nix { system = "x86_64-linux"; }).boot-ec2-nixops; tests.ec2-config = hydraJob (import tests/ec2.nix { system = "x86_64-linux"; }).boot-ec2-config; diff --git a/nixos/tests/chromium.nix b/nixos/tests/chromium.nix index 974af6888b6..9a6414f81c3 100644 --- a/nixos/tests/chromium.nix +++ b/nixos/tests/chromium.nix @@ -1,4 +1,11 @@ -{ system ? builtins.currentSystem }: +{ system ? builtins.currentSystem +, pkgs ? import ../.. { inherit system; } +, channelMap ? { + stable = pkgs.chromium; + beta = pkgs.chromiumBeta; + dev = pkgs.chromiumDev; + } +}: with import ../lib/testing.nix { inherit system; }; with pkgs.lib; @@ -160,8 +167,4 @@ mapAttrs (channel: chromiumPkg: makeTest rec { $machine->shutdown; ''; -}) { - stable = pkgs.chromium; - beta = pkgs.chromiumBeta; - dev = pkgs.chromiumDev; -} +}) channelMap diff --git a/nixos/tests/dnscrypt-proxy.nix b/nixos/tests/dnscrypt-proxy.nix new file mode 100644 index 00000000000..b686e9582a7 --- /dev/null +++ b/nixos/tests/dnscrypt-proxy.nix @@ -0,0 +1,33 @@ +import ./make-test.nix ({ pkgs, ... }: { + name = "dnscrypt-proxy"; + meta = with pkgs.stdenv.lib.maintainers; { + maintainers = [ joachifm ]; + }; + + nodes = { + # A client running the recommended setup: DNSCrypt proxy as a forwarder + # for a caching DNS client. + client = + { config, pkgs, ... }: + let localProxyPort = 43; in + { + security.apparmor.enable = true; + + services.dnscrypt-proxy.enable = true; + services.dnscrypt-proxy.localPort = localProxyPort; + + services.dnsmasq.enable = true; + services.dnsmasq.servers = [ "127.0.0.1#${toString localProxyPort}" ]; + }; + }; + + testScript = '' + $client->start; + $client->waitForUnit("sockets.target"); + $client->waitForUnit("dnsmasq"); + + # The daemon is socket activated; sending a single ping should activate it. + $client->execute("${pkgs.iputils}/bin/ping -c1 example.com"); + $client->succeed("systemctl is-active dnscrypt-proxy"); + ''; +}) diff --git a/nixos/tests/docker.nix b/nixos/tests/docker.nix index 635a97e2ce0..06e511d6e0b 100644 --- a/nixos/tests/docker.nix +++ b/nixos/tests/docker.nix @@ -20,7 +20,7 @@ import ./make-test.nix ({ pkgs, ...} : { testScript = '' startAll; - $docker->waitForUnit("docker.service"); + $docker->waitForUnit("sockets.target"); $docker->succeed("tar cv --files-from /dev/null | docker import - scratchimg"); $docker->succeed("docker run -d --name=sleeping -v /nix/store:/nix/store -v /run/current-system/sw/bin:/bin scratchimg /bin/sleep 10"); $docker->succeed("docker ps | grep sleeping"); diff --git a/nixos/tests/firewall.nix b/nixos/tests/firewall.nix index 9faf19f0359..8f2cb27b60f 100644 --- a/nixos/tests/firewall.nix +++ b/nixos/tests/firewall.nix @@ -35,9 +35,9 @@ import ./make-test.nix ( { pkgs, ... } : { # Local connections should still work. $walled->succeed("curl -v http://localhost/ >&2"); - # Connections to the firewalled machine should fail. + # Connections to the firewalled machine should fail, but ping should succeed. $attacker->fail("curl --fail --connect-timeout 2 http://walled/ >&2"); - $attacker->fail("ping -c 1 walled >&2"); + $attacker->succeed("ping -c 1 walled >&2"); # Outgoing connections/pings should still work. $walled->succeed("curl -v http://attacker/ >&2"); diff --git a/nixos/tests/misc.nix b/nixos/tests/misc.nix index 73af0cfad21..b926a62194b 100644 --- a/nixos/tests/misc.nix +++ b/nixos/tests/misc.nix @@ -23,6 +23,8 @@ import ./make-test.nix ({ pkgs, ...} : { { wantedBy = [ "multi-user.target" ]; where = "/tmp2"; }; + users.users.sybil = { isNormalUser = true; group = "wheel"; }; + security.sudo = { enable = true; wheelNeedsPassword = false; }; }; testScript = @@ -110,5 +112,10 @@ import ./make-test.nix ({ pkgs, ...} : { subtest "nix-db", sub { $machine->succeed("nix-store -qR /run/current-system | grep nixos-"); }; + + # Test sudo + subtest "sudo", sub { + $machine->succeed("su - sybil -c 'sudo true'"); + }; ''; }) diff --git a/nixos/tests/riak.nix b/nixos/tests/riak.nix index f36d12bdb2c..18d028232ac 100644 --- a/nixos/tests/riak.nix +++ b/nixos/tests/riak.nix @@ -7,7 +7,7 @@ import ./make-test.nix { { services.riak.enable = true; - services.riak.package = pkgs.riak2; + services.riak.package = pkgs.riak; }; }; diff --git a/pkgs/applications/audio/banshee/default.nix b/pkgs/applications/audio/banshee/default.nix new file mode 100644 index 00000000000..4e5086bdb26 --- /dev/null +++ b/pkgs/applications/audio/banshee/default.nix @@ -0,0 +1,55 @@ +{ pkgs, stdenv, lib, fetchurl, intltool, pkgconfig, gstreamer, gst_plugins_base +, gst_plugins_good, gst_plugins_bad, gst_plugins_ugly, gst_ffmpeg, glib +, mono, mono-addins, dbus-sharp-1_0, dbus-sharp-glib-1_0, notify-sharp, gtk-sharp-2_0 +, boo, gdata-sharp, taglib-sharp, sqlite, gnome-sharp, gconf, gtk-sharp-beans, gio-sharp +, libmtp, libgpod, mono-zeroconf }: + +stdenv.mkDerivation rec { + name = "banshee-${version}"; + version = "2.6.2"; + + src = fetchurl { + url = "http://ftp.gnome.org/pub/GNOME/sources/banshee/2.6/banshee-${version}.tar.xz"; + sha256 = "1y30p8wxx5li39i5gpq2wib0ympy8llz0gyi6ri9bp730ndhhz7p"; + }; + + dontStrip = true; + + nativeBuildInputs = [ pkgconfig intltool ]; + buildInputs = [ + gtk-sharp-2_0.gtk gstreamer gst_plugins_base gst_plugins_good + gst_plugins_bad gst_plugins_ugly gst_ffmpeg + mono dbus-sharp-1_0 dbus-sharp-glib-1_0 mono-addins notify-sharp + gtk-sharp-2_0 boo gdata-sharp taglib-sharp sqlite gnome-sharp gconf gtk-sharp-beans + gio-sharp libmtp libgpod mono-zeroconf + ]; + + makeFlags = [ "PREFIX=$(out)" ]; + + postPatch = '' + patchShebangs data/desktop-files/update-desktop-file.sh + patchShebangs build/private-icon-theme-installer + sed -i "s,DOCDIR=.*,DOCDIR=$out/lib/monodoc," configure + ''; + + postInstall = let + ldLibraryPath = lib.makeLibraryPath [ gtk-sharp-2_0.gtk gtk-sharp-2_0 sqlite gconf glib gstreamer ]; + + monoGACPrefix = lib.concatStringsSep ":" [ + mono dbus-sharp-1_0 dbus-sharp-glib-1_0 mono-addins notify-sharp gtk-sharp-2_0 + boo gdata-sharp taglib-sharp sqlite gnome-sharp gconf gtk-sharp-beans + gio-sharp libmtp libgpod mono-zeroconf + ]; + in '' + sed -e '2a export MONO_GAC_PREFIX=${monoGACPrefix}' \ + -e 's|LD_LIBRARY_PATH=|LD_LIBRARY_PATH=${ldLibraryPath}:|' \ + -e "s|GST_PLUGIN_PATH=|GST_PLUGIN_PATH=$GST_PLUGIN_SYSTEM_PATH:|" \ + -e 's| mono | ${mono}/bin/mono |' \ + -i $out/bin/banshee + ''; + meta = with lib; { + description = "A music player written in C# using GNOME technologies"; + platforms = platforms.linux; + maintainers = [ maintainers.zohl ]; + }; +} diff --git a/pkgs/applications/audio/drumgizmo/default.nix b/pkgs/applications/audio/drumgizmo/default.nix index 9afcae1901e..08d0afcd3f2 100644 --- a/pkgs/applications/audio/drumgizmo/default.nix +++ b/pkgs/applications/audio/drumgizmo/default.nix @@ -3,12 +3,12 @@ }: stdenv.mkDerivation rec { - version = "0.9.8.1"; + version = "0.9.9"; name = "drumgizmo-${version}"; src = fetchurl { url = "http://www.drumgizmo.org/releases/${name}/${name}.tar.gz"; - sha256 = "1plfjhwhaz1mr3kgf5imcp3kjflk6ni9sq39gmxjxzya6gn2r6gg"; + sha256 = "03dnh2p4s6n107n0r86h9j1jwy85a8qwjkh0288k60qpdqy1c7vp"; }; configureFlags = [ "--enable-lv2" ]; @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "An LV2 sample based drum plugin"; homepage = http://www.drumgizmo.org; - license = licenses.gpl3; + license = licenses.lgpl3; platforms = platforms.linux; maintainers = [ maintainers.goibhniu maintainers.nico202 ]; }; diff --git a/pkgs/applications/audio/ekho/default.nix b/pkgs/applications/audio/ekho/default.nix index 78383eec953..209ffa05bf2 100644 --- a/pkgs/applications/audio/ekho/default.nix +++ b/pkgs/applications/audio/ekho/default.nix @@ -20,7 +20,6 @@ in stdenv.mkDerivation rec { license = licenses.gpl2Plus; platforms = platforms.linux; hydraPlatforms = []; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/applications/audio/faust/faust2.nix b/pkgs/applications/audio/faust/faust2.nix index 4759f228e35..612a3dab99f 100644 --- a/pkgs/applications/audio/faust/faust2.nix +++ b/pkgs/applications/audio/faust/faust2.nix @@ -37,7 +37,8 @@ let inherit src; - buildInputs = [ makeWrapper llvm emscripten openssl libsndfile pkgconfig libmicrohttpd vim ]; + nativeBuildInputs = [ makeWrapper pkgconfig vim ]; + buildInputs = [ llvm emscripten openssl libsndfile libmicrohttpd ]; passthru = { @@ -53,6 +54,20 @@ let # correct system. unset system sed -e "232s/LLVM_STATIC_LIBS/LLVMLIBS/" -i compiler/Makefile.unix + + # The makefile sets LLVM_ depending on the current llvm + # version, but the detection code is quite brittle. + # + # Failing to properly detect the llvm version means that the macro + # LLVM_VERSION ends up being the raw output of `llvm-config --version`, while + # the code assumes that it's set to a symbol like `LLVM_35`. Two problems result: + # * :0:1: error: macro names must be identifiers.; and + # * a bunch of undefined reference errors due to conditional definitions relying on + # LLVM_XY being defined. + # + # For now, fix this by 1) pinning the llvm version; 2) manually setting LLVM_VERSION + # to something the makefile will recognize. + sed '52iLLVM_VERSION=3.7.0' -i compiler/Makefile.unix ''; # Remove most faust2appl scripts since they won't run properly diff --git a/pkgs/applications/audio/fluidsynth/default.nix b/pkgs/applications/audio/fluidsynth/default.nix index bd35b78fbc0..bb37cac5500 100644 --- a/pkgs/applications/audio/fluidsynth/default.nix +++ b/pkgs/applications/audio/fluidsynth/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, alsaLib, glib, libjack2, libsndfile, pkgconfig -, libpulseaudio }: +, libpulseaudio, CoreServices, CoreAudio, AudioUnit }: stdenv.mkDerivation rec { name = "fluidsynth-${version}"; @@ -18,10 +18,11 @@ stdenv.mkDerivation rec { ''; NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin - "-framework CoreAudio"; + "-framework CoreAudio -framework CoreServices"; buildInputs = [ glib libsndfile pkgconfig ] - ++ stdenv.lib.optionals (!stdenv.isDarwin) [ alsaLib libpulseaudio libjack2 ]; + ++ stdenv.lib.optionals (!stdenv.isDarwin) [ alsaLib libpulseaudio libjack2 ] + ++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices CoreAudio AudioUnit ]; meta = with stdenv.lib; { description = "Real-time software synthesizer based on the SoundFont 2 specifications"; diff --git a/pkgs/applications/audio/non/default.nix b/pkgs/applications/audio/non/default.nix index 5a54c94f1f9..ead53721950 100644 --- a/pkgs/applications/audio/non/default.nix +++ b/pkgs/applications/audio/non/default.nix @@ -1,23 +1,23 @@ -{ stdenv, fetchFromGitHub, pkgconfig, python2, cairo, libjpeg, ntk, libjack2, libsndfile, -ladspaH, liblrdf, liblo, libsigcxx +{ stdenv, fetchFromGitHub, pkgconfig, python2, cairo, libjpeg, ntk, libjack2 +, libsndfile, ladspaH, liblrdf, liblo, libsigcxx }: stdenv.mkDerivation rec { name = "non-${version}"; - version = "2016-02-07"; + version = "2016-03-06"; src = fetchFromGitHub { owner = "original-male"; repo = "non"; - rev = "1ef382fbbea598fdb56b25244a703c64ecaf8446"; - sha256 = "1mi3nm0nrrqlk36920irvqf5080lbnj1qc8vnxspgwkjjqgdc22g"; + rev = "3946d392216ee999b560d8b7cdee7c4347110e29"; + sha256 = "02vnq2mfimgdrmv3lmz80yif4h9a1lympv0wqc5dr2l0f8amj2fp"; }; - buildInputs = [ pkgconfig python2 cairo libjpeg ntk libjack2 libsndfile + buildInputs = [ pkgconfig python2 cairo libjpeg ntk libjack2 libsndfile ladspaH liblrdf liblo libsigcxx - ]; - configurePhase = ''python waf configure --prefix=$out''; - buildPhase = ''python waf build''; - installPhase = ''python waf install''; + ]; + configurePhase = "python waf configure --prefix=$out"; + buildPhase = "python waf build"; + installPhase = "python waf install"; meta = { description = "Lightweight and lightning fast modular Digital Audio Workstation"; diff --git a/pkgs/applications/audio/pithos/default.nix b/pkgs/applications/audio/pithos/default.nix index 1083f9434a9..ac42fc71642 100644 --- a/pkgs/applications/audio/pithos/default.nix +++ b/pkgs/applications/audio/pithos/default.nix @@ -19,6 +19,11 @@ pythonPackages.buildPythonApplication rec { substituteInPlace setup.py --replace "/usr/share" "$out/share" ''; + postInstall = '' + mkdir -p $out/share/applications + cp -v data/pithos.desktop $out/share/applications + ''; + buildInputs = [ wrapGAppsHook ]; propagatedBuildInputs = diff --git a/pkgs/applications/audio/rubyripper/default.nix b/pkgs/applications/audio/rubyripper/default.nix index 36f1fc8312f..035bb876482 100644 --- a/pkgs/applications/audio/rubyripper/default.nix +++ b/pkgs/applications/audio/rubyripper/default.nix @@ -6,6 +6,9 @@ stdenv.mkDerivation rec { url = "https://rubyripper.googlecode.com/files/rubyripper-${version}.tar.bz2"; sha256 = "1fwyk3y0f45l2vi3a481qd7drsy82ccqdb8g2flakv58m45q0yl1"; }; + + preConfigure = "patchShebangs ."; + configureFlags = [ "--enable-cli" ]; buildInputs = [ ruby cdparanoia makeWrapper ]; postInstall = '' diff --git a/pkgs/applications/audio/seq24/default.nix b/pkgs/applications/audio/seq24/default.nix index 63db865eba5..7976a7bf678 100644 --- a/pkgs/applications/audio/seq24/default.nix +++ b/pkgs/applications/audio/seq24/default.nix @@ -2,20 +2,21 @@ stdenv.mkDerivation rec { name = "seq24-${version}"; - version = "0.9.2"; + version = "0.9.3"; src = fetchurl { url = "http://launchpad.net/seq24/trunk/${version}/+download/${name}.tar.gz"; - sha256 = "07n80zj95i80vjmsflnlbqx5vv90qmp5f6a0zap8d30849l4y258"; + sha256 = "1qpyb7355s21sgy6gibkybxpzx4ikha57a8w644lca6qy9mhcwi3"; }; - buildInputs = [ alsaLib gtkmm libjack2 pkgconfig ]; + buildInputs = [ alsaLib gtkmm libjack2 ]; + nativeBuildInputs = [ pkgconfig ]; meta = with stdenv.lib; { description = "minimal loop based midi sequencer"; homepage = "http://www.filter24.org/seq24"; license = licenses.gpl2; platforms = platforms.linux; - maintainers = [ maintainers.goibhniu ]; + maintainers = with maintainers; [ goibhniu nckx ]; }; } diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix index bf06761bc53..498a4be7ff4 100644 --- a/pkgs/applications/audio/spotify/default.nix +++ b/pkgs/applications/audio/spotify/default.nix @@ -5,7 +5,7 @@ assert stdenv.system == "x86_64-linux"; let - version = "1.0.23.93.gd6cfae15-30"; + version = "1.0.25.127.g58007b4c-22"; deps = [ alsaLib @@ -50,7 +50,7 @@ stdenv.mkDerivation { src = fetchurl { url = "http://repository-origin.spotify.com/pool/non-free/s/spotify-client/spotify-client_${version}_amd64.deb"; - sha256 = "0n6vz51jv6s20dp4zlqkk52bpmpyfm1qn5bfm4lfq09x1g6ir5lr"; + sha256 = "1fxps0ls0g4idw10la3qrpmp2jn85lkm3xj4nam4ycx0jj8g1v2p"; }; buildInputs = [ dpkg makeWrapper ]; diff --git a/pkgs/applications/audio/vmpk/default.nix b/pkgs/applications/audio/vmpk/default.nix index 5db7fe5afbc..dde96764fe6 100644 --- a/pkgs/applications/audio/vmpk/default.nix +++ b/pkgs/applications/audio/vmpk/default.nix @@ -12,7 +12,6 @@ in stdenv.mkDerivation rec { homepage = "http://vmpk.sourceforge.net/"; license = licenses.gpl3Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/applications/audio/xmp/default.nix b/pkgs/applications/audio/xmp/default.nix index 6bec03bd71b..10b5bc0c117 100644 --- a/pkgs/applications/audio/xmp/default.nix +++ b/pkgs/applications/audio/xmp/default.nix @@ -8,7 +8,6 @@ stdenv.mkDerivation rec { homepage = "http://xmp.sourceforge.net/"; license = licenses.gpl2Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/applications/audio/zam-plugins/default.nix b/pkgs/applications/audio/zam-plugins/default.nix index 48f559dfd86..0710e7f942a 100644 --- a/pkgs/applications/audio/zam-plugins/default.nix +++ b/pkgs/applications/audio/zam-plugins/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { url = "https://github.com/zamaudio/zam-plugins.git"; deepClone = true; rev = "91fe56931a3e57b80f18c740d2dde6b44f962aee"; - sha256 = "0n29zxg4l2m3jsnfw6q2alyzaw7ibbv9nvk57k07sv3lh2yy3f30"; + sha256 = "1s0s028h3z3pfd4qvi63fsg6bv33bvz0p5fbmbmhypzqjlx6mlkb"; }; buildInputs = [ boost libX11 mesa liblo libjack2 ladspaH lv2 pkgconfig rubberband libsndfile ]; diff --git a/pkgs/applications/audio/zynaddsubfx/default.nix b/pkgs/applications/audio/zynaddsubfx/default.nix index 84a62d34fa6..0fccf66ddbc 100644 --- a/pkgs/applications/audio/zynaddsubfx/default.nix +++ b/pkgs/applications/audio/zynaddsubfx/default.nix @@ -4,11 +4,11 @@ stdenv.mkDerivation rec { name = "zynaddsubfx-${version}"; - version = "2.5.2"; + version = "2.5.4"; src = fetchurl { - url = "mirror://sourceforge/zynaddsubfx/zynaddsubfx-${version}.tar.gz"; - sha256 = "11yrady7xwfrzszkk2fvq81ymv99mq474h60qnirk27khdygk24m"; + url = "mirror://sourceforge/zynaddsubfx/zynaddsubfx-${version}.tar.bz2"; + sha256 = "16llaa2wg2gbgjhwp3632b2vx9jvanj4csv7d41k233ms6d1sjq1"; }; buildInputs = [ alsaLib libjack2 fftw fltk13 libjpeg minixml zlib liblo ]; @@ -19,6 +19,6 @@ stdenv.mkDerivation rec { homepage = http://zynaddsubfx.sourceforge.net; license = licenses.gpl2; platforms = platforms.linux; - maintainers = [ maintainers.goibhniu maintainers.palo ]; + maintainers = [ maintainers.goibhniu maintainers.nico202 ]; }; } diff --git a/pkgs/applications/backup/crashplan/CrashPlanDesktop.patch b/pkgs/applications/backup/crashplan/CrashPlanDesktop.patch index 00516484890..7fa68ba4a38 100644 --- a/pkgs/applications/backup/crashplan/CrashPlanDesktop.patch +++ b/pkgs/applications/backup/crashplan/CrashPlanDesktop.patch @@ -1,8 +1,12 @@ ---- ./scripts/CrashPlanDesktop 2014-12-18 09:51:14.050804325 +0100 -+++ ./scripts/CrashPlanDesktop-1 2014-12-18 09:51:32.271009382 +0100 -@@ -9,4 +9,4 @@ - +--- ./scripts/CrashPlanDesktop 2016-03-02 21:01:58.000000000 -0500 ++++ ./scripts/CrashPlanDesktop-1 2016-03-18 20:52:10.117686266 -0400 +@@ -11,7 +11,7 @@ cd ${TARGETDIR} --${JAVACOMMON} ${GUI_JAVA_OPTS} -classpath "./lib/com.backup42.desktop.jar:./lang:./skin" com.backup42.desktop.CPDesktop > ${TARGETDIR}/log/ui_output.log 2> ${TARGETDIR}/log/ui_error.log & -+${JAVACOMMON} ${GUI_JAVA_OPTS} -classpath "./lib/com.backup42.desktop.jar:./lang:./skin" com.backup42.desktop.CPDesktop & + if [ "_${VERSION_5_UI}" == "_true" ]; then +- ${TARGETDIR}/electron/crashplan > ${TARGETDIR}/log/ui_output.log 2> ${TARGETDIR}/log/ui_error.log & ++ ${TARGETDIR}/electron/crashplan & + else +- ${JAVACOMMON} ${GUI_JAVA_OPTS} -classpath "./lib/com.backup42.desktop.jar:./lang:./skin" com.backup42.desktop.CPDesktop > ${TARGETDIR}/log/ui_output.log 2> ${TARGETDIR}/log/ui_error.log & ++ ${JAVACOMMON} ${GUI_JAVA_OPTS} -classpath "./lib/com.backup42.desktop.jar:./lang:./skin" com.backup42.desktop.CPDesktop & + fi diff --git a/pkgs/applications/backup/crashplan/default.nix b/pkgs/applications/backup/crashplan/default.nix index f86ab91344f..e89de9b4c6a 100644 --- a/pkgs/applications/backup/crashplan/default.nix +++ b/pkgs/applications/backup/crashplan/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, makeWrapper, jre, cpio, gawk, gnugrep, gnused, procps, swt, gtk2, glib, libXtst }: -let version = "3.6.4"; +let version = "4.6.0"; in stdenv.mkDerivation rec { name = "crashplan-${version}"; crashPlanArchive = fetchurl { - url = "http://download.crashplan.com/installs/linux/install/CrashPlan/CrashPlan_${version}_Linux.tgz"; - sha256 = "0xmzpxfm8vghk552jy167wg1nky1pp93dqds1p922hn73g0x5cv3"; + url = "https://download.code42.com/installs/linux/install/CrashPlan/CrashPlan_${version}_Linux.tgz"; + sha256 = "0h9zk6i1pdvl101c8l4v4x6i7q4wkmkqp2dkm0lq7ha96lrvac47"; }; srcs = [ crashPlanArchive ]; @@ -16,7 +16,6 @@ in stdenv.mkDerivation rec { description = "An online/offline backup solution"; homepage = "http://www.crashplan.org"; license = licenses.unfree; - broken = true; # outdated and new client has trouble starting (nullpointer exception) maintainers = with maintainers; [ sztupi iElectric ]; }; @@ -38,7 +37,7 @@ in stdenv.mkDerivation rec { # Make sure the daemon is running using the same localization as # the (installing) user echo "" >> run.conf - echo "export LC_ALL=en_US.UTF-8" >> run.conf + echo "LC_ALL=en_US.UTF-8" >> run.conf install -d -m 755 unpacked $out @@ -49,15 +48,15 @@ in stdenv.mkDerivation rec { install -D -m 644 scripts/CrashPlan.desktop $out/share/applications/CrashPlan.desktop rm -r $out/log + mv -v $out/conf $out/conf.template ln -s $vardir/log $out/log ln -s $vardir/cache $out/cache ln -s $vardir/backupArchives $out/backupArchives - ln -s $vardir/conf/service.model $out/conf/service.model - ln -s $vardir/conf/my.service.xml $out/conf/my.service.xml + ln -s $vardir/conf $out/conf echo "JAVACOMMON=${jre}/bin/java" > $out/install.vars echo "APP_BASENAME=CrashPlan" >> $out/install.vars - echo "TARGETDIR=$out" >> $out/install.vars + echo "TARGETDIR=${vardir}" >> $out/install.vars echo "BINSDIR=$out/bin" >> $out/install.vars echo "MANIFESTDIR=${manifestdir}" >> $out/install.vars echo "VARDIR=${vardir}" >> $out/install.vars @@ -77,7 +76,8 @@ in stdenv.mkDerivation rec { substituteInPlace $out/share/applications/CrashPlan.desktop \ --replace /usr/local $out \ - --replace crashplan/skin skin + --replace crashplan/skin skin \ + --replace bin/CrashPlanDesktop CrashPlanDesktop wrapProgram $out/bin/CrashPlanDesktop --prefix LD_LIBRARY_PATH ":" "${gtk2}/lib:${glib}/lib:${libXtst}/lib" ''; diff --git a/pkgs/applications/editors/aseprite/default.nix b/pkgs/applications/editors/aseprite/default.nix index 43180bd04e3..15230a7a000 100644 --- a/pkgs/applications/editors/aseprite/default.nix +++ b/pkgs/applications/editors/aseprite/default.nix @@ -43,6 +43,5 @@ stdenv.mkDerivation rec { homepage = "http://www.aseprite.org/"; license = stdenv.lib.licenses.gpl2Plus; platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [iyzsong]; }; } diff --git a/pkgs/applications/editors/atom/default.nix b/pkgs/applications/editors/atom/default.nix index 8dc1e2d0c01..de857b7a8c6 100644 --- a/pkgs/applications/editors/atom/default.nix +++ b/pkgs/applications/editors/atom/default.nix @@ -16,11 +16,11 @@ let }; in stdenv.mkDerivation rec { name = "atom-${version}"; - version = "1.5.4"; + version = "1.6.0"; src = fetchurl { url = "https://github.com/atom/atom/releases/download/v${version}/atom-amd64.deb"; - sha256 = "0jnszf1v7xqhm2sy5wzm3f8aw7j1dnapnbw4d46bvshv9hbbzrn8"; + sha256 = "1izp2fwxk4rrksdbhcaj8fn0aazi7brid72n1vp7f49adrkqqc1b"; name = "${name}.deb"; }; diff --git a/pkgs/applications/editors/codeblocks/default.nix b/pkgs/applications/editors/codeblocks/default.nix index f11a8b5cc3a..53b7b5750a0 100644 --- a/pkgs/applications/editors/codeblocks/default.nix +++ b/pkgs/applications/editors/codeblocks/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, autoconf, automake, libtool, pkgconfig, file, zip, wxGTK, gtk -, contribPlugins ? false, hunspell, gamin, boost, libX11, cairo +, contribPlugins ? false, hunspell, gamin, boost }: with { inherit (stdenv.lib) optionalString optional optionals; }; @@ -14,9 +14,7 @@ stdenv.mkDerivation rec { sha256 = "044njhps4cm1ijfdyr5f9wjyd0vblhrz9b4603ma52wcdq25093p"; }; - nativeBuildInputs = [ automake autoconf libtool pkgconfig ]; - - buildInputs = [ file zip wxGTK gtk libX11 cairo ] + buildInputs = [ automake autoconf libtool pkgconfig file zip wxGTK gtk ] ++ optionals contribPlugins [ hunspell gamin boost ]; enableParallelBuilding = true; patches = [ ./writable-projects.patch ]; @@ -25,9 +23,6 @@ stdenv.mkDerivation rec { configureFlags = [ "--enable-pch=no" ] ++ optional contribPlugins "--with-contrib-plugins"; - # for whatever reason, the build config does not set these flag ... - NIX_CFLAGS_COMPILE = "-lX11 -lcairo"; - # Fix boost 1.59 compat # Try removing in the next version CPPFLAGS = "-DBOOST_ERROR_CODE_HEADER_ONLY -DBOOST_SYSTEM_NO_DEPRECATED"; diff --git a/pkgs/applications/editors/eclipse/default.nix b/pkgs/applications/editors/eclipse/default.nix index 62271998060..f4804c75ca3 100644 --- a/pkgs/applications/editors/eclipse/default.nix +++ b/pkgs/applications/editors/eclipse/default.nix @@ -312,7 +312,7 @@ rec { }; eclipse_sdk_451 = eclipse-sdk-451; # backward compatibility, added 2016-01-30 - eclipse-platform = eclipse-platform-451; + eclipse-platform = eclipse-platform-452; eclipse-platform-45 = buildEclipse { name = "eclipse-platform-4.5"; @@ -344,6 +344,21 @@ rec { }; }; + eclipse-platform-452 = buildEclipse { + name = "eclipse-platform-4.5.2"; + description = "Eclipse platform"; + sources = { + "x86_64-linux" = fetchurl { + url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops4/R-4.5.2-201602121500/eclipse-SDK-4.5.2-linux-gtk-x86_64.tar.gz; + sha256 = "13dsd5f5i39wd0sr2bgp57hd2msn8g2dnmw5j8hfwif22c62py47"; + }; + "i686-linux" = fetchurl { + url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops4/R-4.5.2-201602121500/eclipse-SDK-4.5.2-linux-gtk.tar.gz; + sha256 = "00jsmbrl4xhpbgd8hyxijgzqdic700kd3yw2qwgl0cs3ncvybxvq"; + }; + }; + }; + eclipseWithPlugins = { eclipse, plugins ? [], jvmArgs ? [] }: let # Gather up the desired plugins. diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix index 3bde9b1434c..0e0c75fcfc8 100644 --- a/pkgs/applications/editors/eclipse/plugins.nix +++ b/pkgs/applications/editors/eclipse/plugins.nix @@ -377,16 +377,16 @@ rec { testng = buildEclipsePlugin rec { name = "testng-${version}"; - version = "6.9.10.201512020421"; + version = "6.9.11.201603260617"; srcFeature = fetchurl { url = "http://beust.com/eclipse-old/eclipse_${version}/features/org.testng.eclipse_${version}.jar"; - sha256 = "17y0cb1xprldjav14iy2sinv7lcw4xnjs2fwz9gl41m9m1c0hajk"; + sha256 = "0cd7d3bdp6f081vrampsv53z55g1mjn04w9ngz3h8dr0h6jnxz3y"; }; srcPlugin = fetchurl { url = "http://beust.com/eclipse-old/eclipse_${version}/plugins/org.testng.eclipse_${version}.jar"; - sha256 = "1iwq0ifk9l56z11vhy5yscvl8l1xk6igkp103v9vwvcx6nlmkfgc"; + sha256 = "10kdwnydmsvngn8ahijxrv50aps6wa4ckbf7p24mxbwlnmpqfj03"; }; meta = with stdenv.lib; { diff --git a/pkgs/applications/editors/emacs-modes/elpa-packages.nix b/pkgs/applications/editors/emacs-modes/elpa-packages.nix index 7fc8a06644f..29cb586484a 100644 --- a/pkgs/applications/editors/emacs-modes/elpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/elpa-packages.nix @@ -35,11 +35,11 @@ self: }; overrides = { - # These packages require emacs-25 - el-search = markBroken super.el-search; - iterators = markBroken super.iterators; - midi-kbd = markBroken super.midi-kbd; - stream = markBroken super.stream; + el-search = markBroken super.el-search; # requires emacs-25 + iterators = markBroken super.iterators; # requires emacs-25 + midi-kbd = markBroken super.midi-kbd; # requires emacs-25 + stream = markBroken super.stream; # requires emacs-25 + cl-lib = null; # builtin }; elpaPackages = super // overrides; diff --git a/pkgs/applications/editors/emacs-modes/emacs-w3m/default.nix b/pkgs/applications/editors/emacs-modes/emacs-w3m/default.nix index d72ab12b580..850041ccfc7 100644 --- a/pkgs/applications/editors/emacs-modes/emacs-w3m/default.nix +++ b/pkgs/applications/editors/emacs-modes/emacs-w3m/default.nix @@ -27,8 +27,8 @@ stdenv.mkDerivation rec { ''; configureFlags = [ - "--with-lispdir=$out/share/emacs/site-lisp" - "--with-icondir=$out/share/emacs/site-lisp/images/w3m" + "--with-lispdir=$(out)/share/emacs/site-lisp" + "--with-icondir=$(out)/share/emacs/site-lisp/images/w3m" ]; postInstall = '' diff --git a/pkgs/applications/editors/emacs-modes/proofgeneral/HEAD.nix b/pkgs/applications/editors/emacs-modes/proofgeneral/HEAD.nix new file mode 100644 index 00000000000..a8760afc58b --- /dev/null +++ b/pkgs/applications/editors/emacs-modes/proofgeneral/HEAD.nix @@ -0,0 +1,52 @@ +{ stdenv, fetchgit, emacs, texinfo, texLive, perl, which, automake, enableDoc ? false }: + +stdenv.mkDerivation (rec { + name = "ProofGeneral-HEAD"; + + src = fetchgit { + url = "https://github.com/ProofGeneral/PG.git"; + rev = "16991280fb09743ae7320aef77f6a166afb907d7"; + sha256 = "08zhfl6xbl4q7lrl7wdp72xr155k06778by0d60g28mfx59b7sqc"; + }; + + buildInputs = [ emacs texinfo perl which ] ++ stdenv.lib.optional enableDoc texLive; + + prePatch = + '' sed -i "Makefile" \ + -e "s|^\(\(DEST_\)\?PREFIX\)=.*$|\1=$out|g ; \ + s|/sbin/install-info|install-info|g" + + + sed -i "bin/proofgeneral" -e's/which/type -p/g' + + # @image{ProofGeneral} fails, so remove it. + sed -i '94d' doc/PG-adapting.texi + sed -i '96d' doc/ProofGeneral.texi + ''; + + patches = [ ./pg.patch ]; + + preBuild = '' + make clean; + ''; + + installPhase = + if enableDoc + then + # Copy `texinfo.tex' in the right place so that `texi2pdf' works. + '' cp -v "${automake}/share/"automake-*/texinfo.tex doc + make install install-doc + '' + else "make install"; + + meta = { + description = "Proof General, an Emacs front-end for proof assistants"; + longDescription = '' + Proof General is a generic front-end for proof assistants (also known as + interactive theorem provers), based on the customizable text editor Emacs. + ''; + homepage = http://proofgeneral.inf.ed.ac.uk; + license = stdenv.lib.licenses.gpl2Plus; + platforms = stdenv.lib.platforms.unix; # arbitrary choice + }; +}) diff --git a/pkgs/applications/editors/geany/default.nix b/pkgs/applications/editors/geany/default.nix index 1b99d44bcc5..b4f6baa9c64 100644 --- a/pkgs/applications/editors/geany/default.nix +++ b/pkgs/applications/editors/geany/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, gtk2, which, pkgconfig, intltool, file }: let - version = "1.26"; + version = "1.27"; in stdenv.mkDerivation rec { @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://download.geany.org/${name}.tar.bz2"; - sha256 = "e38530e87c577e1e9806be3b40e08fb9ee321eb1abc6361ddacdad89c825f90d"; + sha256 = "846ff699a5944c5c3c068ae0199d4c13946a668bfc6d03f8c79765667c20cadf"; }; buildInputs = [ gtk2 which pkgconfig intltool file ]; diff --git a/pkgs/applications/editors/idea/default.nix b/pkgs/applications/editors/idea/default.nix index e9d25720f34..7a9f409d128 100644 --- a/pkgs/applications/editors/idea/default.nix +++ b/pkgs/applications/editors/idea/default.nix @@ -185,25 +185,25 @@ in idea-community = buildIdea rec { name = "idea-community-${version}"; - version = "15.0.4"; - build = "IC-143.2287"; + version = "2016.1"; + build = "IC-145.258.11"; description = "Integrated Development Environment (IDE) by Jetbrains, community edition"; license = stdenv.lib.licenses.asl20; src = fetchurl { url = "https://download.jetbrains.com/idea/ideaIC-${version}.tar.gz"; - sha256 = "05kah5cx7x3rlaaxkvbbm7g8jvy9hc38q4jv7j5r9rkxd38fslvn"; + sha256 = "1grgyaapsbf7xn0m18x6fgghjh9n1n2zblz9608g9qgx5p28kn6q"; }; }; idea-ultimate = buildIdea rec { name = "idea-ultimate-${version}"; - version = "15.0.4"; - build = "IU-143.2287"; + version = "2016.1"; + build = "IU-145.258.11"; description = "Integrated Development Environment (IDE) by Jetbrains, requires paid license"; license = stdenv.lib.licenses.unfree; src = fetchurl { url = "https://download.jetbrains.com/idea/ideaIU-${version}.tar.gz"; - sha256 = "0416y7krrak1q5pb8axskdamy06nfxmn4hj7421j8jaz0nc50dn4"; + sha256 = "15ybqdy311wi3iqi7bzk798cd91jpl73ngl86kzwr68d24nyy3zb"; }; }; diff --git a/pkgs/applications/editors/kdevelop/default.nix b/pkgs/applications/editors/kdevelop/default.nix index b0ac24ee61a..938a56518d5 100644 --- a/pkgs/applications/editors/kdevelop/default.nix +++ b/pkgs/applications/editors/kdevelop/default.nix @@ -3,12 +3,12 @@ stdenv.mkDerivation rec { name = "${pname}-${version}"; - version = "4.7.1"; + version = "4.7.3"; pname = "kdevelop"; src = fetchurl { - url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.xz"; - sha256 = "e3ad5377f53739a67216d37cda3f88c03f8fbb0c96e2a9ef4056df3c124e95c1"; + url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.bz2"; + sha256 = "9db388d1c8274da7d168c13db612c7e94ece7815757b945b0aa0371620a06b35"; }; buildInputs = [ kdevplatform kdebase_workspace okteta qjson ]; @@ -17,6 +17,8 @@ stdenv.mkDerivation rec { propagatedUserEnvPkgs = [ kdevplatform kate konsole kde_runtime oxygen_icons ]; + patches = [ ./gettext.patch ]; + NIX_CFLAGS_COMPILE = "-I${okteta}/include/KDE"; meta = with stdenv.lib; { @@ -31,6 +33,6 @@ stdenv.mkDerivation rec { programing languages. It is based on KDevPlatform, KDE and Qt libraries and is under development since 1998. ''; - homepage = http://www.kdevelop.org; + homepage = https://www.kdevelop.org; }; } diff --git a/pkgs/applications/editors/kdevelop/gettext.patch b/pkgs/applications/editors/kdevelop/gettext.patch new file mode 100644 index 00000000000..cefbc743fc3 --- /dev/null +++ b/pkgs/applications/editors/kdevelop/gettext.patch @@ -0,0 +1,8 @@ +diff -urN kdevelop-4.7.3.orig/po/CMakeLists.txt kdevelop-4.7.3/po/CMakeLists.txt +--- kdevelop-4.7.3.orig/po/CMakeLists.txt 2016-03-04 23:29:09.411886565 +0100 ++++ kdevelop-4.7.3/po/CMakeLists.txt 2016-03-04 23:28:35.108451713 +0100 +@@ -1,3 +1,4 @@ ++cmake_policy(SET CMP0002 OLD) + find_package(Gettext REQUIRED) + if (NOT GETTEXT_MSGMERGE_EXECUTABLE) + MESSAGE(FATAL_ERROR "Please install msgmerge binary") diff --git a/pkgs/applications/editors/nano/default.nix b/pkgs/applications/editors/nano/default.nix index 61818561f74..efec2410f9b 100644 --- a/pkgs/applications/editors/nano/default.nix +++ b/pkgs/applications/editors/nano/default.nix @@ -12,12 +12,13 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "nano-${version}"; - version = "2.5.0"; + version = "2.5.3"; src = fetchurl { url = "mirror://gnu/nano/${name}.tar.gz"; - sha256 = "1vl9bim56k1b4zwc3icxp46w6pn6gb042j1h4jlz1jklxxpkwcpz"; + sha256 = "1vhjrcydcfxqq1719vcsvqqnbjbq2523m00dhzag5vwzkc961c5j"; }; - buildInputs = [ ncurses texinfo ] ++ optional enableNls gettext; + nativeBuildInputs = [ texinfo ] ++ optional enableNls gettext; + buildInputs = [ ncurses ]; outputs = [ "out" "info" ]; configureFlags = '' --sysconfdir=/etc diff --git a/pkgs/applications/editors/tiled/default.nix b/pkgs/applications/editors/tiled/default.nix index 4590baf6b8e..059b85cee5f 100644 --- a/pkgs/applications/editors/tiled/default.nix +++ b/pkgs/applications/editors/tiled/default.nix @@ -24,6 +24,5 @@ stdenv.mkDerivation rec { # The rest is GPL2 or later. license = stdenv.lib.licenses.gpl2Plus; platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ iyzsong ]; }; } diff --git a/pkgs/applications/editors/tweak/default.nix b/pkgs/applications/editors/tweak/default.nix new file mode 100644 index 00000000000..5ebe4672cab --- /dev/null +++ b/pkgs/applications/editors/tweak/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl, ncurses }: + +stdenv.mkDerivation rec { + name = "tweak-${version}"; + version = "3.02"; + + src = fetchurl { + url = "http://www.chiark.greenend.org.uk/~sgtatham/tweak/${name}.tar.gz"; + sha256 = "06js54pr5hwpwyxj77zs5s40n5aqvaw48dkj7rid2d47pyqijk2v"; + }; + + buildInputs = [ ncurses ]; + preBuild = "substituteInPlace Makefile --replace '$(DESTDIR)/usr/local' $out"; + + meta = with stdenv.lib; { + description = "An efficient hex editor"; + homepage = "http://www.chiark.greenend.org.uk/~sgtatham/tweak"; + license = licenses.mit; + platform = platforms.unix; + }; +} diff --git a/pkgs/applications/editors/vim/default.nix b/pkgs/applications/editors/vim/default.nix index 1249b0b9564..97a40e5c7e5 100644 --- a/pkgs/applications/editors/vim/default.nix +++ b/pkgs/applications/editors/vim/default.nix @@ -10,13 +10,13 @@ stdenv.mkDerivation rec { name = "vim-${version}"; - version = "7.4.827"; + version = "7.4.1585"; src = fetchFromGitHub { owner = "vim"; repo = "vim"; rev = "v${version}"; - sha256 = "1m34s2hsc5lcish6gmvn2iwaz0k7jc3kg9q4nf30fj9inl7gaybs"; + sha256 = "1kjdwpka269i4cyl0rmnmzg23dl26g65k26h32w8ayzfm3kbj123"; }; enableParallelBuilding = true; diff --git a/pkgs/applications/editors/vim/macvim.nix b/pkgs/applications/editors/vim/macvim.nix index 69e9ab35e96..6f43a2f9a89 100644 --- a/pkgs/applications/editors/vim/macvim.nix +++ b/pkgs/applications/editors/vim/macvim.nix @@ -75,6 +75,7 @@ stdenv.mkDerivation rec { postInstall = '' mkdir -p $out/Applications cp -r src/MacVim/build/Release/MacVim.app $out/Applications + rm -rf $out/MacVim.app rm $out/bin/{Vimdiff,Vimtutor,Vim,ex,rVim,rview,view} diff --git a/pkgs/applications/graphics/ahoviewer/default.nix b/pkgs/applications/graphics/ahoviewer/default.nix new file mode 100644 index 00000000000..79d6ff06578 --- /dev/null +++ b/pkgs/applications/graphics/ahoviewer/default.nix @@ -0,0 +1,36 @@ +{ stdenv, pkgs, fetchurl, fetchFromGitHub, pkgconfig, libconfig, + gtkmm, glibmm, libxml2, libsecret, curl, unrar, libzip, + librsvg, gst_all_1, autoreconfHook, makeWrapper }: +stdenv.mkDerivation { + name = "ahoviewer-1.4.6"; + src = fetchFromGitHub { + owner = "ahodesuka"; + repo = "ahoviewer"; + rev = "414cb91d66d96fab4b48593a7ef4d9ad461306aa"; + sha256 = "081jgfmbwf2av0cn229cf4qyv6ha80ridymsgwq45124b78y2bmb"; + }; + enableParallelBuilding = true; + nativeBuildInputs = [ autoreconfHook pkgconfig makeWrapper ]; + buildInputs = [ glibmm libconfig gtkmm glibmm libxml2 + libsecret curl unrar libzip librsvg + gst_all_1.gstreamer + gst_all_1.gst-plugins-good + gst_all_1.gst-plugins-bad + gst_all_1.gst-libav + gst_all_1.gst-plugins-base ]; + postPatch = ''patchShebangs version.sh''; + postInstall = '' + wrapProgram $out/bin/ahoviewer \ + --prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0" \ + --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" + ''; + meta = { + homepage = "https://github.com/ahodesuka/ahoviewer"; + description = "A GTK2 image viewer, manga reader, and booru browser"; + maintainers = [ stdenv.lib.maintainers.skrzyp ]; + license = stdenv.lib.licenses.mit; + platforms = stdenv.lib.platforms.allBut [ "darwin" "cygwin" ]; + }; +} + + diff --git a/pkgs/applications/graphics/antimony/default.nix b/pkgs/applications/graphics/antimony/default.nix index 5e8dfd93f30..dded423652c 100644 --- a/pkgs/applications/graphics/antimony/default.nix +++ b/pkgs/applications/graphics/antimony/default.nix @@ -16,6 +16,15 @@ in }; patches = [ ./paths-fix.patch ]; + # fix build with glibc-2.23 + postPatch = '' + sed 's/\ herqq -> is missing its av part.*/ + /*qt_koauth */ + +# Supplementary packages required only by the wrapper. +, bash, kde_runtime, kde_baseapps, makeWrapper, oxygen_icons +, phonon_backend_vlc /*phonon_backend_gstreamer,*/ +, ffmpegthumbs /*mplayerthumbs*/ +, runCommand, shared_mime_info, writeScriptBin }: -stdenv.mkDerivation rec { - name = "digikam-4.12.0"; +let + version = "4.12.0"; + pName = "digikam-${version}"; - src = fetchurl { - url = "http://download.kde.org/stable/digikam/${name}.tar.bz2"; - sha256 = "081ldsaf3frf5khznjd3sxkjmi4dyp6w6nqnc2a0agkk0kxkl10m"; + build = stdenv.mkDerivation rec { + name = "digikam-build-${version}"; + + src = fetchurl { + url = "http://download.kde.org/stable/digikam/${pName}.tar.bz2"; + sha256 = "081ldsaf3frf5khznjd3sxkjmi4dyp6w6nqnc2a0agkk0kxkl10m"; + }; + + nativeBuildInputs = [ + automoc4 cmake gettext perl pkgconfig + ] ++ [ + # Optional + doxygen + ]; + + buildInputs = [ + boost eigen jasper kdelibs kdepimlibs lcms lensfun + libgphoto2 libjpeg libkdcraw libkexiv2 libkipi liblqr1 libpgf + libtiff marble mysql.lib opencv phonon qca2 qimageblitz qjson qt4 + shared_desktop_ontologies soprano ] + # Optional build time dependencies + ++ [ + baloo + kfilemetadata + lcms2 ] + ++ stdenv.lib.optional (kfaceSupport && null != libkface) [ libkface ] + ++ stdenv.lib.optional (kgeomapSupport && null != libkgeomap) [ libkgeomap ] ++ + [ libxslt ] + # Plugins optional build time dependencies + ++ [ + gdk_pixbuf imagemagick libgpod libksane + libkvkontakte + qt_gstreamer1 ]; + + # Make digikam find some FindXXXX.cmake + KDEDIRS="${marble}:${qjson}"; + + # Find kdepimlibs's upper case headers under `include/KDE`. + NIX_CFLAGS_COMPILE = "-I${kdepimlibs}/include/KDE"; + + # Help digiKam find libusb, otherwise gphoto2 support is disabled + cmakeFlags = [ + "-DLIBUSB_LIBRARIES=${libusb1}/lib" + "-DLIBUSB_INCLUDE_DIR=${libusb1}/include/libusb-1.0" + "-DENABLE_BALOOSUPPORT=ON" + "-DENABLE_KDEPIMLIBSSUPPORT=ON" + "-DENABLE_LCMS2=ON" ] + ++ stdenv.lib.optional (kfaceSupport && null == libkface) [ "-DDIGIKAMSC_COMPILE_LIBKFACE=ON" ] + ++ stdenv.lib.optional (kgeomapSupport && null == libkgeomap) [ "-DDIGIKAMSC_COMPILE_LIBKGEOMAP=ON" ]; + + enableParallelBuilding = true; + + meta = { + description = "Photo Management Program"; + license = stdenv.lib.licenses.gpl2; + homepage = http://www.digikam.org; + maintainers = with stdenv.lib.maintainers; [ goibhniu viric urkud ]; + inherit (kdelibs.meta) platforms; + }; }; - nativeBuildInputs = [ automoc4 cmake gettext perl pkgconfig ]; - buildInputs = [ - boost eigen jasper kdelibs kdepimlibs lcms lensfun libgphoto2 - libjpeg libkdcraw libkexiv2 libkipi liblqr1 libpgf libtiff marble - mysql.lib opencv phonon qca2 qimageblitz qjson qt4 - shared_desktop_ontologies soprano + kdePkgs = [ + build # digikam's own build + kdelibs kdepimlibs kde_runtime kde_baseapps libkdcraw oxygen_icons + /*phonon_backend_gstreamer*/ phonon_backend_vlc + ffmpegthumbs /*mplayerthumbs*/ shared_mime_info ] + # Optional build time dependencies + ++ [ + + baloo kfilemetadata ] + ++ stdenv.lib.optional (kfaceSupport && null != libkface) [ libkface ] + ++ stdenv.lib.optional (kgeomapSupport && null != libkgeomap) [ libkgeomap ] + ++ [ + libkipi ] + # Plugins optional build time dependencies + ++ [ + libksane libkvkontakte ]; - # Make digikam find some FindXXXX.cmake - KDEDIRS="${marble}:${qjson}"; - # Help digiKam find libusb, otherwise gphoto2 support is disabled - cmakeFlags = [ - "-DLIBUSB_LIBRARIES=${libusb1}/lib" - "-DLIBUSB_INCLUDE_DIR=${libusb1}/include/libusb-1.0" - "-DDIGIKAMSC_COMPILE_LIBKFACE=ON" - ]; + # TODO: It should be the responsability of these packages to add themselves to `KDEDIRS`. See + # for + # a practical example. + # IMPORTANT: Note that using `XDG_DATA_DIRS` here instead of `KDEDIRS` won't work properly. + KDEDIRS = with stdenv.lib; concatStrings (intersperse ":" (map (x: "${x}") kdePkgs)); - enableParallelBuilding = true; + sycocaDirRelPath = "var/lib/kdesycoca"; + sycocaFileRelPath = "${sycocaDirRelPath}/${pName}.sycoca"; + + sycoca = runCommand "${pName}" { + + name = "digikam-sycoca-${version}"; + + nativeBuildInputs = [ kdelibs ]; + + dontPatchELF = true; + dontStrip = true; + + } '' + # Make sure kbuildsycoca4 does not attempt to write to user home directory. + export HOME=$PWD + + export KDESYCOCA="$out/${sycocaFileRelPath}" + + mkdir -p $out/${sycocaDirRelPath} + export XDG_DATA_DIRS="" + export KDEDIRS="${KDEDIRS}" + kbuildsycoca4 --noincremental --nosignal + ''; + + + replaceExeListWithWrapped = + let f = exeName: '' + rm -f "$out/bin/${exeName}" + makeWrapper "${build}/bin/${exeName}" "$out/bin/${exeName}" \ + --set XDG_DATA_DIRS "" \ + --set KDEDIRS "${KDEDIRS}" \ + --set KDESYCOCA "${sycoca}/${sycocaFileRelPath}" + ''; + in + with stdenv.lib; exeNameList: concatStrings (intersperse "\n" (map f exeNameList)); + +in + + +with stdenv.lib; + +/* + Final derivation + ---------------- + + - Create symlinks to our original build derivation items. + - Wrap specific executables so that they know of the appropriate + sycoca database, `KDEDIRS` to use and block any interference + from `XDG_DATA_DIRS` (only `dnginfo` is not wrapped). +*/ +runCommand "${pName}" { + inherit build; + inherit sycoca; + + nativeBuildInputs = [ makeWrapper ]; + + buildInputs = kdePkgs; + + dontPatchELF = true; + dontStrip = true; meta = { description = "Photo Management Program"; license = stdenv.lib.licenses.gpl2; homepage = http://www.digikam.org; - maintainers = with stdenv.lib.maintainers; [ goibhniu viric urkud ]; + maintainers = with stdenv.lib.maintainers; [ /*jraygauthier*/ ]; inherit (kdelibs.meta) platforms; }; -} + +} '' + pushd $build > /dev/null + for d in `find . -maxdepth 1 -name "*" -printf "%f\n" | tail -n+2`; do + mkdir -p $out/$d + for f in `find $d -maxdepth 1 -name "*" -printf "%f\n" | tail -n+2`; do + ln -s "$build/$d/$f" "$out/$d/$f" + done + done + popd > /dev/null + + ${replaceExeListWithWrapped [ "cleanup_digikamdb" "digitaglinktree" "digikam" "dngconverter" + "expoblending" "photolayoutseditor" "scangui" "showfoto" ]} +'' + +/* + +TODO +---- + +### Useful ### + + - Per lib `KDELIBS` environment variable export. See above in-code TODO comment. + - Missing optional `qt_soap` or `herqq` (av + normal package) dependencies. Those are not + yet (or not fully) packaged in nix. Mainly required for upnp export. + - Possibility to use the `phonon_backend_gstreamer` with its own user specified set of backend. + - Allow user to disable optional features or dependencies reacting properly. + - Compile `kipiplugins` as a separate package (so that it can be used by other kde packages + and so that this package's build time is reduced). + +### Not so useful ### + + - Missing optional `qt_koauth` (not packaged in nix). + - Missing optional `libmediawiki` (not packaged in nix).. + - For some reason the cmake build does not detect `libkvkontakte`. Fix this. + - Possibility to use `mplayerthumbs` thumbnail creator backend. In digikam dev docs, + it is however suggested to use `ffmpegthumbs`. Maybe we should stick to it. + +*/ diff --git a/pkgs/applications/graphics/openimageio/default.nix b/pkgs/applications/graphics/openimageio/default.nix index 97607e81951..79db732750d 100644 --- a/pkgs/applications/graphics/openimageio/default.nix +++ b/pkgs/applications/graphics/openimageio/default.nix @@ -4,11 +4,11 @@ stdenv.mkDerivation rec { name = "openimageio-${version}"; - version = "1.6.9"; + version = "1.6.11"; src = fetchurl { url = "https://github.com/OpenImageIO/oiio/archive/Release-${version}.zip"; - sha256 = "0942xj877875f4dpfg7aqwyw015y82vkhaqap7yhybmvzsfj7wki"; + sha256 = "0cr0z81a41bg193dx9crcq1mns7mmzz7qys4lrbm18cmdbwkk88x"; }; buildInputs = [ diff --git a/pkgs/applications/graphics/pencil/default.nix b/pkgs/applications/graphics/pencil/default.nix index 8ee39c135ef..80774fba5ff 100644 --- a/pkgs/applications/graphics/pencil/default.nix +++ b/pkgs/applications/graphics/pencil/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, makeWrapper, xulrunner }: stdenv.mkDerivation rec { - version = "2.0.15"; + version = "2.0.18"; name = "pencil-${version}"; src = fetchurl { url = "https://github.com/prikhi/pencil/releases/download/v${version}/Pencil-${version}-linux-pkg.tar.gz"; - sha256 = "be338558b613f51506337a2c7c80f209e8644656c2925f41c294e2872feabc3b"; + sha256 = "0x0kibb2na12fwl0x68xhkjpbm5h2widm346cx2r29gp1kq9kklc"; }; buildPhase = ""; diff --git a/pkgs/applications/graphics/phototonic/default.nix b/pkgs/applications/graphics/phototonic/default.nix index 6803b969b4b..a26346add7f 100644 --- a/pkgs/applications/graphics/phototonic/default.nix +++ b/pkgs/applications/graphics/phototonic/default.nix @@ -2,12 +2,14 @@ stdenv.mkDerivation rec { name = "phototonic-${version}"; - version = "1.7"; + version = "1.7.1"; src = fetchFromGitHub { repo = "phototonic"; owner = "oferkv"; - rev = "v${version}"; + # There is currently no tag for 1.7.1 see + # https://github.com/oferkv/phototonic/issues/214 + rev = "c37070e4a068570d34ece8de1e48aa0882c80c5b"; sha256 = "1agd3bsrpljd019qrjvlbim5l0bhpx53dhpc0gvyn0wmcdzn92gj"; }; diff --git a/pkgs/applications/graphics/sane/backends/git.nix b/pkgs/applications/graphics/sane/backends/git.nix index 84e1f783e2a..b285edd71e0 100644 --- a/pkgs/applications/graphics/sane/backends/git.nix +++ b/pkgs/applications/graphics/sane/backends/git.nix @@ -1,10 +1,10 @@ { callPackage, fetchgit, ... } @ args: callPackage ./generic.nix (args // { - version = "2016-03-05"; + version = "2016-03-24"; src = fetchgit { - sha256 = "dc84530d5e0233427acfd132aa08a4cf9973c936ff72a66ee08ecf836200d367"; - rev = "23eb95582da718791103b83ea002e947caa0f5fc"; + sha256 = "593672ccfef6e3e0f3cb8ae4bbc67db9b2f1a821df4914343e4cf32f75cea865"; + rev = "41a416e4afcf6cada69193dc408ef184d0e5f678"; url = "git://alioth.debian.org/git/sane/sane-backends.git"; }; }) diff --git a/pkgs/applications/graphics/simple-scan/default.nix b/pkgs/applications/graphics/simple-scan/default.nix index 7ee298f7281..417d117d688 100644 --- a/pkgs/applications/graphics/simple-scan/default.nix +++ b/pkgs/applications/graphics/simple-scan/default.nix @@ -3,11 +3,11 @@ stdenv.mkDerivation rec { name = "simple-scan-${version}"; - version = "3.19.91"; + version = "3.20.0"; src = fetchurl { - sha256 = "1c5glf5vxgld41w4jxfqcv17q76qnh43fawpv33hncgh8d283xkf"; - url = "https://launchpad.net/simple-scan/3.19/${version}/+download/${name}.tar.xz"; + sha256 = "0b5ndrjwi7yipkr9bhyifpbdil65izdm677if23yj832n2jsbxcd"; + url = "https://launchpad.net/simple-scan/3.20/${version}/+download/${name}.tar.xz"; }; buildInputs = [ cairo colord glib gusb gtk3 libusb1 libxml2 sane-backends @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { configureFlags = [ "--disable-packagekit" ]; preBuild = '' - # Clean up stale .c files referencing packagekit headers as of 3.19.91: + # Clean up stale .c files referencing packagekit headers as of 3.20.0: make clean ''; diff --git a/pkgs/applications/misc/blender/default.nix b/pkgs/applications/misc/blender/default.nix index 0b9cbe02999..0085da5b468 100644 --- a/pkgs/applications/misc/blender/default.nix +++ b/pkgs/applications/misc/blender/default.nix @@ -10,11 +10,11 @@ with lib; stdenv.mkDerivation rec { - name = "blender-2.76b"; + name = "blender-2.77"; src = fetchurl { url = "http://download.blender.org/source/${name}.tar.gz"; - sha256 = "0pb0mlj4vj0iir528ifqq67nsh3ca1942933d9cwlbpcja2jm1dx"; + sha256 = "0aynm249xgrnm6h5hlp9x40ww0hn391d9ka2mg9mmqrdzhih286n"; }; buildInputs = @@ -62,7 +62,7 @@ stdenv.mkDerivation rec { # They comment two licenses: GPLv2 and Blender License, but they # say: "We've decided to cancel the BL offering for an indefinite period." license = licenses.gpl2Plus; - platforms = platforms.linux; + platforms = [ "x86_64-linux" ]; maintainers = [ maintainers.goibhniu ]; }; } diff --git a/pkgs/applications/misc/buku/default.nix b/pkgs/applications/misc/buku/default.nix new file mode 100644 index 00000000000..ccebb8bfc11 --- /dev/null +++ b/pkgs/applications/misc/buku/default.nix @@ -0,0 +1,34 @@ +{ stdenv, pythonPackages, fetchFromGitHub, + encryptionSupport ? false +}: + +pythonPackages.buildPythonApplication rec { + version = "1.8"; + name = "buku-${version}"; + + src = fetchFromGitHub { + owner = "jarun"; + repo = "buku"; + rev = "53d48ee56a3abfb53b94ed25fb620ee759141c96"; + sha256 = "185d3gndw20c3l6f3mf0iq4qapm8g30bl0hn0wsqpp36vl0bpq28"; + }; + + buildInputs = stdenv.lib.optional encryptionSupport pythonPackages.pycrypto; + + phases = [ "unpackPhase" "installPhase" "fixupPhase" ]; + + installPhase = '' + make install PREFIX=$out + ''; + + doCheck = false; + + meta = with stdenv.lib; { + description = "Private cmdline bookmark manager"; + homepage = https://github.com/jarun/Buku; + license = licenses.gpl3; + platforms = platforms.linux; + maintainers = with maintainers; [ matthiasbeyer ]; + }; +} + diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix index 5d936421d9e..e66f260af96 100644 --- a/pkgs/applications/misc/calibre/default.nix +++ b/pkgs/applications/misc/calibre/default.nix @@ -5,12 +5,12 @@ }: stdenv.mkDerivation rec { - version = "2.52.0"; + version = "2.53.0"; name = "calibre-${version}"; src = fetchurl { url = "http://download.calibre-ebook.com/${version}/${name}.tar.xz"; - sha256 = "1la114vhkm73iv0rrzwws28ydiszl58q5y9d6aafn5sh16ph2aws"; + sha256 = "0rvfh39a6j5r398p6xzrbzvhxapm1iyhc0d46xk5fwa52kscadhz"; }; inherit python; diff --git a/pkgs/applications/misc/cdrtools/default.nix b/pkgs/applications/misc/cdrtools/default.nix index b83857b6045..2168a21f7da 100644 --- a/pkgs/applications/misc/cdrtools/default.nix +++ b/pkgs/applications/misc/cdrtools/default.nix @@ -12,6 +12,11 @@ stdenv.mkDerivation rec { buildInputs = [ acl libcap ]; + postPatch = '' + sed "/\.mk3/d" -i libschily/Targets.man + substituteInPlace man/Makefile --replace "man4" "" + ''; + configurePhase = "true"; GMAKE_NOWARN = true; diff --git a/pkgs/applications/misc/d4x/default.nix b/pkgs/applications/misc/d4x/default.nix index 3c146249dd0..cdcada196b9 100644 --- a/pkgs/applications/misc/d4x/default.nix +++ b/pkgs/applications/misc/d4x/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { inherit boost; src = fetchurl { - url = http://d4x.krasu.ru/files/d4x-2.5.7.1.tar.bz2; + url = http://pkgs.fedoraproject.org/repo/pkgs/d4x/d4x-2.5.7.1.tar.bz2/68d6336c3749a7caabb0f5a5f84f4102/d4x-2.5.7.1.tar.bz2; sha256 = "1i1jj02bxynisqapv31481sz9jpfp3f023ky47spz1v1wlwbs13m"; }; diff --git a/pkgs/applications/misc/deco/default.nix b/pkgs/applications/misc/deco/default.nix new file mode 100644 index 00000000000..170018dc972 --- /dev/null +++ b/pkgs/applications/misc/deco/default.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchFromGitHub, scsh, feh, xlibs }: + +stdenv.mkDerivation rec { + pname = "deco"; + version = "0.0.1"; + name = "${pname}-${version}"; + + src = fetchFromGitHub { + owner = "ebzzry"; + repo = pname; + rev = "037f473ae4bdce5d3e2f76891785f0f7479cca75"; + sha256 = "1fv15nc9zqbn3c51vnm50yidj5ivpi61zg55cs46x3gi2x79x43q"; + }; + + installPhase = '' + mkdir -p $out/bin + cp ${pname} $out/bin + chmod +x $out/bin/${pname} + ''; + + postFixup = '' + substituteInPlace $out/bin/deco --replace "/usr/bin/env scsh" "${scsh}/bin/scsh" + substituteInPlace $out/bin/deco --replace "feh" "${feh}/bin/feh" + substituteInPlace $out/bin/deco --replace "xdpyinfo" "${xlibs.xdpyinfo}/bin/xdpyinfo" + ''; + + meta = with stdenv.lib; { + homepage = https://github.com/ebzzry/deco; + description = "A simple root image setter"; + license = licenses.mit; + maintainers = [ maintainers.ebzzry ]; + platforms = platforms.unix; + }; + + dontBuild = true; +} diff --git a/pkgs/applications/misc/electrum/default.nix b/pkgs/applications/misc/electrum/default.nix index c9b6de715d2..69f41571c45 100644 --- a/pkgs/applications/misc/electrum/default.nix +++ b/pkgs/applications/misc/electrum/default.nix @@ -18,11 +18,11 @@ in pythonPackages.buildPythonApplication rec { name = "electrum-${version}"; - version = "2.6.1"; + version = "2.6.3"; src = fetchurl { url = "https://download.electrum.org/${version}/Electrum-${version}.tar.gz"; - sha256 = "14q6y1hwzki56nfhd3nfbxid07d5fv0pgmklvcf7yxjmpdxrg0iq"; + sha256 = "0lj3a8zg6dznpnnxyza8a05c13py52j62rqlad1zcgksm5g63vic"; }; propagatedBuildInputs = with pythonPackages; [ @@ -55,6 +55,11 @@ pythonPackages.buildPythonApplication rec { pyrcc4 icons.qrc -o gui/qt/icons_rc.py ''; + doCheck = true; + checkPhase = '' + $out/bin/electrum help >/dev/null + ''; + meta = with stdenv.lib; { description = "Bitcoin thin-client"; longDescription = '' diff --git a/pkgs/applications/misc/emem/default.nix b/pkgs/applications/misc/emem/default.nix index 3d8e4742fa6..b2855e5a287 100644 --- a/pkgs/applications/misc/emem/default.nix +++ b/pkgs/applications/misc/emem/default.nix @@ -2,14 +2,14 @@ stdenv.mkDerivation rec { pname = "emem"; - version = "0.2.12"; + version = "0.2.15"; name = "${pname}-${version}"; inherit jdk; src = fetchurl { url = "https://github.com/ebzzry/${pname}/releases/download/v${version}/${pname}.jar"; - sha256 = "1ynn72n9pw9zk29c9q2zybxjg8dniilp05vghrc9vnslyi8ml90d"; + sha256 = "0jj990syd9biq2awnjydi4x3p4hivigc522ds59hdf5wg4y2gg6c"; }; buildInputs = [ ]; @@ -22,14 +22,14 @@ stdenv.mkDerivation rec { ''; installPhase = '' - cp $src $out/share/java + cp $src $out/share/java/${pname}.jar - cat > $out/bin/emem < $out/bin/${pname} < libpulseaudio != null; stdenv.mkDerivation rec { name = "gqrx-${version}"; - version = "2.3.2"; + version = "2.5.3"; - src = fetchurl { - url = "mirror://sourceforge/project/gqrx/${version}/${name}.tar.xz"; - sha256 = "1vfqqa976xlbapqkpc9nka364zydvsy18xiwfqjy015kpasshdz1"; + src = fetchFromGitHub { + owner = "csete"; + repo = "gqrx"; + rev = "v${version}"; + sha256 = "02pavd1kc0gsnrl18bfa01r2f3j4j05zly4a8zwss9yrsgf8432x"; }; buildInputs = [ @@ -21,12 +23,14 @@ stdenv.mkDerivation rec { configurePhase = ''qmake PREFIX="$out"''; + enableParallelBuilding = true; + postInstall = '' mkdir -p "$out/share/applications" mkdir -p "$out/share/icons" cp gqrx.desktop "$out/share/applications/" - cp icons/gqrx.svg "$out/share/icons/" + cp resources/icons/gqrx.svg "$out/share/icons/" ''; meta = with stdenv.lib; { @@ -42,6 +46,6 @@ stdenv.mkDerivation rec { # it's currently unknown which version of the BSD license that is. license = licenses.gpl3Plus; platforms = platforms.linux; # should work on Darwin / OS X too - maintainers = with maintainers; [ bjornfor the-kenny ]; + maintainers = with maintainers; [ bjornfor the-kenny fpletz ]; }; } diff --git a/pkgs/applications/misc/josm/default.nix b/pkgs/applications/misc/josm/default.nix index 99e337baa1a..410f56c2299 100644 --- a/pkgs/applications/misc/josm/default.nix +++ b/pkgs/applications/misc/josm/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "josm-${version}"; - version = "9900"; + version = "9979"; src = fetchurl { url = "https://josm.openstreetmap.de/download/josm-snapshot-${version}.jar"; - sha256 = "1dsfamh2bsiz3xkhmh7g4jz6bbh25x22k3zgj1k0v0gj8k6yl7dy"; + sha256 = "0zy88f4h71qyj7vlhiwnayaaz50gg6bj5pfypy43ghmjrh01d9vh"; }; phases = [ "installPhase" ]; diff --git a/pkgs/applications/misc/keepass/default.nix b/pkgs/applications/misc/keepass/default.nix index 948d03262b6..d6835388d89 100644 --- a/pkgs/applications/misc/keepass/default.nix +++ b/pkgs/applications/misc/keepass/default.nix @@ -8,11 +8,11 @@ # plugin derivations in the Nix store and nowhere else. with builtins; buildDotnetPackage rec { baseName = "keepass"; - version = "2.31"; + version = "2.32"; src = fetchurl { url = "mirror://sourceforge/keepass/KeePass-${version}-Source.zip"; - sha256 = "10bqxpq30gzfq2ip6dkmqlzzsh3bnfdb01jry5xhgxvlycq1lnsm"; + sha256 = "11bkflmqrpfk95v2j7pjcm78nilx2s611mn2x7kxwn77ilnbcjbw"; }; sourceRoot = "."; diff --git a/pkgs/applications/misc/khal/default.nix b/pkgs/applications/misc/khal/default.nix index ab55e3618ec..9f083592c40 100644 --- a/pkgs/applications/misc/khal/default.nix +++ b/pkgs/applications/misc/khal/default.nix @@ -24,6 +24,7 @@ python3Packages.buildPythonApplication rec { urwid pkginfo ]; + buildInputs = with python3Packages; [ setuptools_scm ]; meta = with stdenv.lib; { homepage = http://lostpackets.de/khal/; diff --git a/pkgs/applications/misc/mediainfo-gui/default.nix b/pkgs/applications/misc/mediainfo-gui/default.nix index ffb4c147c77..83130164fd9 100644 --- a/pkgs/applications/misc/mediainfo-gui/default.nix +++ b/pkgs/applications/misc/mediainfo-gui/default.nix @@ -1,28 +1,29 @@ -{ stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, libmediainfo, wxGTK, desktop_file_utils, libSM, imagemagick }: +{ stdenv, fetchurl, autoreconfHook, pkgconfig, libzen, libmediainfo, wxGTK +, desktop_file_utils, libSM, imagemagick }: stdenv.mkDerivation rec { - version = "0.7.82"; + version = "0.7.83"; name = "mediainfo-gui-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz"; - sha256 = "0ivvmxx93aldfbms6wg46x9npghg304j2zxl5i70m710gybjr232"; + sha256 = "0d8mph9lbg2lw0ccg1la0kqhbisra8q9rzn195lncch5cia5zyg7"; }; - buildInputs = [ automake autoconf libtool pkgconfig libzen libmediainfo wxGTK desktop_file_utils libSM imagemagick ]; + nativeBuildInputs = [ autoreconfHook pkgconfig ]; + buildInputs = [ libzen libmediainfo wxGTK desktop_file_utils libSM + imagemagick ]; sourceRoot = "./MediaInfo/Project/GNU/GUI/"; - preConfigure = "sh autogen.sh"; - - meta = { + meta = with stdenv.lib; { description = "Supplies technical and tag information about a video or audio file (GUI version)"; longDescription = '' MediaInfo is a convenient unified display of the most relevant technical and tag data for video and audio files. ''; homepage = http://mediaarea.net/; - license = stdenv.lib.licenses.bsd2; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.devhell ]; + license = licenses.bsd2; + platforms = platforms.linux; + maintainers = [ maintainers.devhell ]; }; } diff --git a/pkgs/applications/misc/mediainfo/default.nix b/pkgs/applications/misc/mediainfo/default.nix index 5d953fed53a..cf1a4ce8280 100644 --- a/pkgs/applications/misc/mediainfo/default.nix +++ b/pkgs/applications/misc/mediainfo/default.nix @@ -1,19 +1,19 @@ -{ stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, libmediainfo, zlib }: +{ stdenv, fetchurl, autoreconfHook, pkgconfig, libzen, libmediainfo, zlib }: stdenv.mkDerivation rec { - version = "0.7.82"; + version = "0.7.83"; name = "mediainfo-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz"; - sha256 = "0ivvmxx93aldfbms6wg46x9npghg304j2zxl5i70m710gybjr232"; + sha256 = "0d8mph9lbg2lw0ccg1la0kqhbisra8q9rzn195lncch5cia5zyg7"; }; - buildInputs = [ automake autoconf libtool pkgconfig libzen libmediainfo zlib ]; + nativeBuildInputs = [ autoreconfHook pkgconfig ]; + buildInputs = [ libzen libmediainfo zlib ]; sourceRoot = "./MediaInfo/Project/GNU/CLI/"; configureFlags = [ "--with-libmediainfo=${libmediainfo}" ]; - preConfigure = "sh autogen.sh"; meta = with stdenv.lib; { description = "Supplies technical and tag information about a video or audio file"; diff --git a/pkgs/applications/misc/octoprint/0001-Don-t-use-static-library.patch b/pkgs/applications/misc/octoprint/0001-Don-t-use-static-library.patch index 01b0c8f9cce..54116b80a6e 100644 --- a/pkgs/applications/misc/octoprint/0001-Don-t-use-static-library.patch +++ b/pkgs/applications/misc/octoprint/0001-Don-t-use-static-library.patch @@ -1,7 +1,7 @@ -From 73ff28c3ee5b737303871268a5487db0fcffc0f6 Mon Sep 17 00:00:00 2001 +From 0be3198cccf753226758684955f49a32d8d920c0 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 17 Feb 2016 14:37:31 +0300 -Subject: [PATCH 1/2] Don't use static library +Subject: [PATCH] Don't use static library --- octoprint_m3dfio/__init__.py | 67 +----------------------------------------- @@ -9,23 +9,23 @@ Subject: [PATCH 1/2] Don't use static library 2 files changed, 5 insertions(+), 68 deletions(-) diff --git a/octoprint_m3dfio/__init__.py b/octoprint_m3dfio/__init__.py -index 5e5369b..9f59768 100644 +index a2ca533..43f178a 100644 --- a/octoprint_m3dfio/__init__.py +++ b/octoprint_m3dfio/__init__.py -@@ -764,72 +764,7 @@ class M3DFioPlugin( +@@ -793,72 +793,7 @@ class M3DFioPlugin( # Set file locations self.setFileLocations() - # Check if running on Linux - if platform.uname()[0].startswith("Linux") : - -- # Check if running on a Raspberry Pi +- # Check if running on a Raspberry Pi 1 - if platform.uname()[4].startswith("armv6l") and self.getCpuHardware() == "BCM2708" : - - # Set shared library - self.sharedLibrary = ctypes.cdll.LoadLibrary(self._basefolder.replace('\\', '/') + "/static/libraries/preprocessor_arm1176jzf-s.so") - -- # Otherwise check if running on a Raspberry Pi 2 +- # Otherwise check if running on a Raspberry Pi 2 or Raspberry Pi 3 - elif platform.uname()[4].startswith("armv7l") and self.getCpuHardware() == "BCM2709" : - - # Set shared library @@ -87,7 +87,7 @@ index 5e5369b..9f59768 100644 if self.sharedLibrary : diff --git a/shared library source/Makefile b/shared library source/Makefile -index 4062a91..89dab71 100644 +index 9d015a1..a24f134 100644 --- a/shared library source/Makefile +++ b/shared library source/Makefile @@ -58,13 +58,15 @@ ifeq ($(TARGET_PLATFORM), OSX64) @@ -109,5 +109,5 @@ index 4062a91..89dab71 100644 clean: rm -f ../octoprint_m3dfio/static/libraries/$(PROG) -- -2.7.0 +2.7.1 diff --git a/pkgs/applications/misc/octoprint/default.nix b/pkgs/applications/misc/octoprint/default.nix index 67b351ba906..b9b6c10a13f 100644 --- a/pkgs/applications/misc/octoprint/default.nix +++ b/pkgs/applications/misc/octoprint/default.nix @@ -2,13 +2,13 @@ pythonPackages.buildPythonApplication rec { name = "OctoPrint-${version}"; - version = "1.2.9"; + version = "1.2.10"; src = fetchFromGitHub { owner = "foosel"; repo = "OctoPrint"; rev = version; - sha256 = "00hhq52jqwykhk3p57mn9kkcjbjz6g9mcrp96vx8lqzhw42m3a86"; + sha256 = "1ips1083c4qrfnkssvp1lxrs92svlid29l225ifsymrinpbjawav"; }; # We need old Tornado diff --git a/pkgs/applications/misc/octoprint/plugins.nix b/pkgs/applications/misc/octoprint/plugins.nix index ba31d3fb342..7ff6686a937 100644 --- a/pkgs/applications/misc/octoprint/plugins.nix +++ b/pkgs/applications/misc/octoprint/plugins.nix @@ -8,13 +8,13 @@ in { m3d-fio = buildPlugin rec { name = "M3D-Fio-${version}"; - version = "0.29"; + version = "0.30.2"; src = fetchFromGitHub { owner = "donovan6000"; repo = "M3D-Fio"; rev = "V${version}"; - sha256 = "1ifbq7yibq42jjvqvklnx3qzr6vk2ngsxh3xhlbdrhqrg54gky4r"; + sha256 = "1knm41hwjf6v4yjx8khr2zd9ryndmw8bkp3y80hgjc5p4nqxrmg3"; }; patches = [ diff --git a/pkgs/applications/misc/pgadmin/default.nix b/pkgs/applications/misc/pgadmin/default.nix index 55db70c1d24..894aeaab425 100644 --- a/pkgs/applications/misc/pgadmin/default.nix +++ b/pkgs/applications/misc/pgadmin/default.nix @@ -9,6 +9,8 @@ stdenv.mkDerivation rec { sha256 = "0gkqpj8cg6jd6yhssrij1cbh960rg9fkjbdzcpryi6axwv0ag7ki"; }; + enableParallelBuilding = true; + buildInputs = [ postgresql wxGTK libxml2 libxslt openssl ]; preConfigure = '' diff --git a/pkgs/applications/misc/ranger/default.nix b/pkgs/applications/misc/ranger/default.nix index 14ae58a2932..7969695f1ad 100644 --- a/pkgs/applications/misc/ranger/default.nix +++ b/pkgs/applications/misc/ranger/default.nix @@ -8,7 +8,6 @@ buildPythonApplication rec { homepage = "http://ranger.nongnu.org/"; license = stdenv.lib.licenses.gpl3; platforms = stdenv.lib.platforms.unix; - maintainers = with stdenv.lib.maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/applications/misc/slic3r/default.nix b/pkgs/applications/misc/slic3r/default.nix index 1a5fa03c54c..5dd9795fba0 100644 --- a/pkgs/applications/misc/slic3r/default.nix +++ b/pkgs/applications/misc/slic3r/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { EncodeLocale MathClipper ExtUtilsXSpp threads MathConvexHullMonotoneChain MathGeometryVoronoi MathPlanePath Moo IOStringy ClassXSAccessor Wx GrowlGNTP NetDBus ImportInto XMLSAX - ExtUtilsMakeMaker OpenGL WxGLCanvas + ExtUtilsMakeMaker OpenGL WxGLCanvas ModuleBuild ]; desktopItem = makeDesktopItem { diff --git a/pkgs/applications/misc/stardict/stardict-3.0.3-compositelookup_cpp.patch b/pkgs/applications/misc/stardict/stardict-3.0.3-compositelookup_cpp.patch deleted file mode 100644 index 86825555d9c..00000000000 --- a/pkgs/applications/misc/stardict/stardict-3.0.3-compositelookup_cpp.patch +++ /dev/null @@ -1,19 +0,0 @@ -This patch is from OpenSUSE .src.rpm for the following crash on startup: - -ERROR:compositelookup.cpp:53:void CompositeLookup::send_net_dict_request(const string&, const string&): assertion failed: (NetDictRequests.end() == std::find(NetDictRequests.begin(), NetDictRequests.end(), request)) - ---- dict/src/lib/compositelookup.cpp -+++ dict/src/lib/compositelookup.cpp -@@ -50,8 +50,10 @@ - void CompositeLookup::send_net_dict_request(const std::string& dict_id, const std::string& key) - { - NetDictRequest request(dict_id, key); -- g_assert(NetDictRequests.end() == std::find(NetDictRequests.begin(), NetDictRequests.end(), request)); -- NetDictRequests.push_back(request); -+ if(NetDictRequests.end() == std::find(NetDictRequests.begin(), NetDictRequests.end(), request)) -+ { -+ NetDictRequests.push_back(request); -+ } - } - - /* returns true if got expected response */ diff --git a/pkgs/applications/misc/stardict/stardict-3.0.3-correct-glib-include.patch b/pkgs/applications/misc/stardict/stardict-3.0.3-correct-glib-include.patch deleted file mode 100644 index fd89243938e..00000000000 --- a/pkgs/applications/misc/stardict/stardict-3.0.3-correct-glib-include.patch +++ /dev/null @@ -1,13 +0,0 @@ -http://bugs.gentoo.org/396219 - ---- dict/src/tomboykeybinder.h -+++ dict/src/tomboykeybinder.h -@@ -21,7 +21,7 @@ - #ifndef __TOMBOY_KEY_BINDER_H__ - #define __TOMBOY_KEY_BINDER_H__ - --#include -+#include - - G_BEGIN_DECLS - diff --git a/pkgs/applications/misc/stardict/stardict-3.0.3-entry.patch b/pkgs/applications/misc/stardict/stardict-3.0.3-entry.patch deleted file mode 100644 index 38182b0c8e0..00000000000 --- a/pkgs/applications/misc/stardict/stardict-3.0.3-entry.patch +++ /dev/null @@ -1,20 +0,0 @@ -warning: key "Encoding" in group "Desktop Entry" is deprecated -error: value "stardict.png" for key "Icon" in group "Desktop Entry" is an icon name with an extension, but there should be no extension -error: value "Dictionary" in key "Categories" in group "Desktop Entry" requires another category to be present among the following categories: Office;TextTools - ---- dict/data/stardict.desktop.in -+++ dict/data/stardict.desktop.in -@@ -1,11 +1,10 @@ - [Desktop Entry] --Encoding=UTF-8 - _Name=StarDict - _Comment=Lookup words - Exec=stardict - Terminal=false - Type=Application --Icon=stardict.png -+Icon=stardict - StartupNotify=true --Categories=Utility;Dictionary; -+Categories=Utility;Office;TextTools;Dictionary; - X-GNOME-DocPath=stardict/stardict.xml diff --git a/pkgs/applications/misc/stardict/stardict-3.0.3-gcc46.patch b/pkgs/applications/misc/stardict/stardict-3.0.3-gcc46.patch deleted file mode 100644 index d85bc0de5ce..00000000000 --- a/pkgs/applications/misc/stardict/stardict-3.0.3-gcc46.patch +++ /dev/null @@ -1,13 +0,0 @@ -http://bugs.gentoo.org/362299 - ---- dict/stardict-plugins/stardict-wordnet-plugin/scene.h -+++ dict/stardict-plugins/stardict-wordnet-plugin/scene.h -@@ -25,6 +25,8 @@ - #ifndef __PHYSICS_H__ - #define __PHYSICS_H__ - -+#include -+ - #include "partic.h" - #include "spring.h" - diff --git a/pkgs/applications/misc/stardict/stardict-3.0.3-overflow.patch b/pkgs/applications/misc/stardict/stardict-3.0.3-overflow.patch deleted file mode 100644 index 48249010570..00000000000 --- a/pkgs/applications/misc/stardict/stardict-3.0.3-overflow.patch +++ /dev/null @@ -1,26 +0,0 @@ -This patch is stardict-tools-3.0.3-destbufferoverflow.patch from OpenSUSE .src.rpm for: - -warning: call to ‘__fgets_chk_warn’ declared with attribute warning: fgets called with bigger size than length of destination buffer [enabled by default] - ---- tools/src/myspell2dic.c -+++ tools/src/myspell2dic.c -@@ -132,7 +132,7 @@ if (argc<3) - - fprintf(stderr, "Enter grammar language [Spanish]: "); - fflush(stderr); --fgets(lang, 100, stdin); -+fgets(lang, 50, stdin); - if ((p=strchr(lang, '\n'))!=NULL) *p=0; - if (*lang==0) strcpy(lang, "Spanish"); - ---- tools/src/ooo2dict.c -+++ tools/src/ooo2dict.c -@@ -71,7 +71,7 @@ current2=malloc(10000); - - fprintf(stderr, "Enter thesaurus language [WordNet_English]: "); - fflush(stderr); --fgets(lang, 100, stdin); -+fgets(lang, 50, stdin); - if ((p=strchr(lang, '\n'))!=NULL) *p=0; - if (*lang==0) strcpy(lang, "WordNet_English"); - F=fopen((argc>1)? argv[1]: "/usr/share/myspell/dicts/th_en_US_v2.dat", "rt"); diff --git a/pkgs/applications/misc/stardict/stardict-3.0.3-zlib-1.2.5.2.patch b/pkgs/applications/misc/stardict/stardict-3.0.3-zlib-1.2.5.2.patch deleted file mode 100644 index 6a320bd4a9f..00000000000 --- a/pkgs/applications/misc/stardict/stardict-3.0.3-zlib-1.2.5.2.patch +++ /dev/null @@ -1,39 +0,0 @@ -http://bugs.gentoo.org/401887 - -diff --git a/lib/src/libcommon.cpp b/lib/src/libcommon.cpp -index 16770a3..a4299e7 100644 ---- a/lib/src/libcommon.cpp -+++ b/lib/src/libcommon.cpp -@@ -614,7 +614,7 @@ int unpack_zlib(const char* arch_file_name, const char* out_file_name) - return EXIT_FAILURE; - } - while(true) { -- len = gzread(get_impl(in), buf, buffer_size); -+ len = gzread((gzFile)get_impl(in), buf, buffer_size); - if(len < 0) { - g_critical(read_file_err, arch_file_name, ""); - return EXIT_FAILURE; -@@ -871,3 +871,8 @@ int remove_recursive(const std::string& path) - return res; - } - } -+ -+int gzclose_compat(void * file) -+{ -+ return gzclose ((gzFile)file); -+} -diff --git a/lib/src/libcommon.h b/lib/src/libcommon.h -index 10f13b4..bdcbf2f 100644 ---- a/lib/src/libcommon.h -+++ b/lib/src/libcommon.h -@@ -187,8 +187,9 @@ namespace clib { - typedef ResourceWrapper File; - } - -+extern int gzclose_compat(void * file); - namespace zip { --typedef ResourceWrapper gzFile; -+typedef ResourceWrapper gzFile; - } - - /* Create a new temporary file. Return file name in file name encoding. diff --git a/pkgs/applications/misc/stardict/stardict.nix b/pkgs/applications/misc/stardict/stardict.nix deleted file mode 100644 index 600642f488a..00000000000 --- a/pkgs/applications/misc/stardict/stardict.nix +++ /dev/null @@ -1,44 +0,0 @@ -{stdenv, fetchurl, pkgconfig, gtk, glib, zlib, libxml2, intltool, gnome_doc_utils, libgnomeui, scrollkeeper, mysql, pcre, which, libxslt}: -stdenv.mkDerivation rec { - name= "stardict-3.0.3"; - - src = fetchurl { - url = "http://stardict-3.googlecode.com/files/${name}.tar.bz2"; - sha256 = "0wrb8xqy6x9piwrn0vw5alivr9h3b70xlf51qy0jpl6d7mdhm8cv"; - }; - - buildInputs = [ pkgconfig gtk glib zlib libxml2 intltool gnome_doc_utils libgnomeui scrollkeeper mysql.lib pcre which libxslt]; - - postPatch = '' - # mysql hacks: we need dynamic linking as there is no libmysqlclient.a - substituteInPlace tools/configure --replace '/usr/local/include/mysql' '${mysql.lib}/include/mysql/' - substituteInPlace tools/configure --replace 'AC_FIND_FILE([libmysqlclient.a]' 'AC_FIND_FILE([libmysqlclient.so]' - substituteInPlace tools/configure --replace '/usr/local/lib/mysql' '${mysql.lib}/lib/mysql/' - substituteInPlace tools/configure --replace 'for y in libmysqlclient.a' 'for y in libmysqlclient.so' - substituteInPlace tools/configure --replace 'libmysqlclient.a' 'libmysqlclient.so' - - # a list of p0 patches from gentoo devs - patch -p0 < ${./stardict-3.0.3-overflow.patch} - patch -p0 < ${./stardict-3.0.3-gcc46.patch} - patch -p0 < ${./stardict-3.0.3-compositelookup_cpp.patch} - patch -p0 < ${./stardict-3.0.3-correct-glib-include.patch} - patch -p0 < ${./stardict-3.0.3-entry.patch} - - # disable the xsltproc internet query - substituteInPlace dict/help/Makefile.am --replace 'xsltproc -o' 'xsltproc --nonet -o' - substituteInPlace dict/help/Makefile.in --replace 'xsltproc -o' 'xsltproc --nonet -o' - ''; - - # another gentoo patch: a p1 patch - patches = [ ./stardict-3.0.3-zlib-1.2.5.2.patch ]; - - configurePhase = '' - ./configure --disable-spell --disable-gucharmap --disable-festival --disable-espeak --disable-scrollkeeper --prefix=$out - ''; - - meta = { - description = "An international dictionary supporting fuzzy and glob style matching"; - license = stdenv.lib.licenses.lgpl3; - maintainers = with stdenv.lib.maintainers; [qknight]; - }; -} diff --git a/pkgs/applications/misc/xautoclick/default.nix b/pkgs/applications/misc/xautoclick/default.nix new file mode 100644 index 00000000000..49a94ac3979 --- /dev/null +++ b/pkgs/applications/misc/xautoclick/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl, xorg, pkgconfig +, gtkSupport ? true, gtk +, qtSupport ? true, qt4 +}: + +stdenv.mkDerivation rec { + version = "0.31"; + name = "xautoclick-${version}"; + src = fetchurl { + url = "http://downloads.sourceforge.net/project/xautoclick/xautoclick/xautoclick-0.31/xautoclick-0.31.tar.gz"; + sha256 = "0h522f12a7v2b89411xm51iwixmjp2mp90rnizjgiakx9ajnmqnm"; + }; + buildInputs = [ xorg.libX11 xorg.libXtst xorg.xinput xorg.libXi xorg.libXext pkgconfig ] + ++ stdenv.lib.optionals gtkSupport [ gtk ] + ++ stdenv.lib.optionals qtSupport [ qt4 ]; + patchPhase = '' + substituteInPlace configure --replace /usr/X11R6 ${xorg.libX11} + ''; + preConfigure = stdenv.lib.optional qtSupport '' + mkdir .bin + ln -s ${qt4}/bin/moc .bin/moc-qt4 + addToSearchPath PATH .bin + ''; +} diff --git a/pkgs/applications/networking/browsers/chromium/browser.nix b/pkgs/applications/networking/browsers/chromium/browser.nix index 2fb33fda610..982c6d659ee 100644 --- a/pkgs/applications/networking/browsers/chromium/browser.nix +++ b/pkgs/applications/networking/browsers/chromium/browser.nix @@ -29,8 +29,6 @@ mkChromiumDerivation (base: rec { done ''; - preHook = "unset NIX_ENFORCE_PURITY"; - meta = { description = "An open source web browser from Google"; homepage = http://www.chromium.org/; diff --git a/pkgs/applications/networking/browsers/chromium/common.nix b/pkgs/applications/networking/browsers/chromium/common.nix index 237dfd17ac7..5494b77b807 100644 --- a/pkgs/applications/networking/browsers/chromium/common.nix +++ b/pkgs/applications/networking/browsers/chromium/common.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, ninja, which +{ stdenv, ninja, which # default dependencies , bzip2, flac, speex, libopus @@ -29,8 +29,7 @@ , pulseSupport ? false, libpulseaudio ? null , hiDPISupport ? false -, source -, plugins +, upstream-info }: buildFun: @@ -98,9 +97,17 @@ let base = rec { name = "${packageName}-${version}"; - inherit (source) version; + inherit (upstream-info) version; inherit packageName buildType buildPath; - src = source; + + src = upstream-info.main; + + unpackCmd = '' + tar xf "$src" \ + --anchored \ + --no-wildcards-match-slash \ + --exclude='*/tools/gyp' + ''; buildInputs = defaultDependencies ++ [ which @@ -118,16 +125,21 @@ let ++ optionals cupsSupport [ libgcrypt cups ] ++ optional pulseSupport libpulseaudio; - # XXX: Wait for https://crbug.com/239107 and https://crbug.com/239181 to - # be fixed, then try again to unbundle everything into separate - # derivations. - prePatch = '' - cp -dr --no-preserve=mode "${source.main}"/* . - cp -dr "${source.bundled}" third_party - chmod -R u+w third_party - ''; + patches = [ + ./patches/build_fixes_46.patch + ./patches/widevine.patch + (if versionOlder version "50.0.0.0" + then ./patches/nix_plugin_paths_46.patch + else ./patches/nix_plugin_paths_50.patch) + ]; postPatch = '' + sed -i -r \ + -e 's/-f(stack-protector)(-all)?/-fno-\1/' \ + -e 's|/bin/echo|echo|' \ + -e "/python_arch/s/: *'[^']*'/: '""'/" \ + build/common.gypi chrome/chrome_tests.gypi + sed -i -e '/module_path *=.*libexif.so/ { s|= [^;]*|= base::FilePath().AppendASCII("${libexif}/lib/libexif.so")| }' chrome/utility/media_galleries/image_metadata_extractor.cc @@ -142,8 +154,8 @@ let gypFlags = mkGypFlags (gypFlagsUseSystemLibs // { linux_use_bundled_binutils = false; linux_use_bundled_gold = false; - linux_use_gold_binary = false; - linux_use_gold_flags = false; + linux_use_gold_flags = true; + proprietary_codecs = false; use_sysroot = false; use_gnome_keyring = gnomeKeyringSupport; @@ -182,8 +194,8 @@ let } // (extraAttrs.gypFlags or {})); configurePhase = '' - # Precompile .pyc files to prevent race conditions during build - python -m compileall -q -f . || : # ignore errors + echo "Precompiling .py files to prevent race conditions..." >&2 + python -m compileall -q -f . > /dev/null 2>&1 || : # ignore errors # This is to ensure expansion of $out. libExecPath="${libExecPath}" diff --git a/pkgs/applications/networking/browsers/chromium/default.nix b/pkgs/applications/networking/browsers/chromium/default.nix index f9ed1f31e54..79e5e2dfec3 100644 --- a/pkgs/applications/networking/browsers/chromium/default.nix +++ b/pkgs/applications/networking/browsers/chromium/default.nix @@ -19,10 +19,9 @@ let callPackage = newScope chromium; chromium = { - source = callPackage ./source { - inherit channel; - # XXX: common config - }; + upstream-info = (import ./update.nix { + inherit (stdenv) system; + }).getChannel channel; mkChromiumDerivation = callPackage ./common.nix { inherit enableSELinux enableNaCl enableHotwording gnomeSupport diff --git a/pkgs/applications/networking/browsers/chromium/source/build_fixes_46.patch b/pkgs/applications/networking/browsers/chromium/patches/build_fixes_46.patch similarity index 100% rename from pkgs/applications/networking/browsers/chromium/source/build_fixes_46.patch rename to pkgs/applications/networking/browsers/chromium/patches/build_fixes_46.patch diff --git a/pkgs/applications/networking/browsers/chromium/source/nix_plugin_paths_46.patch b/pkgs/applications/networking/browsers/chromium/patches/nix_plugin_paths_46.patch similarity index 100% rename from pkgs/applications/networking/browsers/chromium/source/nix_plugin_paths_46.patch rename to pkgs/applications/networking/browsers/chromium/patches/nix_plugin_paths_46.patch diff --git a/pkgs/applications/networking/browsers/chromium/source/nix_plugin_paths_50.patch b/pkgs/applications/networking/browsers/chromium/patches/nix_plugin_paths_50.patch similarity index 100% rename from pkgs/applications/networking/browsers/chromium/source/nix_plugin_paths_50.patch rename to pkgs/applications/networking/browsers/chromium/patches/nix_plugin_paths_50.patch diff --git a/pkgs/applications/networking/browsers/chromium/source/widevine.patch b/pkgs/applications/networking/browsers/chromium/patches/widevine.patch similarity index 100% rename from pkgs/applications/networking/browsers/chromium/source/widevine.patch rename to pkgs/applications/networking/browsers/chromium/patches/widevine.patch diff --git a/pkgs/applications/networking/browsers/chromium/plugins.nix b/pkgs/applications/networking/browsers/chromium/plugins.nix index c3b294876c8..a0b354f0327 100644 --- a/pkgs/applications/networking/browsers/chromium/plugins.nix +++ b/pkgs/applications/networking/browsers/chromium/plugins.nix @@ -3,7 +3,7 @@ , enablePepperFlash ? false , enableWideVine ? false -, source +, upstream-info }: with stdenv.lib; @@ -40,16 +40,15 @@ let plugins = stdenv.mkDerivation { name = "chromium-binary-plugins"; - # XXX: Only temporary and has to be version-specific - src = source.plugins; + src = upstream-info.binary; phases = [ "unpackPhase" "patchPhase" "installPhase" "checkPhase" ]; outputs = [ "flash" "widevine" ]; unpackCmd = let - chan = if source.channel == "dev" then "chrome-unstable" - else if source.channel == "stable" then "chrome" - else "chrome-${source.channel}"; + chan = if upstream-info.channel == "dev" then "chrome-unstable" + else if upstream-info.channel == "stable" then "chrome" + else "chrome-${upstream-info.channel}"; in '' mkdir -p plugins ar p "$src" data.tar.xz | tar xJ -C plugins --strip-components=4 \ @@ -84,7 +83,9 @@ let wvModule = "@widevine@/lib/libwidevinecdmadapter.so"; wvInfo = "#${wvName}#${wvDescription};${wvMimeTypes}"; in '' - flashVersion="$(${jshon}/bin/jshon -F PepperFlash/manifest.json -e version -u)" + flashVersion="$( + "${jshon}/bin/jshon" -F PepperFlash/manifest.json -e version -u + )" install -vD PepperFlash/libpepflashplayer.so \ "$flash/lib/libpepflashplayer.so" diff --git a/pkgs/applications/networking/browsers/chromium/source/default.nix b/pkgs/applications/networking/browsers/chromium/source/default.nix deleted file mode 100644 index a566c4bb1c8..00000000000 --- a/pkgs/applications/networking/browsers/chromium/source/default.nix +++ /dev/null @@ -1,78 +0,0 @@ -{ stdenv, fetchurl, fetchpatch, patchutils, python -, channel ? "stable" -}: - -with stdenv.lib; - -with (import ./update.nix { - inherit (stdenv) system; -}).getChannel channel; - -let - transform = flags: concatStringsSep ";" (map (subst: subst + flags) [ - "s,^[^/]+(.*)$,$main\\1," - "s,$main/(build|tools)(/.*)?$,$out/\\1\\2," - "s,$main/third_party(/.*)?$,$bundled\\1," - "s,^/,," - ]); - -in stdenv.mkDerivation { - name = "chromium-source-${version}"; - - src = fetchurl main; - - buildInputs = [ python ]; # cannot patch shebangs otherwise - - phases = [ "unpackPhase" "patchPhase" ]; - outputs = [ "out" "bundled" "main" ]; - - unpackPhase = '' - tar xf "$src" -C / \ - --transform="${transform "xS"}" \ - --anchored \ - --no-wildcards-match-slash \ - --exclude='*/tools/gyp' \ - --exclude='*/.*' - ''; - - prePatch = '' - for i in $outputs; do - eval patchShebangs "\$$i" - done - ''; - - patches = [ - ./build_fixes_46.patch - ./widevine.patch - (if versionOlder version "50.0.0.0" - then ./nix_plugin_paths_46.patch - else ./nix_plugin_paths_50.patch) - ]; - - patchPhase = let - diffmod = sym: "/^${sym} /{s/^${sym} //;${transform ""};s/^/${sym} /}"; - allmods = "${diffmod "---"};${diffmod "\\+\\+\\+"}"; - sedexpr = "/^(---|\\+\\+\\+) *\\/dev\\/null/b;${allmods}"; - in '' - runHook prePatch - for i in $patches; do - header "applying patch $i" 3 - sed -r -e "${sedexpr}" "$i" | patch -d / -p0 - stopNest - done - runHook postPatch - ''; - - postPatch = '' - sed -i -r \ - -e 's/-f(stack-protector)(-all)?/-fno-\1/' \ - -e 's|/bin/echo|echo|' \ - -e "/python_arch/s/: *'[^']*'/: '""'/" \ - "$out/build/common.gypi" "$main/chrome/chrome_tests.gypi" - ''; - - passthru = { - inherit version channel; - plugins = fetchurl binary; - }; -} diff --git a/pkgs/applications/networking/browsers/chromium/source/sources.nix b/pkgs/applications/networking/browsers/chromium/source/sources.nix deleted file mode 100644 index ffec5c8b807..00000000000 --- a/pkgs/applications/networking/browsers/chromium/source/sources.nix +++ /dev/null @@ -1,18 +0,0 @@ -# This file is autogenerated from update.sh in the parent directory. -{ - beta = { - sha256 = "1xc2npbc829nxria1j37kxyy95jkalkkphxgv24if0ibn62lrzd4"; - sha256bin64 = "1arm15g3vmm3zlvcql3qylw1fhrn5ddzl2v8mkpb3a251m425dsi"; - version = "49.0.2623.75"; - }; - dev = { - sha256 = "04j0nyz20gi7vf1javbw06wrqpkfw6vg024i3wkgx42hzd6hjgw4"; - sha256bin64 = "12ff4q615rwakgpr9v84p55maasqb4vg61s89vgxrlsgqrmkahg4"; - version = "50.0.2661.11"; - }; - stable = { - sha256 = "1xc2npbc829nxria1j37kxyy95jkalkkphxgv24if0ibn62lrzd4"; - sha256bin64 = "01qi5jmlmdpy6icc4y51bn5a063mxrnkncg3pbmbl4r02vqca5jh"; - version = "49.0.2623.75"; - }; -} diff --git a/pkgs/applications/networking/browsers/chromium/source/update.nix b/pkgs/applications/networking/browsers/chromium/update.nix similarity index 95% rename from pkgs/applications/networking/browsers/chromium/source/update.nix rename to pkgs/applications/networking/browsers/chromium/update.nix index d4dc3b59cbc..cff84199562 100644 --- a/pkgs/applications/networking/browsers/chromium/source/update.nix +++ b/pkgs/applications/networking/browsers/chromium/update.nix @@ -1,12 +1,12 @@ { system ? builtins.currentSystem }: let - inherit (import ../../../../../../. { + inherit (import ../../../../../. { inherit system; - }) lib runCommand writeText stdenv curl cacert nix; + }) lib runCommand fetchurl writeText stdenv curl cacert nix; - sources = if builtins.pathExists ./sources.nix - then import ./sources.nix + sources = if builtins.pathExists ./upstream-info.nix + then import ./upstream-info.nix else {}; bucketURL = "https://commondatastorage.googleapis.com/" @@ -32,14 +32,15 @@ in rec { getChannel = channel: let chanAttrs = builtins.getAttr channel sources; in { + inherit channel; inherit (chanAttrs) version; - main = { + main = fetchurl { url = mkVerURL chanAttrs.version; inherit (chanAttrs) sha256; }; - binary = let + binary = fetchurl (let mkUrls = arch: let mkURLForMirror = getDebURL channel chanAttrs.version arch; in map mkURLForMirror ([ debURL ] ++ debMirrors); @@ -49,7 +50,7 @@ in rec { } else if !stdenv.is64bit && chanAttrs ? sha256bin32 then { urls = mkUrls "i386"; sha256 = chanAttrs.sha256bin32; - } else throw "No Chrome plugins are available for your architecture."; + } else throw "No Chrome plugins are available for your architecture."); }; update = let @@ -224,8 +225,8 @@ in rec { mkAttr = key: val: "${mkIndent (indent + 1)}${key} = ${mkVal val};\n"; attrLines = lib.mapAttrsToList mkAttr attrs; in "{\n" + (lib.concatStrings attrLines) + (mkIndent indent) + "}"; - in writeText "chromium-new-sources.nix" '' - # This file is autogenerated from update.sh in the parent directory. + in writeText "chromium-new-upstream-info.nix" '' + # This file is autogenerated from update.sh in the same directory. ${dumpAttrs 0 newChannels} ''; } diff --git a/pkgs/applications/networking/browsers/chromium/update.sh b/pkgs/applications/networking/browsers/chromium/update.sh index 05cc671d31c..df53068713d 100755 --- a/pkgs/applications/networking/browsers/chromium/update.sh +++ b/pkgs/applications/networking/browsers/chromium/update.sh @@ -1,3 +1,4 @@ #!/bin/sh -e -sp="$(nix-build -Q --no-out-link source/update.nix -A update)" -cat "$sp" > source/sources.nix +cd "$(dirname "$0")" +sp="$(nix-build -Q --no-out-link update.nix -A update)" +cat "$sp" > upstream-info.nix diff --git a/pkgs/applications/networking/browsers/chromium/upstream-info.nix b/pkgs/applications/networking/browsers/chromium/upstream-info.nix new file mode 100644 index 00000000000..bcb5c3f2311 --- /dev/null +++ b/pkgs/applications/networking/browsers/chromium/upstream-info.nix @@ -0,0 +1,18 @@ +# This file is autogenerated from update.sh in the same directory. +{ + beta = { + sha256 = "1lgpjnjhy3idha5b6wp31kdk6knic96dmajyrgn1701q3mq81g1i"; + sha256bin64 = "1yb3rk38zfgjzka0aim1xc4r0qaz2qkwaq06mjifpkszmfffhyd0"; + version = "50.0.2661.26"; + }; + dev = { + sha256 = "0z9m1mv6pv43y3ccd0nzqg5f9q8qxc8mlmy9y3dc9kqpvmqggnvp"; + sha256bin64 = "0khsxci970vclfg24b7m8w1jqfkv5rzswgwa62b4r7jzrglx1azj"; + version = "50.0.2661.18"; + }; + stable = { + sha256 = "0kbph3l964bh7cb9yf8nydjaxa20yf8ls5a2vzsj8phz7n20z3f9"; + sha256bin64 = "1k6nhccdqzzzicwi07nldqfsdlic65i2xfyb7dbasbbg9zl3s9yw"; + version = "49.0.2623.87"; + }; +} diff --git a/pkgs/applications/networking/browsers/firefox-bin/sources.nix b/pkgs/applications/networking/browsers/firefox-bin/sources.nix index 31ec6f313a8..1ff70cb8ccf 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/sources.nix @@ -4,185 +4,187 @@ # ruby generate_sources.rb > sources.nix { - version = "44.0.2"; + version = "45.0.1"; sources = [ - { locale = "ach"; arch = "linux-i686"; sha256 = "2d0ab9fba584576d67ccb600339efeb5ad7aac1629b2d7865e121825b1a5a6d5"; } - { locale = "ach"; arch = "linux-x86_64"; sha256 = "188b9aab64ab1beda84dbe7b36d899210472a3e445dd827b64ca7083ae3c0b32"; } - { locale = "af"; arch = "linux-i686"; sha256 = "e6b5fb28e5ad03240f0e156c81db1df16bfaf99a946ffab9672c06d8561de9c3"; } - { locale = "af"; arch = "linux-x86_64"; sha256 = "c2856308c9e87bf82f621c5d4c96e9c5a70e5ebb86a8e4ba8ecb4d08c1ae98ec"; } - { locale = "an"; arch = "linux-i686"; sha256 = "f138b17a230e9b42b334d3900bebf23156fe1dec1f4ec75f9a3b94348523e241"; } - { locale = "an"; arch = "linux-x86_64"; sha256 = "82d24b07dc8d887837e8fbd610c2feb1ff4975917d8a19836ec0d0db56522de8"; } - { locale = "ar"; arch = "linux-i686"; sha256 = "b530e58161331bff3222083298ddc5af0055c6b3337b58b1a4eb1d5d4e348d62"; } - { locale = "ar"; arch = "linux-x86_64"; sha256 = "67c0e4ce7dfe54d0e4fedb168342ea86a82458e2d3ce6aca78b4497f4e813bfd"; } - { locale = "as"; arch = "linux-i686"; sha256 = "f17e991e97e85b981c3191a0becad6df457a29b7042d31a667fd227dadc24e80"; } - { locale = "as"; arch = "linux-x86_64"; sha256 = "2d955443b785a65d2f9f914232d521aeb9082b4dead8fedc89cfa29329ab8e2a"; } - { locale = "ast"; arch = "linux-i686"; sha256 = "c9e2784047b58eddfd72c1e56964eea8ac098240436d029665bc940c7b8d8f8d"; } - { locale = "ast"; arch = "linux-x86_64"; sha256 = "4bd5cc7c34f0a1fc1e2e899942c4ebec6bdab2fbd9e3d331ecc0c67a6f8c16e4"; } - { locale = "az"; arch = "linux-i686"; sha256 = "1789f6c5524314df239e4b4beb677adf48ce926a097128e053b352067d13016f"; } - { locale = "az"; arch = "linux-x86_64"; sha256 = "4881ccb7521512b4275faa2598efda6bbcc3d7838b6200e79c8fcae358d32c23"; } - { locale = "be"; arch = "linux-i686"; sha256 = "e9e31e92e0732188f6c4494023de260e5b64e97c56ff07857b290355c50e25f4"; } - { locale = "be"; arch = "linux-x86_64"; sha256 = "00ef0cea013cdb8606d8786bb5a21e502a6054ab57b2fad4d24161c47768f418"; } - { locale = "bg"; arch = "linux-i686"; sha256 = "6428fa1d4f2bd0b703f207a1571e425f8076438954f955f60c0e8c1525743823"; } - { locale = "bg"; arch = "linux-x86_64"; sha256 = "fc156d3d76582c95eb6a0a7ee88dbdbd6c99d46ca42b011e1d789b0552bb5885"; } - { locale = "bn-BD"; arch = "linux-i686"; sha256 = "d0b69158e5ce85eec29dc70c4942bfc76eaf2d8e3359c45de5783d39fe1ccaf0"; } - { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "928575b759e4ae89d3e5ee475ffa18c69e945846981102d540de01c9bd87582e"; } - { locale = "bn-IN"; arch = "linux-i686"; sha256 = "a92a902e4380ddda37b8e70922e91ee029d47f866adea53220dd76182c52b596"; } - { locale = "bn-IN"; arch = "linux-x86_64"; sha256 = "022b9ff7141cd89df35477d357df74556bc4a24639141d21111eccfbf8e2f98c"; } - { locale = "br"; arch = "linux-i686"; sha256 = "c398c00b98edcaa2618363637075ccf749a4d3567dfdae070b4b0cbe23832f56"; } - { locale = "br"; arch = "linux-x86_64"; sha256 = "60f471fdf1b71072751396049f12a198c73d11892ec69fc142f925a12c6515f4"; } - { locale = "bs"; arch = "linux-i686"; sha256 = "d9e3c1b5c94ad207071cea86295ef3f98d4bd9201e896f6b9d67a2e475ea2898"; } - { locale = "bs"; arch = "linux-x86_64"; sha256 = "2ea3bb1c14a849b5039b633963687629839174ea886d3f8314f67eddafa2b16b"; } - { locale = "ca"; arch = "linux-i686"; sha256 = "bf1c1c3aaa900d66c4684cf48623bb0c9e0313cd919ad0e67e8a2e3ca5987aa6"; } - { locale = "ca"; arch = "linux-x86_64"; sha256 = "30c0217722c599ed8fc0e713e0b763a01dc0da37dc2f290a2a4d02cb2a86b6a3"; } - { locale = "cs"; arch = "linux-i686"; sha256 = "5ebd809827cdc85da0e6c973855c60426ab98e2cb898c030acd403577d3bb78a"; } - { locale = "cs"; arch = "linux-x86_64"; sha256 = "a1d55b7c54fd7eb89bcf5dbdadcaea0f5d2da7110a090c424c52a55ae23150f2"; } - { locale = "cy"; arch = "linux-i686"; sha256 = "55df045619bbe01af6f33c6cd563d6097b9c9023ab9133fa7def0800cc9aec83"; } - { locale = "cy"; arch = "linux-x86_64"; sha256 = "2ddb8bcd515aad4ddb029cf4e5c49e771aa1da14394924c4ec532c5125b7ca7b"; } - { locale = "da"; arch = "linux-i686"; sha256 = "b322bef3e95b24337f294b2786fc5a819d954adb43f98dee69674d41fd234b5c"; } - { locale = "da"; arch = "linux-x86_64"; sha256 = "3e5164351808ef2f8f4e9cea6bb1121c4d3394de56536d17869a56df3b783d3b"; } - { locale = "de"; arch = "linux-i686"; sha256 = "a404bf7c19dbc65adea8872b8bd080a17417bc0f1ffa3015513d86750b2903a9"; } - { locale = "de"; arch = "linux-x86_64"; sha256 = "3590e100bf84f2734d1b3c81508d8fa137fd100bdd1e764ae5da1f88602d5b9d"; } - { locale = "dsb"; arch = "linux-i686"; sha256 = "c4be1a5cc431f3aeb26694bfd0749da0dfc85c119f75b551e69083a384042833"; } - { locale = "dsb"; arch = "linux-x86_64"; sha256 = "36f451bb07af47aff7c930a2810ef628e3382f92560efbe396133735275f7075"; } - { locale = "el"; arch = "linux-i686"; sha256 = "736ee0dffe7c5dc0d5abc7755a83e29da718901252034ee503775fc3f11e31c1"; } - { locale = "el"; arch = "linux-x86_64"; sha256 = "1638e1fd69d1887bbfd2de95ffe7945f52934055f8e15eb919d9ccac930959e0"; } - { locale = "en-GB"; arch = "linux-i686"; sha256 = "1f9c8404fd01c1cac530c0e2b1fb488a2b4f7a02d8c2f0e568e0db050dc66f18"; } - { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "4f7491b919ca7a0563cd3444bd4a1abf48a4448ccdd743c5b5eb58584e5b1e94"; } - { locale = "en-US"; arch = "linux-i686"; sha256 = "abe3e5d23cf557ee81e7064d6d1b2d3a8f6b6e1a5f80947fc7229f0b2b631380"; } - { locale = "en-US"; arch = "linux-x86_64"; sha256 = "a4b439e28274feb4bf5494ba180143e6b8617428a63d11fa2fd0e650dda41908"; } - { locale = "en-ZA"; arch = "linux-i686"; sha256 = "9de2931e926e0b0667f6916283a7ef019d1c067b29d6bd5b4b903fdf87ad9c17"; } - { locale = "en-ZA"; arch = "linux-x86_64"; sha256 = "6ada8b6a9a2b19f9515a1aaf63ad66cf35a1ab5491fc8ffc86a17fe1378ab553"; } - { locale = "eo"; arch = "linux-i686"; sha256 = "92db868c78ae49a8275d217327ca442ef6733b955ddc5b4940183c9a596da3de"; } - { locale = "eo"; arch = "linux-x86_64"; sha256 = "2e8267fb43ba6b7636c98fe386c35ddb9032265565844dcbc90f3dba18a2bc05"; } - { locale = "es-AR"; arch = "linux-i686"; sha256 = "6343bacb35c929c8f7c5cb554aa0e5f67100032c71bc24203b663409e45cbf40"; } - { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "0b5a07e745aab7d1e0bb8bcf0afe12ab71a88679024ef6e9edd53bab7518df7f"; } - { locale = "es-CL"; arch = "linux-i686"; sha256 = "7288765c2222624e69b367ab83686c21a348330a8f26eff7c6ea8dca03a3aabf"; } - { locale = "es-CL"; arch = "linux-x86_64"; sha256 = "543778259a5d7c4198c8125b72f9e66e9ae98b398bc3b07ac0e103f07ab7ef2c"; } - { locale = "es-ES"; arch = "linux-i686"; sha256 = "c1aec91c45591eaa6df8b15ba13ea58d15ab2cce20361719ea2549896d26ea1f"; } - { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "ee3b11c04ca280ff77e3cedd3dc2040b7b1722384639c02507bedc927c7b558b"; } - { locale = "es-MX"; arch = "linux-i686"; sha256 = "8adb9435f57da461150d8b283161760683e46b068eaade916119c2240f0a9c66"; } - { locale = "es-MX"; arch = "linux-x86_64"; sha256 = "b624c4345794a22a7c63b4f6b7a1ed6f52472fa5cba4173f69f3c12ee3b4cbe1"; } - { locale = "et"; arch = "linux-i686"; sha256 = "efb6c6753e8a9d8174e8bd1ae7cbf3f75b479e5da3ebe07dbbbb4ac140e60eb9"; } - { locale = "et"; arch = "linux-x86_64"; sha256 = "c84bb0597fa14e8a7a2d086f24d71ad2f3c04b3fca794b76977d1a4cb1aea479"; } - { locale = "eu"; arch = "linux-i686"; sha256 = "d116553c492ec41b811befb35393553b9174da3960034ce5106558befbf9728a"; } - { locale = "eu"; arch = "linux-x86_64"; sha256 = "16c922f152d5e14c46277e23d30cfe0792c8e9828b8862df603aeff242c7ec96"; } - { locale = "fa"; arch = "linux-i686"; sha256 = "744ad5a8cb4473d502d1db50b6bf343e23525927b3a982677dd8a68aea111b3f"; } - { locale = "fa"; arch = "linux-x86_64"; sha256 = "968fea07386b96215af400524062447245fa038766caf0b133c932db6f105077"; } - { locale = "ff"; arch = "linux-i686"; sha256 = "0fdf06aa42cbd4d031fdad74d8ac9d6056708fc783180d72c5806cc45c5b8eec"; } - { locale = "ff"; arch = "linux-x86_64"; sha256 = "bfb65ec25192288b2f04f94bdcc9ce36a40a27c8a1f35f728f932c071b6756ce"; } - { locale = "fi"; arch = "linux-i686"; sha256 = "334c121cbd9a1469996ebc5535d838e3fecfcc419861cc70d5cdeb0cd584d5f5"; } - { locale = "fi"; arch = "linux-x86_64"; sha256 = "44883a9b819a24bef03c3322681e1b9f3fe61779e382a740900dfc16a5f7db06"; } - { locale = "fr"; arch = "linux-i686"; sha256 = "cd196dff293aabc39156e82deb5163e139a4b0173de92a2ba72df49bb4b0afe5"; } - { locale = "fr"; arch = "linux-x86_64"; sha256 = "77da207f48d7af908cb5e95767e61a2e6c04f1851e55430820ff8207da172361"; } - { locale = "fy-NL"; arch = "linux-i686"; sha256 = "39e8da569f2a6f67abac7782a938a906c810f8474fbb2c799dd26fb846c82707"; } - { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "44dbf644b3f96dd607e5c88eece8aaafd61ec42af9f7ba4c6ed06a272a45fa4a"; } - { locale = "ga-IE"; arch = "linux-i686"; sha256 = "783532acf3967f94232f42c9cd559e288db499c0ff74776543b59d71d281a74c"; } - { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "39509082dbeb935f481e95d6038943a17c5053f7001fbf71bdb0edea536adb9d"; } - { locale = "gd"; arch = "linux-i686"; sha256 = "dd73e1bf159f3d437d69306c5daeb7a06c951d6c5841315363c354f9aa1570c5"; } - { locale = "gd"; arch = "linux-x86_64"; sha256 = "a2fb4aa1ba4a50bdb308e8c12090158c5e040ae85617171786e93852d4f48de5"; } - { locale = "gl"; arch = "linux-i686"; sha256 = "8ac3fd13e0f173aa1dfffd44c91511bd457c6a751daa978fbaae3f9901427cae"; } - { locale = "gl"; arch = "linux-x86_64"; sha256 = "cf52827a18b400f8c3e426b00e2984bd5835014f3e97e9c1279f0b285ca5a5dc"; } - { locale = "gu-IN"; arch = "linux-i686"; sha256 = "1ef44836085733b52c338fdcaea78e7df5f78a0f0f470b9de3ac7b13e3ec4844"; } - { locale = "gu-IN"; arch = "linux-x86_64"; sha256 = "374280216142897536979fff6f876253caaf0eeb12a3d12d17b013e7ab3ba722"; } - { locale = "he"; arch = "linux-i686"; sha256 = "1dcca6ae796da1a1317a4f094f06369242cdf7c0f8ce3df7c9fabd22910996ab"; } - { locale = "he"; arch = "linux-x86_64"; sha256 = "e032513a673ba091207996b8a6a6b9da6ef05d5c080a93ed326fc4ac4ca6976a"; } - { locale = "hi-IN"; arch = "linux-i686"; sha256 = "2057287b406513a332d162f03f75ef7ff4c83834809163c8b870d9e5ab3f8cdf"; } - { locale = "hi-IN"; arch = "linux-x86_64"; sha256 = "8d19043416484c382fc9caec5dff4914fbc28feefd41a089591ef2b21f822a43"; } - { locale = "hr"; arch = "linux-i686"; sha256 = "995a6dd027a5a6b2123c62b74f524db53940e2c8fa6c7254dc41dca236f7889b"; } - { locale = "hr"; arch = "linux-x86_64"; sha256 = "4410e7d1cbce028de083b82ee68f442d27c2219544ec1be72ef2c274cb7c445a"; } - { locale = "hsb"; arch = "linux-i686"; sha256 = "0dcb0de11e35475cab33e11b08b88ff766915d7d98ceeb466a0fee90883ebaed"; } - { locale = "hsb"; arch = "linux-x86_64"; sha256 = "1695167eea386aec4fca23bb0bf4e5b83876a22f8c584f4e81886be229e9a43b"; } - { locale = "hu"; arch = "linux-i686"; sha256 = "31026a26c9fa9b3777c2f9dd1d55da7e0204e4d98586f887b67588ccb86c3843"; } - { locale = "hu"; arch = "linux-x86_64"; sha256 = "82d8fbe932765f100a116b6d572035297be2f027b4f0e0ba84ef88cb4b651000"; } - { locale = "hy-AM"; arch = "linux-i686"; sha256 = "864c112f13628bd9bc715a6a405dc92c3f8027b0e505722d819b84775fb27066"; } - { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "dddd71e651056c373225baab9bb190810f8ed6849abfa76587fcd05cc5060d89"; } - { locale = "id"; arch = "linux-i686"; sha256 = "3425906d6513d3e06286b9b3c62c30d702a47a3d7a31638a58f926e2fa4a254f"; } - { locale = "id"; arch = "linux-x86_64"; sha256 = "095d970add8bf54fc2fb2581532013f4792f648b58fa12d49a6a859f26a0e579"; } - { locale = "is"; arch = "linux-i686"; sha256 = "f3687eb0e7ce24e14621345543abdf2b92435466ededc98a4ec4a117c4593c3c"; } - { locale = "is"; arch = "linux-x86_64"; sha256 = "dbac8774c64e6c978a3eb900cf61d85a210d0c39c28df4a21e4295ba5febd0ea"; } - { locale = "it"; arch = "linux-i686"; sha256 = "62091c6f5214f4717462d9e2f6bacd7f30417b7e714de3fdec6fc2f703970eb7"; } - { locale = "it"; arch = "linux-x86_64"; sha256 = "480b9ffd4326a9a2e2002510027a15d4fdaf8ba1ea023ee6e55b2aa78b119a6c"; } - { locale = "ja"; arch = "linux-i686"; sha256 = "ef143bf31fa67cab3ccafc0083d81ffa8997e3365312b12312623755eb24f48d"; } - { locale = "ja"; arch = "linux-x86_64"; sha256 = "f74808de8fb999dceb067b3fda64e891c37bde7190e9eff68f1693f5b5feae0d"; } - { locale = "kk"; arch = "linux-i686"; sha256 = "a532d49011b632aa83f6b881b39c74bcb66fab0237e3e4f8682445aa0a053d4c"; } - { locale = "kk"; arch = "linux-x86_64"; sha256 = "7f32ee329e8281e89472b092248a26e1d38089bdc9830d2d1d0b1af8230ca20b"; } - { locale = "km"; arch = "linux-i686"; sha256 = "34ecf596b0870aca2db30513ef5d6522d86caf70fce38b23a7bff08c55551b69"; } - { locale = "km"; arch = "linux-x86_64"; sha256 = "6e7efd621e941674038887d1e8d90c36d0ac06a095386caa01d228494228be14"; } - { locale = "kn"; arch = "linux-i686"; sha256 = "062ebd6b27ef9094e65e60ad64be30470ed58eb2d92f247a87a781b97e0654d9"; } - { locale = "kn"; arch = "linux-x86_64"; sha256 = "e88428b1cd2e1919336dda303d8795bd02e4967ba8c6d2830205f68fa4c528d0"; } - { locale = "ko"; arch = "linux-i686"; sha256 = "6c43a7f86f908cccc7ca3a7ed45f95ea84b69e4a21ff1e1d58136ea19bf7bd2c"; } - { locale = "ko"; arch = "linux-x86_64"; sha256 = "9db2bfd818d82ee0c9bc35b6fd651ad8fe80f8d73d51326fde25fc4c2aaa295c"; } - { locale = "lij"; arch = "linux-i686"; sha256 = "be87fc2a6863f33f9ff9ad2990e1e6425a65002f2ee411a254dde80cbd5a31c4"; } - { locale = "lij"; arch = "linux-x86_64"; sha256 = "9cfb239df8195cfa355bc8ddaf63accd865de21086c5bc3180b2ad9886445f3e"; } - { locale = "lt"; arch = "linux-i686"; sha256 = "11e18e6baac8f31c62a301e8ee51056c707ca47332fbeb6f3492e8eaffa25c57"; } - { locale = "lt"; arch = "linux-x86_64"; sha256 = "3bb4dca607abc4e08300dfa61667d2f2b06661f47cf0029d078e14fa4686d4b8"; } - { locale = "lv"; arch = "linux-i686"; sha256 = "bc484992f230229ab4ab6d47fab9664f43341ad1202010f5dea91d2d78200c85"; } - { locale = "lv"; arch = "linux-x86_64"; sha256 = "42bdc60ad7edf2ed3e82f765abfc3815f98095adc2988f8d809a8834eada63ef"; } - { locale = "mai"; arch = "linux-i686"; sha256 = "628f0685185f91e695af5ce9a536d9263305cfd747683ef33dccd0c90f3e1bfb"; } - { locale = "mai"; arch = "linux-x86_64"; sha256 = "688c33b159b4fcd23fb4c6d3a7f845d03929b4a8b02eaa2ebb93682b396c73a2"; } - { locale = "mk"; arch = "linux-i686"; sha256 = "a59b2a8ee82513ef78f3509afc4dba75ec3128f0f42c657bbbfbad117b981b36"; } - { locale = "mk"; arch = "linux-x86_64"; sha256 = "3058ff9ac581a65ee0713fe3707f8b98eace0f833b8e7b901fa397538e9503f0"; } - { locale = "ml"; arch = "linux-i686"; sha256 = "43c80f530ad3eaf7c138e16b23b9eb32afc1f774374fe213f580cf68e4d0e245"; } - { locale = "ml"; arch = "linux-x86_64"; sha256 = "43f061317f9eb5a174cd13539bb3972535b552113d38c05d9888e7a37346ef22"; } - { locale = "mr"; arch = "linux-i686"; sha256 = "30c0ee68eadffcc95271f1e7c1c1b0151ee21ca3744fad61a723a9a6bfb751b0"; } - { locale = "mr"; arch = "linux-x86_64"; sha256 = "d9dd27af41ca021f323499be556d208f69b706aff079c8d7392c7f19092705d8"; } - { locale = "ms"; arch = "linux-i686"; sha256 = "adb5e1968c66378ff9b59dc57c00a2c953ad1f54f67e1bc40abc499bcf79653f"; } - { locale = "ms"; arch = "linux-x86_64"; sha256 = "3e4b43a88b3aa2887673e1962fa4ccbd895640113e683c849a3c9733677e1fe1"; } - { locale = "nb-NO"; arch = "linux-i686"; sha256 = "f4be0cff21abdc80fba10db2bf781fecfb4e503c70cb95a8b083c5f7123f8dc8"; } - { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "e9b191268a6694805a5ba86559e798c9a4e29eae39a7f64dab92a925fb31611d"; } - { locale = "nl"; arch = "linux-i686"; sha256 = "581c73084993be0bf1ab23bb468674d062fb98e99573d823e977a263b4cfaa91"; } - { locale = "nl"; arch = "linux-x86_64"; sha256 = "3fd8929341ae048187379b7648ec8e008ace53e4a5f0af1421ecabcb5ad3bf61"; } - { locale = "nn-NO"; arch = "linux-i686"; sha256 = "b2104d5895a727903f6a273888989887542ad9e61c998cc651bb24d64efc6cfd"; } - { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "1bf582e66da985cbb01c22f865fc291196c55b14d2f84516f68f184ea842a664"; } - { locale = "or"; arch = "linux-i686"; sha256 = "1ffbc776fb3ae030e6dedea009b71873bff57f9294e63331404b53e1ba36499c"; } - { locale = "or"; arch = "linux-x86_64"; sha256 = "b988f433a238b2cb3766042d911a1f002a5f91a47dbed5b937f70cb59ed060d2"; } - { locale = "pa-IN"; arch = "linux-i686"; sha256 = "6ba4941b5bef7b860194114c2704662a42f9f3007a0b634662e42f38c0aa601a"; } - { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "0d9920d4b358cfdcf8cdf4b2d2e07ceb191709eee9dbae4c59f9dbfcfffbf0f5"; } - { locale = "pl"; arch = "linux-i686"; sha256 = "e080fb35bf49f9eb2fc39a435a188164eedf2ea7a24f8e950d62567620a91954"; } - { locale = "pl"; arch = "linux-x86_64"; sha256 = "cc37624f0c1e82d2de2048129f58e85fe8a518ee4b0ebdbee0a5205517602cf9"; } - { locale = "pt-BR"; arch = "linux-i686"; sha256 = "d19bf65889c686cbb284e697e8ba1315b6ec004b57096725fb576898ef105346"; } - { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "0d00d2d0bbc6045117c4df93045f70ebe0468e004504a06dfc508bfca6c6df1f"; } - { locale = "pt-PT"; arch = "linux-i686"; sha256 = "5225afadf2ea62792376dfda1d2b3533d986f1ee3a281781a5be294b8883ac8b"; } - { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "0c1d841ba80e32d51d41c99b551e68c6b591e97af4ccee4d7c7d6ef03f8707ea"; } - { locale = "rm"; arch = "linux-i686"; sha256 = "2cc9200a132c967a7158f5422dad8f4b2d90dfc7e46ada305daebabc44806de8"; } - { locale = "rm"; arch = "linux-x86_64"; sha256 = "0dff628773d4f2e24b767501b9c768586a27e82c0e8b259ef1cc676985ad0125"; } - { locale = "ro"; arch = "linux-i686"; sha256 = "500142fe612fe6144a14ebaad486da04050940a755e205297473c1be6b9dc428"; } - { locale = "ro"; arch = "linux-x86_64"; sha256 = "f3a57abec8553c8b9d8db9fb5600cd7b6e1189ebf0225df96608eaf2863e41b3"; } - { locale = "ru"; arch = "linux-i686"; sha256 = "1266ed09db881af90794bef049cdfee777d7179026de8c0de2931275f3f288e9"; } - { locale = "ru"; arch = "linux-x86_64"; sha256 = "0f1b44177633149aaa31574ba3cf343971bd4e11ac6b4bb92a5875b6a30a42af"; } - { locale = "si"; arch = "linux-i686"; sha256 = "e027afd86b00379c12e014b8d0d11a05811c598f53490edf7070e7acccbf0d79"; } - { locale = "si"; arch = "linux-x86_64"; sha256 = "518c19c5351a2c1bd05afe63e9d8c2a0be3a9cedccf7aa1d84d1af9de7ecf7fd"; } - { locale = "sk"; arch = "linux-i686"; sha256 = "e3dcda7406d00166a601b77fbdf0b84181ba5372f760eb08d5476fe9d219caef"; } - { locale = "sk"; arch = "linux-x86_64"; sha256 = "019c03ecd24f394b0ff76aff5cd9f0db017ffd3b8dd65388c4f5ee3188e77a6c"; } - { locale = "sl"; arch = "linux-i686"; sha256 = "a88391cc29643277f9d8c58a205ac959af825326b61c16361d4def6f7da31235"; } - { locale = "sl"; arch = "linux-x86_64"; sha256 = "fcf45e13a0bc543988495a83e5e96400707564d2ed4fcd0579219c999ee71e83"; } - { locale = "son"; arch = "linux-i686"; sha256 = "a75e273e01df51ffbe2c8666545f1e6f4d00af373d7aac08978947d7afc1e5f4"; } - { locale = "son"; arch = "linux-x86_64"; sha256 = "9f28df29d980e6c7467e99b2b81740cb078ce8e6896fe4e2a6b1473770e6bef5"; } - { locale = "sq"; arch = "linux-i686"; sha256 = "2243773d7d38608e17233e1d98e4fc1ca19f40f27a3e87557ad7fbd958c080ba"; } - { locale = "sq"; arch = "linux-x86_64"; sha256 = "c18faf9d8971c43db18fcc66329a85018a04e8cf4819c4843d826bc86414cadb"; } - { locale = "sr"; arch = "linux-i686"; sha256 = "0cd5e6a3910923aed9a88fafd95bc11263de7359c38685e209212339bb2f50dc"; } - { locale = "sr"; arch = "linux-x86_64"; sha256 = "1ec48c65323b15332932060ec5193908d89715736bd0abd88472dc05e639a62a"; } - { locale = "sv-SE"; arch = "linux-i686"; sha256 = "6718eb3e71a3d4f5487b80bbd784fd61422345f94d3271f6de6f6feab9e2f6da"; } - { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "5b356a6334d424b5e47ea4b1c32403a858ff5dc8727bbc0b2f72e6a29c9b625f"; } - { locale = "ta"; arch = "linux-i686"; sha256 = "fdb4e36497a61af9badb848a067eff4e4dada7dfffefbfe6bb7266ad89a8707a"; } - { locale = "ta"; arch = "linux-x86_64"; sha256 = "de5f0b871425412f9f261eff5b1abb3ddbd40f588647fd8e174e2d6c5ba17b90"; } - { locale = "te"; arch = "linux-i686"; sha256 = "0cc82774a46580c9e2f890848f705b1dc4effac197a902f9d244f0b6f6258650"; } - { locale = "te"; arch = "linux-x86_64"; sha256 = "65ceda67a572053dd4d9e15b9bd47c91364651736417414d4ca4a0a7ded9775a"; } - { locale = "th"; arch = "linux-i686"; sha256 = "1c0084ed26218713c4606ab073bf09de888051e9dcc49652a87fb58209a8c614"; } - { locale = "th"; arch = "linux-x86_64"; sha256 = "5a70e29d282961e27350d26cf164472fe51247db1d7d1228dca693423c32d0a6"; } - { locale = "tr"; arch = "linux-i686"; sha256 = "f7fa2029a36eda63544beebb6534fc2f8432c87d7a8d08d4c8927275e659b686"; } - { locale = "tr"; arch = "linux-x86_64"; sha256 = "1e3744f5908164e163818522fa902bd57edb62837b2b399983ea5a4ed487cda8"; } - { locale = "uk"; arch = "linux-i686"; sha256 = "0f465eda0f7e87eef88bc17b3e6868ad90a270e6993d327fecca532637442df4"; } - { locale = "uk"; arch = "linux-x86_64"; sha256 = "6530af36cfab509fff37519b435c7939110c000dbdd94000fe964283a14b1622"; } - { locale = "uz"; arch = "linux-i686"; sha256 = "7ee5997bcb4915c3907cee90e350e3bc2b67965975faecffa738a728cf2e12e3"; } - { locale = "uz"; arch = "linux-x86_64"; sha256 = "d7b34e36bcb423977a2a7667504c096730ca684c9f2e861b17e8f0174f5bb0d0"; } - { locale = "vi"; arch = "linux-i686"; sha256 = "e9497a8eed98ec34b31e3b1ec7086a4d219121f0edf21fd8f6a01599afa41f12"; } - { locale = "vi"; arch = "linux-x86_64"; sha256 = "b94fbaee83014b88490bf19cc37dbda87fb9260ed5879be3b688a2abbe709a87"; } - { locale = "xh"; arch = "linux-i686"; sha256 = "d5a86db6b9f3bb5162a86f976cbbc01f542a924c05729eb54a2c24dabc711065"; } - { locale = "xh"; arch = "linux-x86_64"; sha256 = "d765b2d324e89119fee522ad8972031c8727841c2fa2700d010be7d23633bbbc"; } - { locale = "zh-CN"; arch = "linux-i686"; sha256 = "fb3bbc44952207f42112c291dccb82f02fbd23bba7b54b06a1047809d2bb18d2"; } - { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "255d19959cb0e0efbcb2eeceb39b43bbb567ab2474af4da6675574a0110781e1"; } - { locale = "zh-TW"; arch = "linux-i686"; sha256 = "cfc90ac621dc57d7eb922c564aa3a7d5ad7f2aacc95196606d34cba7b7e30d1a"; } - { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "ff119be821acb8f99a485a60de506123c76a7a3a13ac678576248f97ff1ab882"; } + { locale = "ach"; arch = "linux-i686"; sha256 = "6dff17afbbbb9ba8e064b431db1f6b6a1862ec56e11dfa8cb8ef5d89dd9f7705"; } + { locale = "ach"; arch = "linux-x86_64"; sha256 = "4f806511a1e7c2100d976a9753f0e7ecee483f19ca1176e1867021a55725aabf"; } + { locale = "af"; arch = "linux-i686"; sha256 = "0a2e0b55e43b41304895f624ae95372e4ab52b06c8892e0ef02a8e41c5ff28e5"; } + { locale = "af"; arch = "linux-x86_64"; sha256 = "c865d4a431c3b92347393b62c4589fe67f4323458faf1ee07367e1f432d0e839"; } + { locale = "an"; arch = "linux-i686"; sha256 = "d58dcdb222fad88650d65623005897de7a693d16c44d86f25694a00d7fa5111d"; } + { locale = "an"; arch = "linux-x86_64"; sha256 = "b00ac5cf76fe562cac8f72327cdf0e54b2c4384586fbb064deb72d2741e05268"; } + { locale = "ar"; arch = "linux-i686"; sha256 = "42851096189bc53d18ea26d9de1d0321b033a5601594c0515530263cf3155b12"; } + { locale = "ar"; arch = "linux-x86_64"; sha256 = "4d7e8760da3dac6cffa8eafeb22c759bfad3664bba7f690c0f1d1aa5284aed3c"; } + { locale = "as"; arch = "linux-i686"; sha256 = "706d584ea78172ec88c29d124abf2bd34881c9752231fdb3f491d0bf858fc5c5"; } + { locale = "as"; arch = "linux-x86_64"; sha256 = "13ed628c2ef29b8d3188274e6fc101ba622d4e1ca20880b381e62225c5f057d5"; } + { locale = "ast"; arch = "linux-i686"; sha256 = "9f8f5870245cf0016d4a9a540d29d31249188fa8f390c47cfd330874eb20e8dd"; } + { locale = "ast"; arch = "linux-x86_64"; sha256 = "9bd85381abe1335ca9208ad764477e6f2a926288058c91aee0af3a3967aa1e57"; } + { locale = "az"; arch = "linux-i686"; sha256 = "9e117f5aabdb8f71bcaf8073c76c4b795c957e6739471fed0f484d0ed39b5a98"; } + { locale = "az"; arch = "linux-x86_64"; sha256 = "06ee5bd4f1096e6728120fbed4ed6cbc88cb1003c484a15dd624254ae93ed849"; } + { locale = "be"; arch = "linux-i686"; sha256 = "c6091272b395905e746271176d354ff59eccc9d96c5e1ecc2e8e5c3ac65ed2f0"; } + { locale = "be"; arch = "linux-x86_64"; sha256 = "090ba5d28858b2c58a6a29ce0f435797a938cd788ebd3413db4ced224329d2e4"; } + { locale = "bg"; arch = "linux-i686"; sha256 = "1b8b5bbe6473b13fb80ca31514f7386015f5920c7a3d8391aa5549eedcfd09ce"; } + { locale = "bg"; arch = "linux-x86_64"; sha256 = "b49fa01d8749c1b4d327dca2379e4940d5d85d310e998cad66efecc2f485cf9c"; } + { locale = "bn-BD"; arch = "linux-i686"; sha256 = "3372a82af514706d8eacc5e4d35584379408db964c3cfd35ea75597ddefad7e8"; } + { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "798a2a405e175f8347dfd933300eba728cde6dbe47fa831552e40b87455bd921"; } + { locale = "bn-IN"; arch = "linux-i686"; sha256 = "3895feec666feb59a554310efc70b248d63906ca6bde59c03d9a29fa2d4cd7c2"; } + { locale = "bn-IN"; arch = "linux-x86_64"; sha256 = "58725666980beeb5a651683a76be2084ba9d40530a063f1f1ebf160fb4db8e0b"; } + { locale = "br"; arch = "linux-i686"; sha256 = "21d56c17d225a6a35711bb8354724a05ad15ec565cc70ec128384f9b8762edba"; } + { locale = "br"; arch = "linux-x86_64"; sha256 = "c0cc5568b2fac5ba35ef742fd1f87fbb73e1bca47240e888848ac804f4bd7714"; } + { locale = "bs"; arch = "linux-i686"; sha256 = "4b2d818c81bc15dad48c47847c14a00cec5b93615a23cb5d2068f4a2ef98b810"; } + { locale = "bs"; arch = "linux-x86_64"; sha256 = "a35a4cd723c446ac5593989f7fc4a56aace5cbf6bce757f3a92986e795ab07ba"; } + { locale = "ca"; arch = "linux-i686"; sha256 = "66497de3bf6069c1af68f6a50988919b8ff37afb9da7ce327a5beb014b75aa0f"; } + { locale = "ca"; arch = "linux-x86_64"; sha256 = "188b43172959c2ef064ef558d0b6518409eb19bb33add98d77a8bf260def55e6"; } + { locale = "cs"; arch = "linux-i686"; sha256 = "2ccd96ef1b831580dcfe84f62501fcebae7fdf8a803786913bd24a9cc9904ff7"; } + { locale = "cs"; arch = "linux-x86_64"; sha256 = "c9e1665399f055c561ec6d8df90235c3bfb3570d7ec613b959e80c5080e7c614"; } + { locale = "cy"; arch = "linux-i686"; sha256 = "789aadc04e83af8cc08cb9dd67bc61aef337a31d2ac17239c194de2d12608b6e"; } + { locale = "cy"; arch = "linux-x86_64"; sha256 = "6d695037d9000911422a6b50d09ef250044d629368900ec569a06ac245c1eb2a"; } + { locale = "da"; arch = "linux-i686"; sha256 = "b63788d28be0cbc37499e5ad41b8a904413c537a5786b1c2934c304f2adf4ded"; } + { locale = "da"; arch = "linux-x86_64"; sha256 = "a5d4cf1dec637ce5c09ee9f8be82ad32756a56ff0e8c529c945b40adb3b928e0"; } + { locale = "de"; arch = "linux-i686"; sha256 = "ae3b299a514423faf79bd21952f90e37a4d8e7be2cadca9a1befff4160f103e7"; } + { locale = "de"; arch = "linux-x86_64"; sha256 = "971b80131db7e1facd480546d9bd780bf69d2a99338d9e50415eb6583e550cdd"; } + { locale = "dsb"; arch = "linux-i686"; sha256 = "87c439cfbd139477055e5a8bd421aa65cb75cdb93090a54899d25411ab3d5dde"; } + { locale = "dsb"; arch = "linux-x86_64"; sha256 = "2a04b723d1ed3f9bab3dc9f11fc315fbce2543bfff37532e7cd7a4b9a33d7936"; } + { locale = "el"; arch = "linux-i686"; sha256 = "37e02fb347d8cb1f3b5079c3be055c0e37cdb3a6ab97b2928237beeb446e800e"; } + { locale = "el"; arch = "linux-x86_64"; sha256 = "9a439341ff9c39cfe8dcb6681221d0d78690ad063ac99a201001f5787b5ec270"; } + { locale = "en-GB"; arch = "linux-i686"; sha256 = "a3cc4951a826e483ddb7832333e032e9197418cacdb4250e5072de1ad2fef5d2"; } + { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "433ecbabc4d1fabb2ebad958c4e7a0bb9cff9a657b1a641f820d5f0a7ba8c1f1"; } + { locale = "en-US"; arch = "linux-i686"; sha256 = "a78498b51059f46d42cf2fcb2232d57d97f2ab4e8a789151d3a26e013132dbb8"; } + { locale = "en-US"; arch = "linux-x86_64"; sha256 = "251e8d67abe989ddbf7cf9e78bba58eee43e3b1eb0c461a9c6c376bda6c71a87"; } + { locale = "en-ZA"; arch = "linux-i686"; sha256 = "d6195b72e56ca9ea366ab47885ee22b0f7bf4811b3cc937c36af53fe4e6f5d89"; } + { locale = "en-ZA"; arch = "linux-x86_64"; sha256 = "f82eba9a593fd6ad8a9b5b8b61d2ccf986080a1cff2af598afe930cd96423a5d"; } + { locale = "eo"; arch = "linux-i686"; sha256 = "b6bcfea89be5883e1e5d2899bab371b7d972d4be5717d21d522bc56679463dd9"; } + { locale = "eo"; arch = "linux-x86_64"; sha256 = "4908438cf56646665f91bf12e46c611818c5323979048d01bbdc4d5cf945832d"; } + { locale = "es-AR"; arch = "linux-i686"; sha256 = "ace48b5a36bccf1d21e17611e9ef7c21786f207da111473479473e5bc5817fe9"; } + { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "277ec48d9b45bd41dcaa141d67f5f814845d5e0faeca97c6f5d507f8c9ce5312"; } + { locale = "es-CL"; arch = "linux-i686"; sha256 = "78cb60452201df5cff7ed7da54f3f876596de0a895887f8016b3d642d727e96c"; } + { locale = "es-CL"; arch = "linux-x86_64"; sha256 = "3be79c28ea7f7ea075fc92e418ff980176dc9707329f1043c54161e703b43028"; } + { locale = "es-ES"; arch = "linux-i686"; sha256 = "4bb8d2732754c1112bc8d32a26b0cfee79449447a4cb8ca368f1d41e9ba43d37"; } + { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "f512f8f1b163c72234173944c5781550810b90c2b6a1a6f8d070b87a8f85192e"; } + { locale = "es-MX"; arch = "linux-i686"; sha256 = "01f2b5e09792714b6315933ec714c5d1baa77bbab5b4e4d06ecf670c47c75d40"; } + { locale = "es-MX"; arch = "linux-x86_64"; sha256 = "c7af08a37c116a5cb805cf0b60ef1b1a8f956fec3381ceb0288c62355b05c91b"; } + { locale = "et"; arch = "linux-i686"; sha256 = "0aac86a5cd520a806aedc2f8111798eebcb08919099973f7d7fc7addfbaa0584"; } + { locale = "et"; arch = "linux-x86_64"; sha256 = "fa0ad1bfd65d231cc58c9d79fb07cd4a98d5976e870af017642a77ebd7a4b260"; } + { locale = "eu"; arch = "linux-i686"; sha256 = "4bad5d7e4e2d917606f63efa079092516ff1435013adb8aedbe95a53aa2c594a"; } + { locale = "eu"; arch = "linux-x86_64"; sha256 = "9e390ebf06c5abc46f80ec8c77bd7572de827ee5d368de34c1252ee386687372"; } + { locale = "fa"; arch = "linux-i686"; sha256 = "9738ddfbaaf3e34c5546c584d9dbdeca68086e66f06b438760befb23e07593cd"; } + { locale = "fa"; arch = "linux-x86_64"; sha256 = "55e8f1f2547a9c7c3bb3cf7029e166ae42a3745f51b58c87d7eeaf6ecdb81952"; } + { locale = "ff"; arch = "linux-i686"; sha256 = "dfb266913e27299469de2a5ffedd5fa47f344d6d7e092ddf630cde726b94934d"; } + { locale = "ff"; arch = "linux-x86_64"; sha256 = "370e310c39f0a87cc8e3ecc5bd6c8f3bbd863b1a8d7e613a0c2fa9be7b8b988c"; } + { locale = "fi"; arch = "linux-i686"; sha256 = "2d10c5e21f414cc83a5413e8a2fc53124c2dadb718861410fa45e57c8ba4fd7c"; } + { locale = "fi"; arch = "linux-x86_64"; sha256 = "d791eda3135572d0735393ee1101383b4d20142a4279dfe615a9e20c341ea4ea"; } + { locale = "fr"; arch = "linux-i686"; sha256 = "94118a53c25a0fb243b63d51a64c077672c4c93d7ca964f6384e3bb8234891a1"; } + { locale = "fr"; arch = "linux-x86_64"; sha256 = "6ccd8216017b2593430a812ea167a97012060d41fbf610bf518b8d997ac59c53"; } + { locale = "fy-NL"; arch = "linux-i686"; sha256 = "bd5cfd3565353ae8d01d8c9089a364394aa0ebc4547a41dba11ced14a494ed9d"; } + { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "0db0aa59c0df881f901d794fdf99f5abd27db88e0c3ab2d364b22eb7326152db"; } + { locale = "ga-IE"; arch = "linux-i686"; sha256 = "59486516e8aa13ca113e1f2998b05509dba0546aa7b11d99ff6da55a6f069f64"; } + { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "1cda950ea6cc6d8957d580fd2c59784bf6cd339083f0fc3cd3a084e0326b0041"; } + { locale = "gd"; arch = "linux-i686"; sha256 = "602047e1669e9551f7a3501082e81e3e79287082b981d59f515887c5e892fb70"; } + { locale = "gd"; arch = "linux-x86_64"; sha256 = "d5b901d78e06a75d2534214bb849e31696ec44349c18b9b511e68951d29fde90"; } + { locale = "gl"; arch = "linux-i686"; sha256 = "d55a556321c600024ea2fc38d9671f34c490046da88a89e4ae46d9217bf64677"; } + { locale = "gl"; arch = "linux-x86_64"; sha256 = "3deb86b766f51a218266cf4d97e1b3332c8ca7d75cc86491d940a8b9f37c0bb5"; } + { locale = "gn"; arch = "linux-i686"; sha256 = "f38099f998e5bc396360856fe2543152feed086b64a85b7ac3bd2b9e3e0ad609"; } + { locale = "gn"; arch = "linux-x86_64"; sha256 = "af4055322dc0524a00fc3ac08a4b2eb40a305dd574b92cc591fee6a00482c4b6"; } + { locale = "gu-IN"; arch = "linux-i686"; sha256 = "3210857982a6628f8c2632995c248eed1bd1c719ddcbacb663839990e67b88c8"; } + { locale = "gu-IN"; arch = "linux-x86_64"; sha256 = "bb2154aba760896180ae747648530880127c8c46481b04a1ea0cb3b47c2a6f41"; } + { locale = "he"; arch = "linux-i686"; sha256 = "18b5217fee9e30bd4bb7f1ea27445ff4aede149a286c07b7c8e9740330b7e6eb"; } + { locale = "he"; arch = "linux-x86_64"; sha256 = "2f51ccc6e5c64976c2f81818d0a4381e508aa5f70ec2108f0e6f512a51574709"; } + { locale = "hi-IN"; arch = "linux-i686"; sha256 = "555318d41795c988f41655bcf4653aef259c2e3dc80fdcf95670c6ada7fe687c"; } + { locale = "hi-IN"; arch = "linux-x86_64"; sha256 = "683e0437ff9168e159e933bf72f6db2d95ae94bb06bc48a1d1fafd30b7028fe1"; } + { locale = "hr"; arch = "linux-i686"; sha256 = "c7a2cfb5f4594a3690797ee5559949154b3dd8c9e6a4dbd774e312f914e0b268"; } + { locale = "hr"; arch = "linux-x86_64"; sha256 = "94098ca5f069445a6514d4b7500ae10b018b4e1dba2eb7052a200c5eb707ba41"; } + { locale = "hsb"; arch = "linux-i686"; sha256 = "c81cde05298660186d2760e977e43e554a896105765c043caac74b09326358fb"; } + { locale = "hsb"; arch = "linux-x86_64"; sha256 = "4cdd381d2eb94f163637a328e5ee9369eddc0559f17861377566853e2a7ec571"; } + { locale = "hu"; arch = "linux-i686"; sha256 = "0af518a42e35174f838b958823ad1aa24a14ff75a6058c2171594e16d5670d77"; } + { locale = "hu"; arch = "linux-x86_64"; sha256 = "b4c0212fe6a8df9689d5dfcaa9ebb2a1cf07e1e9817727581411542ea9bf26b5"; } + { locale = "hy-AM"; arch = "linux-i686"; sha256 = "0d62e6627e3ea838089a6b8b8692d034a64b47c66af80561a23bcdd74fcc777b"; } + { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "0e07e77cfac6588f8b1c3579b7dfc62feafcb72e7f9f57e2618364e3c02c0527"; } + { locale = "id"; arch = "linux-i686"; sha256 = "9361b3c83f4b3fe84d2918810b4651bc2878eeb3cdc849c513aa3faa17bb9a72"; } + { locale = "id"; arch = "linux-x86_64"; sha256 = "baaa11970fb695434fc2c7829d99578f7f48debb5e11729f94b58df330608c36"; } + { locale = "is"; arch = "linux-i686"; sha256 = "3f1fc35dc18a684a22c05a2ce468b5a164b6c83457694f9de4e6f9a72c28c6df"; } + { locale = "is"; arch = "linux-x86_64"; sha256 = "046fa860343ea079db768d94c5dbc563d6564df5a177f2a5cb7fdfa965576019"; } + { locale = "it"; arch = "linux-i686"; sha256 = "ce736af6240e803a3c1fabb58bdae2e27e44ff593e56172b3d6d174c89f606e5"; } + { locale = "it"; arch = "linux-x86_64"; sha256 = "e2a8fb6e3f18b2be4b7736e3c8adf77968bc13dea7f981e20ae47430b137695c"; } + { locale = "ja"; arch = "linux-i686"; sha256 = "2153c10104c62a5814a4f72fab7be6ffa2e03e5c5cc5f7172820d0a139134fe6"; } + { locale = "ja"; arch = "linux-x86_64"; sha256 = "446a20d4ca5c7086045f8750eb0bcc850118d2f020a77f8fa4d116064b443953"; } + { locale = "kk"; arch = "linux-i686"; sha256 = "3ddda0311feee7c247fd309a7721f4be8458fa528e63a2e8f58c005f70007144"; } + { locale = "kk"; arch = "linux-x86_64"; sha256 = "4dd8f3ea040fb2d6056f0c0f615ed38f09c980cee660fba1f8aaf0fd506745eb"; } + { locale = "km"; arch = "linux-i686"; sha256 = "a295d9d466aef89c95989866a38080d3d1b110e4efb52b1a01479817dd1c866c"; } + { locale = "km"; arch = "linux-x86_64"; sha256 = "dbb249a1398c335a155ea2b2f6ac4656f8ff00b999035dce9f5a59532043f9c3"; } + { locale = "kn"; arch = "linux-i686"; sha256 = "357077be38c6869602a13abf1f494ec8a124a9eb2c03a395a1b30276110b6913"; } + { locale = "kn"; arch = "linux-x86_64"; sha256 = "11658a25f30558a6f11f28c80a98800095ef4c5879d456dc3503737a8d9cb465"; } + { locale = "ko"; arch = "linux-i686"; sha256 = "a653f4030480ab17d77c48b144296e78faba7ad48fdce812afbe8243299575c5"; } + { locale = "ko"; arch = "linux-x86_64"; sha256 = "182858b0c4bd6ece47aff2b406da7442eb3fbe148c3bc20975f6bafd2acd37ac"; } + { locale = "lij"; arch = "linux-i686"; sha256 = "449088107c0077318d95176a90a65219a76c851c98dd5b929452bfde2a87773f"; } + { locale = "lij"; arch = "linux-x86_64"; sha256 = "8b45df098143a01f915b8eee0f8b7d56b4ec73fc9cfd0fba8c5f4b8582992f80"; } + { locale = "lt"; arch = "linux-i686"; sha256 = "085e9873154fab87c909cef005a82f0d5ab81a8ece9adfe46766ae69418084f6"; } + { locale = "lt"; arch = "linux-x86_64"; sha256 = "dde643769a14714cb9990fa489389fd5cabcfb26b23c31bb32dbaa17a38f5150"; } + { locale = "lv"; arch = "linux-i686"; sha256 = "f6363da3c7ebd5f9d80454ad126ac1cf03ef2c9fd2eebf5cb174f0d7a9cf1e36"; } + { locale = "lv"; arch = "linux-x86_64"; sha256 = "41fb793c10d5eb52dd3847f9dee30c3f67c8ad5061897d9f13135b7d1666a84b"; } + { locale = "mai"; arch = "linux-i686"; sha256 = "96af787075b06d96a2e8a261b900f6eb590f4997354dcd9f57a8714af3432a12"; } + { locale = "mai"; arch = "linux-x86_64"; sha256 = "514e75157308cd6fc96c54592dd1c1f5b556c15c5b211543644f324eee09b1a2"; } + { locale = "mk"; arch = "linux-i686"; sha256 = "1f809ef4d0afcb13bb40459a63be49ab6e074641e8f4ce54e9d2bd89c4b0b141"; } + { locale = "mk"; arch = "linux-x86_64"; sha256 = "4931d99ddd6851e4e4596a808e6b6e5fe45012711723c6748b752217c70be9d6"; } + { locale = "ml"; arch = "linux-i686"; sha256 = "5081b42676c174226c357c798d64cade2acecf6e935bbfabdaab548d364dd1ff"; } + { locale = "ml"; arch = "linux-x86_64"; sha256 = "1cbaa2c64d8fc098b67f77660e18a3df3e051396a3d5e0f984294b0823324365"; } + { locale = "mr"; arch = "linux-i686"; sha256 = "d1cc4ef0d9938c85a21e64e4a71539d46a78c709edd1ac1dc331da8ae6af57e1"; } + { locale = "mr"; arch = "linux-x86_64"; sha256 = "8fc0abfe8e834c0894187fab63becd1e3d4e071609676c1d0a8fd35a4265ec60"; } + { locale = "ms"; arch = "linux-i686"; sha256 = "7f471e30f28f0ccf6bc285d24923be2b53415891f4f0909c31160bd09d8e2c21"; } + { locale = "ms"; arch = "linux-x86_64"; sha256 = "150101c5a3556664a9e3827edf36c412c64037871a5af5f66c47bed448c8931d"; } + { locale = "nb-NO"; arch = "linux-i686"; sha256 = "67b888c5b666e1428c182dfa79aa1a9a471c785d4dac85e6cf1f618dee9c796a"; } + { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "57c1aee6f309536788a9a9bd2be3046d65c9b174583de7e0b72cf45f28156f67"; } + { locale = "nl"; arch = "linux-i686"; sha256 = "43feb0205631ff5caa6e7d71fa37a6643b3b3fd92fc06b77cef9e9a0113bb1ce"; } + { locale = "nl"; arch = "linux-x86_64"; sha256 = "182481c49deb71d9344a8789db40e233326719dbe19973fedeaaa504ba771fcb"; } + { locale = "nn-NO"; arch = "linux-i686"; sha256 = "995abcace6138d11252b60958a8d5a13a1abf94c8017e567053468f811549b24"; } + { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "d449fa5534d9a7f5e772678388770f14fa32226b0366e9a2adf7cd245b911139"; } + { locale = "or"; arch = "linux-i686"; sha256 = "a7abea23a03ed38048e724e2f7fa234e24f0f74d8681e39bca5ef183178df923"; } + { locale = "or"; arch = "linux-x86_64"; sha256 = "b05963dc6e13757b4afd1a1fa72c3128cbdfc9db3ba16adc20d2fd2eb101f165"; } + { locale = "pa-IN"; arch = "linux-i686"; sha256 = "4a30beb8ca9feca58487264abbed2a403336835140767ebac31be24bcf4b9386"; } + { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "77b77274a7eac09f4d1a7163ba5555ced722369717d98ba1dab014140a4ac235"; } + { locale = "pl"; arch = "linux-i686"; sha256 = "699b72fd6bdda12d71521bc0e32fb1a95d933dc45f62595e6b02f5441ff6d016"; } + { locale = "pl"; arch = "linux-x86_64"; sha256 = "d748461e3e45a3d07aa36bde8fd265a51888e34ce0a8e23fdf893e540cc90e16"; } + { locale = "pt-BR"; arch = "linux-i686"; sha256 = "0b7062f911ce1d70e5300cd85328aa507c9a39ad14110a0241e23280af0f6db5"; } + { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "b2de3df121d0ca4b4c322533040ae5187cff9fad8e8b83997425867c051b636c"; } + { locale = "pt-PT"; arch = "linux-i686"; sha256 = "801a04cd65d7253c95bfb9b680abba87b45e3f0cff18f94b81945ed47154b9e7"; } + { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "5e6a28463b388fb2a242af899e521a7c2a4bcc48959d0f6813335fd11e3b5861"; } + { locale = "rm"; arch = "linux-i686"; sha256 = "57d8127547da954a6fdecaaab0006d570125ad577ad7d66e53c97e1c2194258e"; } + { locale = "rm"; arch = "linux-x86_64"; sha256 = "f6158506cbf3c96a5f6a551969338a65369f2be52bfa80359da3941d2f3277bb"; } + { locale = "ro"; arch = "linux-i686"; sha256 = "980701a87255b999c4df5d82a53b653bb513675ba93e5138bc47e91174d03c3f"; } + { locale = "ro"; arch = "linux-x86_64"; sha256 = "95e80b8bbd38510719463ca1b67e574f0a1d62daa8fbd09f4bba277749c57517"; } + { locale = "ru"; arch = "linux-i686"; sha256 = "16e6775a26756b445e5c72220297062b3e4e1ab66efd0324eb161a4d5b353874"; } + { locale = "ru"; arch = "linux-x86_64"; sha256 = "9bc067f5c158f33fdafd8b7ea1ab3492002ceca579a177a292a835d52c430c27"; } + { locale = "si"; arch = "linux-i686"; sha256 = "2fdc744bc85488514b9bcf93b017e6f6fcfd4cf7c249c1e7d307956cb62baf43"; } + { locale = "si"; arch = "linux-x86_64"; sha256 = "366893e7b7337ff6bdfe0def0ac88615e9cadb460fbcb17dd047f18172782208"; } + { locale = "sk"; arch = "linux-i686"; sha256 = "3efabb4f04376688f51df5c70fb4cfc0b382e9b6160eb625969945a8e3272a18"; } + { locale = "sk"; arch = "linux-x86_64"; sha256 = "dd97fc87382cca475b4b8ef8ab137b8f436e4a4792bfc06bcf0e7736e1f5e452"; } + { locale = "sl"; arch = "linux-i686"; sha256 = "3ba940deb5b1db31aaf07c005e62ddbd6acf44d3d0e775aab51c2eb0dc2da936"; } + { locale = "sl"; arch = "linux-x86_64"; sha256 = "dae438abc4cdd552bc7750ecebe958cbb7ef0edbb745d19e9b670db1e5c9fa8f"; } + { locale = "son"; arch = "linux-i686"; sha256 = "ef1baa4e6b333cd19df938dd13b91e091c9ed838b72767def2c0eec7a473532f"; } + { locale = "son"; arch = "linux-x86_64"; sha256 = "c2e45137b18717889977e0203951ddd078e1379f05875915f295b14677b6e75a"; } + { locale = "sq"; arch = "linux-i686"; sha256 = "d4f48c90a2bd4f8751b66653e0aed0de3f4ff9b40bba306377577ef8cbf94541"; } + { locale = "sq"; arch = "linux-x86_64"; sha256 = "85cf583913978c109dcaf07b22442505554813b6129862668ef78f491588a153"; } + { locale = "sr"; arch = "linux-i686"; sha256 = "08725f28304608e029e9e4ccf0fb478eda4b6cde138ad65a53e2f88af97e8a6c"; } + { locale = "sr"; arch = "linux-x86_64"; sha256 = "bfdca6d30f044bed181d45396c81f0a1d0e9b9026607e0700cc1bf225408ac20"; } + { locale = "sv-SE"; arch = "linux-i686"; sha256 = "01f98e4954e1a1df5b0aaf711696b6f7e7237ea3df57071479e8749c621fbbf1"; } + { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "b1c292410edaa4d6595b21b803287030d21ddd64e7a6a941d7627bb4cbff2435"; } + { locale = "ta"; arch = "linux-i686"; sha256 = "d6d62857ccfe54ab870bcbe0ea98e41d59524b3958c28ddffcfb009d6305fde0"; } + { locale = "ta"; arch = "linux-x86_64"; sha256 = "253080f66f47850222c676d98626c5a879ee708d1f03b3598d4ac205998676c4"; } + { locale = "te"; arch = "linux-i686"; sha256 = "ffa9371d8960707a0062bc6cb5ed5aa84c9e5b9b898ddc403b346b519bf6f814"; } + { locale = "te"; arch = "linux-x86_64"; sha256 = "69c3776bfd41bae4067da4f5f350c5f0a906c2b8d1edffe5d3907bc7ca2ee863"; } + { locale = "th"; arch = "linux-i686"; sha256 = "3dbead624ae46c14208a61ed8c6b515117d472a8f8bebf14478bc467da23eeee"; } + { locale = "th"; arch = "linux-x86_64"; sha256 = "4c0db90021ad46d67f68b3d2d928a279cdff14b7d62f8fa4e07a33135ab925b7"; } + { locale = "tr"; arch = "linux-i686"; sha256 = "744327c6a3c514ff7b0bc5940f1744c95c6ac47165d5b316bbea11412a2d8550"; } + { locale = "tr"; arch = "linux-x86_64"; sha256 = "321f096a89898ed027b95efa4f02fdaa9118eb414e35088ce259b76048bf77fd"; } + { locale = "uk"; arch = "linux-i686"; sha256 = "f3d0a5a328b686cf18339e50a59920fe002166b35c5b5b29c04156bc5b5c6d4b"; } + { locale = "uk"; arch = "linux-x86_64"; sha256 = "b15e82737c69703bcdd97f5699280338e4c2029b5eea7df98fb218a5e2a579f3"; } + { locale = "uz"; arch = "linux-i686"; sha256 = "dfdf28670cacfd43f71d81c609fc2961682ec2c7a64ea540e49a571195e68852"; } + { locale = "uz"; arch = "linux-x86_64"; sha256 = "eaacd1534711def0ab30eb9a53db2553c4cc202ec07c40bc5b2ded7e729347ac"; } + { locale = "vi"; arch = "linux-i686"; sha256 = "4b4753038753d814d1e5a1ff995445abec80fd74d9443cac38495193bf039762"; } + { locale = "vi"; arch = "linux-x86_64"; sha256 = "3051a5f8b0d47860f98839c4496298d71aeb6ef98f099937b8da9d87d7a1986c"; } + { locale = "xh"; arch = "linux-i686"; sha256 = "2798bca7d894a0ba223694fe585e1b9fcf60cc96d881d7570c06a4d77afc4b20"; } + { locale = "xh"; arch = "linux-x86_64"; sha256 = "acb1084e32bc467cd3374e6930c8f51deea38e94ddde09bf5a257d473d2579e8"; } + { locale = "zh-CN"; arch = "linux-i686"; sha256 = "93a3f1b92aeb7a3e7659ebe0ad7c7df966279926fe3fdc7b0047bd858482234f"; } + { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "047d74546e4767d728e7522d908056c8aaad9cd8152517425443b59ff580bebe"; } + { locale = "zh-TW"; arch = "linux-i686"; sha256 = "b710126e2d7cd6f55b0dd54811de64c30eb69f97ea8a71905b3ea49e59abdfe2"; } + { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "d3b52404ab397385fcbb617f6cd8cda821d3927852e0a617dd60443c2cad6b65"; } ]; } diff --git a/pkgs/applications/networking/browsers/firefox/default.nix b/pkgs/applications/networking/browsers/firefox/default.nix index 834c6ed339c..41f8cc155a8 100644 --- a/pkgs/applications/networking/browsers/firefox/default.nix +++ b/pkgs/applications/networking/browsers/firefox/default.nix @@ -73,7 +73,7 @@ common = { pname, version, sha256 }: stdenv.mkDerivation rec { ++ lib.optional enableGTK3 "--enable-default-toolkit=cairo-gtk3" ++ (if debugBuild then [ "--enable-debug" "--enable-profiling" ] else [ "--disable-debug" "--enable-release" - "--enable-optimize${lib.optionalString (stdenv.system == "i686-linux") "=-O1"}" + "--enable-optimize" "--enable-strip" ]) ++ lib.optional enableOfficialBranding "--enable-official-branding"; @@ -81,13 +81,9 @@ common = { pname, version, sha256 }: stdenv.mkDerivation rec { preConfigure = '' + configureScript="$(realpath ./configure)" mkdir ../objdir cd ../objdir - if [ -e ../${pname}-${version} ]; then - configureScript=../${pname}-${version}/configure - else - configureScript=../mozilla-*/configure - fi ''; preInstall = @@ -133,14 +129,14 @@ in { firefox-unwrapped = common { pname = "firefox"; - version = "44.0.2"; - sha256 = "17id7ala1slb2mjqkikryqjadcsmdzqmkxrrnb5m1316m50qichb"; + version = "45.0.1"; + sha256 = "1j6raz51zcj2hxk0spk5zq8xzxi5nlxxm60dpnb7cs6dv334m0fi"; }; firefox-esr-unwrapped = common { pname = "firefox-esr"; - version = "38.6.1esr"; - sha256 = "1zyhzczhknplxfmk2r7cczavbsml8ckyimibj2sphwdc300ls5wi"; + version = "45.0.1esr"; + sha256 = "0rkk3cr3r7v5xzbcqhyx8b633v4a16ika0wk46p0ichh9n5mci0s"; }; } diff --git a/pkgs/applications/networking/browsers/google-chrome/default.nix b/pkgs/applications/networking/browsers/google-chrome/default.nix index 89e545d12e4..eb51fa5c102 100644 --- a/pkgs/applications/networking/browsers/google-chrome/default.nix +++ b/pkgs/applications/networking/browsers/google-chrome/default.nix @@ -30,7 +30,7 @@ with stdenv.lib; -with (import ../chromium/source/update.nix { +with (import ../chromium/update.nix { inherit (stdenv) system; }).getChannel channel; @@ -59,7 +59,7 @@ in stdenv.mkDerivation rec { name = "google-chrome-${version}"; - src = fetchurl binary; + src = binary; buildInputs = [ env patchelf ]; diff --git a/pkgs/applications/networking/browsers/lynx/default.nix b/pkgs/applications/networking/browsers/lynx/default.nix index 74c9574c7d6..e7b5ba89db6 100644 --- a/pkgs/applications/networking/browsers/lynx/default.nix +++ b/pkgs/applications/networking/browsers/lynx/default.nix @@ -4,22 +4,23 @@ assert sslSupport -> openssl != null; -stdenv.mkDerivation { - name = "lynx-2.8.8"; +stdenv.mkDerivation rec { + name = "lynx-${version}"; + version = "2.8.8rel.2"; src = fetchurl { - url = http://lynx.isc.org/lynx2.8.8/lynx2.8.8.tar.bz2; + url = "http://invisible-mirror.net/archives/lynx/tarballs/lynx${version}.tar.bz2"; sha256 = "1rxysl08acqll5b87368f04kckl8sggy1qhnq59gsxyny1ffg039"; }; - configureFlags = if sslSupport then "--with-ssl=${openssl}" else ""; + configureFlags = [] + ++ stdenv.lib.optionals sslSupport [ "--with-ssl=${openssl}" ]; buildInputs = [ ncurses gzip ]; nativeBuildInputs = [ ncurses ]; crossAttrs = { - configureFlags = "--enable-widec" + - (if sslSupport then " --with-ssl" else ""); + configureFlags = configureFlags ++ [ "--enable-widec" ]; }; meta = { diff --git a/pkgs/applications/networking/browsers/midori/default.nix b/pkgs/applications/networking/browsers/midori/default.nix index 336d6ae609d..9eaf254b23b 100644 --- a/pkgs/applications/networking/browsers/midori/default.nix +++ b/pkgs/applications/networking/browsers/midori/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { homepage = "http://midori-browser.org"; license = stdenv.lib.licenses.lgpl21Plus; platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ raskin iyzsong ]; + maintainers = with stdenv.lib.maintainers; [ raskin ]; }; src = fetchurl { @@ -39,6 +39,8 @@ stdenv.mkDerivation rec { -DUSE_ZEITGEIST=OFF ''; + NIX_LDFLAGS="-lX11"; + preFixup = '' wrapProgram $out/bin/midori \ --prefix GIO_EXTRA_MODULES : "${glib_networking}/lib/gio/modules" \ diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix index f29f569cd3a..2b6b0d5b412 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix @@ -59,11 +59,11 @@ let in stdenv.mkDerivation rec { name = "flashplayer-${version}"; - version = "11.2.202.559"; + version = "11.2.202.577"; src = fetchurl { url = "https://fpdownload.macromedia.com/pub/flashplayer/installers/archive/fp_${version}_archive.zip"; - sha256 = "1vb01pd1jhhh86r01nwdzcf66d72jksiyiyp92hs4khy6n5qfsl3"; + sha256 = "1k02d6c9y8z9lxyqyq04zsc5735cvm30mkwli71mh87fr1va2q4j"; }; buildInputs = [ unzip ]; diff --git a/pkgs/applications/networking/cluster/marathon/default.nix b/pkgs/applications/networking/cluster/marathon/default.nix index ac666030897..11c275c9f49 100644 --- a/pkgs/applications/networking/cluster/marathon/default.nix +++ b/pkgs/applications/networking/cluster/marathon/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "marathon-${version}"; - version = "0.15.1"; + version = "0.15.3"; src = fetchurl { url = "https://downloads.mesosphere.io/marathon/v${version}/marathon-${version}.tgz"; - sha256 = "1ch3nvcwj7pzjjqw4k07gdf7nmdbfkks5j07wl3518bagjqrajj2"; + sha256 = "1br4k596sjp4cf5l2nyaqhlsfdr443n08fvdyf4kilhr803x2rjq"; }; buildInputs = [ makeWrapper jdk mesos ]; @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { homepage = https://mesosphere.github.io/marathon; description = "Cluster-wide init and control system for services in cgroups or Docker containers"; license = licenses.asl20; - maintainers = with maintainers; [ rushmorem kamilchm ]; + maintainers = with maintainers; [ rushmorem kamilchm kevincox ]; platforms = platforms.linux; }; } diff --git a/pkgs/applications/networking/cluster/mesos/default.nix b/pkgs/applications/networking/cluster/mesos/default.nix index 25bd659d63a..b1b45185511 100644 --- a/pkgs/applications/networking/cluster/mesos/default.nix +++ b/pkgs/applications/networking/cluster/mesos/default.nix @@ -1,7 +1,8 @@ { stdenv, lib, makeWrapper, fetchurl, curl, sasl, openssh, autoconf , automake115x, libtool, unzip, gnutar, jdk, maven, python, wrapPython -, setuptools, boto, pythonProtobuf, apr, subversion, gzip +, setuptools, boto, pythonProtobuf, apr, subversion, gzip, systemd , leveldb, glog, perf, utillinux, libnl, iproute, openssl, libevent +, bash }: let @@ -9,14 +10,15 @@ let soext = if stdenv.system == "x86_64-darwin" then "dylib" else "so"; in stdenv.mkDerivation rec { - version = "0.26.0"; + version = "0.27.1"; name = "mesos-${version}"; + enableParallelBuilding = true; dontDisableStatic = true; src = fetchurl { url = "mirror://apache/mesos/${version}/${name}.tar.gz"; - sha256 = "0csvaql9gky15w23gmiw6cvlfnrlhfxvdqd2pv3j3grr44ph0ab5"; + sha256 = "147iq7vwi09kqblx1h8r6lkrg9g50i257qk1cph1zr5j3rncz7l8"; }; patches = [ @@ -39,25 +41,43 @@ in stdenv.mkDerivation rec { preConfigure = '' substituteInPlace src/Makefile.am --subst-var-by mavenRepo ${mavenRepo} + + substituteInPlace 3rdparty/libprocess/include/process/subprocess.hpp \ + --replace '"sh"' '"${bash}/bin/bash"' + substituteInPlace 3rdparty/libprocess/3rdparty/stout/include/stout/posix/os.hpp \ + --replace '"sh"' '"${bash}/bin/bash"' + + substituteInPlace 3rdparty/libprocess/3rdparty/stout/include/stout/os/posix/fork.hpp \ + --replace '"sh"' '"${bash}/bin/bash"' + + substituteInPlace src/cli/mesos-scp \ + --replace "'scp " "'${openssh}/bin/scp " + + substituteInPlace src/launcher/executor.cpp \ + --replace '"sh"' '"${bash}/bin/bash"' + substituteInPlace src/launcher/fetcher.cpp \ --replace '"gzip' '"${gzip}/bin/gzip' \ --replace '"tar' '"${gnutar}/bin/tar' \ --replace '"unzip' '"${unzip}/bin/unzip' - substituteInPlace src/cli/mesos-scp \ - --replace "'scp " "'${openssh}/bin/scp " - substituteInPlace src/python/cli/src/mesos/cli.py \ --replace "['mesos-resolve'" "['$out/bin/mesos-resolve'" + + substituteInPlace src/slave/containerizer/mesos/launch.cpp \ + --replace '"sh"' '"${bash}/bin/bash"' - '' + lib.optionalString (stdenv.isLinux) '' + '' + lib.optionalString stdenv.isLinux '' substituteInPlace configure.ac \ --replace /usr/include/libnl3 ${libnl}/include/libnl3 substituteInPlace src/linux/perf.cpp \ --replace '"perf ' '"${perf}/bin/perf ' + + substituteInPlace src/linux/systemd.cpp \ + --replace 'os::realpath("/sbin/init")' '"${systemd}/lib/systemd/systemd"' substituteInPlace src/slave/containerizer/mesos/isolators/filesystem/shared.cpp \ --replace '"mount ' '"${utillinux}/bin/mount ' \ @@ -114,7 +134,7 @@ in stdenv.mkDerivation rec { rm -f "$out/lib/${python.libPrefix}"/site-packages/site.py* popd - # optional python dependency for mesos cli + # optional python dependency for mesos cli pushd src/python/cli ${python}/bin/${python.executable} setup.py install \ --install-lib=$out/lib/${python.libPrefix}/site-packages \ @@ -150,7 +170,7 @@ in stdenv.mkDerivation rec { homepage = "http://mesos.apache.org"; license = licenses.asl20; description = "A cluster manager that provides efficient resource isolation and sharing across distributed applications, or frameworks"; - maintainers = with maintainers; [ cstrahan offline rushmorem ]; + maintainers = with maintainers; [ cstrahan kevincox offline rushmorem ]; platforms = platforms.linux; }; } diff --git a/pkgs/applications/networking/cluster/rq/default.nix b/pkgs/applications/networking/cluster/rq/default.nix deleted file mode 100644 index fdf11adfb6c..00000000000 --- a/pkgs/applications/networking/cluster/rq/default.nix +++ /dev/null @@ -1,36 +0,0 @@ -{stdenv, fetchurl, sqlite, ruby }: - -# Package builds rq with all dependencies into one blob. This to ascertain -# the combination of packages works. - -stdenv.mkDerivation { - name = "rq-3.4.0"; - src = fetchurl { - url = http://www.codeforpeople.com/lib/ruby/rq/rq-3.4.0.tgz; - sha256 = "1g8wiv83dcn4vzk9wjjzs9vjnwzwpy4h84h34cj32wfz793wfb8b"; - }; - - buildInputs = [ ruby ]; - - # patch checks for existing stdin file - sent it upstream - patches = [ ./rq.patch ]; - - buildPhase = '' - cd all - ./install.sh $out - cd .. - ''; - - installPhase = '' - ''; - - meta = { - license = stdenv.lib.licenses.ruby; - homepage = "http://www.codeforpeople.com/lib/ruby/rq/"; - description = "Simple cluster queue runner"; - longDescription = "rq creates instant linux clusters by managing priority work queues, even on a multi-core single machine. This cluster runner is easy to install and easy to manage, contrasting with the common complicated solutions."; - pkgMaintainer = "Pjotr Prins"; - # rq installs a separate Ruby interpreter, which has lower priority - priority = "10"; - }; -} diff --git a/pkgs/applications/networking/cluster/rq/rq.patch b/pkgs/applications/networking/cluster/rq/rq.patch deleted file mode 100644 index d57c7d0a71a..00000000000 --- a/pkgs/applications/networking/cluster/rq/rq.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -r b58e759f84db lib/rq/jobrunner.rb ---- a/lib/rq/jobrunner.rb Sun Sep 28 13:33:06 2008 +0200 -+++ b/lib/rq/jobrunner.rb Sun Sep 28 13:35:09 2008 +0200 -@@ -85,7 +85,7 @@ unless defined? $__rq_jobrunner__ - - command = - if @sh_like -- sin = "0<#{ @stdin }" if @stdin -+ sin = "0<#{ @stdin }" if @stdin and File.exist?(@stdin) - sout = "1>#{ @stdout }" if @stdout - serr = "2>#{ @stderr }" if @stderr - "( PATH=#{ path }:$PATH #{ command } ;) #{ sin } #{ sout } #{ serr }" diff --git a/pkgs/applications/networking/cluster/spark/default.nix b/pkgs/applications/networking/cluster/spark/default.nix index a0abe4f3142..79074d2d28e 100644 --- a/pkgs/applications/networking/cluster/spark/default.nix +++ b/pkgs/applications/networking/cluster/spark/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { src = fetchzip { url = "mirror://apache/spark/${name}/${name}-bin-cdh4.tgz"; - sha256 = "0waq8xx4bjj1yvfbadv1gdvz8s4kh5zasicv2n5623ld6lj7zgad"; + sha256 = "19ycx1r8g82vkvzmn9wxkssmv2damrg72yfmrgzpc6xyh071g91c"; }; buildInputs = [ makeWrapper jre pythonPackages.python pythonPackages.numpy ] diff --git a/pkgs/applications/networking/dropbox-cli/default.nix b/pkgs/applications/networking/dropbox-cli/default.nix index 892d8fa3300..ab79159ea6e 100644 --- a/pkgs/applications/networking/dropbox-cli/default.nix +++ b/pkgs/applications/networking/dropbox-cli/default.nix @@ -16,8 +16,7 @@ stdenv.mkDerivation { phases = "unpackPhase installPhase"; installPhase = '' - mkdir -p "$out/bin/" "$out/share/applications" - cp data/dropbox.desktop "$out/share/applications" + mkdir -p "$out/bin/" substitute "dropbox.in" "$out/bin/dropbox" \ --replace '@PACKAGE_VERSION@' ${version} \ --replace '@DESKTOP_FILE_DIR@' "$out/share/applications" \ @@ -25,6 +24,7 @@ stdenv.mkDerivation { --replace '@IMAGEDATA64@' '"too-lazy-to-fix"' sed -i 's:db_path = .*:db_path = "${dropboxd}":' $out/bin/dropbox chmod +x "$out/bin/"* + mv $out/bin/dropbox $out/bin/dropbox-cli patchShebangs "$out/bin" ''; diff --git a/pkgs/applications/networking/ftp/filezilla/default.nix b/pkgs/applications/networking/ftp/filezilla/default.nix index 57b93bfd656..698f379c09c 100644 --- a/pkgs/applications/networking/ftp/filezilla/default.nix +++ b/pkgs/applications/networking/ftp/filezilla/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, dbus, gnutls, wxGTK30, libidn, tinyxml, gettext , pkgconfig, xdg_utils, gtk2, sqlite, pugixml, libfilezilla }: -let version = "3.16.0"; in +let version = "3.16.1"; in stdenv.mkDerivation { name = "filezilla-${version}"; src = fetchurl { url = "mirror://sourceforge/project/filezilla/FileZilla_Client/${version}/FileZilla_${version}_src.tar.bz2"; - sha256 = "0ilv4xhgav4srx6iqn0v0kv8rifgkysyx1hb9bnm45dc0skmbgbx"; + sha256 = "1a6xvpnsjpgdrxla0i2zag30hy825rfsl4ka9p0zj5za9j2ny11v"; }; configureFlags = [ diff --git a/pkgs/applications/networking/instant-messengers/bitlbee/default.nix b/pkgs/applications/networking/instant-messengers/bitlbee/default.nix index 41a698be290..d7c52ccfd6b 100644 --- a/pkgs/applications/networking/instant-messengers/bitlbee/default.nix +++ b/pkgs/applications/networking/instant-messengers/bitlbee/default.nix @@ -21,6 +21,7 @@ stdenv.mkDerivation rec { "--gcov=1" "--otr=1" "--ssl=gnutls" + "--pidfile=/var/lib/bitlbee/bitlbee.pid" ]; buildPhase = '' diff --git a/pkgs/applications/networking/instant-messengers/hipchat/default.nix b/pkgs/applications/networking/instant-messengers/hipchat/default.nix index 6dc0df03eef..3ff93c35dcd 100644 --- a/pkgs/applications/networking/instant-messengers/hipchat/default.nix +++ b/pkgs/applications/networking/instant-messengers/hipchat/default.nix @@ -1,58 +1,48 @@ -{ stdenv, fetchurl, libtool, xorg, freetype, fontconfig, openssl, glib -, mesa, gstreamer, gst_plugins_base, dbus, alsaLib, zlib, libuuid -, libxml2, libxslt, sqlite, libogg, libvorbis, xz, libcanberra -, makeWrapper, libredirect, xkeyboard_config, xcbutilkeysyms }: +{ stdenv, fetchurl, xorg, freetype, fontconfig, openssl, glib, nss, nspr, expat +, alsaLib, dbus, zlib, libxml2, libxslt, makeWrapper, xkeyboard_config, systemd +, mesa_noglu, xcbutilkeysyms }: let - version = "2.2.1388"; + version = "4.0.1631"; rpath = stdenv.lib.makeSearchPath "lib" [ - stdenv.glibc - libtool xorg.libXext xorg.libSM xorg.libICE xorg.libX11 - xorg.libXft - xorg.libXau - xorg.libXdmcp + xorg.libXrandr + xorg.libXdamage xorg.libXrender xorg.libXfixes xorg.libXcomposite + xorg.libXcursor xorg.libxcb xorg.libXi + xorg.libXScrnSaver + xorg.libXtst freetype fontconfig openssl glib - mesa - gstreamer - gst_plugins_base + nss + nspr dbus alsaLib zlib - libuuid libxml2 libxslt - sqlite - libogg - libvorbis - xz - libcanberra + expat xcbutilkeysyms - ] + ":${stdenv.cc.cc}/lib${stdenv.lib.optionalString stdenv.is64bit "64"}"; + systemd + mesa_noglu + ] + ":${stdenv.cc.cc}/lib64"; src = if stdenv.system == "x86_64-linux" then fetchurl { - url = "http://downloads.hipchat.com/linux/arch/x86_64/hipchat-${version}-x86_64.pkg.tar.xz"; - sha256 = "18vl0c7xgyzd2miwkfzc638z0wzszgsdlbnslkkvxmg95ykdrdnz"; - } - else if stdenv.system == "i686-linux" then - fetchurl { - url = "http://downloads.hipchat.com/linux/arch/i686/hipchat-${version}-i686.pkg.tar.xz"; - sha256 = "12q8hf3gmcgrqg6v9xqyknwsmwywpwm76jc54sfniiqv5ngq24hl"; + url = "https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client/pool/HipChat4-${version}-Linux.deb"; + sha256 = "1ip79zq7j7842sf254296wvvd236w7c764r8wgjdyxzqyvfjfd81"; } else throw "HipChat is not supported on ${stdenv.system}"; @@ -67,36 +57,37 @@ stdenv.mkDerivation { buildInputs = [ makeWrapper ]; buildCommand = '' - tar xf ${src} + ar x $src + tar xfvz data.tar.gz - mkdir -p $out/libexec/hipchat/bin + mkdir -p $out/libexec/hipchat d=$out/libexec/hipchat/lib - rm -rfv opt/HipChat/lib/{libstdc++*,libz*,libuuid*,libxml2*,libxslt*,libsqlite*,libogg*,libvorbis*,liblzma*,libcanberra.*,libcanberra-*} - mv opt/HipChat/lib/ $d + mv opt/HipChat4/* $out/libexec/hipchat/ mv usr/share $out for file in $(find $d -type f); do patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $file || true - patchelf --set-rpath ${rpath}:\$ORIGIN $file || true + patchelf --set-rpath ${rpath}:$out/libexec/hipchat/lib:\$ORIGIN $file || true done - substituteInPlace $out/share/applications/hipchat.desktop \ - --replace /opt/HipChat/bin $out/bin + substituteInPlace $out/share/applications/hipchat4.desktop \ + --replace /opt/HipChat4/bin/HipChat4 $out/bin/hipchat - makeWrapper $d/hipchat.bin $out/bin/hipchat \ + makeWrapper $d/HipChat.bin $out/bin/hipchat \ --set HIPCHAT_LD_LIBRARY_PATH '"$LD_LIBRARY_PATH"' \ --set HIPCHAT_QT_PLUGIN_PATH '"$QT_PLUGIN_PATH"' \ - --set LD_PRELOAD "${libredirect}/lib/libredirect.so" \ - --set NIX_REDIRECTS /usr/share/X11/xkb=${xkeyboard_config}/share/X11/xkb + --set QT_XKB_CONFIG_ROOT ${xkeyboard_config}/share/X11/xkb \ + --set QTWEBENGINEPROCESS_PATH $d/QtWebEngineProcess - mv opt/HipChat/bin/linuxbrowserlaunch $out/libexec/hipchat/bin/ + makeWrapper $d/QtWebEngineProcess.bin $d/QtWebEngineProcess \ + --set QT_PLUGIN_PATH "$d/plugins" ''; meta = with stdenv.lib; { description = "Desktop client for HipChat services"; homepage = http://www.hipchat.com; license = licenses.unfree; - platforms = [ "i686-linux" "x86_64-linux" ]; - maintainers = with maintainers; [ jgeerds ]; + platforms = [ "x86_64-linux" ]; + maintainers = with maintainers; [ jgeerds puffnfresh ]; }; } diff --git a/pkgs/applications/networking/instant-messengers/pidgin-plugins/otr/default.nix b/pkgs/applications/networking/instant-messengers/pidgin-plugins/otr/default.nix index c6801105a84..9f5c246ede6 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin-plugins/otr/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin-plugins/otr/default.nix @@ -1,10 +1,10 @@ { stdenv, fetchurl, libotr, pidgin, intltool } : stdenv.mkDerivation rec { - name = "pidgin-otr-4.0.1"; + name = "pidgin-otr-4.0.2"; src = fetchurl { url = "http://www.cypherpunks.ca/otr/${name}.tar.gz"; - sha256 = "02pkkf86fh5jvzsdn9y78impsgzj1n0p81kc2girvk3vq941yy0v"; + sha256 = "1i5s9rrgbyss9rszq6c6y53hwqyw1k86s40cpsfx5ccl9bprxdgl"; }; postInstall = "ln -s \$out/lib/pidgin \$out/share/pidgin-otr"; diff --git a/pkgs/applications/networking/instant-messengers/pidgin-plugins/telegram-purple/default.nix b/pkgs/applications/networking/instant-messengers/pidgin-plugins/telegram-purple/default.nix new file mode 100644 index 00000000000..b04673a5d6a --- /dev/null +++ b/pkgs/applications/networking/instant-messengers/pidgin-plugins/telegram-purple/default.nix @@ -0,0 +1,38 @@ +{ stdenv, fetchgit, pkgconfig, pidgin, libwebp, libgcrypt, gettext } : + +let + version = "2016-03-17"; +in +stdenv.mkDerivation rec { + name = "telegram-purple-${version}"; + + src = fetchgit { + url = "https://github.com/majn/telegram-purple"; + rev = "ee2a6fb740fe9580336e4af9a153b845bc715927"; + sha256 = "10y99rclxbpbmmyiapn4vk1d7yjwmg7v1wb4jlz678qkvcni3nv7"; + }; + + nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ pidgin libwebp libgcrypt gettext ]; + + preConfigure = '' + sed -i "s|/etc/telegram-purple/server.tglpub|$out/lib/pidgin/server.tglpub|g" telegram-purple.c + ''; + + installPhase = '' + mkdir -p $out/lib/pidgin/ + cp bin/*.so $out/lib/pidgin/ + cp tg-server.tglpub $out/lib/pidgin/server.tglpub + mkdir -p $out/pixmaps/pidgin/protocols/{16,22,48} + cp imgs/telegram16.png $out/pixmaps/pidgin/protocols/16 + cp imgs/telegram22.png $out/pixmaps/pidgin/protocols/22 + cp imgs/telegram48.png $out/pixmaps/pidgin/protocols/48 + ''; + + meta = { + homepage = https://github.com/majn/telegram-purple; + description = "Telegram for Pidgin / libpurple"; + license = stdenv.lib.licenses.gpl2; + maintainers = stdenv.lib.maintainers.jagajaga; + }; +} diff --git a/pkgs/applications/networking/instant-messengers/pidgin/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/default.nix index 5e8f266930f..7e9e41ea0bf 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/default.nix @@ -1,5 +1,5 @@ -{ stdenv, fetchurl, pkgconfig, gtk, gtkspell, aspell -, gstreamer, gst_plugins_base, startupnotification, gettext +{ stdenv, fetchurl, makeWrapper, pkgconfig, gtk, gtkspell, aspell +, gstreamer, gst_plugins_base, gst_plugins_good, startupnotification, gettext , perl, perlXMLParser, libxml2, nss, nspr, farsight2 , libXScrnSaver, ncurses, avahi, dbus, dbus_glib, intltool, libidn , lib, python, libICE, libXext, libSM @@ -22,9 +22,11 @@ stdenv.mkDerivation rec { inherit nss ncurses; + nativeBuildInputs = [ makeWrapper ]; + buildInputs = [ gtkspell aspell - gstreamer gst_plugins_base startupnotification + gstreamer gst_plugins_base gst_plugins_good startupnotification libxml2 nss nspr farsight2 libXScrnSaver ncurses python avahi dbus dbus_glib intltool libidn @@ -54,6 +56,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; + postInstall = '' + wrapProgram $out/bin/pidgin \ + --prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH" + ''; + meta = with stdenv.lib; { description = "Multi-protocol instant messaging client"; homepage = http://pidgin.im; diff --git a/pkgs/applications/networking/instant-messengers/qtox/default.nix b/pkgs/applications/networking/instant-messengers/qtox/default.nix index 541fb5727ce..e08a112664a 100644 --- a/pkgs/applications/networking/instant-messengers/qtox/default.nix +++ b/pkgs/applications/networking/instant-messengers/qtox/default.nix @@ -4,7 +4,7 @@ qtbase, qtsvg, qttools, qttranslations, sqlcipher }: let - version = "1.2.4"; + version = "1.3.0"; revision = "v${version}"; in @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { owner = "tux3"; repo = "qTox"; rev = revision; - sha256 = "0iqnl00kmbpf3pn6z38n3cjzzsqpw2793j60c24kkrydapihknz9"; + sha256 = "0z2rxsa23vpl4q0h63mybw7kv8n1sm6nwb93l0cc046a3n9axid8"; }; buildInputs = diff --git a/pkgs/applications/networking/instant-messengers/skype/default.nix b/pkgs/applications/networking/instant-messengers/skype/default.nix index 1e84e015bc1..98672a29d0b 100644 --- a/pkgs/applications/networking/instant-messengers/skype/default.nix +++ b/pkgs/applications/networking/instant-messengers/skype/default.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { cat > $out/bin/skype << EOF #!${stdenv.shell} export PULSE_LATENCY_MSEC=60 # workaround for pulseaudio glitches - $out/libexec/skype/skype --resources=$out/libexec/skype "\$@" + exec $out/libexec/skype/skype --resources=$out/libexec/skype "\$@" EOF chmod +x $out/bin/skype @@ -67,5 +67,6 @@ stdenv.mkDerivation rec { description = "A proprietary voice-over-IP (VoIP) client"; homepage = http://www.skype.com/; license = stdenv.lib.licenses.unfree; + platforms = [ "i686-linux" ]; }; } diff --git a/pkgs/applications/networking/instant-messengers/slack/default.nix b/pkgs/applications/networking/instant-messengers/slack/default.nix new file mode 100644 index 00000000000..c6e550b5e8f --- /dev/null +++ b/pkgs/applications/networking/instant-messengers/slack/default.nix @@ -0,0 +1,85 @@ +{ stdenv, fetchurl, dpkg +, alsaLib, atk, cairo, cups, dbus, expat, fontconfig, freetype, glib, gnome +, libnotify, nspr, nss, systemd, xorg }: + +let + + version = "2.0.1"; + + rpath = stdenv.lib.makeSearchPath "lib" [ + alsaLib + atk + cairo + cups + dbus + expat + fontconfig + freetype + glib + gnome.GConf + gnome.gdk_pixbuf + gnome.gtk + gnome.pango + libnotify + nspr + nss + systemd + + xorg.libX11 + xorg.libXcomposite + xorg.libXcursor + xorg.libXdamage + xorg.libXext + xorg.libXfixes + xorg.libXi + xorg.libXrandr + xorg.libXrender + xorg.libXtst + ] + ":${stdenv.cc.cc}/lib64"; + + src = + if stdenv.system == "x86_64-linux" then + fetchurl { + url = "https://slack-ssb-updates.global.ssl.fastly.net/linux_releases/slack-desktop-${version}-amd64.deb"; + sha256 = "12d84e61ba366cc5bac105b3f9930f2dfdd64c1e5fabbb08a6877e1c98bfb9c7"; + } + else + throw "Slack is not supported on ${stdenv.system}"; + +in stdenv.mkDerivation { + name = "slack-${version}"; + + inherit src; + + buildInputs = [ dpkg ]; + unpackPhase = "true"; + buildCommand = '' + mkdir -p $out + dpkg -x $src $out + cp -av $out/usr/* $out + rm -rf $out/usr + + # Otherwise it looks "suspicious" + chmod -R g-w $out + + for file in $(find $out -type f \( -perm /0111 -o -name \*.so\* \) ); do + patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" "$file" || true + patchelf --set-rpath ${rpath}:$out/share/slack $file || true + done + + # Fix the symlink + rm $out/bin/slack + ln -s $out/share/slack/slack $out/bin/slack + + # Fix the desktop link + substituteInPlace $out/share/applications/slack.desktop \ + --replace /usr/share/slack/slack $out/share/slack/slack + ''; + + meta = with stdenv.lib; { + description = "Desktop client for Slack"; + homepage = "https://slack.com"; + license = licenses.unfree; + platforms = [ "x86_64-linux" ]; + }; +} diff --git a/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix b/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix index fa03b8d21ad..29a0f188516 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix @@ -1,7 +1,8 @@ { stdenv, fetchgit -, qtbase, qtmultimedia, qtquick1, qtquickcontrols, qtgraphicaleffects +, qtbase, qtmultimedia, qtquick1, qtquickcontrols +, qtimageformats, qtgraphicaleffects , telegram-qml, libqtelegram-aseman-edition -, gst_plugins_base, gst_plugins_good, gst_plugins_bad, gst_plugins_ugly +, gst_all_1 , makeQtWrapper }: stdenv.mkDerivation rec { @@ -14,15 +15,21 @@ stdenv.mkDerivation rec { }; buildInputs = - [ qtbase qtmultimedia qtquick1 qtquickcontrols qtgraphicaleffects - telegram-qml libqtelegram-aseman-edition - gst_plugins_base gst_plugins_good gst_plugins_bad gst_plugins_ugly ]; + [ qtbase qtmultimedia qtquick1 qtquickcontrols + qtimageformats qtgraphicaleffects + telegram-qml libqtelegram-aseman-edition + ] ++ (with gst_all_1; [ gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly ]); + nativeBuildInputs = [ makeQtWrapper ]; - enableParallelBuild = true; + + enableParallelBuilding = true; configurePhase = "qmake -r PREFIX=$out"; - fixupPhase = "wrapQtProgram $out/bin/cutegram"; + fixupPhase = '' + wrapQtProgram $out/bin/cutegram \ + --prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0" + ''; meta = with stdenv.lib; { version = "2.7.1"; @@ -30,8 +37,7 @@ stdenv.mkDerivation rec { homepage = "http://aseman.co/en/products/cutegram/"; license = licenses.gpl3; maintainers = with maintainers; [ profpatsch AndersonTorres ]; + platforms = platforms.linux; }; } #TODO: appindicator, for system tray plugin (by @profpatsch) - - diff --git a/pkgs/applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition/default.nix b/pkgs/applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition/default.nix index 957c59b88e5..206b2a07476 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { }; buildInputs = [ qtbase qtmultimedia qtquick1 ]; - enableParallelBuild = true; + enableParallelBuilding = true; patchPhase = '' substituteInPlace libqtelegram-ae.pro --replace "/libqtelegram-ae" "" @@ -27,8 +27,9 @@ stdenv.mkDerivation rec { version = "6.1"; description = "A fork of libqtelegram by Aseman, using qmake"; homepage = src.meta.homepage; - license = stdenv.lib.licenses.gpl3; + license = licenses.gpl3; maintainers = [ maintainers.profpatsch ]; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix b/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix index aa442cbe8b2..372531f658e 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { }; propagatedBuildInputs = [ qtbase qtmultimedia qtquick1 libqtelegram-aseman-edition ]; - enableParallelBuild = true; + enableParallelBuilding = true; patchPhase = '' substituteInPlace telegramqml.pro --replace "/\$\$LIB_PATH" "" @@ -28,8 +28,9 @@ stdenv.mkDerivation rec { version = "0.9.2"; description = "Telegram API tools for QtQml and Qml"; homepage = src.meta.homepage; - license = stdenv.lib.licenses.gpl3; + license = licenses.gpl3; maintainers = [ maintainers.profpatsch ]; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/networking/instant-messengers/utox/default.nix b/pkgs/applications/networking/instant-messengers/utox/default.nix index 55ec1560c5e..0ae0cca5991 100644 --- a/pkgs/applications/networking/instant-messengers/utox/default.nix +++ b/pkgs/applications/networking/instant-messengers/utox/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { name = "utox-${version}"; - version = "0.5.0"; + version = "0.7.0"; src = fetchFromGitHub { owner = "GrayHatter"; repo = "uTox"; rev = "v${version}"; - sha256 = "074wa0np8hyqwy9xqgyyds94pdfv2i1jh019m98d8apxc5vn36wk"; + sha256 = "1md8fw6zqd3giskd89i56dgrsl83vn27xwr8k22263wkj1fxxw4c"; }; buildInputs = [ pkgconfig libtoxcore-dev dbus libvpx libX11 openal freetype diff --git a/pkgs/applications/networking/instant-messengers/vacuum/default.nix b/pkgs/applications/networking/instant-messengers/vacuum/default.nix index 205c21adab4..d7798273e7c 100644 --- a/pkgs/applications/networking/instant-messengers/vacuum/default.nix +++ b/pkgs/applications/networking/instant-messengers/vacuum/default.nix @@ -1,56 +1,30 @@ -x@{builderDefsPackage +{ stdenv, lib, fetchurl , qt4, openssl , xproto, libX11, libXScrnSaver, scrnsaverproto - , xz - , ...}: -builderDefsPackage -(a : -let - helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++ - []; + , xz, zlib +}: +stdenv.mkDerivation rec { + name = "vacuum-im-${version}"; + version = "1.2.4"; - buildInputs = map (n: builtins.getAttr n x) - (builtins.attrNames (builtins.removeAttrs x helperArgNames)); - sourceInfo = rec { - version="1.2.4"; - baseName="vacuum-im"; - name="${baseName}-${version}"; - url="https://googledrive.com/host/0B7A5K_290X8-d1hjQmJaSGZmTTA/vacuum-1.2.4.tar.gz"; - sha256="10qxpfbbaagqcalhk0nagvi5irbbz5hk31w19lba8hxf6pfylrhf"; - }; -in -rec { - src = a.fetchurl { - url = sourceInfo.url; - sha256 = sourceInfo.sha256; + src = fetchurl { + url = "https://googledrive.com/host/0B7A5K_290X8-d1hjQmJaSGZmTTA/vacuum-${version}.tar.gz"; + sha256 = "10qxpfbbaagqcalhk0nagvi5irbbz5hk31w19lba8hxf6pfylrhf"; }; - inherit (sourceInfo) name version; - inherit buildInputs; + buildInputs = [ + qt4 openssl xproto libX11 libXScrnSaver scrnsaverproto xz zlib + ]; - /* doConfigure should be removed if not needed */ - phaseNames = ["addInputs" "doQMake" "doMakeInstall"]; - - doQMake = a.fullDepEntry ('' + configurePhase = '' qmake INSTALL_PREFIX=$out -recursive vacuum.pro - '') ["doUnpack" "addInputs"]; - - meta = { + ''; + + meta = with stdenv.lib; { description = "An XMPP client fully composed of plugins"; - maintainers = with a.lib.maintainers; - [ - raskin - ]; - platforms = with a.lib.platforms; - linux; - license = with a.lib.licenses; - gpl3; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; + license = licenses.gpl3; homepage = "http://code.google.com/p/vacuum-im/"; }; - passthru = { - updateInfo = { - downloadPage = "http://code.google.com/p/vacuum-im/downloads/list?can=2&q=&colspec=Filename"; - }; - }; -}) x - +} diff --git a/pkgs/applications/networking/irc/communi/default.nix b/pkgs/applications/networking/irc/communi/default.nix index 05a59719902..312fd8df908 100644 --- a/pkgs/applications/networking/irc/communi/default.nix +++ b/pkgs/applications/networking/irc/communi/default.nix @@ -1,5 +1,4 @@ -{ fetchgit, libcommuni, qt5, stdenv -}: +{ fetchgit, libcommuni, makeQtWrapper, qt5, stdenv }: stdenv.mkDerivation rec { name = "communi-${version}"; @@ -11,20 +10,34 @@ stdenv.mkDerivation rec { sha256 = "0gk6gck09zb44qfsal7bs4ln2vl9s9x3vfxh7jvfc7mmf7l3sspd"; }; + nativeBuildInputs = [ makeQtWrapper ]; + buildInputs = [ libcommuni qt5.qtbase ]; enableParallelBuild = true; configurePhase = '' export QMAKEFEATURES=${libcommuni}/features - qmake -r COMMUNI_INSTALL_PREFIX=$out + qmake -r \ + COMMUNI_INSTALL_PREFIX=$out \ + COMMUNI_INSTALL_BINS=$out/bin \ + COMMUNI_INSTALL_PLUGINS=$out/lib/communi/plugins \ + COMMUNI_INSTALL_ICONS=$out/share/icons/hicolor \ + COMMUNI_INSTALL_DESKTOP=$out/share/applications \ + COMMUNI_INSTALL_THEMES=$out/share/communi/themes + ''; + + postInstall = '' + wrapQtProgram "$out/bin/communi" + substituteInPlace "$out/share/applications/communi.desktop" \ + --replace "/usr/bin" "$out/bin" ''; meta = with stdenv.lib; { description = "A simple and elegant cross-platform IRC client"; homepage = https://github.com/communi/communi-desktop; license = licenses.bsd3; - platforms = platforms.all; maintainers = with maintainers; [ hrdinka ]; + platforms = platforms.all; }; } diff --git a/pkgs/applications/networking/irc/quassel/default.nix b/pkgs/applications/networking/irc/quassel/default.nix index 9c77e6b133f..f48309d0b04 100644 --- a/pkgs/applications/networking/irc/quassel/default.nix +++ b/pkgs/applications/networking/irc/quassel/default.nix @@ -5,6 +5,7 @@ , tag ? "" # tag added to the package name , withKDE ? stdenv.isLinux # enable KDE integration , kdelibs ? null +, static ? false # link statically , stdenv, fetchurl, cmake, makeWrapper, qt, automoc4, phonon, dconf, qca2 }: @@ -21,17 +22,13 @@ assert !buildClient -> !withKDE; # KDE is used by the client only let edf = flag: feature: [("-D" + feature + (if flag then "=ON" else "=OFF"))]; + source = import ./source.nix { inherit fetchurl; }; in with stdenv; mkDerivation rec { + inherit (source) src version; - version = "0.12.2"; name = "quassel${tag}-${version}"; - src = fetchurl { - url = "http://quassel-irc.org/pub/quassel-${version}.tar.bz2"; - sha256 = "15vqjiw38mifvnc95bhvy0zl23xxldkwg2byx9xqbyw8rfgggmkb"; - }; - enableParallelBuilding = true; buildInputs = @@ -42,8 +39,8 @@ in with stdenv; mkDerivation rec { NIX_CFLAGS_COMPILE = "-fPIC"; cmakeFlags = [ - "-DEMBED_DATA=OFF" - "-DSTATIC=OFF" ] + "-DEMBED_DATA=OFF" ] + ++ edf static "STATIC" ++ edf monolithic "WANT_MONO" ++ edf daemon "WANT_CORE" ++ edf client "WANT_QTCLIENT" diff --git a/pkgs/applications/networking/irc/quassel/qt-5.nix b/pkgs/applications/networking/irc/quassel/qt-5.nix index b5075fe2075..c80624ac051 100644 --- a/pkgs/applications/networking/irc/quassel/qt-5.nix +++ b/pkgs/applications/networking/irc/quassel/qt-5.nix @@ -3,6 +3,7 @@ , client ? false # build Quassel client , previews ? false # enable webpage previews on hovering over URLs , tag ? "" # tag added to the package name +, static ? false # link statically , stdenv, fetchurl, cmake, makeWrapper, dconf , qtbase, qtscript, qtwebkit @@ -32,25 +33,13 @@ assert !buildClient -> !withKDE; # KDE is used by the client only let edf = flag: feature: [("-D" + feature + (if flag then "=ON" else "=OFF"))]; + source = import ./source.nix { inherit fetchurl; }; in with stdenv; mkDerivation rec { + inherit (source) src version; - version = "0.12.2"; name = "quassel${tag}-${version}"; - src = fetchurl { - url = "http://quassel-irc.org/pub/quassel-${version}.tar.bz2"; - sha256 = "15vqjiw38mifvnc95bhvy0zl23xxldkwg2byx9xqbyw8rfgggmkb"; - }; - - patches = [ - # fix build with Qt 5.5 - (fetchurl { - url = "https://github.com/quassel/quassel/commit/078477395aaec1edee90922037ebc8a36b072d90.patch"; - sha256 = "1njwnay7pjjw0g7m0x5cwvck8xcznc7jbdfyhbrd121nc7jgpbc5"; - }) - ]; - enableParallelBuilding = true; buildInputs = @@ -66,9 +55,9 @@ in with stdenv; mkDerivation rec { cmakeFlags = [ "-DEMBED_DATA=OFF" - "-DSTATIC=OFF" "-DUSE_QT5=ON" ] + ++ edf static "STATIC" ++ edf monolithic "WANT_MONO" ++ edf daemon "WANT_CORE" ++ edf client "WANT_QTCLIENT" diff --git a/pkgs/applications/networking/irc/quassel/source.nix b/pkgs/applications/networking/irc/quassel/source.nix new file mode 100644 index 00000000000..17d12b575d7 --- /dev/null +++ b/pkgs/applications/networking/irc/quassel/source.nix @@ -0,0 +1,9 @@ +{ fetchurl }: + +rec { + version = "0.12.3"; + src = fetchurl { + url = "http://quassel-irc.org/pub/quassel-${version}.tar.bz2"; + sha256 = "0d6lwf6qblj1ia5j9mjy112zrmpbbg9mmxgscbgxiqychldyjgjd"; + }; +} diff --git a/pkgs/applications/networking/mailreaders/thunderbird/default.nix b/pkgs/applications/networking/mailreaders/thunderbird/default.nix index ce1335aaff2..ef9ec03ecd9 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird/default.nix +++ b/pkgs/applications/networking/mailreaders/thunderbird/default.nix @@ -13,7 +13,7 @@ enableOfficialBranding ? false }: -let version = "38.6.0"; in +let version = "38.7.0"; in let verName = "${version}"; in stdenv.mkDerivation rec { @@ -21,9 +21,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://archive.mozilla.org/pub/thunderbird/releases/${verName}/source/thunderbird-${verName}.source.tar.bz2"; - - # https://archive.mozilla.org/pub/thunderbird/releases/${verName}/SHA1SUMS - sha1 = "7c8ef066d6b6516fddbb654b38353f894f85d469"; + sha256 = "1wbkj8a0p62mcbxlq8yyzrx51xi65qm8f2ccqiv5pb6qd51b5d0v"; }; buildInputs = # from firefox30Pkgs.xulrunner, but without gstreamer and libvpx diff --git a/pkgs/applications/networking/p2p/transmission/default.nix b/pkgs/applications/networking/p2p/transmission/default.nix index dbd23195a1c..24b7a50b032 100644 --- a/pkgs/applications/networking/p2p/transmission/default.nix +++ b/pkgs/applications/networking/p2p/transmission/default.nix @@ -4,7 +4,7 @@ }: let - version = "2.90"; + version = "2.92"; in with { inherit (stdenv.lib) optional optionals optionalString; }; @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "https://transmission.cachefly.net/transmission-${version}.tar.xz"; - sha256 = "1lig7y9fhmv2ajgq1isj9wqgpcgignzlczs3dy95ahb8h6pqrzv9"; + sha256 = "0pykmhi7pdmzq47glbj8i2im6iarp4wnj4l1pyvsrnba61f0939s"; }; buildInputs = [ pkgconfig intltool file openssl curl libevent inotify-tools zlib ] @@ -26,6 +26,7 @@ stdenv.mkDerivation rec { ''; configureFlags = [ "--with-systemd-daemon" ] + ++ [ "--enable-cli" ] ++ optional enableGTK3 "--with-gtk"; preFixup = optionalString enableGTK3 /* gsettings schemas for file dialogues */ '' diff --git a/pkgs/applications/office/calligra/default.nix b/pkgs/applications/office/calligra/default.nix index 7c2131d2fcb..1ced6f3d02d 100644 --- a/pkgs/applications/office/calligra/default.nix +++ b/pkgs/applications/office/calligra/default.nix @@ -9,11 +9,11 @@ }: stdenv.mkDerivation rec { - name = "calligra-2.9.8"; + name = "calligra-2.9.11"; src = fetchurl { url = "mirror://kde/stable/${name}/${name}.tar.xz"; - sha256 = "08a5k8gjmzp9yzq46xy0p1sw7dpvxmxh8zz6dyj8q1dq29719kkc"; + sha256 = "02gaahp7a7m53n0hvrp3868s8w37b457isxir0z7b4mwhw7jv3di"; }; nativeBuildInputs = [ automoc4 cmake perl pkgconfig makeWrapper ]; @@ -48,7 +48,7 @@ stdenv.mkDerivation rec { vector graphics. ''; homepage = http://calligra.org; - maintainers = with stdenv.lib.maintainers; [ urkud phreedom ]; + maintainers = with stdenv.lib.maintainers; [ urkud phreedom ebzzry ]; inherit (kdelibs.meta) platforms; }; } diff --git a/pkgs/applications/office/scribus/default.nix b/pkgs/applications/office/scribus/default.nix index 720a07afcfa..d592e149588 100644 --- a/pkgs/applications/office/scribus/default.nix +++ b/pkgs/applications/office/scribus/default.nix @@ -3,11 +3,11 @@ , zlib, libpng, xorg, cairo, podofo, aspell, boost, cmake }: stdenv.mkDerivation rec { - name = "scribus-1.4.5"; + name = "scribus-1.4.6"; src = fetchurl { - url = "mirror://sourceforge/scribus/scribus/${name}.tar.bz2"; - sha256 = "1644ym79q7a1m5xf3xl1wf4kdk870np911jmpqdv2syjc42nyw4z"; + url = "mirror://sourceforge/scribus/scribus/${name}.tar.xz"; + sha256 = "16m1g38dig37ag0zxjx3wk1rxx9xxzjqfc7prj89rp4y1m83dqr1"; }; enableParallelBuilding = true; diff --git a/pkgs/applications/office/zim/default.nix b/pkgs/applications/office/zim/default.nix index 4d2396e8a11..9014e388468 100644 --- a/pkgs/applications/office/zim/default.nix +++ b/pkgs/applications/office/zim/default.nix @@ -9,19 +9,18 @@ buildPythonApplication rec { name = "zim-${version}"; - version = "0.63"; + version = "0.65"; namePrefix = ""; src = fetchurl { url = "http://zim-wiki.org/downloads/${name}.tar.gz"; - sha256 = "077vf4h0hjmbk8bxj9l0z9rxcb3dw642n32lvfn6vjdna1qm910m"; + sha256 = "15pdq4fxag85qjsrdmmssiq85qsk5vnbp8mrqnpvx8lm8crz6hjl"; }; propagatedBuildInputs = [ pythonPackages.sqlite3 pygtk pythonPackages.pyxdg pygobject ]; preBuild = '' - mkdir -p /tmp/home - export HOME="/tmp/home" + export HOME=$TMP sed -i '/zim_install_class,/d' setup.py ''; @@ -30,8 +29,14 @@ buildPythonApplication rec { preFixup = '' export makeWrapperArgs="--prefix XDG_DATA_DIRS : $out/share --argv0 $out/bin/.zim-wrapped" ''; - # Testing fails. - doCheck = false; + + postFixup = '' + wrapPythonPrograms + substituteInPlace $out/bin/.zim-wrapped \ + --replace "sys.argv[0] = 'zim'" "sys.argv[0] = '$out/bin/zim'" + ''; + + doCheck = true; meta = { description = "A desktop wiki"; diff --git a/pkgs/applications/office/zotero/default.nix b/pkgs/applications/office/zotero/default.nix index 5939478d695..5a21754b44e 100644 --- a/pkgs/applications/office/zotero/default.nix +++ b/pkgs/applications/office/zotero/default.nix @@ -1,21 +1,13 @@ -{ stdenv, fetchurl, fetchpatch, bash, firefox, perl, unzipNLS, xorg }: +{ stdenv, fetchurl, bash, firefox, perl, unzipNLS, xorg }: let xpi = fetchurl { url = "https://download.zotero.org/extension/zotero-${version}.xpi"; - sha256 = "02h2ja08v8as4fawj683rh5rmxsjf5d0qmvqa77i176nm20y5s7s"; + sha256 = "1dyf578yfj3xr9kkhmsvbkvraw2arghmh67ksi5c8qlxczx5i1xy"; }; - firefox' = stdenv.lib.overrideDerivation (firefox) (attrs: { - patches = [ (fetchpatch { - url = "https://hg.mozilla.org/releases/mozilla-beta/raw-rev/0558da46f20c"; - sha256 = "08ibp7hny78x8ywfvrh56z90kf8fjpf04mibdlrwkw4f1vgm3fc3"; - name = "fix-external-xpi-loader"; - }) ]; - }); - - version = "4.0.28"; + version = "4.0.29"; in stdenv.mkDerivation { @@ -23,15 +15,13 @@ stdenv.mkDerivation { inherit version; src = fetchurl { - url = "https://github.com/zotero/zotero-standalone-build/archive/4.0.28.8.tar.gz"; - sha256 = "ab1fd5dde9bd2a6b6d31cc9a53183a04de3698f1273a943ef31ecc4c42808a68"; + url = "https://github.com/zotero/zotero-standalone-build/archive/4.0.29.2.tar.gz"; + sha256 = "0pfip6s5dawp7wp8r5czvzlnxvvdwjja64g71h9dxyxrh49v2mxa"; }; nativeBuildInputs = [ perl unzipNLS ]; - inherit bash; - - firefox = firefox'; + inherit bash firefox; phases = "unpackPhase installPhase fixupPhase"; diff --git a/pkgs/applications/science/logic/acgtk/default.nix b/pkgs/applications/science/logic/acgtk/default.nix index 0fd90ac13b6..fa890c03b6f 100644 --- a/pkgs/applications/science/logic/acgtk/default.nix +++ b/pkgs/applications/science/logic/acgtk/default.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation { homepage = "http://www.loria.fr/equipes/calligramme/acg"; description = "A toolkit for developing ACG signatures and lexicon"; license = licenses.cecill20; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ maintainers.jirkamarsik ]; }; } diff --git a/pkgs/applications/science/math/lp_solve/default.nix b/pkgs/applications/science/math/lp_solve/default.nix index 7726793fcaf..b92691cb611 100644 --- a/pkgs/applications/science/math/lp_solve/default.nix +++ b/pkgs/applications/science/math/lp_solve/default.nix @@ -37,6 +37,7 @@ stdenv.mkDerivation rec { license = licenses.gpl2Plus; maintainers = with maintainers; [ smironov ]; platforms = platforms.unix; + broken = true; }; } diff --git a/pkgs/applications/science/math/scotch/default.nix b/pkgs/applications/science/math/scotch/default.nix new file mode 100644 index 00000000000..2e928bc8f34 --- /dev/null +++ b/pkgs/applications/science/math/scotch/default.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchurl, bison, openmpi, flex, zlib}: + +stdenv.mkDerivation rec { + version = "6.0.4"; + name = "scotch-${version}"; + src_name = "scotch_${version}"; + + buildInputs = [ bison openmpi flex zlib ]; + + src = fetchurl { + url = "http://gforge.inria.fr/frs/download.php/file/34618/${src_name}.tar.gz"; + sha256 = "f53f4d71a8345ba15e2dd4e102a35fd83915abf50ea73e1bf6efe1bc2b4220c7"; + }; + + sourceRoot = "${src_name}/src"; + + preConfigure = '' + ln -s Make.inc/Makefile.inc.x86-64_pc_linux2 Makefile.inc + ''; + + buildFlags = [ "scotch ptscotch" ]; + installFlags = [ "prefix=\${out}" ]; + + meta = { + description = "Graph and mesh/hypergraph partitioning, graph clustering, and sparse matrix ordering"; + longDescription = '' + Scotch is a software package for graph and mesh/hypergraph partitioning, graph clustering, + and sparse matrix ordering. + ''; + homepage = "http://www.labri.fr/perso/pelegrin/scotch"; + license = stdenv.lib.licenses.cecill-c; + maintainers = [ stdenv.lib.maintainers.bzizou ]; + platforms = stdenv.lib.platforms.linux; + }; +} + diff --git a/pkgs/applications/science/robotics/qgroundcontrol/0001-fix-gcc-cmath-namespace-issues.patch b/pkgs/applications/science/robotics/qgroundcontrol/0001-fix-gcc-cmath-namespace-issues.patch new file mode 100644 index 00000000000..e6c9ca38a98 --- /dev/null +++ b/pkgs/applications/science/robotics/qgroundcontrol/0001-fix-gcc-cmath-namespace-issues.patch @@ -0,0 +1,140 @@ +From fffc383c10c7c194e427d78c83802c3b910fa1c2 Mon Sep 17 00:00:00 2001 +From: Patrick Callahan +Date: Thu, 24 Mar 2016 18:17:57 -0700 +Subject: [PATCH] fix gcc cmath namespace issues + +--- + src/Vehicle/Vehicle.cc | 6 +++--- + src/comm/QGCFlightGearLink.cc | 4 ++-- + src/comm/QGCJSBSimLink.cc | 4 ++-- + src/uas/UAS.cc | 8 ++++---- + src/ui/QGCDataPlot2D.cc | 4 ++-- + 5 files changed, 13 insertions(+), 13 deletions(-) + +diff --git a/src/Vehicle/Vehicle.cc b/src/Vehicle/Vehicle.cc +index a0d3605..205b1de 100644 +--- a/src/Vehicle/Vehicle.cc ++++ b/src/Vehicle/Vehicle.cc +@@ -638,17 +638,17 @@ void Vehicle::setLongitude(double longitude){ + + void Vehicle::_updateAttitude(UASInterface*, double roll, double pitch, double yaw, quint64) + { +- if (isinf(roll)) { ++ if (std::isinf(roll)) { + _rollFact.setRawValue(0); + } else { + _rollFact.setRawValue(roll * (180.0 / M_PI)); + } +- if (isinf(pitch)) { ++ if (std::isinf(pitch)) { + _pitchFact.setRawValue(0); + } else { + _pitchFact.setRawValue(pitch * (180.0 / M_PI)); + } +- if (isinf(yaw)) { ++ if (std::isinf(yaw)) { + _headingFact.setRawValue(0); + } else { + yaw = yaw * (180.0 / M_PI); +diff --git a/src/comm/QGCFlightGearLink.cc b/src/comm/QGCFlightGearLink.cc +index 2a520fb..886aecf 100644 +--- a/src/comm/QGCFlightGearLink.cc ++++ b/src/comm/QGCFlightGearLink.cc +@@ -230,7 +230,7 @@ void QGCFlightGearLink::updateControls(quint64 time, float rollAilerons, float p + Q_UNUSED(systemMode); + Q_UNUSED(navMode); + +- if(!isnan(rollAilerons) && !isnan(pitchElevator) && !isnan(yawRudder) && !isnan(throttle)) ++ if(!std::isnan(rollAilerons) && !std::isnan(pitchElevator) && !std::isnan(yawRudder) && !std::isnan(throttle)) + { + QString state("%1\t%2\t%3\t%4\t%5\n"); + state = state.arg(rollAilerons).arg(pitchElevator).arg(yawRudder).arg(true).arg(throttle); +@@ -240,7 +240,7 @@ void QGCFlightGearLink::updateControls(quint64 time, float rollAilerons, float p + } + else + { +- qDebug() << "HIL: Got NaN values from the hardware: isnan output: roll: " << isnan(rollAilerons) << ", pitch: " << isnan(pitchElevator) << ", yaw: " << isnan(yawRudder) << ", throttle: " << isnan(throttle); ++ qDebug() << "HIL: Got NaN values from the hardware: std::isnan output: roll: " << std::isnan(rollAilerons) << ", pitch: " << std::isnan(pitchElevator) << ", yaw: " << std::isnan(yawRudder) << ", throttle: " << std::isnan(throttle); + } + } + +diff --git a/src/comm/QGCJSBSimLink.cc b/src/comm/QGCJSBSimLink.cc +index 1210621..89db371 100644 +--- a/src/comm/QGCJSBSimLink.cc ++++ b/src/comm/QGCJSBSimLink.cc +@@ -242,7 +242,7 @@ void QGCJSBSimLink::updateControls(quint64 time, float rollAilerons, float pitch + Q_UNUSED(systemMode); + Q_UNUSED(navMode); + +- if(!isnan(rollAilerons) && !isnan(pitchElevator) && !isnan(yawRudder) && !isnan(throttle)) ++ if(!std::isnan(rollAilerons) && !std::isnan(pitchElevator) && !std::isnan(yawRudder) && !std::isnan(throttle)) + { + QString state("%1\t%2\t%3\t%4\t%5\n"); + state = state.arg(rollAilerons).arg(pitchElevator).arg(yawRudder).arg(true).arg(throttle); +@@ -250,7 +250,7 @@ void QGCJSBSimLink::updateControls(quint64 time, float rollAilerons, float pitch + } + else + { +- qDebug() << "HIL: Got NaN values from the hardware: isnan output: roll: " << isnan(rollAilerons) << ", pitch: " << isnan(pitchElevator) << ", yaw: " << isnan(yawRudder) << ", throttle: " << isnan(throttle); ++ qDebug() << "HIL: Got NaN values from the hardware: isnan output: roll: " << std::isnan(rollAilerons) << ", pitch: " << std::isnan(pitchElevator) << ", yaw: " << std::isnan(yawRudder) << ", throttle: " << std::isnan(throttle); + } + //qDebug() << "Updated controls" << state; + } +diff --git a/src/uas/UAS.cc b/src/uas/UAS.cc +index 4d5c1c2..ac88852 100644 +--- a/src/uas/UAS.cc ++++ b/src/uas/UAS.cc +@@ -558,7 +558,7 @@ void UAS::receiveMessage(mavlink_message_t message) + + setAltitudeAMSL(hud.alt); + setGroundSpeed(hud.groundspeed); +- if (!isnan(hud.airspeed)) ++ if (!std::isnan(hud.airspeed)) + setAirSpeed(hud.airspeed); + speedZ = -hud.climb; + emit altitudeChanged(this, altitudeAMSL, altitudeRelative, -speedZ, time); +@@ -654,7 +654,7 @@ void UAS::receiveMessage(mavlink_message_t message) + + float vel = pos.vel/100.0f; + // Smaller than threshold and not NaN +- if ((vel < 1000000) && !isnan(vel) && !isinf(vel)) { ++ if ((vel < 1000000) && !std::isnan(vel) && !std::isinf(vel)) { + setGroundSpeed(vel); + emit speedChanged(this, groundSpeed, airSpeed, time); + } else { +@@ -1439,8 +1439,8 @@ void UAS::setExternalControlSetpoint(float roll, float pitch, float yaw, float t + if (countSinceLastTransmission++ >= 5) { + sendCommand = true; + countSinceLastTransmission = 0; +- } else if ((!isnan(roll) && roll != manualRollAngle) || (!isnan(pitch) && pitch != manualPitchAngle) || +- (!isnan(yaw) && yaw != manualYawAngle) || (!isnan(thrust) && thrust != manualThrust) || ++ } else if ((!std::isnan(roll) && roll != manualRollAngle) || (!std::isnan(pitch) && pitch != manualPitchAngle) || ++ (!std::isnan(yaw) && yaw != manualYawAngle) || (!std::isnan(thrust) && thrust != manualThrust) || + buttons != manualButtons) { + sendCommand = true; + +diff --git a/src/ui/QGCDataPlot2D.cc b/src/ui/QGCDataPlot2D.cc +index 2e530b2..9d5a774 100644 +--- a/src/ui/QGCDataPlot2D.cc ++++ b/src/ui/QGCDataPlot2D.cc +@@ -535,7 +535,7 @@ void QGCDataPlot2D::loadCsvLog(QString file, QString xAxisName, QString yAxisFil + { + bool okx = true; + x = text.toDouble(&okx); +- if (okx && !isnan(x) && !isinf(x)) ++ if (okx && !std::isnan(x) && !std::isinf(x)) + { + headerfound = true; + } +@@ -561,7 +561,7 @@ void QGCDataPlot2D::loadCsvLog(QString file, QString xAxisName, QString yAxisFil + y = text.toDouble(&oky); + // Only INF is really an issue for the plot + // NaN is fine +- if (oky && !isnan(y) && !isinf(y) && text.length() > 0 && text != " " && text != "\n" && text != "\r" && text != "\t") ++ if (oky && !std::isnan(y) && !std::isinf(y) && text.length() > 0 && text != " " && text != "\n" && text != "\r" && text != "\t") + { + // Only append definitely valid values + xValues.value(curveName)->append(x); +-- +2.7.4 + diff --git a/pkgs/applications/science/robotics/qgroundcontrol/default.nix b/pkgs/applications/science/robotics/qgroundcontrol/default.nix new file mode 100644 index 00000000000..47a6ee44952 --- /dev/null +++ b/pkgs/applications/science/robotics/qgroundcontrol/default.nix @@ -0,0 +1,98 @@ +{ stdenv, fetchgit, git, espeak, SDL, udev, doxygen, cmake, overrideCC#, gcc48 + , qtbase, qtlocation, qtserialport, qtdeclarative, qtconnectivity, qtxmlpatterns + , qtsvg, qtquick1, qtquickcontrols, qtgraphicaleffects + , makeQtWrapper, lndir + , gst_all_1, qt_gstreamer1, pkgconfig, glibc + , version ? "2.9.4" +}: + +stdenv.mkDerivation rec { + name = "qgroundcontrol-${version}"; + buildInputs = [ + SDL udev doxygen git + ] ++ gstInputs; + + qtInputs = [ + qtbase qtlocation qtserialport qtdeclarative qtconnectivity qtxmlpatterns qtsvg + qtquick1 qtquickcontrols qtgraphicaleffects + ]; + + gstInputs = with gst_all_1; [ + gstreamer gst-plugins-base + ]; + + enableParallelBuilding = true; + nativeBuildInputs = [ + pkgconfig makeQtWrapper + ] ++ qtInputs; + + patches = [ ./0001-fix-gcc-cmath-namespace-issues.patch ]; + + preConfigure = '' + git submodule init + git submodule update + + ''; + + configurePhase = '' + mkdir build + pushd build + + qmake ../qgroundcontrol.pro + + popd + ''; + + preBuild = "pushd build/"; + postBuild = "popd"; + + installPhase = '' + mkdir -p $out/share/applications + cp -v qgroundcontrol.desktop $out/share/applications + + mkdir -p $out/bin + cp -v build/release/qgroundcontrol "$out/bin/" + + mkdir -p $out/share/qgroundcontrol + cp -rv resources/ $out/share/qgroundcontrol + + mkdir -p $out/share/pixmaps + cp -v resources/icons/qgroundcontrol.png $out/share/pixmaps + + # we need to link to our Qt deps in our own output if we want + # this package to work without being installed as a system pkg + mkdir -p $out/lib/qt5 $out/etc/xdg + for pkg in $qtInputs; do + if [[ -d $pkg/lib/qt5 ]]; then + for dir in lib/qt5 share etc/xdg; do + if [[ -d $pkg/$dir ]]; then + ${lndir}/bin/lndir "$pkg/$dir" "$out/$dir" + fi + done + fi + done + ''; + + + postInstall = '' + wrapQtProgram "$out/bin/qgroundcontrol" \ + --prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH" + ''; + + + # TODO: package mavlink so we can build from a normal source tarball + src = fetchgit { + url = "https://github.com/mavlink/qgroundcontrol.git"; + rev = "refs/tags/v${version}"; + sha256 = "0rwn2ddlar58ydzdykvnab1anr4xzvb9x0sxx5rs037i49f6sqga"; + fetchSubmodules = true; + }; + + meta = { + description = "provides full ground station support and configuration for the PX4 and APM Flight Stacks"; + homepage = http://qgroundcontrol.org/; + license = stdenv.lib.licenses.gpl3Plus; + platforms = with stdenv.lib.platforms; linux; + maintainers = with stdenv.lib.maintainers; [ pxc ]; + }; +} diff --git a/pkgs/applications/search/catfish/default.nix b/pkgs/applications/search/catfish/default.nix new file mode 100644 index 00000000000..795d804038d --- /dev/null +++ b/pkgs/applications/search/catfish/default.nix @@ -0,0 +1,60 @@ +{ stdenv, fetchurl, file, which, intltool, findutils, xdg_utils, pycairo, + gnome3, pythonPackages, wrapGAppsHook }: + +pythonPackages.buildPythonApplication rec { + majorver = "1.4"; + minorver = "1"; + version = "${majorver}.${minorver}"; + name = "catfish-${version}"; + + src = fetchurl { + url = "https://launchpad.net/catfish-search/${majorver}/${version}/+download/${name}.tar.bz2"; + sha256 = "0dc9xq1l1w22xk1hg63mgwr0920jqxrwfzmkhif01yms1m7vfdv8"; + }; + + nativeBuildInputs = [ + pythonPackages.distutils_extra + file + which + intltool + wrapGAppsHook + ]; + + buildInputs = [ + gnome3.gtk + gnome3.dconf + pythonPackages.pyxdg + pythonPackages.ptyprocess + pycairo + ]; + + propagatedBuildInputs = [ + pythonPackages.pygobject3 + pythonPackages.pexpect + xdg_utils + findutils + ]; + + preFixup = '' + for f in \ + "$out/${pythonPackages.python.sitePackages}/catfish_lib/catfishconfig.py" \ + "$out/share/applications/catfish.desktop" + do + substituteInPlace $f --replace "${pythonPackages.python}" "$out" + done + ''; + + meta = with stdenv.lib; { + description = "A handy file search tool"; + longDescription = '' + Catfish is a handy file searching tool. The interface is + intentionally lightweight and simple, using only GTK+3. + You can configure it to your needs by using several command line + options. + ''; + homepage = https://launchpad.net/catfish-search; + license = licenses.gpl2Plus; + platforms = platforms.unix; + maintainers = [ maintainers.romildo ]; + }; +} diff --git a/pkgs/applications/search/grepm/default.nix b/pkgs/applications/search/grepm/default.nix new file mode 100644 index 00000000000..99c149b79d9 --- /dev/null +++ b/pkgs/applications/search/grepm/default.nix @@ -0,0 +1,33 @@ +{ stdenv, fetchurl, perlPackages, mutt }: + +stdenv.mkDerivation rec { + name = "grepm-${version}"; + version = "0.6"; + + src = fetchurl { + url = "http://www.barsnick.net/sw/grepm"; + sha256 = "0ppprhfw06779hz1b10qvq62gsw73shccsav982dyi6xmqb6jqji"; + }; + + phases = [ "installPhase" ]; + + buildInputs = [ perlPackages.grepmail mutt ]; + + installPhase = '' + mkdir -p $out/bin + cp -a $src $out/bin/grepm + chmod +x $out/bin/grepm + sed -i \ + -e "s:^grepmail:${perlPackages.grepmail}/bin/grepmail:" \ + -e "s:^\( *\)mutt:\1${mutt}/bin/mutt:" \ + $out/bin/grepm + ''; + + meta = with stdenv.lib; { + description = "Wrapper for grepmail utilizing mutt"; + homepage = http://www.barsnick.net/sw/grepm.html; + license = licenses.free; + platforms = platforms.unix; + maintainers = [ maintainers.romildo ]; + }; +} diff --git a/pkgs/applications/version-management/git-and-tools/git/default.nix b/pkgs/applications/version-management/git-and-tools/git/default.nix index 2878fec3c09..5083c73fb14 100644 --- a/pkgs/applications/version-management/git-and-tools/git/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git/default.nix @@ -9,7 +9,7 @@ }: let - version = "2.7.1"; + version = "2.7.4"; svn = subversionClient.override { perlBindings = true; }; in @@ -18,7 +18,7 @@ stdenv.mkDerivation { src = fetchurl { url = "https://www.kernel.org/pub/software/scm/git/git-${version}.tar.xz"; - sha256 = "1zkbdmh5gvxalr8l1cwnirqq5raijmp2d0s36s6qabrlvqvq2yj7"; + sha256 = "0ys55v2xrhzj74jrrqx75xpr458klnyxshh8d8swfpp0zgg79rfy"; }; patches = [ diff --git a/pkgs/applications/version-management/gitlab/default.nix b/pkgs/applications/version-management/gitlab/default.nix index 5f998367430..9a3ce8bed22 100644 --- a/pkgs/applications/version-management/gitlab/default.nix +++ b/pkgs/applications/version-management/gitlab/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, bundler, fetchFromGitHub, bundlerEnv, defaultGemConfig, libiconv, ruby +{ stdenv, lib, bundler, fetchFromGitHub, bundlerEnv, libiconv, ruby , tzdata, git, nodejs, procps }: @@ -24,7 +24,7 @@ in stdenv.mkDerivation rec { name = "gitlab-${version}"; - version = "8.5.1"; + version = "8.5.7"; buildInputs = [ ruby bundler tzdata git nodejs procps ]; @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { owner = "gitlabhq"; repo = "gitlabhq"; rev = "v${version}"; - sha256 = "1pn5r4axzjkgdjr59y3wgxsd2n83zfd5bry1g2w4c2qw0wcw7zqb"; + sha256 = "0n76dafndhp0rwnnvf12zby9xap5fhcplld86pq2wyvqabg4s9yj"; }; patches = [ diff --git a/pkgs/applications/version-management/gitlab/gemset.nix b/pkgs/applications/version-management/gitlab/gemset.nix index f63a356a1f6..b0665278183 100644 --- a/pkgs/applications/version-management/gitlab/gemset.nix +++ b/pkgs/applications/version-management/gitlab/gemset.nix @@ -975,10 +975,10 @@ dependencies = ["actionpack" "activesupport" "rake" "thor"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "07vmyrppa1x80whdjxhjij93qh9wvnmnxpsgn6fr9x2lqmzdyq5l"; + sha256 = "cfff64cbc0e409341003c35fa2e576e6a8cd8259a9894d09f15c6123be73f146"; type = "gem"; }; - version = "4.2.5.1"; + version = "4.2.5.2"; }; rails-html-sanitizer = { dependencies = ["loofah"]; @@ -1011,10 +1011,10 @@ dependencies = ["actionmailer" "actionpack" "actionview" "activejob" "activemodel" "activerecord" "activesupport" "railties" "sprockets-rails"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "03j6hfsqdl0bay59m4qjj2081s4vnhqagpl14qpm4wfrqrgpkcqb"; + sha256 = "aa93c1b9eb8b535eee58280504e30237f88217699fe9bb016e458e5122eefa2e"; type = "gem"; }; - version = "4.2.5.1"; + version = "4.2.5.2"; }; rack-test = { dependencies = ["rack"]; @@ -2906,10 +2906,10 @@ dependencies = ["i18n" "json" "minitest" "thread_safe" "tzinfo"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "16zgsvzwwf4hx3ywi2lz0dcm6d1ljsy6zr5k2q41amd7g62d886d"; + sha256 = "80ad345adf7e2b72c5d90753c0df91eacc34f4de02b34cfbf60bcf6c83483031"; type = "gem"; }; - version = "4.2.5.1"; + version = "4.2.5.2"; }; activerecord-session_store = { dependencies = ["actionpack" "activerecord" "railties"]; @@ -2940,55 +2940,55 @@ dependencies = ["activemodel" "activesupport" "arel"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1qj5ii36yn9kb0ljnl05xgpgvs7j9l20yg2phsssy0j31g1ymmc5"; + sha256 = "c2b1b6a4c6b8542c2464b457dce4cac4915efcbd3d5acfba57102e58474c33f2"; type = "gem"; }; - version = "4.2.5.1"; + version = "4.2.5.2"; }; activemodel = { dependencies = ["activesupport" "builder"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1zr83avw82infmzdzpilk6xpv5r9fr8pxgf5ql16b3vysp6va57p"; + sha256 = "09ce967be3086b34ae9fcbd919e714b2bdf72b8ab6e89b64aa74627267d93962"; type = "gem"; }; - version = "4.2.5.1"; + version = "4.2.5.2"; }; activejob = { dependencies = ["activesupport" "globalid"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1xfj7lwp1v3k9zscavzq87wbbn6y825angz4zpx4xsvlwf3dn7jc"; + sha256 = "cecb9bbc55292dee064ca479990c6e50fa3e2273aac6722ce058d18c22383026"; type = "gem"; }; - version = "4.2.5.1"; + version = "4.2.5.2"; }; actionview = { dependencies = ["activesupport" "builder" "erubis" "rails-dom-testing" "rails-html-sanitizer"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1dp1gqh0yxpyydza1ada0jjbpww97qhnkj9c9pm9rg5jbmpzg12m"; + sha256 = "e8ce01cf6cc822ec023a15a856a0fae0e078ebb232b95b722c23af4117d2d635"; type = "gem"; }; - version = "4.2.5.1"; + version = "4.2.5.2"; }; actionpack = { dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "13shdiwjfyqvfb11k0wqhcd7p7ix168fxd5l8m2pnn0bzskpswxv"; + sha256 = "a22e1818f06b707433c9a76867932929751b5d57edbeacc258635a7b23da12cf"; type = "gem"; }; - version = "4.2.5.1"; + version = "4.2.5.2"; }; actionmailer = { dependencies = ["actionpack" "actionview" "activejob" "mail" "rails-dom-testing"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1fxn8f53nnpgan5xl9i5lszl1m8yk4q6ayc33d9xfzsnvhavpl4n"; + sha256 = "8cee5f2f1e58c8ada17cca696377443c0cbc9675df2b7eef97a04318876484b5"; type = "gem"; }; - version = "4.2.5.1"; + version = "4.2.5.2"; }; ace-rails-ap = { source = { @@ -3014,4 +3014,4 @@ }; version = "2.3.2"; }; -} \ No newline at end of file +} diff --git a/pkgs/applications/version-management/smartgithg/default.nix b/pkgs/applications/version-management/smartgithg/default.nix index 420031a8101..292d6fc934b 100644 --- a/pkgs/applications/version-management/smartgithg/default.nix +++ b/pkgs/applications/version-management/smartgithg/default.nix @@ -8,11 +8,11 @@ stdenv.mkDerivation rec { name = "smartgithg-${version}"; - version = "7_1_0"; + version = "7_1_2"; src = fetchurl { - url = "http://www.syntevo.com/downloads/smartgit/smartgit-linux-${version}.tar.gz"; - sha256 = "0nlv2ipmv3z1j4642gfsrpsgc2y4mxngiz6mz3nidrbrkz0ylsvy"; + url = "http://www.syntevo.com/static/smart/download/smartgit/smartgit-linux-${version}.tar.gz"; + sha256 = "18jw4g2akhj6h9w8378kacv7ws35ndcnc3kkhci9iypwy432ak8d"; }; buildInputs = [ @@ -58,5 +58,6 @@ stdenv.mkDerivation rec { homepage = http://www.syntevo.com/smartgit/; license = licenses.unfree; platforms = platforms.linux; + maintainers = with stdenv.lib.maintainers; [ jraygauthier ]; }; } diff --git a/pkgs/applications/version-management/subversion/default.nix b/pkgs/applications/version-management/subversion/default.nix index 219dd0babb7..08b07b64b68 100644 --- a/pkgs/applications/version-management/subversion/default.nix +++ b/pkgs/applications/version-management/subversion/default.nix @@ -17,13 +17,13 @@ assert javahlBindings -> jdk != null && perl != null; let - common = { version, sha1 }: stdenv.mkDerivation (rec { + common = { version, sha256 }: stdenv.mkDerivation (rec { inherit version; name = "subversion-${version}"; src = fetchurl { url = "mirror://apache/subversion/${name}.tar.bz2"; - inherit sha1; + inherit sha256; }; buildInputs = [ zlib apr aprutil sqlite ] @@ -89,12 +89,12 @@ in { subversion18 = common { version = "1.8.15"; - sha1 = "680acf88f0db978fbbeac89ed63776d805b918ef"; + sha256 = "0b68rjy1sjd66nqcswrm1bhda3vk2ngkgs6drcanmzbcd3vs366g"; }; subversion19 = common { version = "1.9.3"; - sha1 = "27e8df191c92095f48314a415194ec37c682cbcf"; + sha256 = "8bbf6bb125003d88ee1c22935a36b7b1ab7d957e0c8b5fbfe5cb6310b6e86ae0"; }; } diff --git a/pkgs/applications/video/dvdbackup/default.nix b/pkgs/applications/video/dvdbackup/default.nix new file mode 100644 index 00000000000..cb2a69b53ca --- /dev/null +++ b/pkgs/applications/video/dvdbackup/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, libdvdread, libdvdcss, dvdauthor }: + +stdenv.mkDerivation rec { + version = "0.4.2"; + name = "dvdbackup-${version}"; + + src = fetchurl { + url = "mirror://sourceforge/dvdbackup/${name}.tar.xz"; + sha256 = "1rl3h7waqja8blmbpmwy01q9fgr5r0c32b8dy3pbf59bp3xmd37g"; + }; + + buildInputs = [ libdvdread libdvdcss dvdauthor ]; + + meta = { + description = "A tool to rip video DVDs from the command line"; + homepage = http://dvdbackup.sourceforge.net/; + license = stdenv.lib.licenses.gpl3Plus; + maintainers = [ stdenv.lib.maintainers.bradediger ]; + }; +} diff --git a/pkgs/applications/video/kodi/plugins.nix b/pkgs/applications/video/kodi/plugins.nix index 96c47a15ef1..0ad638dd705 100644 --- a/pkgs/applications/video/kodi/plugins.nix +++ b/pkgs/applications/video/kodi/plugins.nix @@ -89,41 +89,46 @@ in }; }).override { buildInputs = [ unzip ]; }; - urlresolver = (mkKodiPlugin rec { - - plugin = "urlresolver"; - namespace = "script.module.urlresolver"; - version = "2.10.0"; - - src = fetchFromGitHub { - name = plugin + "-" + version + ".tar.gz"; - owner = "Eldorados"; - repo = namespace; - rev = "72b9d978d90d54bb7a0224a1fd2407143e592984"; - sha256 = "0r5glfvgy9ri3ar9zdkvix8lalr1kfp22fap2pqp739b6k2iqir6"; + hyper-launcher = let + pname = "hyper-launcher"; + version = "1.2.0"; + src = fetchFromGitHub rec { + name = pname + "-" + version + ".tar.gz"; + owner = "teeedubb"; + repo = owner + "-xbmc-repo"; + rev = "9bd170407436e736d2d709f8af9968238594669c"; + sha256 = "019nqf7kixicnrzkg671x4yq723igjkhfl8hz5bifi9gx2qcy8hy"; }; - meta = with stdenv.lib; { - homepage = "https://github.com/Eldorados/urlresolver"; - description = "Resolve common video host URL's to be playable in XBMC/Kodi"; + homepage = http://forum.kodi.tv/showthread.php?tid=258159; + description = "A ROM launcher for Kodi that uses HyperSpin assets."; maintainers = with maintainers; [ edwtjo ]; }; - }).override { - postPatch = "sed -i -e 's,settings_file = os.path.join(addon_path,settings_file = os.path.join(profile_path,g' lib/urlresolver/common.py"; + in { + service = mkKodiPlugin { + plugin = pname + "-service"; + namespace = "service.hyper.launcher"; + inherit version src meta; + }; + plugin = mkKodiPlugin { + plugin = pname; + namespace = "plugin.hyper.launcher"; + inherit version src meta; + }; }; salts = mkKodiPlugin rec { plugin = "salts"; namespace = "plugin.video.salts"; - version = "2.0.6"; + version = "2.0.19"; src = fetchFromGitHub { name = plugin + "-" + version + ".tar.gz"; owner = "tknorris"; repo = plugin; - rev = "5100565bec5818cdcd8a891ab6a6d67b0018e070"; - sha256 = "00nlcddmgzyi3462i12qikdryfwqzqd1i30rkp485ay16akyj0lr"; + rev = "9c1882bad35cab9e62687847e097c37a576b900d"; + sha256 = "0saq578xsxvyg1v8jg2m3131hfrr95gv74b2npxr7g715yyx5bjq"; }; meta = with stdenv.lib; { @@ -137,14 +142,14 @@ in plugin = "svtplay"; namespace = "plugin.video.svtplay"; - version = "4.0.21"; + version = "4.0.23"; src = fetchFromGitHub { name = plugin + "-" + version + ".tar.gz"; owner = "nilzen"; repo = "xbmc-" + plugin; - rev = "1fb099dcddc65e58ca8691d19de657321b1b1fc2"; - sha256 = "178krh8kzll7cprqwyhydb41b1jh961av875bm5yfdlplzaiynm0"; + rev = "80b6d241adb046c105ceb63d637da3f7f3684f1a"; + sha256 = "1236kanzl4dra78whpwic1r5iifaj3f27qycia9jr54z01id083s"; }; meta = with stdenv.lib; { @@ -166,13 +171,13 @@ in plugin = "steam-launcher"; namespace = "script.steam.launcher"; - version = "3.1.1"; + version = "3.1.4"; src = fetchFromGitHub rec { owner = "teeedubb"; repo = owner + "-xbmc-repo"; - rev = "bb66db7c4927619485373699ff865a9b00e253bb"; - sha256 = "1skjkz0h6nkg04vylhl4zzavf5lba75j0qbgdhb9g7h0a98jz7s4"; + rev = "db67704c3e16bdcdd3bdfe2926c609f1f6bdc4fb"; + sha256 = "001a7zs3a4jfzj8ylxv2klc33mipmqsd5aqax7q81fbgwdlndvbm"; }; meta = with stdenv.lib; { @@ -191,23 +196,22 @@ in propagatedBuildinputs = [ steam ]; }; - t0mm0-common = mkKodiPlugin rec { + pdfreader = mkKodiPlugin rec { + plugin = "pdfreader"; + namespace = "plugin.image.pdf"; + version = "1.0.2"; - plugin = "t0mm0-common"; - namespace = "script.module.t0mm0.common"; - version = "0.0.1"; - - src = fetchFromGitHub { + src = fetchFromGitHub rec { name = plugin + "-" + version + ".tar.gz"; - owner = "t0mm0"; - repo = "xbmc-urlresolver"; - rev = "ab16933a996a9e77b572953c45e70900c723d6e1"; - sha256 = "1yd00md8iirizzaiqy6fv1n2snydcpqvp2f9irzfzxxi3i9asb93"; + owner = "teeedubb"; + repo = owner + "-xbmc-repo"; + rev = "0a405b95208ced8a1365ad3193eade8d1c2117ce"; + sha256 = "1iv7d030z3xvlflvp4p5v3riqnwg9g0yvzxszy63v1a6x5kpjkqa"; }; meta = with stdenv.lib; { - homepage = "https://github.com/t0mm0/xbmc-urlresolver/"; - description = "t0mm0's common stuff"; + homepage = http://forum.kodi.tv/showthread.php?tid=187421; + descritpion = "A comic book reader"; maintainers = with maintainers; [ edwtjo ]; }; }; @@ -241,7 +245,51 @@ in # them. Symlinking .so, as setting LD_LIBRARY_PATH is of no use installPhase = '' make install - ln -s $out/lib/kodi/addons/pvr.hts/pvr.hts.so $out/share/kodi/addons/pvr.hts + ln -s $out/lib/kodi/addons/pvr.hts/pvr.hts.so* $out/share/kodi/addons/pvr.hts ''; }; + + t0mm0-common = mkKodiPlugin rec { + + plugin = "t0mm0-common"; + namespace = "script.module.t0mm0.common"; + version = "0.0.1"; + + src = fetchFromGitHub { + name = plugin + "-" + version + ".tar.gz"; + owner = "t0mm0"; + repo = "xbmc-urlresolver"; + rev = "ab16933a996a9e77b572953c45e70900c723d6e1"; + sha256 = "1yd00md8iirizzaiqy6fv1n2snydcpqvp2f9irzfzxxi3i9asb93"; + }; + + meta = with stdenv.lib; { + homepage = "https://github.com/t0mm0/xbmc-urlresolver/"; + description = "t0mm0's common stuff"; + maintainers = with maintainers; [ edwtjo ]; + }; + }; + + urlresolver = (mkKodiPlugin rec { + + plugin = "urlresolver"; + namespace = "script.module.urlresolver"; + version = "2.10.0"; + + src = fetchFromGitHub { + name = plugin + "-" + version + ".tar.gz"; + owner = "Eldorados"; + repo = namespace; + rev = "72b9d978d90d54bb7a0224a1fd2407143e592984"; + sha256 = "0r5glfvgy9ri3ar9zdkvix8lalr1kfp22fap2pqp739b6k2iqir6"; + }; + + meta = with stdenv.lib; { + homepage = "https://github.com/Eldorados/urlresolver"; + description = "Resolve common video host URL's to be playable in XBMC/Kodi"; + maintainers = with maintainers; [ edwtjo ]; + }; + }).override { + postPatch = "sed -i -e 's,settings_file = os.path.join(addon_path,settings_file = os.path.join(profile_path,g' lib/urlresolver/common.py"; + }; } diff --git a/pkgs/applications/video/makemkv/default.nix b/pkgs/applications/video/makemkv/default.nix index b65dfe921c4..30fd9a57c4b 100644 --- a/pkgs/applications/video/makemkv/default.nix +++ b/pkgs/applications/video/makemkv/default.nix @@ -4,17 +4,17 @@ stdenv.mkDerivation rec { name = "makemkv-${ver}"; - ver = "1.9.7"; + ver = "1.9.9"; builder = ./builder.sh; src_bin = fetchurl { url = "http://www.makemkv.com/download/makemkv-bin-${ver}.tar.gz"; - sha256 = "1b1kdfs89ms2vyi4406ydw01py0mvvij01rx9anblgy10bc0yvfy"; + sha256 = "1rsmsfyxjh18bdj93gy7whm4j6k1098zfak8napxsqfli7dyijb6"; }; src_oss = fetchurl { url = "http://www.makemkv.com/download/makemkv-oss-${ver}.tar.gz"; - sha256 = "169fl1v3i133ihldyfq3akj3x30qsxndw7q52vv90gmn5r52bzb9"; + sha256 = "070x8l88nv70abd9gy8jchs09mh09x6psjc0zs4vplk61cbqk3b0"; }; buildInputs = [openssl qt4 mesa zlib pkgconfig libav]; diff --git a/pkgs/applications/video/mjpg-streamer/default.nix b/pkgs/applications/video/mjpg-streamer/default.nix index 7cacc4fcf05..5409cf9f2f7 100644 --- a/pkgs/applications/video/mjpg-streamer/default.nix +++ b/pkgs/applications/video/mjpg-streamer/default.nix @@ -1,34 +1,31 @@ -{stdenv, fetchsvn, pkgconfig, libjpeg, imagemagick, libv4l}: +{ stdenv, fetchFromGitHub, cmake, libjpeg }: stdenv.mkDerivation rec { - rev = "182"; - name = "mjpg-streamer-${rev}"; + name = "mjpg-streamer-${version}"; + version = "2016-03-08"; - src = fetchsvn { - url = https://mjpg-streamer.svn.sourceforge.net/svnroot/mjpg-streamer/mjpg-streamer; - inherit rev; - sha256 = "008k2wk6xagprbiwk8fvzbz4dd6i8kzrr9n62gj5i1zdv7zcb16q"; + src = fetchFromGitHub { + owner = "jacksonliam"; + repo = "mjpg-streamer"; + rev = "4060cb64e3557037fd404d10e1c1d076b672e9e8"; + sha256 = "0g7y832jsz4ylmq9qp2l4fq6bm8l6dhsbi60fr5jfqpx4l0pia8m"; }; - patchPhase = '' - substituteInPlace Makefile "make -C plugins\/input_gspcav1" "# make -C plugins\/input_gspcav1" - substituteInPlace Makefile "cp plugins\/input_gspcav1\/input_gspcav1.so" "# cp plugins\/input_gspcav1\/input_gspcav1.so" + prePatch = '' + cd mjpg-streamer-experimental ''; + nativeBuildInputs = [ cmake ]; + buildInputs = [ libjpeg ]; + postFixup = '' - patchelf --set-rpath "$(patchelf --print-rpath $out/bin/mjpg_streamer):$out/lib:$out/lib/plugins" $out/bin/mjpg_streamer + patchelf --set-rpath "$(patchelf --print-rpath $out/bin/mjpg_streamer):$out/lib/mjpg-streamer" $out/bin/mjpg_streamer ''; - makeFlags = "DESTDIR=$(out)"; - - preInstall = '' - mkdir -p $out/{bin,lib} - ''; - - buildInputs = [ pkgconfig libjpeg imagemagick libv4l ]; - - meta = { + meta = with stdenv.lib; { homepage = http://sourceforge.net/projects/mjpg-streamer/; description = "MJPG-streamer takes JPGs from Linux-UVC compatible webcams, filesystem or other input plugins and streams them as M-JPEG via HTTP to webbrowsers, VLC and other software"; + platforms = platforms.linux; + licenses = licenses.gpl2; }; } diff --git a/pkgs/applications/video/mkvtoolnix/default.nix b/pkgs/applications/video/mkvtoolnix/default.nix index cda861497e1..05bd5ad980b 100644 --- a/pkgs/applications/video/mkvtoolnix/default.nix +++ b/pkgs/applications/video/mkvtoolnix/default.nix @@ -1,76 +1,54 @@ -{ stdenv, fetchurl, gettext, pkgconfig, ruby -, boost, expat, file, flac, libebml, libmatroska, libogg, libvorbis, xdg_utils, zlib -# pugixml (not packaged) -, buildConfig ? "all" -, withGUI ? false, qt5 ? null # Disabled for now until upstream issues are resolved -, legacyGUI ? true, wxGTK ? null -# For now both qt5 and wxwidgets gui's are enabled, if wxwidgets is disabled the -# build system doesn't install desktop entries, icons, etc... -, libiconv +{ stdenv, fetchgit, pkgconfig, autoconf, automake +, ruby, file, xdg_utils, gettext, expat, qt5, boost +, libebml, zlib, libmatroska, libogg, libvorbis, flac +, withGUI ? true }: -let - inherit (stdenv.lib) enableFeature optional; -in - assert withGUI -> qt5 != null; -assert legacyGUI -> wxGTK != null; + +with stdenv.lib; stdenv.mkDerivation rec { name = "mkvtoolnix-${version}"; - version = "8.4.0"; + version = "8.9.0"; - src = fetchurl { - url = "http://www.bunkus.org/videotools/mkvtoolnix/sources/${name}.tar.xz"; - sha256 = "0y7qm8q9vpvjiw7b69k9140pw9nhvs6ggmk56yxnmcd02inm19gn"; + src = fetchgit { + url = "https://github.com/mbunkus/mkvtoolnix.git"; + rev = "54e6b52b3dde07f89da4542997ef059e18802128"; + sha256 = "1hm9f9q60c0axmmlsalazsiil8gk3v8q6cl5qxsfa95m51i39878"; }; - patchPhase = '' - patchShebangs ./rake.d/ - patchShebangs ./Rakefile - # Force ruby encoding to use UTF-8 or else when enabling qt5 the Rakefile may - # fail with `invalid byte sequence in US-ASCII' due to UTF-8 characters - # This workaround replaces an arbitrary comment in the drake file - sed -e 's,#--,Encoding.default_external = Encoding::UTF_8,' -i ./drake - ''; - - configureFlags = [ - "--with-boost-libdir=${boost.lib}/lib" - "--without-curl" - ] ++ ( - if (withGUI || legacyGUI) then [ - "--with-mkvtoolnix-gui" - "--enable-gui" - (enableFeature withGUI "qt") - (enableFeature legacyGUI "wxwidgets") - ] else [ - "--disable-gui" - ] - ); - - nativeBuildInputs = [ gettext pkgconfig ruby ]; + nativeBuildInputs = [ gettext ruby ]; buildInputs = [ - boost expat file flac libebml libmatroska libogg libvorbis xdg_utils zlib - ] ++ stdenv.lib.optionals stdenv.isDarwin [ libiconv ] - ++ optional withGUI qt5 - ++ optional legacyGUI wxGTK; + pkgconfig autoconf automake expat + file xdg_utils boost libebml zlib + libmatroska libogg libvorbis flac + (optional withGUI qt5.qtbase) + ]; - enableParallelBuilding = true; + preConfigure = "./autogen.sh; patchShebangs ."; + buildPhase = "./drake -j $NIX_BUILD_CORES"; + installPhase = "./drake install -j $NIX_BUILD_CORES"; - buildPhase = '' - ./drake - ''; - - installPhase = '' - ./drake install - ''; + configureFlags = [ + "--enable-magic" + "--enable-optimization" + "--with-boost-libdir=${boost.lib}/lib" + "--disable-debug" + "--disable-profiling" + "--disable-precompiled-headers" + "--disable-static-qt" + "--without-curl" + "--with-gettext" + (enableFeature withGUI "qt") + ]; meta = with stdenv.lib; { description = "Cross-platform tools for Matroska"; - homepage = http://www.bunkus.org/videotools/mkvtoolnix/; - license = licenses.gpl2; - maintainers = with maintainers; [ codyopel fuuzetsu ]; - platforms = platforms.all; + homepage = http://www.bunkus.org/videotools/mkvtoolnix/; + license = licenses.gpl2; + maintainers = with maintainers; [ codyopel fuuzetsu rnhmjoj ]; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/video/pitivi/default.nix b/pkgs/applications/video/pitivi/default.nix index f135630a9a1..d488a3718b7 100644 --- a/pkgs/applications/video/pitivi/default.nix +++ b/pkgs/applications/video/pitivi/default.nix @@ -23,7 +23,6 @@ in stdenv.mkDerivation rec { ''; license = licenses.lgpl21Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; nativeBuildInputs = [ pkgconfig intltool itstool makeWrapper ]; diff --git a/pkgs/applications/video/popcorntime/default.nix b/pkgs/applications/video/popcorntime/default.nix index e74c8e9a5a8..f2bc3e70161 100644 --- a/pkgs/applications/video/popcorntime/default.nix +++ b/pkgs/applications/video/popcorntime/default.nix @@ -1,53 +1,43 @@ -{ lib, stdenv, fetchurl, runCommand, makeWrapper, nwjs, zip }: +{ lib, stdenv, fetchurl, makeWrapper, nwjs, zip }: let - version = "0.3.8-3"; + arch = if stdenv.system == "x86_64-linux" then "64" + else if stdenv.system == "i686-linux" then "32" + else throw "Unsupported system ${stdenv.system}"; - popcorntimePackage = stdenv.mkDerivation rec { - name = "popcorntime-${version}"; - src = if stdenv.system == "x86_64-linux" then - fetchurl { - url = "http://get.popcorntime.io/build/Popcorn-Time-${version}-Linux-64.tar.xz"; - sha256 = "0q8c6m9majgv5a6hjl1b2ndmq4xx05zbarsydhqkivhh9aymvxgm"; - } - else if stdenv.system == "i686-linux" then - fetchurl { - url = "https://get.popcorntime.io/build/Popcorn-Time-${version}-Linux-32.tar.xz"; - sha256 = "1dz1cp31qbwamm9pf8ydmzzhnb6d9z73bigdv3y74dgicz3dpr92"; - } - else throw "Unsupported system ${stdenv.system}"; +in stdenv.mkDerivation rec { + name = "popcorntime-${version}"; + version = "0.3.9"; - sourceRoot = "."; - - buildInputs = [ zip ]; - - buildPhase = '' - rm Popcorn-Time install - zip -r package.nw package.json src node_modules - cat ${nwjs}/bin/nw package.nw > Popcorn-Time - chmod 555 Popcorn-Time - ''; - - installPhase = '' - mkdir -p $out - cp -r * $out/ - ''; - - dontPatchELF = true; + src = fetchurl { + url = "http://get.popcorntime.sh/build/Popcorn-Time-${version}-Linux-${arch}.tar.xz"; + sha256 = + if arch == "64" + then "0qaqdz45frgiy440jyz6hikhklx2yp08qp94z82r03dkbf4a2hvx" + else "0y08a42pm681s97lkczdq5dblxl2jbr850hnl85hknl3ynag9kq4"; }; -in - runCommand "popcorntime-${version}" { - buildInputs = [ makeWrapper ]; - meta = with stdenv.lib; { - homepage = http://popcorntime.io/; - description = "An application that streams movies and TV shows from torrents"; - license = stdenv.lib.licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ bobvanderlinden ]; - broken = true; # popcorntime.io is dead - }; - } - '' + + dontPatchELF = true; + sourceRoot = "linux${arch}"; + buildInputs = [ zip makeWrapper ]; + + buildPhase = '' + rm Popcorn-Time + cat ${nwjs}/bin/nw nw.pak > Popcorn-Time + chmod 555 Popcorn-Time + ''; + + installPhase = '' mkdir -p $out/bin - makeWrapper ${popcorntimePackage}/Popcorn-Time $out/bin/popcorntime - '' + cp -r * $out/ + makeWrapper $out/Popcorn-Time $out/bin/popcorntime + ''; + + meta = with stdenv.lib; { + homepage = https://popcorntime.sh/; + description = "An application that streams movies and TV shows from torrents"; + license = stdenv.lib.licenses.gpl3; + platforms = platforms.linux; + maintainers = with maintainers; [ bobvanderlinden rnhmjoj ]; + }; +} diff --git a/pkgs/applications/video/subtitleeditor/default.nix b/pkgs/applications/video/subtitleeditor/default.nix index 7c42aebf2bc..c9655e2a4f2 100644 --- a/pkgs/applications/video/subtitleeditor/default.nix +++ b/pkgs/applications/video/subtitleeditor/default.nix @@ -1,44 +1,65 @@ -{ stdenv, fetchurl, desktop_file_utils, enchant, gnome, gstreamer, gstreamermm, - gst_plugins_base, gst_plugins_good, intltool, hicolor_icon_theme, - libsigcxx, libxmlxx, makeWrapper, xdg_utils, pkgconfig } : +{ stdenv, fetchurl, pkgconfig, autoconf, automake114x, intltool, + desktop_file_utils, enchant, gnome3, gst_all_1, hicolor_icon_theme, + libsigcxx, libxmlxx, xdg_utils, isocodes, wrapGAppsHook } : let - ver_maj = "0.41"; - ver_min = "0"; + ver_maj = "0.52"; + ver_min = "1"; in stdenv.mkDerivation rec { name = "subtitle-editor-${ver_maj}.${ver_min}"; - buildInputs = [ - desktop_file_utils enchant gnome.gtk gnome.gtkmm gstreamer gstreamermm - gst_plugins_base gst_plugins_good intltool hicolor_icon_theme libsigcxx libxmlxx - makeWrapper xdg_utils pkgconfig - ]; - src = fetchurl { url = "http://download.gna.org/subtitleeditor/${ver_maj}/subtitleeditor-${ver_maj}.${ver_min}.tar.gz"; - md5 = "3c21ccd8296001dcb1a02c62396db1b6"; + sha256 = "1m8j2i27kjaycvp09b0knp9in61jd2dj852hrx5hvkrby70mygjv"; }; + nativeBuildInputs = [ + autoconf automake114x pkgconfig intltool wrapGAppsHook + ]; + + buildInputs = [ + desktop_file_utils + enchant + gnome3.gtk + gnome3.gtkmm + gst_all_1.gstreamer + gst_all_1.gstreamermm + gst_all_1.gst-plugins-base + gst_all_1.gst-plugins-good + hicolor_icon_theme + libsigcxx + libxmlxx + xdg_utils + isocodes + ]; + + NIX_CFLAGS_COMPILE = "-std=c++11 -DDEBUG"; + + enableParallelBuilding = true; + doCheck = true; - postInstall = '' - wrapProgram "$out/bin/subtitleeditor" --prefix \ - GST_PLUGIN_SYSTEM_PATH ":" "$GST_PLUGIN_SYSTEM_PATH" \ + patches = [ ./subtitleeditor-0.52.1-build-fix.patch ]; + + preConfigure = '' + # ansi overrides -std, see src_configure + sed 's/\(CXXFLAGS\) -ansi/\1/' -i configure.ac configure ''; + configureFlags = [ "--disable-debug" ]; meta = { - description = "GTK+2 application to edit video subtitles"; + description = "GTK+3 application to edit video subtitles"; longDescription = '' - Subtitle Editor is a GTK+2 tool to edit subtitles for GNU/Linux/*BSD. It can be - used for new subtitles or as a tool to transform, edit, correct and refine - existing subtitle. This program also shows sound waves, which makes it easier - to synchronise subtitles to voices. + Subtitle Editor is a GTK+3 tool to edit subtitles for GNU/Linux/*BSD. It + can be used for new subtitles or as a tool to transform, edit, correct + and refine existing subtitle. This program also shows sound waves, which + makes it easier to synchronise subtitles to voices. ''; homepage = http://home.gna.org/subtitleeditor; - license = stdenv.lib.licenses.gpl3; + license = stdenv.lib.licenses.gpl3Plus; maintainers = [ stdenv.lib.maintainers.plcplc ]; platforms = stdenv.lib.platforms.linux; }; diff --git a/pkgs/applications/video/subtitleeditor/subtitleeditor-0.52.1-build-fix.patch b/pkgs/applications/video/subtitleeditor/subtitleeditor-0.52.1-build-fix.patch new file mode 100644 index 00000000000..9cce5d2d98f --- /dev/null +++ b/pkgs/applications/video/subtitleeditor/subtitleeditor-0.52.1-build-fix.patch @@ -0,0 +1,55 @@ +Fix build errors with gcc-4.9.3 -std=c++11 (after disabling -ansi) + +https://gna.org/bugs/?23714 + +https://bugs.gentoo.org/show_bug.cgi?id=550764 +https://bugs.gentoo.org/show_bug.cgi?id=566328 + +--- a/src/subtitleview.cc 2015-12-24 01:52:29.322622155 +0100 ++++ b/src/subtitleview.cc 2015-12-24 01:52:44.210491213 +0100 +@@ -1363,7 +1363,7 @@ + { + int num; + std::istringstream ss(event->string); +- bool is_num = ss >> num != 0; ++ bool is_num = static_cast(ss >> num) != 0; + // Update only if it's different + if(is_num != get_enable_search()) + set_enable_search(is_num); +--- a/src/utility.h 2015-12-24 01:49:42.205104858 +0100 ++++ b/src/utility.h 2015-12-24 01:50:23.387737071 +0100 +@@ -91,7 +91,7 @@ + std::istringstream s(src); + // return s >> dest != 0; + +- bool state = s >> dest != 0; ++ bool state = static_cast(s >> dest) != 0; + + if(!state) + se_debug_message(SE_DEBUG_UTILITY, "string:'%s'failed.", src.c_str()); +--- a/plugins/actions/dialoguize/dialoguize.cc 2015-12-24 01:06:24.125428454 +0100 ++++ b/plugins/actions/dialoguize/dialoguize.cc 2015-12-24 01:06:42.630277006 +0100 +@@ -23,7 +23,7 @@ + * along with this program. If not, see . + */ + +-#include ++#include + #include "extension/action.h" + #include "i18n.h" + #include "debug.h" +--- a/plugins/actions/documentmanagement/documentmanagement.old 2015-12-24 01:17:13.914730337 +0100 ++++ b/plugins/actions/documentmanagement/documentmanagement.cc 2015-12-24 01:17:23.339640430 +0100 +@@ -178,9 +178,9 @@ + + ui_id = ui->new_merge_id(); + +- #define ADD_UI(name) ui->add_ui(ui_id, "/menubar/menu-file/"name, name, name); +- #define ADD_OPEN_UI(name) ui->add_ui(ui_id, "/menubar/menu-file/menu-open/"name, name, name); +- #define ADD_SAVE_UI(name) ui->add_ui(ui_id, "/menubar/menu-file/menu-save/"name, name, name); ++ #define ADD_UI(name) ui->add_ui(ui_id, "/menubar/menu-file/" name, name, name); ++ #define ADD_OPEN_UI(name) ui->add_ui(ui_id, "/menubar/menu-file/menu-open/" name, name, name); ++ #define ADD_SAVE_UI(name) ui->add_ui(ui_id, "/menubar/menu-file/menu-save/" name, name, name); + + ADD_UI("new-document"); + ADD_OPEN_UI("open-document"); diff --git a/pkgs/applications/virtualization/docker/default.nix b/pkgs/applications/virtualization/docker/default.nix index c8a40277f7a..65bb6e61117 100644 --- a/pkgs/applications/virtualization/docker/default.nix +++ b/pkgs/applications/virtualization/docker/default.nix @@ -11,13 +11,13 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "docker-${version}"; - version = "1.10.0"; + version = "1.10.3"; src = fetchFromGitHub { owner = "docker"; repo = "docker"; rev = "v${version}"; - sha256 = "0c3a504gjdh4mxvifi0wcppqhd786d1gxncf04dqlq3l5wisfbbw"; + sha256 = "0bmrafi0p3fm681y165ps97jki0a8ihl9f0bmpvi22nmc1v0sv6l"; }; buildInputs = [ diff --git a/pkgs/applications/virtualization/qemu/default.nix b/pkgs/applications/virtualization/qemu/default.nix index 9301f886472..158231a6e64 100644 --- a/pkgs/applications/virtualization/qemu/default.nix +++ b/pkgs/applications/virtualization/qemu/default.nix @@ -1,11 +1,15 @@ { stdenv, fetchurl, python, zlib, pkgconfig, glib, ncurses, perl, pixman -, attr, libcap, vde2, alsaLib, texinfo, libuuid, flex, bison, lzo, snappy -, libseccomp, libaio, libcap_ng, gnutls, nettle, numactl +, vde2, alsaLib, texinfo, libuuid, flex, bison, lzo, snappy +, libaio, gnutls, nettle , makeWrapper -, pulseSupport ? true, libpulseaudio -, sdlSupport ? true, SDL +, attr, libcap, libcap_ng +, CoreServices, Cocoa, rez, setfile +, numaSupport ? stdenv.isLinux, numactl +, seccompSupport ? stdenv.isLinux, libseccomp +, pulseSupport ? !stdenv.isDarwin, libpulseaudio +, sdlSupport ? !stdenv.isDarwin, SDL , vncSupport ? true, libjpeg, libpng -, spiceSupport ? true, spice, spice_protocol, usbredir +, spiceSupport ? !stdenv.isDarwin, spice, spice_protocol, usbredir , x86Only ? false }: @@ -26,31 +30,35 @@ stdenv.mkDerivation rec { }; buildInputs = - [ python zlib pkgconfig glib ncurses perl pixman attr libcap - vde2 texinfo libuuid flex bison makeWrapper lzo snappy libseccomp - libcap_ng gnutls nettle numactl + [ python zlib pkgconfig glib ncurses perl pixman + vde2 texinfo libuuid flex bison makeWrapper lzo snappy + gnutls nettle ] + ++ optionals stdenv.isDarwin [ CoreServices Cocoa rez setfile ] + ++ optionals seccompSupport [ libseccomp ] + ++ optionals numaSupport [ numactl ] ++ optionals pulseSupport [ libpulseaudio ] ++ optionals sdlSupport [ SDL ] ++ optionals vncSupport [ libjpeg libpng ] ++ optionals spiceSupport [ spice_protocol spice usbredir ] - ++ optionals (hasSuffix "linux" stdenv.system) [ alsaLib libaio ]; + ++ optionals stdenv.isLinux [ alsaLib libaio libcap_ng libcap attr ]; enableParallelBuilding = true; patches = [ ./no-etc-install.patch ]; configureFlags = - [ "--enable-seccomp" - "--enable-numa" - "--smbd=smbd" # use `smbd' from $PATH + [ "--smbd=smbd" # use `smbd' from $PATH "--audio-drv-list=${audio}" "--sysconfdir=/etc" "--localstatedir=/var" ] + ++ optional numaSupport "--enable-numa" + ++ optional seccompSupport "--enable-seccomp" ++ optional spiceSupport "--enable-spice" ++ optional x86Only "--target-list=i386-softmmu,x86_64-softmmu" - ++ optional (hasSuffix "linux" stdenv.system) "--enable-linux-aio"; + ++ optional stdenv.isDarwin "--enable-cocoa" + ++ optional stdenv.isLinux "--enable-linux-aio"; postInstall = '' @@ -66,6 +74,6 @@ stdenv.mkDerivation rec { description = "A generic and open source machine emulator and virtualizer"; license = licenses.gpl2Plus; maintainers = with maintainers; [ viric eelco ]; - platforms = platforms.linux; + platforms = platforms.linux ++ platforms.darwin; }; } diff --git a/pkgs/applications/virtualization/rkt/default.nix b/pkgs/applications/virtualization/rkt/default.nix index 713928eafed..4845d0b6065 100644 --- a/pkgs/applications/virtualization/rkt/default.nix +++ b/pkgs/applications/virtualization/rkt/default.nix @@ -9,7 +9,7 @@ let stage1Flavours = [ "coreos" "fly" "host" ]; in stdenv.mkDerivation rec { - version = "1.1.0"; + version = "1.2.0"; name = "rkt-${version}"; BUILDDIR="build-${name}"; @@ -17,7 +17,7 @@ in stdenv.mkDerivation rec { rev = "v${version}"; owner = "coreos"; repo = "rkt"; - sha256 = "1pl5gbfd9wr8nh2h249g7sjs31jz21g24mw375zki9gdhhnpn570"; + sha256 = "0icsrh118mm3rabbcr0gd3b22m5rizdbqlrfp9d79g591p7bjh38"; }; stage1BaseImage = fetchurl { diff --git a/pkgs/applications/virtualization/xen/generic.nix b/pkgs/applications/virtualization/xen/generic.nix index 6774675266c..c169519a8e5 100644 --- a/pkgs/applications/virtualization/xen/generic.nix +++ b/pkgs/applications/virtualization/xen/generic.nix @@ -15,39 +15,12 @@ let libDir = if stdenv.is64bit then "lib64" else "lib"; - # Sources needed to build the stubdoms and tools + # Sources needed to build the tools # These sources are already rather old and probably do not change frequently xenExtfiles = [ - { url = http://xenbits.xensource.com/xen-extfiles/lwip-1.3.0.tar.gz; - sha256 = "13wlr85s1hnvia6a698qpryyy12lvmqw0a05xmjnd0h71ralsbkp"; - } - { url = http://xenbits.xensource.com/xen-extfiles/zlib-1.2.3.tar.gz; - sha256 = "0pmh8kifb6sfkqfxc23wqp3f2wzk69sl80yz7w8p8cd4cz8cg58p"; - } - { url = http://xenbits.xensource.com/xen-extfiles/newlib-1.16.0.tar.gz; - sha256 = "01rxk9js833mwadq92jx0flvk9jyjrnwrq93j39c2j2wjsa66hnv"; - } - { url = http://xenbits.xensource.com/xen-extfiles/grub-0.97.tar.gz; - sha256 = "02r6b52r0nsp6ryqfiqchnl7r1d9smm80sqx24494gmx5p8ia7af"; - } - { url = http://xenbits.xensource.com/xen-extfiles/pciutils-2.2.9.tar.bz2; - sha256 = "092v4q478i1gc7f3s2wz6p4xlf1wb4gs5shbkn21vnnmzcffc2pn"; - } - { url = http://xenbits.xensource.com/xen-extfiles/tpm_emulator-0.7.4.tar.gz; - sha256 = "0nd4vs48j0zfzv1g5jymakxbjqf9ss6b2jph3b64356xhc6ylj2f"; - } - { url = http://xenbits.xensource.com/xen-extfiles/tboot-20090330.tar.gz; - sha256 = "0rl1b53g019w2c268pyxhjqsj9ls37i4p74bdv1hdi2yvs0r1y81"; - } { url = http://xenbits.xensource.com/xen-extfiles/ipxe-git-9a93db3f0947484e30e753bbd61a10b17336e20e.tar.gz; sha256 = "0p206zaxlhda60ci33h9gipi5gm46fvvsm6k5c0w7b6cjg0yhb33"; } - { url = http://xenbits.xensource.com/xen-extfiles/polarssl-1.1.4-gpl.tgz; - sha256 = "1dl4fprpwagv9akwqpb62qwqvh24i50znadxwvd2kfnhl02gsa9d"; - } - { url = http://xenbits.xensource.com/xen-extfiles/gmp-4.3.2.tar.bz2; - sha256 = "0x8prpqi9amfcmi7r4zrza609ai9529pjaq0h4aw51i867064qck"; - } ]; scriptEnvPath = stdenv.lib.concatStrings (stdenv.lib.intersperse ":" (map (x: "${x}/bin") @@ -114,6 +87,9 @@ stdenv.mkDerivation { export EXTRA_QEMUU_CONFIGURE_ARGS="--enable-spice --enable-usb-redir --enable-linux-aio" ''; + # https://github.com/NixOS/nixpkgs/issues/13590 + configureFlags = ["--disable-stubdom"]; + postConfigure = '' substituteInPlace tools/libfsimage/common/fsimage_plugin.c \ @@ -169,7 +145,7 @@ stdenv.mkDerivation { #makeFlags = "XSM_ENABLE=y FLASK_ENABLE=y PREFIX=$(out) CONFIG_DIR=/etc XEN_EXTFILES_URL=\\$(XEN_ROOT)/xen_ext_files "; makeFlags = "PREFIX=$(out) CONFIG_DIR=/etc XEN_EXTFILES_URL=\\$(XEN_ROOT)/xen_ext_files "; - buildFlags = "xen tools stubdom"; + buildFlags = "xen tools"; postBuild = '' diff --git a/pkgs/applications/window-managers/awesome/default.nix b/pkgs/applications/window-managers/awesome/default.nix index 29b215d0642..2991169a702 100644 --- a/pkgs/applications/window-managers/awesome/default.nix +++ b/pkgs/applications/window-managers/awesome/default.nix @@ -3,11 +3,11 @@ , xcb-util-cursor, makeWrapper, pango, gobjectIntrospection, unclutter , compton, procps, iproute, coreutils, curl, alsaUtils, findutils, xterm , which, dbus, nettools, git, asciidoc, doxygen -#, xmlto, docbook_xml_dtd_45 , docbook_xsl +, xmlto, docbook_xml_dtd_45, docbook_xsl, findXMLCatalogs }: let - version = "3.5.8"; + version = "3.5.9"; in with luaPackages; stdenv.mkDerivation rec { @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://awesome.naquadah.org/download/awesome-${version}.tar.xz"; - sha256 = "1iifcyphgibmh3cvsy8agjrl9zjl80scrg0bcgnwywmxaxncjc3w"; + sha256 = "0kynair1ykr74b39a4gcm2y24viial64337cf26nhlc7azjbby67"; }; meta = with stdenv.lib; { @@ -26,25 +26,29 @@ stdenv.mkDerivation rec { platforms = platforms.linux; }; - buildInputs = [ + nativeBuildInputs = [ asciidoc - cairo cmake - dbus doxygen + imagemagick + makeWrapper + pkgconfig + xmlto docbook_xml_dtd_45 docbook_xsl findXMLCatalogs + ]; + + buildInputs = [ + cairo + dbus gdk_pixbuf gobjectIntrospection git - imagemagick lgi libpthreadstubs libstartup_notification libxdg_basedir lua - makeWrapper nettools pango - pkgconfig xcb-util-cursor xorg.libXau xorg.libXdmcp @@ -55,7 +59,6 @@ stdenv.mkDerivation rec { xorg.xcbutilkeysyms xorg.xcbutilrenderutil xorg.xcbutilwm - #xmlto docbook_xml_dtd_45 docbook_xsl ]; #cmakeFlags = "-DGENERATE_MANPAGES=ON"; diff --git a/pkgs/applications/window-managers/clfswm/default.nix b/pkgs/applications/window-managers/clfswm/default.nix index 3b07bc5a654..5761d94526d 100644 --- a/pkgs/applications/window-managers/clfswm/default.nix +++ b/pkgs/applications/window-managers/clfswm/default.nix @@ -46,5 +46,6 @@ stdenv.mkDerivation rec { license = licenses.gpl3; maintainers = with maintainers; [ robgssp ]; platforms = platforms.linux; + broken = true; }; } diff --git a/pkgs/applications/window-managers/i3/default.nix b/pkgs/applications/window-managers/i3/default.nix index 0833fde8c9e..ada6e8e742e 100644 --- a/pkgs/applications/window-managers/i3/default.nix +++ b/pkgs/applications/window-managers/i3/default.nix @@ -5,11 +5,11 @@ stdenv.mkDerivation rec { name = "i3-${version}"; - version = "4.11"; + version = "4.12"; src = fetchurl { url = "http://i3wm.org/downloads/${name}.tar.bz2"; - sha256 = "0bwqklb6irgjmgvj7mlyz4brr4lggfm3zqmvclvxcbyrzc31xkkq"; + sha256 = "1d3q3lgpjbkmcwzjhp0dfr0jq847silcfg087slcnj95ikh1r7p1"; }; buildInputs = [ diff --git a/pkgs/applications/window-managers/jwm/default.nix b/pkgs/applications/window-managers/jwm/default.nix index f019ba9751b..adbdef5e284 100644 --- a/pkgs/applications/window-managers/jwm/default.nix +++ b/pkgs/applications/window-managers/jwm/default.nix @@ -1,29 +1,30 @@ -{ stdenv, fetchurl, libX11, libXext, libXinerama, libXpm, libXft, freetype, - fontconfig }: +{ stdenv, fetchurl, pkgconfig, automake, autoconf, libtool, which, xorg, + libX11, libXext, libXinerama, libXpm, libXft, libXau, libXdmcp, libpng, + libjpeg, expat, xproto, xextproto, xineramaproto, librsvg, gettext, + freetype, fontconfig }: stdenv.mkDerivation rec { - name = "jwm-2.2.2"; + name = "jwm-${version}"; + version = "1406"; src = fetchurl { - url = "http://www.joewing.net/projects/jwm/releases/${name}.tar.xz"; - sha256 = "0nhyy78c6imk85d47bakk460x0cfhkyghqq82zghmb00dhwiryln"; + url = "https://github.com/joewing/jwm/archive/s${version}.tar.gz"; + sha256 = "0yk22b7cshhyfpcqnb4p59yxspx95xg9yp1kmkxi2fyw95cacab4"; }; - buildInputs = [ libX11 libXext libXinerama libXpm libXft freetype - fontconfig ]; + nativeBuildInputs = [ pkgconfig automake autoconf libtool which ]; - preConfigure = '' - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${freetype}/include/freetype2 " - export NIX_LDFLAGS="$NIX_LDFLAGS -lXft -lfreetype -lfontconfig " - ''; + buildInputs = [ libX11 libXext libXinerama libXpm libXft xorg.libXrender + libXau libXdmcp libpng libjpeg expat xproto xextproto xineramaproto + librsvg gettext freetype fontconfig ]; - postInstall = - '' - sed -i -e s/rxvt/xterm/g $out/etc/system.jwmrc - sed -i -e "s/.*Swallow.*\|.*xload.*//" $out/etc/system.jwmrc - ''; + preConfigure = "./autogen.sh"; meta = { + homepage = "http://joewing.net/projects/jwm/"; description = "A window manager for X11 that requires only Xlib"; + license = stdenv.lib.licenses.gpl2; + maintainers = [ stdenv.lib.maintainers.romildo ]; + platforms = stdenv.lib.platforms.unix; }; } diff --git a/pkgs/applications/window-managers/openbox/default.nix b/pkgs/applications/window-managers/openbox/default.nix index 326cd2a49f4..ba0c812ef6a 100644 --- a/pkgs/applications/window-managers/openbox/default.nix +++ b/pkgs/applications/window-managers/openbox/default.nix @@ -3,7 +3,8 @@ , imlib2, pango, libstartup_notification, makeWrapper }: stdenv.mkDerivation rec { - name = "openbox-3.6.1"; + name = "openbox-${version}"; + version = "3.6.1"; buildInputs = [ pkgconfig libxml2 @@ -40,5 +41,6 @@ stdenv.mkDerivation rec { description = "X window manager for non-desktop embedded systems"; homepage = http://openbox.org/; license = stdenv.lib.licenses.gpl2Plus; + platforms = stdenv.lib.platforms.linux; }; } diff --git a/pkgs/applications/window-managers/stumpwm/default.nix b/pkgs/applications/window-managers/stumpwm/default.nix index 88faae64be7..c47a464a4fc 100644 --- a/pkgs/applications/window-managers/stumpwm/default.nix +++ b/pkgs/applications/window-managers/stumpwm/default.nix @@ -67,6 +67,10 @@ stdenv.mkDerivation rec { echo ${xdpyinfo} > $out/nix-support/xdpyinfo ''; + passthru = { + inherit sbcl lispPackages; + }; + meta = with stdenv.lib; { description = "A tiling window manager for X11"; homepage = https://github.com/stumpwm/; diff --git a/pkgs/applications/window-managers/sway/default.nix b/pkgs/applications/window-managers/sway/default.nix index fa81971885a..7f494f3e0f2 100644 --- a/pkgs/applications/window-managers/sway/default.nix +++ b/pkgs/applications/window-managers/sway/default.nix @@ -1,21 +1,23 @@ -{ lib, stdenv, fetchurl, makeWrapper, cmake, pkgconfig -, wayland, wlc, libxkbcommon, pixman, fontconfig, pcre, json_c, asciidoc, libxslt, dbus_libs +{ stdenv, fetchFromGitHub +, makeWrapper, cmake, pkgconfig, asciidoc, libxslt, docbook_xsl +, wayland, wlc, libxkbcommon, pixman, fontconfig, pcre, json_c, dbus_libs }: stdenv.mkDerivation rec { name = "sway-${version}"; version = "git-2016-02-08"; - repo = "https://github.com/SirCmpwn/sway"; - rev = "16e904634c65128610537bed7fcb16ac3bb45165"; - src = fetchurl { - url = "${repo}/archive/${rev}.tar.gz"; - sha256 = "52d6c4b49fea69e2a2c1b44b858908b7736301bdb9ed483c294bc54bb40e872e"; + src = fetchFromGitHub { + owner = "Sircmpwn"; + repo = "sway"; + + rev = "16e904634c65128610537bed7fcb16ac3bb45165"; + sha256 = "04qvdjaarglq3qsjbb9crjkad3y1v7s51bk82sl8w26c71jbhklg"; }; - nativeBuildInputs = [ cmake pkgconfig ]; + nativeBuildInputs = [ makeWrapper cmake pkgconfig asciidoc libxslt docbook_xsl ]; - buildInputs = [ makeWrapper wayland wlc libxkbcommon pixman fontconfig pcre json_c asciidoc libxslt dbus_libs ]; + buildInputs = [ wayland wlc libxkbcommon pixman fontconfig pcre json_c dbus_libs ]; patchPhase = '' sed -i s@/etc/sway@$out/etc/sway@g CMakeLists.txt; @@ -24,17 +26,17 @@ stdenv.mkDerivation rec { makeFlags = "PREFIX=$(out)"; installPhase = "PREFIX=$out make install"; - LD_LIBRARY_PATH = lib.makeLibraryPath [ wlc dbus_libs ]; + LD_LIBRARY_PATH = stdenv.lib.makeLibraryPath [ wlc dbus_libs ]; preFixup = '' wrapProgram $out/bin/sway \ --prefix LD_LIBRARY_PATH : "${LD_LIBRARY_PATH}"; ''; - meta = { + meta = with stdenv.lib; { description = "i3-compatible window manager for Wayland"; homepage = "http://swaywm.org"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + license = licenses.mit; + platforms = platforms.linux; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/build-support/build-fhs-chrootenv/env.nix b/pkgs/build-support/build-fhs-chrootenv/env.nix index d28773f00ac..8c45c9c9036 100644 --- a/pkgs/build-support/build-fhs-chrootenv/env.nix +++ b/pkgs/build-support/build-fhs-chrootenv/env.nix @@ -57,6 +57,11 @@ let export LOCALE_ARCHIVE='/usr/lib/locale/locale-archive' export LD_LIBRARY_PATH='/run/opengl-driver/lib:/run/opengl-driver-32/lib:/usr/lib:/usr/lib32' export PATH='/var/setuid-wrappers:/usr/bin:/usr/sbin' + + # Force compilers to look in default search paths + export NIX_CFLAGS_COMPILE='-idirafter /usr/include' + export NIX_LDFLAGS_BEFORE='-L/usr/lib -L/usr/lib32' + ${profile} ''; diff --git a/pkgs/build-support/dotnetbuildhelpers/default.nix b/pkgs/build-support/dotnetbuildhelpers/default.nix index ed0d4f790c8..0edfd0b467a 100644 --- a/pkgs/build-support/dotnetbuildhelpers/default.nix +++ b/pkgs/build-support/dotnetbuildhelpers/default.nix @@ -1,5 +1,5 @@ -{ helperFunctions, mono, pkgconfig }: - helperFunctions.runCommand +{ runCommand, mono, pkgconfig }: + runCommand "dotnetbuildhelpers" { preferLocalBuild = true; } '' diff --git a/pkgs/build-support/fetchbower/default.nix b/pkgs/build-support/fetchbower/default.nix index 7c6b1a8a098..057beb999b2 100644 --- a/pkgs/build-support/fetchbower/default.nix +++ b/pkgs/build-support/fetchbower/default.nix @@ -1,7 +1,7 @@ { stdenv, fetch-bower, git }: name: version: target: outputHash: stdenv.mkDerivation { name = "${name}-${version}"; buildCommand = '' - out=$PWD/out fetch-bower ${name} ${version} ${target} + out=$PWD/out fetch-bower "${name}" "${version}" "${target}" cp -R out $out ''; outputHashMode = "recursive"; diff --git a/pkgs/build-support/fetchgit/nix-prefetch-git b/pkgs/build-support/fetchgit/nix-prefetch-git index 97c983dbe8d..9352757ea80 100755 --- a/pkgs/build-support/fetchgit/nix-prefetch-git +++ b/pkgs/build-support/fetchgit/nix-prefetch-git @@ -327,7 +327,12 @@ print_results() { echo "{" echo " \"url\": \"$url\"," echo " \"rev\": \"$fullRev\"," - echo " \"$hashType\": \"$hash\"" + echo -n " \"$hashType\": \"$hash\"" + if test -n "$fetchSubmodules"; then + echo "," + echo -n " \"fetchSubmodules\": true" + fi + echo "" echo "}" fi } diff --git a/pkgs/build-support/grsecurity/default.nix b/pkgs/build-support/grsecurity/default.nix index fc4d1a26d7a..18719e6e22b 100644 --- a/pkgs/build-support/grsecurity/default.nix +++ b/pkgs/build-support/grsecurity/default.nix @@ -4,8 +4,7 @@ with lib; let cfg = { - stable = grsecOptions.stable or false; - testing = grsecOptions.testing or false; + kernelPatch = grsecOptions.kernelPatch; config = { mode = "auto"; sysctl = false; @@ -22,18 +21,13 @@ let vals = rec { - mkKernel = kernel: patch: - assert patch.kversion == kernel.version; - { inherit kernel patch; - inherit (patch) grversion revision; + mkKernel = patch: + { + inherit patch; + inherit (patch) kernel patches grversion revision; }; - test-patch = with pkgs.kernelPatches; grsecurity_unstable; - stable-patch = with pkgs.kernelPatches; grsecurity_stable; - - grKernel = if cfg.stable - then mkKernel pkgs.linux_3_14 stable-patch - else mkKernel pkgs.linux_4_3 test-patch; + grKernel = mkKernel cfg.kernelPatch; ## -- grsecurity configuration --------------------------------------------- @@ -90,8 +84,8 @@ let # Disable restricting links under the testing kernel, as something # has changed causing it to fail miserably during boot. - restrictLinks = optionalString cfg.testing - "GRKERNSEC_LINK n"; + #restrictLinks = optionalString cfg.testing + # "GRKERNSEC_LINK n"; in '' GRKERNSEC y ${grsecMainConfig} @@ -109,7 +103,6 @@ let GRKERNSEC_CHROOT_CHMOD ${boolToKernOpt cfg.config.denyChrootChmod} GRKERNSEC_DENYUSB ${boolToKernOpt cfg.config.denyUSB} GRKERNSEC_NO_RBAC ${boolToKernOpt cfg.config.disableRBAC} - ${restrictLinks} ${cfg.config.kernelExtraConfig} ''; @@ -138,7 +131,7 @@ let mkGrsecKern = grkern: lowPrio (overrideDerivation (grkern.kernel.override (args: { - kernelPatches = args.kernelPatches ++ [ grkern.patch pkgs.kernelPatches.grsec_fix_path ]; + kernelPatches = args.kernelPatches ++ [ grkern.patch ] ++ grkern.patches; argsOverride = { modDirVersion = "${grkern.kernel.modDirVersion}${localver grkern}"; }; diff --git a/pkgs/build-support/grsecurity/flavors.nix b/pkgs/build-support/grsecurity/flavors.nix index 969ca579f5a..1281d60aa32 100644 --- a/pkgs/build-support/grsecurity/flavors.nix +++ b/pkgs/build-support/grsecurity/flavors.nix @@ -1,26 +1,17 @@ let - mkOpts = ver: prio: sys: virt: swvirt: hwvirt: + mkOpts = prio: sys: virt: swvirt: hwvirt: { config.priority = prio; config.system = sys; config.virtualisationConfig = virt; config.hardwareVirtualisation = hwvirt; config.virtualisationSoftware = swvirt; - } // builtins.listToAttrs [ { name = ver; value = true; } ]; + }; in { - # Stable kernels - linux_grsec_stable_desktop = - mkOpts "stable" "performance" "desktop" "host" "kvm" true; - linux_grsec_stable_server = - mkOpts "stable" "security" "server" "host" "kvm" true; - linux_grsec_stable_server_xen = - mkOpts "stable" "security" "server" "guest" "xen" true; - - # Testing kernels - linux_grsec_testing_desktop = - mkOpts "testing" "performance" "desktop" "host" "kvm" true; - linux_grsec_testing_server = - mkOpts "testing" "security" "server" "host" "kvm" true; - linux_grsec_testing_server_xen = - mkOpts "testing" "security" "server" "guest" "xen" true; + desktop = + mkOpts "performance" "desktop" "host" "kvm" true; + server = + mkOpts "security" "server" "host" "kvm" true; + server_xen = + mkOpts "security" "server" "guest" "xen" true; } diff --git a/pkgs/build-support/ocaml/default.nix b/pkgs/build-support/ocaml/default.nix index 87bfa6cea12..50f7627568d 100644 --- a/pkgs/build-support/ocaml/default.nix +++ b/pkgs/build-support/ocaml/default.nix @@ -11,7 +11,7 @@ let ocaml_version = (builtins.parseDrvName ocaml.name).version; defaultMeta = { - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; in assert minimumSupportedOcamlVersion != null -> diff --git a/pkgs/build-support/setup-hooks/wrap-gapps-hook.sh b/pkgs/build-support/setup-hooks/wrap-gapps-hook.sh index 9e0cd22c119..3cad1838d26 100644 --- a/pkgs/build-support/setup-hooks/wrap-gapps-hook.sh +++ b/pkgs/build-support/setup-hooks/wrap-gapps-hook.sh @@ -11,7 +11,7 @@ envHooks+=(find_gio_modules) # Note: $gappsWrapperArgs still gets defined even if $dontWrapGApps is set. wrapGAppsHook() { # guard against running multiple times (e.g. due to propagation) - [ -z "$wrapGAppsHookHasRun" ] || return + [ -z "$wrapGAppsHookHasRun" ] || return 0 wrapGAppsHookHasRun=1 if [ -n "$GDK_PIXBUF_MODULE_FILE" ]; then diff --git a/pkgs/build-support/trivial-builders.nix b/pkgs/build-support/trivial-builders.nix index 93b8b1cbc42..fef91e1d89d 100644 --- a/pkgs/build-support/trivial-builders.nix +++ b/pkgs/build-support/trivial-builders.nix @@ -48,7 +48,10 @@ rec { # Create a forest of symlinks to the files in `paths'. symlinkJoin = name: paths: - runCommand name { inherit paths; } + runCommand name + { inherit paths; + preferLocalBuild = true; allowSubstitutes = false; + } '' mkdir -p $out for i in $paths; do diff --git a/pkgs/build-support/vm/windows/cygwin-iso/default.nix b/pkgs/build-support/vm/windows/cygwin-iso/default.nix index b560a850a30..625071c9c33 100644 --- a/pkgs/build-support/vm/windows/cygwin-iso/default.nix +++ b/pkgs/build-support/vm/windows/cygwin-iso/default.nix @@ -16,7 +16,7 @@ let sha256 = "1slyj4qha7x649ggwdski9spmyrbs04z2d46vgk8krllg0kppnjv"; }; - cygwinCross = (import ../../../../top-level/all-packages.nix { + cygwinCross = (import ../../../../.. { inherit (stdenv) system; crossSystem = { libc = "msvcrt"; diff --git a/pkgs/data/documentation/man-pages/default.nix b/pkgs/data/documentation/man-pages/default.nix index 02b4518b63d..56956280fea 100644 --- a/pkgs/data/documentation/man-pages/default.nix +++ b/pkgs/data/documentation/man-pages/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "man-pages-${version}"; - version = "4.04"; + version = "4.05"; src = fetchurl { url = "mirror://kernel/linux/docs/man-pages/${name}.tar.xz"; - sha256 = "0v8zxq4scfixy3pjpw9ankvv5v8frv62khv4xm1jpkswyq6rbqcg"; + sha256 = "03d6aqgvhcsyciwdhl50h9bwn53iivvd7rbnh8als2ia9jwm2026"; }; makeFlags = [ "MANDIR=$(out)/share/man" ]; diff --git a/pkgs/data/fonts/montserrat/default.nix b/pkgs/data/fonts/montserrat/default.nix new file mode 100644 index 00000000000..70fd2060ff1 --- /dev/null +++ b/pkgs/data/fonts/montserrat/default.nix @@ -0,0 +1,28 @@ +# Originally packaged for ArchLinux. +# +# https://aur.archlinux.org/packages/ttf-montserrat/ + +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "montserrat-${version}"; + version = "1.0"; + + src = fetchurl { + url = "http://marvid.fr/~eeva/mirror/Montserrat.tar.gz"; + sha256 = "12yn651kxi5fcbpdxhapg5fpri291mgcfc1kx7ymg53nrl11nj3x"; + }; + + installPhase = '' + mkdir -p $out/share/fonts/montserrat + cp *.ttf $out/share/fonts/montserrat + ''; + + meta = with stdenv.lib; { + description = "A geometric sans serif font with extended latin support (Regular, Alternates, Subrayada)"; + homepage = "http://www.fontspace.com/julieta-ulanovsky/montserrat"; + license = licenses.ofl; + platforms = platforms.all; + maintainers = with maintainers; [ scolobb ]; + }; +} diff --git a/pkgs/data/fonts/mplus-outline-fonts/default.nix b/pkgs/data/fonts/mplus-outline-fonts/default.nix index eefb663f722..22a5245ec40 100644 --- a/pkgs/data/fonts/mplus-outline-fonts/default.nix +++ b/pkgs/data/fonts/mplus-outline-fonts/default.nix @@ -2,7 +2,7 @@ stdenv.mkDerivation rec { name = "mplus-${version}"; - version = "TESTFLIGHT-059"; + version = "059"; src = fetchurl { url = "mirror://sourceforgejp/mplus-fonts/62344/mplus-TESTFLIGHT-059.tar.xz"; diff --git a/pkgs/data/misc/tzdata/default.nix b/pkgs/data/misc/tzdata/default.nix index 045a9eef00a..0c58ebe6046 100644 --- a/pkgs/data/misc/tzdata/default.nix +++ b/pkgs/data/misc/tzdata/default.nix @@ -1,25 +1,32 @@ { stdenv, fetchurl }: -let version = "2015g"; in - stdenv.mkDerivation rec { name = "tzdata-${version}"; + version = "2016b"; srcs = [ (fetchurl { url = "http://www.iana.org/time-zones/repository/releases/tzdata${version}.tar.gz"; - sha256 = "0qb1awqrn3215zd2jikpqnmkzrxwfjf0d3dw2xmnk4c40yzws8xr"; + sha256 = "6392091d92556a32de488ea06a055c51bc46b7d8046c8a677f0ccfe286b3dbdc"; }) (fetchurl { url = "http://www.iana.org/time-zones/repository/releases/tzcode${version}.tar.gz"; - sha256 = "1i3y1kzjiz2j62c7vd4wf85983sqk9x9lg3473njvbdz4kph5r0q"; + sha256 = "e935c4fe78b5c5da3791f58f3ab7f07fb059a7c71d6b62b69ef345211ae5dfa7"; }) ]; sourceRoot = "."; outputs = [ "out" "lib" ]; - makeFlags = "TOPDIR=$(out) TZDIR=$(out)/share/zoneinfo ETCDIR=$(TMPDIR)/etc LIBDIR=$(lib)/lib MANDIR=$(TMPDIR)/man AWK=awk CFLAGS=-DHAVE_LINK=0"; + makeFlags = [ + "TOPDIR=$(out)" + "TZDIR=$(out)/share/zoneinfo" + "ETCDIR=$(TMPDIR)/etc" + "LIBDIR=$(lib)/lib" + "MANDIR=$(TMPDIR)/man" + "AWK=awk" + "CFLAGS=-DHAVE_LINK=0" + ]; postInstall = '' diff --git a/pkgs/data/sgml+xml/schemas/xml-dtd/docbook/4.2.nix b/pkgs/data/sgml+xml/schemas/xml-dtd/docbook/4.2.nix index 7071d4a471f..3875362dcb3 100644 --- a/pkgs/data/sgml+xml/schemas/xml-dtd/docbook/4.2.nix +++ b/pkgs/data/sgml+xml/schemas/xml-dtd/docbook/4.2.nix @@ -5,7 +5,7 @@ import ./generic.nix { name = "docbook-xml-4.2"; src = fetchurl { url = http://www.docbook.org/xml/4.2/docbook-xml-4.2.zip; - md5 = "73fe50dfe74ca631c1602f558ed8961f"; + sha256 = "acc4601e4f97a196076b7e64b368d9248b07c7abf26b34a02cca40eeebe60fa2"; }; meta = { branch = "4.2"; diff --git a/pkgs/desktops/e19/default.nix b/pkgs/desktops/e19/default.nix deleted file mode 100644 index b285498be9d..00000000000 --- a/pkgs/desktops/e19/default.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ callPackage, pkgs }: -rec { - #### CORE EFL - efl = callPackage ./efl.nix { openjpeg = pkgs.openjpeg_1; }; - evas = callPackage ./evas.nix { }; - emotion = callPackage ./emotion.nix { }; - elementary = callPackage ./elementary.nix { }; - - #### WINDOW MANAGER - enlightenment = callPackage ./enlightenment.nix { }; - - #### APPLICATIONS - econnman = callPackage ./econnman.nix { }; - terminology = callPackage ./terminology.nix { }; - rage = callPackage ./rage.nix { }; -} diff --git a/pkgs/desktops/e19/enlightenment.nix b/pkgs/desktops/e19/enlightenment.nix deleted file mode 100644 index 5112058f8c6..00000000000 --- a/pkgs/desktops/e19/enlightenment.nix +++ /dev/null @@ -1,47 +0,0 @@ -{ stdenv, fetchurl, pkgconfig, e19, xorg, libffi, pam, alsaLib, luajit, bzip2, libuuid -, libpthreadstubs, gdbm, libcap, mesa_glu, xkeyboard_config, set_freqset_setuid ? false }: - -stdenv.mkDerivation rec { - name = "enlightenment-${version}"; - version = "0.20.3"; - src = fetchurl { - url = "http://download.enlightenment.org/rel/apps/enlightenment/${name}.tar.xz"; - sha256 = "19z3bwdzwpzwi330l5g5mj7xy6wy8xrc39zivjhm0d1ql3fh649j"; - }; - buildInputs = [ pkgconfig e19.efl e19.elementary xorg.libXdmcp xorg.libxcb - xorg.xcbutilkeysyms xorg.libXrandr libffi pam alsaLib luajit bzip2 libuuid - libpthreadstubs gdbm ] ++ stdenv.lib.optionals stdenv.isLinux [ libcap ]; - NIX_CFLAGS_COMPILE = [ "-I${e19.efl}/include/eo-1" "-I${e19.efl}/include/emile-1" "-I${libuuid}/include/uuid" ]; - preConfigure = '' - export USER_SESSION_DIR=$prefix/lib/systemd/user - - substituteInPlace src/modules/xkbswitch/e_mod_parse.c \ - --replace "/usr/share/X11/xkb/rules/xorg.lst" "${xkeyboard_config}/share/X11/xkb/rules/base.lst" - - substituteInPlace "src/bin/e_import_config_dialog.c" \ - --replace "e_prefix_bin_get()" "\"${e19.efl}/bin\"" - ''; - - enableParallelBuilding = true; - - # this is a hack and without this cpufreq module is not working: - # when set_freqset_setuid is true and "e19_freqset" is set in setuidPrograms (this is taken care of in e19 NixOS module), - # then this postInstall does the folowing: - # 1. moves the "freqset" binary to "e19_freqset", - # 2. linkes "e19_freqset" to enlightenment/bin so that, - # 3. setuidPrograms detects it and makes appropriate stuff to /var/setuid-wrappers/e19_freqset, - # 4. and finaly, linkes /var/setuid-wrappers/e19_freqset to original destination where enlightenment wants it - postInstall = if set_freqset_setuid then '' - export CPUFREQ_DIRPATH=`readlink -f $out/lib/enlightenment/modules/cpufreq/linux-gnu-*`; - mv $CPUFREQ_DIRPATH/freqset $CPUFREQ_DIRPATH/e19_freqset - ln -sv $CPUFREQ_DIRPATH/e19_freqset $out/bin/e19_freqset - ln -sv /var/setuid-wrappers/e19_freqset $CPUFREQ_DIRPATH/freqset - '' else ""; - meta = { - description = "The Compositing Window Manager and Desktop Shell"; - homepage = http://enlightenment.org/; - maintainers = with stdenv.lib.maintainers; [ matejc tstrobel ftrvxmtrx ]; - platforms = stdenv.lib.platforms.linux; - license = stdenv.lib.licenses.bsd2; - }; -} diff --git a/pkgs/desktops/enlightenment/default.nix b/pkgs/desktops/enlightenment/default.nix index 5aa3d781e4b..b285498be9d 100644 --- a/pkgs/desktops/enlightenment/default.nix +++ b/pkgs/desktops/enlightenment/default.nix @@ -1,29 +1,16 @@ -{ stdenv, fetchurl, pkgconfig, xlibsWrapper, xorg, dbus, imlib2, freetype }: +{ callPackage, pkgs }: +rec { + #### CORE EFL + efl = callPackage ./efl.nix { openjpeg = pkgs.openjpeg_1; }; + evas = callPackage ./evas.nix { }; + emotion = callPackage ./emotion.nix { }; + elementary = callPackage ./elementary.nix { }; -let version = "0.16.8.15"; in - stdenv.mkDerivation { - name = "enlightenment-${version}"; + #### WINDOW MANAGER + enlightenment = callPackage ./enlightenment.nix { }; - src = fetchurl { - url = "mirror://sourceforge/enlightenment/e16-${version}.tar.gz"; - sha256 = "0f8hg79mrk6b3fsvynvsrnqh1zgmvnnza0lf7qn4pq2mqyigbhgk"; - }; - - buildInputs = [pkgconfig imlib2 freetype - xorg.libX11 xorg.libXt xorg.libXext xorg.libXrender xorg.libXft ]; - - meta = { - description = "Desktop shell built on the Enlightenment Foundation Libraries"; - - longDescription = '' - Enlightenment is a window manager. Enlightenment is a desktop - shell. Enlightenment is the building blocks to create - beautiful applications. Enlightenment, or simply e, is a - group of people trying to make a new generation of software. - ''; - - homepage = http://enlightenment.org/; - - license = "BSD-style"; - }; - } + #### APPLICATIONS + econnman = callPackage ./econnman.nix { }; + terminology = callPackage ./terminology.nix { }; + rage = callPackage ./rage.nix { }; +} diff --git a/pkgs/desktops/e19/econnman.nix b/pkgs/desktops/enlightenment/econnman.nix similarity index 57% rename from pkgs/desktops/e19/econnman.nix rename to pkgs/desktops/enlightenment/econnman.nix index 35b58aec638..0dabd7f1347 100644 --- a/pkgs/desktops/e19/econnman.nix +++ b/pkgs/desktops/enlightenment/econnman.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, e19, python27, python27Packages, dbus, makeWrapper }: +{ stdenv, fetchurl, pkgconfig, efl, elementary, python2Packages, dbus, makeWrapper }: stdenv.mkDerivation rec { name = "econnman-${version}"; version = "1.1"; @@ -7,10 +7,10 @@ stdenv.mkDerivation rec { sha256 = "057pwwavlvrrq26bncqnfrf449zzaim0zq717xv86av4n940gwv0"; }; - buildInputs = [ makeWrapper pkgconfig e19.efl python27 dbus ]; - propagatedBuildInputs = [ python27Packages.pythonefl_1_16 python27Packages.dbus e19.elementary ]; + buildInputs = [ makeWrapper pkgconfig efl python2Packages.python python2Packages.wrapPython dbus ]; + pythonPath = [ python2Packages.pythonefl python2Packages.dbus elementary ]; postInstall = '' - wrapProgram $out/bin/econnman-bin --prefix PYTHONPATH : ${python27Packages.dbus}/lib/python2.7/site-packages:${python27Packages.pythonefl_1_16}/lib/python2.7/site-packages + wrapPythonPrograms ''; meta = { diff --git a/pkgs/desktops/e19/efl-elua.patch b/pkgs/desktops/enlightenment/efl-elua.patch similarity index 100% rename from pkgs/desktops/e19/efl-elua.patch rename to pkgs/desktops/enlightenment/efl-elua.patch diff --git a/pkgs/desktops/e19/efl.nix b/pkgs/desktops/enlightenment/efl.nix similarity index 96% rename from pkgs/desktops/e19/efl.nix rename to pkgs/desktops/enlightenment/efl.nix index dd9c837ed8b..c2124f0b292 100644 --- a/pkgs/desktops/e19/efl.nix +++ b/pkgs/desktops/enlightenment/efl.nix @@ -3,10 +3,10 @@ stdenv.mkDerivation rec { name = "efl-${version}"; - version = "1.16.1"; + version = "1.17.0"; src = fetchurl { url = "http://download.enlightenment.org/rel/libs/efl/${name}.tar.xz"; - sha256 = "116s4lcfj5lrfhyvvka3np9glqyrh21cyl9rhw7al0wgb60vw0gg"; + sha256 = "1zisnz4x54mn9sm46kcr571faqnazkcglyf0lbz19l34syx40df1"; }; buildInputs = [ pkgconfig openssl zlib freetype fontconfig fribidi SDL2 SDL mesa diff --git a/pkgs/desktops/e19/elementary.nix b/pkgs/desktops/enlightenment/elementary.nix similarity index 65% rename from pkgs/desktops/e19/elementary.nix rename to pkgs/desktops/enlightenment/elementary.nix index 1793a7e87c4..ffb0d70920e 100644 --- a/pkgs/desktops/e19/elementary.nix +++ b/pkgs/desktops/enlightenment/elementary.nix @@ -1,12 +1,12 @@ -{ stdenv, fetchurl, pkgconfig, e19, libcap, automake114x, autoconf, libdrm, gdbm }: +{ stdenv, fetchurl, pkgconfig, efl, libcap, automake, autoconf, libdrm, gdbm }: stdenv.mkDerivation rec { name = "elementary-${version}"; - version = "1.16.1"; + version = "1.17.0"; src = fetchurl { url = "http://download.enlightenment.org/rel/libs/elementary/${name}.tar.xz"; - sha256 = "0q58imh7s35q6cq5hsa6gqj84rkckh8s61iass8zyvcw19j66f3y"; + sha256 = "0avb0d6nk4d88l81c2j6py13vdfnvg080ycw2y3qvawyjf1mhska"; }; - buildInputs = [ pkgconfig e19.efl libdrm gdbm automake114x autoconf ] ++ stdenv.lib.optionals stdenv.isLinux [ libcap ]; + buildInputs = [ pkgconfig efl libdrm gdbm automake autoconf ] ++ stdenv.lib.optionals stdenv.isLinux [ libcap ]; NIX_CFLAGS_COMPILE = [ "-I${libdrm}/include/libdrm" ]; patches = [ ./elementary.patch ]; enableParallelBuilding = true; diff --git a/pkgs/desktops/e19/elementary.patch b/pkgs/desktops/enlightenment/elementary.patch similarity index 100% rename from pkgs/desktops/e19/elementary.patch rename to pkgs/desktops/enlightenment/elementary.patch diff --git a/pkgs/desktops/e19/emotion.nix b/pkgs/desktops/enlightenment/emotion.nix similarity index 66% rename from pkgs/desktops/e19/emotion.nix rename to pkgs/desktops/enlightenment/emotion.nix index c38119719a0..39b3b162075 100644 --- a/pkgs/desktops/e19/emotion.nix +++ b/pkgs/desktops/enlightenment/emotion.nix @@ -1,13 +1,13 @@ -{ stdenv, fetchurl, pkgconfig, e19, vlc }: +{ stdenv, fetchurl, pkgconfig, efl, vlc }: stdenv.mkDerivation rec { name = "emotion_generic_players-${version}"; - version = "1.16.0"; + version = "1.17.0"; src = fetchurl { url = "http://download.enlightenment.org/rel/libs/emotion_generic_players/${name}.tar.xz"; - sha256 = "163ay26c6dx49m1am7vsxxn0gy877zhayxq0yxn9zkbq2srzvjym"; + sha256 = "03kaql95mk0c5j50v3c5i5lmlr3gz7xlh8p8q87xz8zf9j5h1pp7"; }; - buildInputs = [ pkgconfig e19.efl vlc ]; - NIX_CFLAGS_COMPILE = [ "-I${e19.efl}/include/eo-1" ]; + buildInputs = [ pkgconfig efl vlc ]; + NIX_CFLAGS_COMPILE = [ "-I${efl}/include/eo-1" ]; meta = { description = "Extra video decoders"; homepage = http://enlightenment.org/; diff --git a/pkgs/desktops/enlightenment/enlightenment.nix b/pkgs/desktops/enlightenment/enlightenment.nix new file mode 100644 index 00000000000..ea232a2c607 --- /dev/null +++ b/pkgs/desktops/enlightenment/enlightenment.nix @@ -0,0 +1,47 @@ +{ stdenv, fetchurl, pkgconfig, efl, elementary, xcbutilkeysyms, libXrandr, libXdmcp, libxcb, +libffi, pam, alsaLib, luajit, bzip2, libuuid, libpthreadstubs, gdbm, libcap, mesa_glu +, xkeyboard_config }: + +stdenv.mkDerivation rec { + name = "enlightenment-${version}"; + version = "0.20.6"; + src = fetchurl { + url = "http://download.enlightenment.org/rel/apps/enlightenment/${name}.tar.xz"; + sha256 = "11ahll68nlci214ka05whp5l32hy9lznmcdfqx3hxsmq2p7bl7zj"; + }; + buildInputs = [ pkgconfig efl elementary libXdmcp libxcb + xcbutilkeysyms libXrandr libffi pam alsaLib luajit bzip2 libuuid + libpthreadstubs gdbm ] ++ stdenv.lib.optionals stdenv.isLinux [ libcap ]; + NIX_CFLAGS_COMPILE = [ "-I${efl}/include/eo-1" "-I${efl}/include/emile-1" "-I${libuuid}/include/uuid" ]; + preConfigure = '' + export USER_SESSION_DIR=$prefix/lib/systemd/user + + substituteInPlace src/modules/xkbswitch/e_mod_parse.c \ + --replace "/usr/share/X11/xkb/rules/xorg.lst" "${xkeyboard_config}/share/X11/xkb/rules/base.lst" + + substituteInPlace "src/bin/e_import_config_dialog.c" \ + --replace "e_prefix_bin_get()" "\"${efl}/bin\"" + ''; + + enableParallelBuilding = true; + + # this is a hack and without this cpufreq module is not working. does the following: + # 1. moves the "freqset" binary to "e_freqset", + # 2. linkes "e_freqset" to enlightenment/bin so that, + # 3. setuidPrograms detects it and makes appropriate stuff to /var/setuid-wrappers/e_freqset, + # 4. and finaly, linkes /var/setuid-wrappers/e_freqset to original destination where enlightenment wants it + postInstall = '' + export CPUFREQ_DIRPATH=`readlink -f $out/lib/enlightenment/modules/cpufreq/linux-gnu-*`; + mv $CPUFREQ_DIRPATH/freqset $CPUFREQ_DIRPATH/e_freqset + ln -sv $CPUFREQ_DIRPATH/e_freqset $out/bin/e_freqset + ln -sv /var/setuid-wrappers/e_freqset $CPUFREQ_DIRPATH/freqset + ''; + + meta = { + description = "The Compositing Window Manager and Desktop Shell"; + homepage = http://enlightenment.org/; + maintainers = with stdenv.lib.maintainers; [ matejc tstrobel ftrvxmtrx ]; + platforms = stdenv.lib.platforms.linux; + license = stdenv.lib.licenses.bsd2; + }; +} diff --git a/pkgs/desktops/e19/evas.nix b/pkgs/desktops/enlightenment/evas.nix similarity index 64% rename from pkgs/desktops/e19/evas.nix rename to pkgs/desktops/enlightenment/evas.nix index b777dc893d7..fe8897b8be7 100644 --- a/pkgs/desktops/e19/evas.nix +++ b/pkgs/desktops/enlightenment/evas.nix @@ -1,12 +1,12 @@ -{ stdenv, fetchurl, pkgconfig, e19, zlib, libspectre, gstreamer, gst_plugins_base, gst_ffmpeg, gst_plugins_good, poppler, librsvg, libraw }: +{ stdenv, fetchurl, pkgconfig, efl, zlib, libspectre, gstreamer, gst_plugins_base, gst_ffmpeg, gst_plugins_good, poppler, librsvg, libraw }: stdenv.mkDerivation rec { name = "evas_generic_loaders-${version}"; - version = "1.16.0"; + version = "1.17.0"; src = fetchurl { url = "http://download.enlightenment.org/rel/libs/evas_generic_loaders/${name}.tar.xz"; - sha256 = "1il3i3rii6ddpj7cw2mdqnb0q2wmhwnvs6qi9janna1n5hhrqyfm"; + sha256 = "0ynq1nx0bfgg19p4vki1fap36yyip53zaxpzncx2slr6jcx1kxf2"; }; - buildInputs = [ pkgconfig e19.efl zlib libspectre gstreamer gst_plugins_base gst_ffmpeg gst_plugins_good poppler librsvg libraw ]; + buildInputs = [ pkgconfig efl zlib libspectre gstreamer gst_plugins_base gst_ffmpeg gst_plugins_good poppler librsvg libraw ]; meta = { description = "Extra image decoders"; homepage = http://enlightenment.org/; diff --git a/pkgs/desktops/e19/rage.nix b/pkgs/desktops/enlightenment/rage.nix similarity index 85% rename from pkgs/desktops/e19/rage.nix rename to pkgs/desktops/enlightenment/rage.nix index 19c99ac17eb..8c3391cf271 100644 --- a/pkgs/desktops/e19/rage.nix +++ b/pkgs/desktops/enlightenment/rage.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, e19, automake, autoconf, libtool, pkgconfig, gst_all_1 +{ stdenv, fetchurl, elementary, efl, automake, autoconf, libtool, pkgconfig, gst_all_1 , makeWrapper, lib }: stdenv.mkDerivation rec { name = "rage-${version}"; @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { url = "http://download.enlightenment.org/rel/apps/rage/${name}.tar.gz"; sha256 = "10j3n8crk16jzqz2hn5djx6vms5f6x83qyiaphhqx94h9dgv2mgg"; }; - buildInputs = [ e19.elementary e19.efl automake autoconf libtool pkgconfig + buildInputs = [ elementary efl automake autoconf libtool pkgconfig makeWrapper ]; GST_PLUGIN_PATH = lib.makeSearchPath "lib/gstreamer-1.0" [ gst_all_1.gst-plugins-base diff --git a/pkgs/desktops/e19/terminology.nix b/pkgs/desktops/enlightenment/terminology.nix similarity index 85% rename from pkgs/desktops/e19/terminology.nix rename to pkgs/desktops/enlightenment/terminology.nix index 195a1f43664..a302b7d5f61 100644 --- a/pkgs/desktops/e19/terminology.nix +++ b/pkgs/desktops/enlightenment/terminology.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, e19 }: +{ stdenv, fetchurl, pkgconfig, efl, elementary }: stdenv.mkDerivation rec { name = "terminology-${version}"; version = "0.9.1"; @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { url = "http://download.enlightenment.org/rel/apps/terminology/${name}.tar.xz"; sha256 = "1kwv9vkhngdm5v38q93xpcykghnyawhjjcb5bgy0p89gpbk7mvpc"; }; - buildInputs = [ pkgconfig e19.efl e19.elementary ]; + buildInputs = [ pkgconfig efl elementary ]; meta = { description = "The best terminal emulator written with the EFL"; homepage = http://enlightenment.org/; diff --git a/pkgs/desktops/gnome-3/3.18/apps/file-roller/default.nix b/pkgs/desktops/gnome-3/3.18/apps/file-roller/default.nix index 4e35676f3cb..df90c7b2977 100644 --- a/pkgs/desktops/gnome-3/3.18/apps/file-roller/default.nix +++ b/pkgs/desktops/gnome-3/3.18/apps/file-roller/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, glib, pkgconfig, gnome3, intltool, itstool, libxml2, libarchive -, attr, bzip2, acl, makeWrapper, librsvg, gdk_pixbuf }: +, attr, bzip2, acl, wrapGAppsHook, librsvg, gdk_pixbuf }: stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; @@ -7,14 +7,11 @@ stdenv.mkDerivation rec { # TODO: support nautilus # it tries to create {nautilus}/lib/nautilus/extensions-3.0/libnautilus-fileroller.so - buildInputs = [ glib pkgconfig gnome3.gtk intltool itstool libxml2 libarchive - gnome3.defaultIconTheme attr bzip2 acl gdk_pixbuf librsvg - makeWrapper ]; + nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; - preFixup = '' - wrapProgram "$out/bin/file-roller" \ - --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH:$out/share" - ''; + buildInputs = [ glib gnome3.gtk intltool itstool libxml2 libarchive + gnome3.defaultIconTheme attr bzip2 acl gdk_pixbuf librsvg + gnome3.dconf ]; meta = with stdenv.lib; { homepage = https://wiki.gnome.org/Apps/FileRoller; diff --git a/pkgs/desktops/gnome-3/3.18/apps/gedit/default.nix b/pkgs/desktops/gnome-3/3.18/apps/gedit/default.nix index 6cff4bdee48..6c852ddae5c 100644 --- a/pkgs/desktops/gnome-3/3.18/apps/gedit/default.nix +++ b/pkgs/desktops/gnome-3/3.18/apps/gedit/default.nix @@ -1,6 +1,6 @@ { stdenv, intltool, fetchurl, enchant, isocodes , pkgconfig, gtk3, glib -, bash, makeWrapper, itstool, libsoup, libxml2 +, bash, wrapGAppsHook, itstool, libsoup, libxml2 , gnome3, librsvg, gdk_pixbuf, file }: stdenv.mkDerivation rec { @@ -8,19 +8,17 @@ stdenv.mkDerivation rec { propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; - buildInputs = [ pkgconfig gtk3 glib intltool itstool enchant isocodes + nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; + + buildInputs = [ gtk3 glib intltool itstool enchant isocodes gdk_pixbuf gnome3.defaultIconTheme librsvg libsoup gnome3.libpeas gnome3.gtksourceview libxml2 - gnome3.gsettings_desktop_schemas makeWrapper file ]; + gnome3.gsettings_desktop_schemas gnome3.dconf file ]; enableParallelBuilding = true; preFixup = '' - wrapProgram "$out/bin/gedit" \ - --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ - --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \ - --prefix LD_LIBRARY_PATH : "${gnome3.libpeas}/lib:${gnome3.gtksourceview}/lib" \ - --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" + gappsWrapperArgs+=(--prefix LD_LIBRARY_PATH : "${gnome3.libpeas}/lib:${gnome3.gtksourceview}/lib") ''; meta = with stdenv.lib; { diff --git a/pkgs/desktops/gnome-3/3.18/core/dconf-editor/default.nix b/pkgs/desktops/gnome-3/3.18/core/dconf-editor/default.nix index 5b2b055fe66..bf39965bf77 100644 --- a/pkgs/desktops/gnome-3/3.18/core/dconf-editor/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/dconf-editor/default.nix @@ -1,16 +1,13 @@ { stdenv, fetchurl, vala, libxslt, pkgconfig, glib, dbus_glib, gnome3 -, libxml2, intltool, docbook_xsl_ns, docbook_xsl, makeWrapper }: +, libxml2, intltool, docbook_xsl_ns, docbook_xsl, wrapGAppsHook }: stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; - buildInputs = [ vala libxslt pkgconfig glib dbus_glib gnome3.gtk libxml2 gnome3.defaultIconTheme - intltool docbook_xsl docbook_xsl_ns makeWrapper gnome3.dconf ]; + nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; - preFixup = '' - wrapProgram "$out/bin/dconf-editor" \ - --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" - ''; + buildInputs = [ vala libxslt glib dbus_glib gnome3.gtk libxml2 gnome3.defaultIconTheme + intltool docbook_xsl docbook_xsl_ns gnome3.dconf ]; meta = with stdenv.lib; { platforms = platforms.linux; diff --git a/pkgs/desktops/gnome-3/3.18/core/eog/default.nix b/pkgs/desktops/gnome-3/3.18/core/eog/default.nix index fff901142dc..5f36f25e095 100644 --- a/pkgs/desktops/gnome-3/3.18/core/eog/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/eog/default.nix @@ -1,20 +1,15 @@ { fetchurl, stdenv, intltool, pkgconfig, itstool, libxml2, libjpeg, gnome3 -, shared_mime_info, makeWrapper, librsvg, libexif }: +, shared_mime_info, wrapGAppsHook, librsvg, libexif }: stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; + nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; + buildInputs = with gnome3; - [ intltool pkgconfig itstool libxml2 libjpeg gtk glib libpeas makeWrapper librsvg - gsettings_desktop_schemas shared_mime_info adwaita-icon-theme gnome_desktop libexif ]; - - preFixup = '' - wrapProgram "$out/bin/eog" \ - --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \ - --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ - --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${shared_mime_info}/share:${gnome3.adwaita-icon-theme}/share:${gnome3.gtk}/share:$out/share:$GSETTINGS_SCHEMAS_PATH" - - ''; + [ intltool itstool libxml2 libjpeg gtk glib libpeas librsvg + gsettings_desktop_schemas shared_mime_info adwaita-icon-theme + gnome_desktop libexif dconf ]; meta = with stdenv.lib; { homepage = https://wiki.gnome.org/Apps/EyeOfGnome; diff --git a/pkgs/desktops/gnome-3/3.18/core/epiphany/default.nix b/pkgs/desktops/gnome-3/3.18/core/epiphany/default.nix index ff21da4a28c..322dd3bedac 100644 --- a/pkgs/desktops/gnome-3/3.18/core/epiphany/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/epiphany/default.nix @@ -1,5 +1,5 @@ { stdenv, intltool, fetchurl, pkgconfig, gtk3, glib, nspr, icu -, bash, makeWrapper, gnome3, libwnck3, libxml2, libxslt, libtool +, bash, wrapGAppsHook, gnome3, libwnck3, libxml2, libxslt, libtool , webkitgtk, libsoup, glib_networking, libsecret, gnome_desktop, libnotify, p11_kit , sqlite, gcr, avahi, nss, isocodes, itstool, file, which , gdk_pixbuf, librsvg, gnome_common }: @@ -12,27 +12,18 @@ stdenv.mkDerivation rec { propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; - nativeBuildInputs = [ pkgconfig file ]; + nativeBuildInputs = [ pkgconfig file wrapGAppsHook ]; buildInputs = [ gtk3 glib intltool libwnck3 libxml2 libxslt pkgconfig file webkitgtk libsoup libsecret gnome_desktop libnotify libtool sqlite isocodes nss itstool p11_kit nspr icu gnome3.yelp_tools gdk_pixbuf gnome3.defaultIconTheme librsvg which gnome_common - gcr avahi gnome3.gsettings_desktop_schemas makeWrapper ]; + gcr avahi gnome3.gsettings_desktop_schemas gnome3.dconf ]; NIX_CFLAGS_COMPILE = "-I${nspr}/include/nspr -I${nss}/include/nss -I${glib}/include/gio-unix-2.0"; enableParallelBuilding = true; - preFixup = '' - for f in $out/bin/* $out/libexec/*; do - wrapProgram "$f" \ - --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ - --prefix GIO_EXTRA_MODULES : "${glib_networking}/lib/gio/modules" \ - --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" - done - ''; - meta = with stdenv.lib; { homepage = https://wiki.gnome.org/Apps/Epiphany; description = "WebKit based web browser for GNOME"; diff --git a/pkgs/desktops/gnome-3/3.18/core/evince/default.nix b/pkgs/desktops/gnome-3/3.18/core/evince/default.nix index 3220e906064..d0857a1d32a 100644 --- a/pkgs/desktops/gnome-3/3.18/core/evince/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/evince/default.nix @@ -1,6 +1,6 @@ { fetchurl, stdenv, pkgconfig, intltool, perl, perlXMLParser, libxml2 , glib, gtk3, pango, atk, gdk_pixbuf, shared_mime_info, itstool, gnome3 -, poppler, ghostscriptX, djvulibre, libspectre, libsecret , makeWrapper +, poppler, ghostscriptX, djvulibre, libspectre, libsecret , wrapGAppsHook , librsvg, gobjectIntrospection , recentListSize ? null # 5 is not enough, allow passing a different number , supportXPS ? false # Open XML Paper Specification via libgxps @@ -9,13 +9,15 @@ stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; + nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; + buildInputs = [ - pkgconfig intltool perl perlXMLParser libxml2 + intltool perl perlXMLParser libxml2 glib gtk3 pango atk gdk_pixbuf gobjectIntrospection itstool gnome3.adwaita-icon-theme gnome3.libgnome_keyring gnome3.gsettings_desktop_schemas poppler ghostscriptX djvulibre libspectre - makeWrapper libsecret librsvg gnome3.adwaita-icon-theme + libsecret librsvg gnome3.adwaita-icon-theme gnome3.dconf ] ++ stdenv.lib.optional supportXPS gnome3.libgxps; configureFlags = [ @@ -38,12 +40,7 @@ stdenv.mkDerivation rec { ''; preFixup = '' - # Tell Glib/GIO about the MIME info directory, which is used - # by `g_file_info_get_content_type ()'. - wrapProgram "$out/bin/evince" \ - --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ - --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${gtk3}/share:${shared_mime_info}/share:$out/share:$GSETTINGS_SCHEMAS_PATH" - + gappsWrapperArgs+=(--prefix XDG_DATA_DIRS : "${shared_mime_info}/share") ''; doCheck = false; # would need pythonPackages.dogTail, which is missing diff --git a/pkgs/desktops/gnome-3/3.18/core/gnome-calculator/default.nix b/pkgs/desktops/gnome-3/3.18/core/gnome-calculator/default.nix index 7ca66863d86..fef820010af 100644 --- a/pkgs/desktops/gnome-3/3.18/core/gnome-calculator/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/gnome-calculator/default.nix @@ -1,5 +1,5 @@ { stdenv, intltool, fetchurl, pkgconfig, libxml2 -, bash, gtk3, glib, makeWrapper +, bash, gtk3, glib, wrapGAppsHook , itstool, gnome3, librsvg, gdk_pixbuf, mpfr, gmp }: stdenv.mkDerivation rec { @@ -9,16 +9,12 @@ stdenv.mkDerivation rec { propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; - buildInputs = [ bash pkgconfig gtk3 glib intltool itstool + nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; + + buildInputs = [ bash gtk3 glib intltool itstool libxml2 gnome3.gtksourceview mpfr gmp gdk_pixbuf gnome3.defaultIconTheme librsvg - gnome3.gsettings_desktop_schemas makeWrapper ]; - - preFixup = '' - wrapProgram "$out/bin/gnome-calculator" \ - --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ - --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" - ''; + gnome3.gsettings_desktop_schemas gnome3.dconf ]; meta = with stdenv.lib; { homepage = https://wiki.gnome.org/action/show/Apps/Calculator; diff --git a/pkgs/desktops/gnome-3/3.18/core/gnome-terminal/default.nix b/pkgs/desktops/gnome-3/3.18/core/gnome-terminal/default.nix index 3bbb25ca5c1..052a16affdc 100644 --- a/pkgs/desktops/gnome-3/3.18/core/gnome-terminal/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/gnome-terminal/default.nix @@ -1,27 +1,22 @@ { stdenv, fetchurl, pkgconfig, cairo, libxml2, gnome3, pango , gnome_doc_utils, intltool, libX11, which, libuuid, vala -, desktop_file_utils, itstool, makeWrapper, appdata-tools }: +, desktop_file_utils, itstool, wrapGAppsHook, appdata-tools }: stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; buildInputs = [ gnome3.gtk gnome3.gsettings_desktop_schemas gnome3.vte appdata-tools - gnome3.dconf itstool makeWrapper gnome3.nautilus vala ]; + gnome3.dconf itstool gnome3.nautilus vala ]; - nativeBuildInputs = [ pkgconfig intltool gnome_doc_utils which libuuid libxml2 desktop_file_utils ]; + nativeBuildInputs = [ pkgconfig intltool gnome_doc_utils which libuuid libxml2 + desktop_file_utils wrapGAppsHook ]; # FIXME: enable for gnome3 configureFlags = [ "--disable-search-provider" "--disable-migration" ]; - preFixup = '' - for f in "$out/libexec/gnome-terminal-server"; do - wrapProgram "$f" \ - --prefix XDG_DATA_DIRS : "$out/share:$GSETTINGS_SCHEMAS_PATH" \ - --prefix GIO_EXTRA_MODULES : "${gnome3.dconf}/lib/gio/modules" - done - ''; - meta = with stdenv.lib; { + description = "The GNOME Terminal Emulator"; + homepage = https://wiki.gnome.org/Apps/Terminal/; platforms = platforms.linux; maintainers = gnome3.maintainers; }; diff --git a/pkgs/desktops/gnome-3/3.18/core/nautilus/default.nix b/pkgs/desktops/gnome-3/3.18/core/nautilus/default.nix index ff9f847d3cd..e8fc41df9c0 100644 --- a/pkgs/desktops/gnome-3/3.18/core/nautilus/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/nautilus/default.nix @@ -1,21 +1,15 @@ { stdenv, fetchurl, pkgconfig, libxml2, dbus_glib, shared_mime_info, libexif , gtk, gnome3, libunique, intltool, gobjectIntrospection -, libnotify, makeWrapper, exempi, librsvg, tracker }: +, libnotify, wrapGAppsHook, exempi, librsvg, tracker }: stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; - buildInputs = [ pkgconfig libxml2 dbus_glib shared_mime_info libexif gtk libunique intltool exempi librsvg - gnome3.gnome_desktop gnome3.adwaita-icon-theme - gnome3.gsettings_desktop_schemas libnotify makeWrapper tracker ]; + nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; - preFixup = '' - wrapProgram "$out/bin/nautilus" \ - --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \ - --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ - --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$out/share" \ - --suffix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" - ''; + buildInputs = [ libxml2 dbus_glib shared_mime_info libexif gtk libunique intltool exempi librsvg + gnome3.gnome_desktop gnome3.adwaita-icon-theme + gnome3.gsettings_desktop_schemas gnome3.dconf libnotify tracker ]; patches = [ ./extension_dir.patch ]; diff --git a/pkgs/desktops/gnome-3/3.18/misc/libgda/default.nix b/pkgs/desktops/gnome-3/3.18/misc/libgda/default.nix index 1fcb411d120..12065b53600 100644 --- a/pkgs/desktops/gnome-3/3.18/misc/libgda/default.nix +++ b/pkgs/desktops/gnome-3/3.18/misc/libgda/default.nix @@ -2,7 +2,7 @@ let major = "5.2"; - minor = "2"; + minor = "4"; in stdenv.mkDerivation rec { version = "${major}.${minor}"; @@ -10,7 +10,7 @@ in stdenv.mkDerivation rec { src = fetchurl { url = "mirror://gnome/sources/libgda/${major}/${name}.tar.xz"; - sha256 = "c9b8b1c32f1011e47b73c5dcf36649aaef2f1edaa5f5d75be20d9caadc2bc3e4"; + sha256 = "0pkn9dlb53j73ajkhj8lkf5pa26ci1gwl0bcvxdsmjrwb3fkivic"; }; configureFlags = [ diff --git a/pkgs/desktops/kde-5/applications-15.12/l10n.nix b/pkgs/desktops/kde-5/applications-15.12/l10n.nix index a0605e3bd55..9b211faf444 100644 --- a/pkgs/desktops/kde-5/applications-15.12/l10n.nix +++ b/pkgs/desktops/kde-5/applications-15.12/l10n.nix @@ -152,13 +152,10 @@ lib.mapAttrs (name: attr: pkgs.recurseIntoAttrs attr) { qt4 = callPackage (kdeLocale4 "nds" {}) {}; qt5 = callPackage (kdeLocale5 "nds" {}) {}; }; - # TODO: build broken in 15.11.80; re-enable in next release - /* nl = { qt4 = callPackage (kdeLocale4 "nl" {}) {}; qt5 = callPackage (kdeLocale5 "nl" {}) {}; }; - */ nn = { qt4 = callPackage (kdeLocale4 "nn" {}) {}; qt5 = callPackage (kdeLocale5 "nn" {}) {}; @@ -196,9 +193,19 @@ lib.mapAttrs (name: attr: pkgs.recurseIntoAttrs attr) { qt5 = callPackage (kdeLocale5 "sl" {}) {}; }; sr = { - qt4 = callPackage (kdeLocale4 "sr" {}) {}; + qt4 = callPackage (kdeLocale4 "sr" { + preConfigure = '' + patchShebangs \ + 4/sr/sr@latin/scripts/ts-pmap-compile.py \ + 4/sr/scripts/ts-pmap-compile.py \ + 4/sr/data/resolve-sr-hybrid \ + 4/sr/sr@ijekavian/scripts/ts-pmap-compile.py \ + 4/sr/sr@ijekavianlatin/scripts/ts-pmap-compile.py + ''; + }) {}; qt5 = callPackage (kdeLocale5 "sr" { preConfigure = '' + patchShebangs 5/sr/data/resolve-sr-hybrid sed -e 's/add_subdirectory(kdesdk)//' -i 5/sr/data/CMakeLists.txt ''; }) {}; diff --git a/pkgs/desktops/kde-5/plasma-5.5/kwin/default.nix b/pkgs/desktops/kde-5/plasma-5.5/kwin/default.nix index 2e86068b486..a09acb88aad 100644 --- a/pkgs/desktops/kde-5/plasma-5.5/kwin/default.nix +++ b/pkgs/desktops/kde-5/plasma-5.5/kwin/default.nix @@ -26,6 +26,7 @@ plasmaPackage { kwindowsystem plasma-framework qtdeclarative qtmultimedia qtx11extras ]; patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; + cmakeFlags = [ "-DCMAKE_SKIP_BUILD_RPATH=OFF" ]; postInstall = '' wrapQtProgram "$out/bin/kwin_x11" wrapQtProgram "$out/bin/kwin_wayland" diff --git a/pkgs/desktops/xfce/applications/orage.nix b/pkgs/desktops/xfce/applications/orage.nix new file mode 100644 index 00000000000..c26327f4d92 --- /dev/null +++ b/pkgs/desktops/xfce/applications/orage.nix @@ -0,0 +1,30 @@ +{ stdenv, fetchurl, pkgconfig, bison, flex, intltool, gtk, libical, dbus_glib +, libnotify, popt, xfce +}: + +stdenv.mkDerivation rec { + name = "${p_name}-${ver_maj}.${ver_min}"; + p_name = "orage"; + ver_maj = "4.12"; + ver_min = "1"; + + src = fetchurl { + url = "mirror://xfce/src/apps/${p_name}/${ver_maj}/${name}.tar.bz2"; + sha256 = "0qlhvnl2m33vfxqlbkic2nmfpwyd4mq230jzhs48cg78392amy9w"; + }; + + nativeBuildInputs = [ pkgconfig intltool bison flex ]; + + buildInputs = [ gtk libical dbus_glib libnotify popt xfce.libxfce4util + xfce.xfce4panel ]; + + preFixup = "rm $out/share/icons/hicolor/icon-theme.cache "; + + meta = { + homepage = http://www.xfce.org/projects/; + description = "A simple calendar application with reminders"; + license = stdenv.lib.licenses.gpl2; + platforms = stdenv.lib.platforms.linux; + maintainers = [ stdenv.lib.maintainers.romildo ]; + }; +} diff --git a/pkgs/desktops/xfce/default.nix b/pkgs/desktops/xfce/default.nix index 9453e85d253..96e6c55162a 100644 --- a/pkgs/desktops/xfce/default.nix +++ b/pkgs/desktops/xfce/default.nix @@ -51,6 +51,7 @@ xfce_self = rec { # the lines are very long but it seems better than the even-od gigolo = callPackage ./applications/gigolo.nix { }; mousepad = callPackage ./applications/mousepad.nix { }; + orage = callPackage ./applications/orage.nix { }; parole = callPackage ./applications/parole.nix { }; ristretto = callPackage ./applications/ristretto.nix { }; terminal = xfce4terminal; # it has changed its name diff --git a/pkgs/development/compilers/boo/config.patch b/pkgs/development/compilers/boo/config.patch new file mode 100644 index 00000000000..f6e0eee29b1 --- /dev/null +++ b/pkgs/development/compilers/boo/config.patch @@ -0,0 +1,45 @@ +diff --git a/default.build b/default.build +index e48fd9e..b0dee4f 100644 +--- a/default.build ++++ b/default.build +@@ -23,14 +23,14 @@ + + + +- ++ + + + + + + +- ++ + + + +@@ -575,9 +575,9 @@ + key files for mime detection, etc + --> + +- ++ + +- ++ + + + +@@ -707,9 +707,9 @@ + key files for mime detection, etc + --> + +- ++ + +- ++ + + + diff --git a/pkgs/development/compilers/boo/default.nix b/pkgs/development/compilers/boo/default.nix new file mode 100644 index 00000000000..c57d4de8767 --- /dev/null +++ b/pkgs/development/compilers/boo/default.nix @@ -0,0 +1,45 @@ +{ stdenv, fetchFromGitHub, pkgconfig, dbus, mono, makeWrapper, nant +, shared_mime_info, gtksourceview, gtk +, targetVersion ? "4.5" }: + +let + release = "alpha"; +in stdenv.mkDerivation rec { + name = "boo-${version}"; + version = "2013-10-21"; + + src = fetchFromGitHub { + owner = "boo-lang"; + repo = "boo"; + + rev = "${release}"; + sha256 = "174abdwfpq8i3ijx6bwqll16lx7xwici374rgsbymyk8g8mla094"; + }; + + buildInputs = [ + pkgconfig mono makeWrapper nant shared_mime_info gtksourceview + gtk + ]; + + patches = [ ./config.patch ]; + + postPatch = '' + sed -e 's|\$out|'$out'|' -i default.build + ''; + + buildPhase = '' + nant -t:mono-4.5 + ''; + + installPhase = '' + nant install + cp $out/lib/mono/boo/*.dll $out/lib/boo/ + ''; + + dontStrip = true; + + meta = with stdenv.lib; { + description = "The Boo Programming Language"; + platforms = platforms.linux; + }; +} diff --git a/pkgs/development/compilers/elm/default.nix b/pkgs/development/compilers/elm/default.nix index 408af6e75c6..7fedbed2829 100644 --- a/pkgs/development/compilers/elm/default.nix +++ b/pkgs/development/compilers/elm/default.nix @@ -61,6 +61,9 @@ let in elmPkgs // { inherit elmPkgs; elmVersion = elmRelease.version; + + # To unbreak elm-compiler + language-ecmascript = self.language-ecmascript_0_17_0_2; }; }; in hsPkgs.elmPkgs // { diff --git a/pkgs/development/compilers/fstar/default.nix b/pkgs/development/compilers/fstar/default.nix index e6fe97c6fe8..0b4ea9a1823 100644 --- a/pkgs/development/compilers/fstar/default.nix +++ b/pkgs/development/compilers/fstar/default.nix @@ -2,17 +2,19 @@ stdenv.mkDerivation rec { name = "fstar-${version}"; - version = "2016-01-12"; + version = "0.9.2.0"; src = fetchFromGitHub { owner = "FStarLang"; repo = "FStar"; - rev = "af9a231566ca52c9bc3409398c801ae9e8191cfa"; - sha256 = "1zri4gqr6j6hygnh0ckfhq93mqwk9i19vng8chnmvlr27zq734a2"; + rev = "v${version}"; + sha256 = "0vrxmxfaslngvbvkzpm1gfl1s34hdsprv8msasxf9sjqc3hlir3l"; }; + nativeBuildInputs = [ makeWrapper ]; + buildInputs = with ocamlPackages; [ - mono fsharp z3 dotnetPackages.FsLexYacc ocaml findlib ocaml_batteries openssl makeWrapper + mono fsharp z3 dotnetPackages.FsLexYacc ocaml findlib ocaml_batteries openssl ]; preBuild = '' diff --git a/pkgs/development/compilers/go/1.6.nix b/pkgs/development/compilers/go/1.6.nix index 122f0d336f7..d9924c56744 100644 --- a/pkgs/development/compilers/go/1.6.nix +++ b/pkgs/development/compilers/go/1.6.nix @@ -1,5 +1,5 @@ { stdenv, lib, fetchurl, tzdata, iana_etc, go_1_4, runCommand -, perl, which, pkgconfig, patch +, perl, which, pkgconfig, patch, fetchpatch , pcre , Security, Foundation }: @@ -46,6 +46,11 @@ stdenv.mkDerivation rec { cd go patchShebangs ./ # replace /bin/bash + # This script produces another script at run time, + # and thus it is not corrected by patchShebangs. + substituteInPlace misc/cgo/testcarchive/test.bash \ + --replace '#!/usr/bin/env bash' '#!${stdenv.shell}' + # Disabling the 'os/http/net' tests (they want files not available in # chroot builds) rm src/net/{listen,parse}_test.go @@ -91,6 +96,12 @@ stdenv.mkDerivation rec { patches = [ ./remove-tools-1.5.patch + # Fix bug when using musl (see https://github.com/golang/go/issues/14476) + # Should be fixed by go 1.6.1 + (fetchpatch { + url = "https://github.com/golang/go/commit/1439158120742e5f41825de90a76b680da64bf76.patch"; + sha256 = "0yixpbx056ns5wgd3f4absgiyc2ymmqk8mkhhz5ja90dvilzxcwd"; + }) ] # -ldflags=-s is required to compile on Darwin, see # https://github.com/golang/go/issues/11994 diff --git a/pkgs/development/compilers/hhvm/default.nix b/pkgs/development/compilers/hhvm/default.nix index 817b20af9c4..d976b6edab8 100644 --- a/pkgs/development/compilers/hhvm/default.nix +++ b/pkgs/development/compilers/hhvm/default.nix @@ -3,18 +3,18 @@ , expat, libcap, oniguruma, libdwarf, libmcrypt, tbb, gperftools, glog, libkrb5 , bzip2, openldap, readline, libelf, uwimap, binutils, cyrus_sasl, pam, libpng , libxslt, ocaml, freetype, gdb, git, perl, mariadb, gmp, libyaml, libedit -, libvpx, imagemagick, fribidi +, libvpx, imagemagick, fribidi, gperf }: stdenv.mkDerivation rec { name = "hhvm-${version}"; - version = "3.6.0"; + version = "3.12.1"; # use git version since we need submodules src = fetchgit { url = "https://github.com/facebook/hhvm.git"; - rev = "6ef13f20da20993dc8bab9eb103f73568618d3e8"; - sha256 = "29a2d4b56cfd348b199d8f90b4e4b07de85dfb2ef1538479cd1e84f5bc1fbf96"; + rev = "f516f1bb9046218f89885a220354c19dda6d8f4d"; + sha256 = "1jdw6j394z7ksg4wdcnm7lkcs7iam5myx6k18w8hr595s1dfk3sj"; fetchSubmodules = true; }; @@ -23,10 +23,10 @@ stdenv.mkDerivation rec { libevent gd curl libxml2 icu flex bison openssl zlib php expat libcap oniguruma libdwarf libmcrypt tbb gperftools bzip2 openldap readline libelf uwimap binutils cyrus_sasl pam glog libpng libxslt ocaml libkrb5 - gmp libyaml libedit libvpx imagemagick fribidi + gmp libyaml libedit libvpx imagemagick fribidi gperf ]; - enableParallelBuilding = false; + enableParallelBuilding = true; dontUseCmakeBuildDir = true; NIX_LDFLAGS = "-lpam -L${pam}/lib"; MYSQL_INCLUDE_DIR="${mariadb}/include/mysql"; @@ -40,8 +40,12 @@ stdenv.mkDerivation rec { --replace /bin/bash ${stdenv.shell} substituteInPlace ./configure \ --replace "/usr/bin/env bash" ${stdenv.shell} - sed '1i#include ' \ - -i ./third-party/mcrouter/mcrouter/lib/fibers/TimeoutController.h + perl -pi -e 's/([ \t(])(isnan|isinf)\(/$1std::$2(/g' \ + hphp/runtime/base/*.cpp \ + hphp/runtime/ext/std/*.cpp \ + hphp/runtime/ext_zend_compat/php-src/main/*.cpp \ + hphp/runtime/ext_zend_compat/php-src/main/*.h + patchShebangs . ''; cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" ]; diff --git a/pkgs/development/compilers/ispc/default.nix b/pkgs/development/compilers/ispc/default.nix index 1995923842f..08f0d7e06b1 100644 --- a/pkgs/development/compilers/ispc/default.nix +++ b/pkgs/development/compilers/ispc/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { sha256 = "15qi22qvmlx3jrhrf3rwl0y77v66prpan6qb66a55dw3pw2d4jvn"; }; - enableParallelBuilding = true; + enableParallelBuilding = false; doCheck = true; @@ -29,7 +29,10 @@ stdenv.mkDerivation rec { clang ]; - patchPhase = "sed -i -e 's/\\/bin\\///g' -e 's/-lcurses/-lncurses/g' Makefile"; + # https://github.com/ispc/ispc/pull/1190 + patches = [ ./gcc5.patch ]; + + postPatch = "sed -i -e 's/\\/bin\\///g' -e 's/-lcurses/-lncurses/g' Makefile"; installPhase = '' mkdir -p $out/bin diff --git a/pkgs/development/compilers/ispc/gcc5.patch b/pkgs/development/compilers/ispc/gcc5.patch new file mode 100644 index 00000000000..4f2b7b682fe --- /dev/null +++ b/pkgs/development/compilers/ispc/gcc5.patch @@ -0,0 +1,22 @@ +diff --git a/cbackend.cpp b/cbackend.cpp +index 3552205..9c05824 100644 +--- a/cbackend.cpp ++++ b/cbackend.cpp +@@ -1641,7 +1641,7 @@ void CWriter::printConstant(llvm::Constant *CPV, bool Static) { + V = Tmp.convertToDouble(); + } + +- if (isnan(V)) { ++ if (std::isnan(V)) { + // The value is NaN + + // FIXME the actual NaN bits should be emitted. +@@ -1665,7 +1665,7 @@ void CWriter::printConstant(llvm::Constant *CPV, bool Static) { + else + Out << "LLVM_NAN" << (Val == QuietNaN ? "" : "S") << "(\"" + << Buffer << "\") /*nan*/ "; +- } else if (isinf(V)) { ++ } else if (std::isinf(V)) { + // The value is Inf + if (V < 0) Out << '-'; + Out << "LLVM_INF" << diff --git a/pkgs/development/compilers/jsonnet/default.nix b/pkgs/development/compilers/jsonnet/default.nix index 73bdccb24f7..3489d03c5cc 100644 --- a/pkgs/development/compilers/jsonnet/default.nix +++ b/pkgs/development/compilers/jsonnet/default.nix @@ -1,6 +1,6 @@ { stdenv, lib, fetchFromGitHub, emscripten }: -let version = "0.8.6"; in +let version = "0.8.7"; in stdenv.mkDerivation { name = "jsonnet-${version}"; @@ -9,7 +9,7 @@ stdenv.mkDerivation { rev = "v${version}"; owner = "google"; repo = "jsonnet"; - sha256 = "1dkvm81gi1j02zs00mqshn9i71bcnqbxsm5hh3wwa2y0sffvgkwh"; + sha256 = "0adg7ijz10mc4xs5lfrby5g9sx96icf6cg39hvkh4wqjl85c6i9g"; }; buildInputs = [ emscripten ]; diff --git a/pkgs/development/compilers/julia/default.nix b/pkgs/development/compilers/julia/default.nix index 0eddde15a58..0c0520533bc 100644 --- a/pkgs/development/compilers/julia/default.nix +++ b/pkgs/development/compilers/julia/default.nix @@ -7,6 +7,8 @@ , curl, fftwSinglePrec, fftw, gmp, libgit2, mpfr, openlibm, openspecfun, pcre2 # linear algebra , openblas, arpack, suitesparse +# Darwin frameworks +, CoreServices, ApplicationServices }: with stdenv.lib; @@ -19,6 +21,9 @@ in let arpack = arpack_.override { inherit openblas; }; suitesparse = suitesparse_.override { inherit openblas; }; + llvmShared = if stdenv.isDarwin + then llvm.override { enableSharedLibraries = true; } + else llvm; in let @@ -68,10 +73,11 @@ stdenv.mkDerivation rec { ''; buildInputs = [ - arpack fftw fftwSinglePrec gmp libgit2 libunwind llvm mpfr + arpack fftw fftwSinglePrec gmp libgit2 libunwind llvmShared mpfr pcre2 openblas openlibm openspecfun readline suitesparse utf8proc zlib - ]; + ] ++ + stdenv.lib.optionals stdenv.isDarwin [CoreServices ApplicationServices] ; nativeBuildInputs = [ curl gfortran m4 makeWrapper patchelf perl python2 which ]; @@ -127,6 +133,8 @@ stdenv.mkDerivation rec { openspecfun pcre2 suitesparse ]; + NIX_LDFLAGS = optionalString stdenv.isDarwin "-rpath ${llvmShared}/lib"; + dontStrip = true; dontPatchELF = true; diff --git a/pkgs/development/compilers/julia/git.nix b/pkgs/development/compilers/julia/git.nix index 2f4ce2f4b9e..49c26592f2e 100644 --- a/pkgs/development/compilers/julia/git.nix +++ b/pkgs/development/compilers/julia/git.nix @@ -86,7 +86,7 @@ stdenv.mkDerivation rec { makeFlags = let arch = head (splitString "-" stdenv.system); - march = { "x86_64" = "x86-64"; "i686" = "i686"; }."${arch}" + march = { "x86_64" = "x86-64"; "i686" = "pentium4"; }."${arch}" or (throw "unsupported architecture: ${arch}"); # Julia requires Pentium 4 (SSE2) or better cpuTarget = { "x86_64" = "x86-64"; "i686" = "pentium4"; }."${arch}" diff --git a/pkgs/development/compilers/kotlin/default.nix b/pkgs/development/compilers/kotlin/default.nix index 2433f5ab579..5b9d57cfcac 100644 --- a/pkgs/development/compilers/kotlin/default.nix +++ b/pkgs/development/compilers/kotlin/default.nix @@ -1,16 +1,16 @@ -{ stdenv, fetchurl, makeWrapper, jre, unzip, which }: +{ stdenv, fetchurl, makeWrapper, jre, unzip }: stdenv.mkDerivation rec { - version = "1.0.0"; + version = "1.0.1"; name = "kotlin-${version}"; src = fetchurl { - url = "https://github.com/JetBrains/kotlin/releases/download/build-${version}/kotlin-compiler-${version}.zip"; - sha256 = "0dp5mab35sv3nsgj488ibyn6x6xw2rka76s7kygbhqhjc429kpgy"; + url = "https://github.com/JetBrains/kotlin/releases/download/${version}/kotlin-compiler-${version}.zip"; + sha256 = "1hwdisjgy4q5y25gqnxk8ycd04j7hxb7xd0y6ixi12qfj7259a41"; }; propagatedBuildInputs = [ jre ] ; - buildInputs = [ makeWrapper unzip which ] ; + buildInputs = [ makeWrapper unzip ] ; installPhase = '' mkdir -p $out diff --git a/pkgs/development/compilers/llvm/3.8/clang/default.nix b/pkgs/development/compilers/llvm/3.8/clang/default.nix new file mode 100644 index 00000000000..047f87c92a9 --- /dev/null +++ b/pkgs/development/compilers/llvm/3.8/clang/default.nix @@ -0,0 +1,55 @@ +{ stdenv, fetch, cmake, libxml2, libedit, llvm, version, clang-tools-extra_src, python }: + +let + gcc = if stdenv.cc.isGNU then stdenv.cc.cc else stdenv.cc.cc.gcc; +in stdenv.mkDerivation { + name = "clang-${version}"; + + unpackPhase = '' + unpackFile ${fetch "cfe" "1ybcac8hlr9vl3wg8s4v6cp0c0qgqnwprsv85lihbkq3vqv94504"} + mv cfe-${version}.src clang + sourceRoot=$PWD/clang + unpackFile ${clang-tools-extra_src} + mv clang-tools-extra-* $sourceRoot/tools/extra + ''; + + buildInputs = [ cmake libedit libxml2 llvm python ]; + + cmakeFlags = [ + "-DCMAKE_BUILD_TYPE=Release" + "-DCMAKE_CXX_FLAGS=-std=c++11" + ] ++ + # Maybe with compiler-rt this won't be needed? + (stdenv.lib.optional stdenv.isLinux "-DGCC_INSTALL_PREFIX=${gcc}") ++ + (stdenv.lib.optional (stdenv.cc.libc != null) "-DC_INCLUDE_DIRS=${stdenv.cc.libc}/include"); + + patches = [ ./purity.patch ]; + + postPatch = '' + sed -i -e 's/Args.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/Tools.cpp + sed -i -e 's/DriverArgs.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/ToolChains.cpp + ''; + + # Clang expects to find LLVMgold in its own prefix + # Clang expects to find sanitizer libraries in its own prefix + postInstall = '' + ln -sv ${llvm}/lib/LLVMgold.so $out/lib + ln -sv ${llvm}/lib/clang/${version}/lib $out/lib/clang/${version}/ + ln -sv $out/bin/clang $out/bin/cpp + ''; + + enableParallelBuilding = true; + + passthru = { + isClang = true; + } // stdenv.lib.optionalAttrs stdenv.isLinux { + inherit gcc; + }; + + meta = { + description = "A c, c++, objective-c, and objective-c++ frontend for the llvm compiler"; + homepage = http://llvm.org/; + license = stdenv.lib.licenses.bsd3; + platforms = stdenv.lib.platforms.all; + }; +} diff --git a/pkgs/development/compilers/llvm/3.8/clang/purity.patch b/pkgs/development/compilers/llvm/3.8/clang/purity.patch new file mode 100644 index 00000000000..2d1c68d865e --- /dev/null +++ b/pkgs/development/compilers/llvm/3.8/clang/purity.patch @@ -0,0 +1,17 @@ +--- a/lib/Driver/Tools.cpp 2016-02-12 15:51:41.000000000 -0700 ++++ b/lib/Driver/Tools.cpp 2016-03-08 15:39:06.790111122 -0700 +@@ -8833,15 +8833,6 @@ + CmdArgs.push_back("-shared"); + } + +- if (Arch == llvm::Triple::arm || Arch == llvm::Triple::armeb || +- Arch == llvm::Triple::thumb || Arch == llvm::Triple::thumbeb || +- (!Args.hasArg(options::OPT_static) && +- !Args.hasArg(options::OPT_shared))) { +- CmdArgs.push_back("-dynamic-linker"); +- CmdArgs.push_back(Args.MakeArgString( +- D.DyldPrefix + getLinuxDynamicLinker(Args, ToolChain))); +- } +- + CmdArgs.push_back("-o"); + CmdArgs.push_back(Output.getFilename()); diff --git a/pkgs/development/compilers/llvm/3.8/default.nix b/pkgs/development/compilers/llvm/3.8/default.nix new file mode 100644 index 00000000000..a2a702a617e --- /dev/null +++ b/pkgs/development/compilers/llvm/3.8/default.nix @@ -0,0 +1,35 @@ +{ newScope, stdenv, isl, fetchurl, overrideCC, wrapCC }: +let + callPackage = newScope (self // { inherit stdenv isl version fetch; }); + + version = "3.8.0"; + + fetch = fetch_v version; + fetch_v = ver: name: sha256: fetchurl { + url = "http://llvm.org/releases/${ver}/${name}-${ver}.src.tar.xz"; + inherit sha256; + }; + + compiler-rt_src = fetch "compiler-rt" "1c2nkp9563873ffz22qmhc0wakgj428pch8rmhym8agjamz3ily8"; + clang-tools-extra_src = fetch "clang-tools-extra" "1i0yrgj8qrzjjswraz0i55lg92ljpqhvjr619d268vka208aigdg"; + + self = { + llvm = callPackage ./llvm.nix { + inherit compiler-rt_src stdenv; + }; + + clang-unwrapped = callPackage ./clang { + inherit clang-tools-extra_src stdenv; + }; + + clang = wrapCC self.clang-unwrapped; + + stdenv = overrideCC stdenv self.clang; + + lldb = callPackage ./lldb.nix {}; + + libcxx = callPackage ./libc++ {}; + + libcxxabi = callPackage ./libc++abi.nix {}; + }; +in self diff --git a/pkgs/development/compilers/llvm/3.8/libc++/darwin.patch b/pkgs/development/compilers/llvm/3.8/libc++/darwin.patch new file mode 100644 index 00000000000..bf83f169cfc --- /dev/null +++ b/pkgs/development/compilers/llvm/3.8/libc++/darwin.patch @@ -0,0 +1,30 @@ +diff -ru -x '*~' libcxx-3.4.2.src-orig/lib/CMakeLists.txt libcxx-3.4.2.src/lib/CMakeLists.txt +--- libcxx-3.4.2.src-orig/lib/CMakeLists.txt 2013-11-15 18:18:57.000000000 +0100 ++++ libcxx-3.4.2.src/lib/CMakeLists.txt 2014-09-24 14:04:01.000000000 +0200 +@@ -56,7 +56,7 @@ + "-compatibility_version 1" + "-current_version ${LIBCXX_VERSION}" + "-install_name /usr/lib/libc++.1.dylib" +- "-Wl,-reexport_library,/usr/lib/libc++abi.dylib" ++ "-Wl,-reexport_library,${LIBCXX_LIBCXXABI_LIB_PATH}/libc++abi.dylib" + "-Wl,-unexported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/libc++unexp.exp" + "/usr/lib/libSystem.B.dylib") + else() +@@ -64,14 +64,14 @@ + list(FIND ${CMAKE_OSX_ARCHITECTURES} "armv7" OSX_HAS_ARMV7) + if (OSX_HAS_ARMV7) + set(OSX_RE_EXPORT_LINE +- "${CMAKE_OSX_SYSROOT}/usr/lib/libc++abi.dylib" ++ "${CMAKE_OSX_SYSROOT}${LIBCXX_LIBCXXABI_LIB_PATH}/libc++abi.dylib" + "-Wl,-reexported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/libc++sjlj-abi.exp") + else() + set(OSX_RE_EXPORT_LINE +- "-Wl,-reexport_library,${CMAKE_OSX_SYSROOT}/usr/lib/libc++abi.dylib") ++ "-Wl,-reexport_library,${CMAKE_OSX_SYSROOT}${LIBCXX_LIBCXXABI_LIB_PATH}/libc++abi.dylib") + endif() + else() +- set (OSX_RE_EXPORT_LINE "/usr/lib/libc++abi.dylib -Wl,-reexported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/libc++abi${LIBCXX_LIBCPPABI_VERSION}.exp") ++ set (OSX_RE_EXPORT_LINE "${LIBCXX_LIBCXXABI_LIB_PATH}/libc++abi.dylib -Wl,-reexported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/libc++abi${LIBCXX_LIBCPPABI_VERSION}.exp") + endif() + + list(APPEND link_flags diff --git a/pkgs/development/compilers/llvm/3.8/libc++/default.nix b/pkgs/development/compilers/llvm/3.8/libc++/default.nix new file mode 100644 index 00000000000..00bfb3518b1 --- /dev/null +++ b/pkgs/development/compilers/llvm/3.8/libc++/default.nix @@ -0,0 +1,40 @@ +{ lib, stdenv, fetch, cmake, libcxxabi, fixDarwinDylibNames, version }: + +stdenv.mkDerivation rec { + name = "libc++-${version}"; + + src = fetch "libcxx" "0i7iyzk024krda5spfpfi8jksh83yp3bxqkal0xp76ffi11bszrm"; + + postUnpack = '' + unpackFile ${libcxxabi.src} + ''; + + preConfigure = '' + # Get headers from the cxxabi source so we can see private headers not installed by the cxxabi package + cmakeFlagsArray=($cmakeFlagsArray -DLIBCXX_CXX_ABI_INCLUDE_PATHS="$NIX_BUILD_TOP/libcxxabi-${version}.src/include") + ''; + + patches = [ ./darwin.patch ]; + + buildInputs = [ cmake libcxxabi ] ++ lib.optional stdenv.isDarwin fixDarwinDylibNames; + + cmakeFlags = + [ "-DCMAKE_BUILD_TYPE=Release" + "-DLIBCXX_LIBCXXABI_LIB_PATH=${libcxxabi}/lib" + "-DLIBCXX_LIBCPPABI_VERSION=2" + "-DLIBCXX_CXX_ABI=libcxxabi" + ]; + + enableParallelBuilding = true; + + linkCxxAbi = stdenv.isLinux; + + setupHook = ./setup-hook.sh; + + meta = { + homepage = http://libcxx.llvm.org/; + description = "A new implementation of the C++ standard library, targeting C++11"; + license = "BSD"; + platforms = stdenv.lib.platforms.unix; + }; +} diff --git a/pkgs/development/compilers/llvm/3.8/libc++/setup-hook.sh b/pkgs/development/compilers/llvm/3.8/libc++/setup-hook.sh new file mode 100644 index 00000000000..9022fced6ec --- /dev/null +++ b/pkgs/development/compilers/llvm/3.8/libc++/setup-hook.sh @@ -0,0 +1,3 @@ +linkCxxAbi="@linkCxxAbi@" +export NIX_CXXSTDLIB_COMPILE+=" -isystem @out@/include/c++/v1" +export NIX_CXXSTDLIB_LINK=" -stdlib=libc++${linkCxxAbi:+" -lc++abi"}" diff --git a/pkgs/development/compilers/llvm/3.8/libc++abi.nix b/pkgs/development/compilers/llvm/3.8/libc++abi.nix new file mode 100644 index 00000000000..ec0be51a11c --- /dev/null +++ b/pkgs/development/compilers/llvm/3.8/libc++abi.nix @@ -0,0 +1,47 @@ +{ stdenv, cmake, fetch, libcxx, libunwind, llvm, version }: + +stdenv.mkDerivation { + name = "libc++abi-${version}"; + + src = fetch "libcxxabi" "0ambfcmr2nh88hx000xb7yjm9lsqjjz49w5mlf6dlxzmj3nslzx4"; + + buildInputs = [ cmake ] ++ stdenv.lib.optional (!stdenv.isDarwin && !stdenv.isFreeBSD) libunwind; + + postUnpack = '' + unpackFile ${libcxx.src} + unpackFile ${llvm.src} + export NIX_CFLAGS_COMPILE+=" -I$PWD/include" + export cmakeFlags="-DLLVM_PATH=$PWD/$(ls -d llvm-*) -DLIBCXXABI_LIBCXX_INCLUDES=$PWD/$(ls -d libcxx-*)/include" + '' + stdenv.lib.optionalString stdenv.isDarwin '' + export TRIPLE=x86_64-apple-darwin + ''; + + installPhase = if stdenv.isDarwin + then '' + for file in lib/*.dylib; do + # this should be done in CMake, but having trouble figuring out + # the magic combination of necessary CMake variables + # if you fancy a try, take a look at + # http://www.cmake.org/Wiki/CMake_RPATH_handling + install_name_tool -id $out/$file $file + done + make install + install -d 755 $out/include + install -m 644 ../include/*.h $out/include + '' + else '' + install -d -m 755 $out/include $out/lib + install -m 644 lib/libc++abi.so.1.0 $out/lib + install -m 644 ../include/cxxabi.h $out/include + ln -s libc++abi.so.1.0 $out/lib/libc++abi.so + ln -s libc++abi.so.1.0 $out/lib/libc++abi.so.1 + ''; + + meta = { + homepage = http://libcxxabi.llvm.org/; + description = "A new implementation of low level support for a standard C++ library"; + license = "BSD"; + maintainers = with stdenv.lib.maintainers; [ vlstill ]; + platforms = stdenv.lib.platforms.unix; + }; +} diff --git a/pkgs/development/compilers/llvm/3.8/lldb.nix b/pkgs/development/compilers/llvm/3.8/lldb.nix new file mode 100644 index 00000000000..fe69130e71a --- /dev/null +++ b/pkgs/development/compilers/llvm/3.8/lldb.nix @@ -0,0 +1,49 @@ +{ stdenv +, fetch +, cmake +, zlib +, ncurses +, swig +, which +, libedit +, llvm +, clang-unwrapped +, python +, version +}: + +stdenv.mkDerivation { + name = "lldb-${version}"; + + src = fetch "lldb" "008fdbyza13ym3v0xpans4z4azw4y16hcbgrrnc4rx2mxwaw62ws"; + + patchPhase = '' + sed -i 's|/usr/bin/env||' \ + scripts/Python/finish-swig-Python-LLDB.sh \ + scripts/Python/build-swig-Python.sh + ''; + + buildInputs = [ cmake python which swig ncurses zlib libedit ]; + + preConfigure = '' + export CXXFLAGS="-pthread" + export LDFLAGS="-ldl" + ''; + + cmakeFlags = [ + "-DCMAKE_BUILD_TYPE=Release" + "-DLLDB_PATH_TO_LLVM_BUILD=${llvm}" + "-DLLDB_PATH_TO_CLANG_BUILD=${clang-unwrapped}" + "-DPYTHON_VERSION_MAJOR=2" + "-DPYTHON_VERSION_MINOR=7" + ]; + + enableParallelBuilding = true; + + meta = { + description = "A next-generation high-performance debugger"; + homepage = http://llvm.org/; + license = stdenv.lib.licenses.bsd3; + platforms = stdenv.lib.platforms.all; + }; +} diff --git a/pkgs/development/compilers/llvm/3.8/llvm.nix b/pkgs/development/compilers/llvm/3.8/llvm.nix new file mode 100644 index 00000000000..db73999719d --- /dev/null +++ b/pkgs/development/compilers/llvm/3.8/llvm.nix @@ -0,0 +1,80 @@ +{ stdenv +, fetch +, perl +, groff +, cmake +, python +, libffi +, binutils +, libxml2 +, valgrind +, ncurses +, version +, zlib +, compiler-rt_src +, libcxxabi +, debugVersion ? false +, enableSharedLibraries ? !stdenv.isDarwin +}: + +let + src = fetch "llvm" "0ikfq0gxac8xpvxj23l4hk8f12ydx48fljgrz1gl9xp0ks704nsm"; +in stdenv.mkDerivation rec { + name = "llvm-${version}"; + + unpackPhase = '' + unpackFile ${src} + mv llvm-${version}.src llvm + sourceRoot=$PWD/llvm + unpackFile ${compiler-rt_src} + mv compiler-rt-* $sourceRoot/projects/compiler-rt + ''; + + buildInputs = [ perl groff cmake libxml2 python libffi ] + ++ stdenv.lib.optional stdenv.isDarwin libcxxabi; + + propagatedBuildInputs = [ ncurses zlib ]; + + # hacky fix: created binaries need to be run before installation + preBuild = '' + mkdir -p $out/ + ln -sv $PWD/lib $out + ''; + + cmakeFlags = with stdenv; [ + "-DCMAKE_BUILD_TYPE=${if debugVersion then "Debug" else "Release"}" + "-DLLVM_INSTALL_UTILS=ON" # Needed by rustc + "-DLLVM_BUILD_TESTS=ON" + "-DLLVM_ENABLE_FFI=ON" + "-DLLVM_ENABLE_RTTI=ON" + ] ++ stdenv.lib.optional enableSharedLibraries [ + "-DLLVM_LINK_LLVM_DYLIB=ON" + ] ++ stdenv.lib.optional (!isDarwin) + "-DLLVM_BINUTILS_INCDIR=${binutils}/include" + ++ stdenv.lib.optionals ( isDarwin) [ + "-DLLVM_ENABLE_LIBCXX=ON" + "-DCAN_TARGET_i386=false" + ]; + + postBuild = '' + rm -fR $out + + paxmark m bin/{lli,llvm-rtdyld} + + paxmark m unittests/ExecutionEngine/JIT/JITTests + paxmark m unittests/ExecutionEngine/MCJIT/MCJITTests + paxmark m unittests/Support/SupportTests + ''; + + enableParallelBuilding = true; + + passthru.src = src; + + meta = { + description = "Collection of modular and reusable compiler and toolchain technologies"; + homepage = http://llvm.org/; + license = stdenv.lib.licenses.bsd3; + maintainers = with stdenv.lib.maintainers; [ lovek323 raskin viric ]; + platforms = stdenv.lib.platforms.all; + }; +} diff --git a/pkgs/development/compilers/mezzo/default.nix b/pkgs/development/compilers/mezzo/default.nix index a0fe441b153..67e7c932e55 100644 --- a/pkgs/development/compilers/mezzo/default.nix +++ b/pkgs/development/compilers/mezzo/default.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation { homepage = http://protz.github.io/mezzo/; description = "A programming language in the ML tradition, which places strong emphasis on the control of aliasing and access to mutable memory"; license = licenses.gpl2; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/compilers/rgbds/default.nix b/pkgs/development/compilers/rgbds/default.nix new file mode 100644 index 00000000000..827dd774e78 --- /dev/null +++ b/pkgs/development/compilers/rgbds/default.nix @@ -0,0 +1,22 @@ +{stdenv, fetchFromGitHub, yacc}: + +stdenv.mkDerivation rec { + name = "rgbds-${version}"; + version = "0.2.4"; + src = fetchFromGitHub { + owner = "bentley"; + repo = "rgbds"; + rev = "v${version}"; + sha256 = "0dwq0p9g1lci8sm12a2rfk0g33z2vr75x78zdf1g84djwbz8ipc6"; + }; + nativeBuildInputs = [ yacc ]; + installFlags = "PREFIX=\${out}"; + + meta = with stdenv.lib; { + homepage = "https://www.anjbe.name/rgbds/"; + description = "An assembler/linker package that produces Game Boy programs"; + license = licenses.free; + maintainers = with maintainers; [ mbauer ]; + platforms = platforms.all; + }; +} diff --git a/pkgs/development/compilers/rustc/head.nix b/pkgs/development/compilers/rustc/head.nix index 66730cf855a..bb67b88c478 100644 --- a/pkgs/development/compilers/rustc/head.nix +++ b/pkgs/development/compilers/rustc/head.nix @@ -2,11 +2,11 @@ { stdenv, callPackage }: callPackage ./generic.nix { - shortVersion = "2016-02-22"; + shortVersion = "2016-03-22"; isRelease = false; forceBundledLLVM = true; - srcRev = "d1f422ec280b881b8236c5d173103bc799e1590e"; - srcSha = "b0753045ae438c0869d37f429fe84451dcacc4b2ab9413d34bf29fde94fde462"; + srcRev = "6cc502c986d42da407e26a49d4f09f21d3072fcb"; + srcSha = "096lsc8irh9a7w494yaji28kzy9frs2myqrfyj0fzbxkvs3yfhzz"; /* Rust is bootstrapped from an earlier built version. We need to fetch these earlier versions, which vary per platform. @@ -15,14 +15,13 @@ callPackage ./generic.nix { with the set you want at the top. */ - snapshotHashLinux686 = "a09c4a4036151d0cb28e265101669731600e01f2"; - snapshotHashLinux64 = "97e2a5eb8904962df8596e95d6e5d9b574d73bf4"; - snapshotHashDarwin686 = "ca52d2d3ba6497ed007705ee3401cf7efc136ca1"; - snapshotHashDarwin64 = "3c44ffa18f89567c2b81f8d695e711c86d81ffc7"; - snapshotDate = "2015-12-18"; - snapshotRev = "3391630"; + snapshotHashLinux686 = "0e0e4448b80d0a12b75485795244bb3857a0a7ef"; + snapshotHashLinux64 = "1273b6b6aed421c9e40c59f366d0df6092ec0397"; + snapshotHashDarwin686 = "9f9c0b4a2db09acbce54b792fb8839a735585565"; + snapshotHashDarwin64 = "52570f6fd915b0210a9be98cfc933148e16a75f8"; + snapshotDate = "2016-03-18"; + snapshotRev = "235d774"; patches = [ ./patches/remove-uneeded-git.patch ] ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch; } - diff --git a/pkgs/development/compilers/sbcl/default.nix b/pkgs/development/compilers/sbcl/default.nix index 82348f35e30..ab8e8e08b1a 100644 --- a/pkgs/development/compilers/sbcl/default.nix +++ b/pkgs/development/compilers/sbcl/default.nix @@ -1,4 +1,10 @@ -{ stdenv, fetchurl, sbclBootstrap, sbclBootstrapHost ? "${sbclBootstrap}/bin/sbcl --disable-debugger --no-userinit --no-sysinit" }: +{ stdenv, fetchurl, writeText, sbclBootstrap +, sbclBootstrapHost ? "${sbclBootstrap}/bin/sbcl --disable-debugger --no-userinit --no-sysinit" + # Meant for sbcl used for creating binaries portable to non-NixOS via save-lisp-and-die. + # Note that the created binaries still need `patchelf --set-interpreter ...` + # to get rid of ${glibc} dependency. +, purgeNixReferences ? false +}: stdenv.mkDerivation rec { name = "sbcl-${version}"; @@ -37,9 +43,6 @@ stdenv.mkDerivation rec { sed -i src/code/target-load.lisp -e \ '/date defaulted-source/i(or (and (= 2208988801 (file-write-date defaulted-source-truename)) (= 2208988801 (file-write-date defaulted-fasl-truename)))' - # Fix software version retrieval - sed -e "s@/bin/uname@$(command -v uname)@g" -i src/code/*-os.lisp - # Fix the tests sed -e '/deftest pwent/inil' -i contrib/sb-posix/posix-tests.lisp sed -e '/deftest grent/inil' -i contrib/sb-posix/posix-tests.lisp @@ -54,7 +57,21 @@ stdenv.mkDerivation rec { substituteInPlace src/runtime/Config.x86-64-darwin \ --replace mmacosx-version-min=10.4 mmacosx-version-min=10.5 - ''; + '' + + (if purgeNixReferences + then + # This is the default location to look for the core; by default in $out/lib/sbcl + '' + sed 's@^\(#define SBCL_HOME\) .*$@\1 "/no-such-path"@' \ + -i src/runtime/runtime.c + '' + else + # Fix software version retrieval + '' + sed -e "s@/bin/uname@$(command -v uname)@g" -i src/code/*-os.lisp + '' + ); + preBuild = '' export INSTALL_ROOT=$out @@ -70,6 +87,14 @@ stdenv.mkDerivation rec { INSTALL_ROOT=$out sh install.sh ''; + # Specifying $SBCL_HOME is only truly needed with `purgeNixReferences = true`. + setupHook = writeText "setupHook.sh" '' + envHooks+=(_setSbclHome) + _setSbclHome() { + export SBCL_HOME='@out@/lib/sbcl/' + } + ''; + meta = sbclBootstrap.meta // { inherit version; updateWalker = true; diff --git a/pkgs/development/compilers/scala/default.nix b/pkgs/development/compilers/scala/default.nix index ec80317c777..d452d0abe30 100644 --- a/pkgs/development/compilers/scala/default.nix +++ b/pkgs/development/compilers/scala/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, makeWrapper, jre }: stdenv.mkDerivation rec { - name = "scala-2.11.7"; + name = "scala-2.11.8"; src = fetchurl { url = "http://www.scala-lang.org/files/archive/${name}.tgz"; - sha256 = "1l16571fw5l339wd02w2pnr3556j804zpbsbymnad67f2dpikr7z"; + sha256 = "1khs7673wca7gnxz2rxphv6v5k94jkpcarlqznsys9cpknhqdz47"; }; propagatedBuildInputs = [ jre ] ; diff --git a/pkgs/development/compilers/wla-dx/default.nix b/pkgs/development/compilers/wla-dx/default.nix new file mode 100644 index 00000000000..535868bee3b --- /dev/null +++ b/pkgs/development/compilers/wla-dx/default.nix @@ -0,0 +1,24 @@ +{stdenv, fetchFromGitHub, cmake}: + +stdenv.mkDerivation rec { + name = "wla-dx-git-2016-02-27"; + src = fetchFromGitHub { + owner = "vhelin"; + repo = "wla-dx"; + rev = "8189fe8d5620584ea16563875ff3c5430527c86a"; + sha256 = "02zgkcyfx7y8j6jvyi12lm29fydnd7m3rxv6g2psv23fyzmpkkir"; + }; + installPhase = '' + mkdir -p $out/bin + install binaries/* $out/bin + ''; + nativeBuildInputs = [ cmake ]; + + meta = with stdenv.lib; { + homepage = "http://www.villehelin.com/wla.html"; + description = "Yet Another GB-Z80/Z80/6502/65C02/6510/65816/HUC6280/SPC-700 Multi Platform Cross Assembler Package"; + license = licenses.gpl2; + maintainers = with maintainers; [ mbauer ]; + platforms = platforms.all; + }; +} diff --git a/pkgs/development/go-modules/generic/default.nix b/pkgs/development/go-modules/generic/default.nix index 260e8d66c58..93b09acbda1 100644 --- a/pkgs/development/go-modules/generic/default.nix +++ b/pkgs/development/go-modules/generic/default.nix @@ -30,7 +30,7 @@ if disabled then throw "${name} not supported for go ${go.meta.branch}" else let args = lib.filterAttrs (name: _: name != "extraSrcs") args'; - removeReferences = [ go ]; + removeReferences = [ ] ++ lib.optional (!allowGoReference) go; removeExpr = refs: lib.flip lib.concatMapStrings refs (ref: '' | sed "s,${ref},$(echo "${ref}" | sed "s,$NIX_STORE/[^-]*,$NIX_STORE/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,"),g" \ @@ -163,7 +163,7 @@ go.stdenv.mkDerivation ( enableParallelBuilding = enableParallelBuilding; # I prefer to call this dev but propagatedBuildInputs expects $out to exist - outputs = [ "out" "bin" ]; + outputs = args.outputs or [ "out" "bin" ]; meta = { # Add default meta information diff --git a/pkgs/development/guile-modules/guile-opengl/default.nix b/pkgs/development/guile-modules/guile-opengl/default.nix index 4d608f4caa9..c7704d87fad 100644 --- a/pkgs/development/guile-modules/guile-opengl/default.nix +++ b/pkgs/development/guile-modules/guile-opengl/default.nix @@ -8,7 +8,6 @@ stdenv.mkDerivation rec { homepage = "http://gnu.org/s/guile-opengl"; license = licenses.gpl3Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/guile-modules/guile-sdl/default.nix b/pkgs/development/guile-modules/guile-sdl/default.nix index 8c1706be583..4a0f23457ba 100644 --- a/pkgs/development/guile-modules/guile-sdl/default.nix +++ b/pkgs/development/guile-modules/guile-sdl/default.nix @@ -10,7 +10,6 @@ stdenv.mkDerivation rec { homepage = "http://gnu.org/s/guile-sdl"; license = licenses.gpl3Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/guile-modules/guile-xcb/default.nix b/pkgs/development/guile-modules/guile-xcb/default.nix index fc02ab305a3..a60a10c5c04 100644 --- a/pkgs/development/guile-modules/guile-xcb/default.nix +++ b/pkgs/development/guile-modules/guile-xcb/default.nix @@ -8,7 +8,6 @@ stdenv.mkDerivation { homepage = "http://www.markwitmer.com/guile-xcb/guile-xcb.html"; license = licenses.gpl3Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 01c0298b0f0..b5b4db7e729 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -640,7 +640,19 @@ self: super: { spaceprobe = addBuildTool super.spaceprobe self.llvmPackages.llvm; # Tries to run GUI in tests - leksah = dontCheck super.leksah; + leksah = dontCheck (overrideCabal super.leksah (drv: { + executableSystemDepends = (drv.executableSystemDepends or []) ++ (with pkgs; [ + gnome3.defaultIconTheme # Fix error: Icon 'window-close' not present in theme ... + wrapGAppsHook # Fix error: GLib-GIO-ERROR **: No GSettings schemas are installed on the system + gtk3 # Fix error: GLib-GIO-ERROR **: Settings schema 'org.gtk.Settings.FileChooser' is not installed + ]); + postPatch = (drv.postPatch or "") + '' + for f in src/IDE/Leksah.hs src/IDE/Utils/ServerConnection.hs + do + substituteInPlace "$f" --replace "\"leksah-server\"" "\"${self.leksah-server}/bin/leksah-server\"" + done + ''; + })); # Patch to consider NIX_GHC just like xmonad does dyre = appendPatch super.dyre ./patches/dyre-nix.patch; @@ -929,5 +941,20 @@ self: super: { language-c-quote = super.language-c-quote.override { alex = self.alex_3_1_4; }; # https://github.com/agda/agda/issues/1840 - Agda = super.Agda.override { unordered-containers = self.unordered-containers_0_2_5_1; }; + Agda_2_4_2_3 = super.Agda_2_4_2_3.override { + unordered-containers = self.unordered-containers_0_2_5_1; + cpphs = self.cpphs_1_19_3; + }; + Agda_2_4_2_4 = super.Agda_2_4_2_4.override { + unordered-containers = self.unordered-containers_0_2_5_1; + cpphs = self.cpphs_1_19_3; + }; + Agda = super.Agda.override { + unordered-containers = self.unordered-containers_0_2_5_1; + cpphs = self.cpphs_1_19_3; + }; + + # We get lots of strange compiler errors during the test suite run. + jsaddle = dontCheck super.jsaddle; + } diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix index c7ef534d785..675a9619d31 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix @@ -137,6 +137,7 @@ self: super: { # Needs void on pre 7.10.x compilers. conduit = addBuildDepend super.conduit self.void; + conduit_1_2_5 = addBuildDepend super.conduit_1_2_5 self.void; # Needs nats on pre 7.10.x compilers. semigroups = addBuildDepend super.semigroups self.nats; diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix index 2c1c825af53..f909336e669 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -46,4 +46,7 @@ self: super: { # https://github.com/hspec/hspec/issues/253 hspec-core = dontCheck super.hspec-core; + # Deviate from Stackage here to fix lots of builds. + transformers-compat = super.transformers-compat_0_5_1_4; + } diff --git a/pkgs/development/haskell-modules/configuration-ghcjs.nix b/pkgs/development/haskell-modules/configuration-ghcjs.nix index 5c14fe788f7..d75a7f889aa 100644 --- a/pkgs/development/haskell-modules/configuration-ghcjs.nix +++ b/pkgs/development/haskell-modules/configuration-ghcjs.nix @@ -24,11 +24,13 @@ self: super: network = addBuildTools super.network (pkgs.lib.optional pkgs.stdenv.isDarwin pkgs.darwin.libiconv); zlib = addBuildTools super.zlib (pkgs.lib.optional pkgs.stdenv.isDarwin pkgs.darwin.libiconv); + unix-compat = addBuildTools super.unix-compat (pkgs.lib.optional pkgs.stdenv.isDarwin pkgs.darwin.libiconv); # LLVM is not supported on this GHC; use the latest one. inherit (pkgs) llvmPackages; - inherit (pkgs.haskell.packages.ghc7103) jailbreak-cabal alex happy gtk2hs-buildtools rehoo hoogle; + inherit (self.ghc.bootPkgs) + jailbreak-cabal alex happy gtk2hs-buildtools rehoo hoogle; # This is the list of the Stage 1 packages that are built into a booted ghcjs installation # It can be generated with the command: diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 5ff2f60a7de..ecfc08b1d39 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -79,10 +79,7 @@ package-maintainers: - hledger-diff gridaphobe: - ghc-srcspan-plugin - - liquid-fixpoint - - liquidhaskell - located-base - - target jb55: - skeletons - cased @@ -102,6 +99,8 @@ package-maintainers: - persistent-template - persistent-zookeeper - shakespeare + abbradar: + - Agda dont-distribute-packages: # hard restrictions that really belong into meta.platforms @@ -145,3 +144,3994 @@ dont-distribute-packages: yices-painless: [ i686-linux, x86_64-linux, x86_64-darwin ] # soft restrictions because of build errors + 3d-graphics-examples: [ x86_64-darwin ] + 3dmodels: [ i686-linux, x86_64-darwin, x86_64-linux ] + 4Blocks: [ i686-linux, x86_64-darwin, x86_64-linux ] + abc-puzzle: [ x86_64-darwin ] + abcBridge: [ i686-linux, x86_64-darwin, x86_64-linux ] + abstract-par-accelerate: [ i686-linux, x86_64-darwin, x86_64-linux ] + AC-BuildPlatform: [ i686-linux, x86_64-darwin, x86_64-linux ] + AC-EasyRaster-GTK: [ i686-linux, x86_64-darwin, x86_64-linux ] + AC-HalfInteger: [ i686-linux, x86_64-darwin, x86_64-linux ] + AC-MiniTest: [ i686-linux, x86_64-darwin, x86_64-linux ] + AC-Terminal: [ i686-linux, x86_64-darwin, x86_64-linux ] + AC-VanillaArray: [ i686-linux, x86_64-darwin, x86_64-linux ] + accelerate-arithmetic: [ i686-linux, x86_64-darwin, x86_64-linux ] + accelerate-fourier: [ i686-linux, x86_64-darwin, x86_64-linux ] + accelerate-utility: [ i686-linux, x86_64-darwin, x86_64-linux ] + accentuateus: [ i686-linux, x86_64-darwin, x86_64-linux ] + access-time: [ i686-linux, x86_64-darwin, x86_64-linux ] + acid-state-dist: [ i686-linux, x86_64-darwin, x86_64-linux ] + acme-hq9plus: [ i686-linux, x86_64-darwin, x86_64-linux ] + acme-inator: [ i686-linux, x86_64-darwin, x86_64-linux ] + acme-numbersystem: [ i686-linux, x86_64-darwin, x86_64-linux ] + acme-schoenfinkel: [ i686-linux, x86_64-darwin, x86_64-linux ] + acme-zero: [ i686-linux, x86_64-darwin, x86_64-linux ] + ACME: [ i686-linux, x86_64-darwin, x86_64-linux ] + ActionKid: [ i686-linux, x86_64-darwin, x86_64-linux ] + activehs: [ i686-linux, x86_64-darwin, x86_64-linux ] + actor: [ i686-linux, x86_64-darwin, x86_64-linux ] + Adaptive-Blaisorblade: [ i686-linux, x86_64-darwin, x86_64-linux ] + adaptive-containers: [ i686-linux, x86_64-darwin, x86_64-linux ] + adaptive-tuple: [ i686-linux, x86_64-darwin, x86_64-linux ] + Adaptive: [ i686-linux, x86_64-darwin, x86_64-linux ] + adhoc-network: [ i686-linux, x86_64-darwin, x86_64-linux ] + adict: [ i686-linux, x86_64-darwin, x86_64-linux ] + adobe-swatch-exchange: [ i686-linux, x86_64-darwin, x86_64-linux ] + adp-multi-monadiccp: [ i686-linux, x86_64-darwin, x86_64-linux ] + adp-multi: [ i686-linux, x86_64-darwin, x86_64-linux ] + ADPfusion: [ i686-linux, x86_64-darwin, x86_64-linux ] + Advgame: [ i686-linux, x86_64-darwin, x86_64-linux ] + AERN-Basics: [ i686-linux, x86_64-darwin, x86_64-linux ] + AERN-Net: [ i686-linux, x86_64-darwin, x86_64-linux ] + AERN-Real-Double: [ i686-linux, x86_64-darwin, x86_64-linux ] + AERN-Real-Interval: [ i686-linux, x86_64-darwin, x86_64-linux ] + AERN-Real: [ i686-linux, x86_64-darwin, x86_64-linux ] + AERN-RnToRm-Plot: [ i686-linux, x86_64-linux, x86_64-darwin ] + AERN-RnToRm: [ i686-linux, x86_64-darwin, x86_64-linux ] + aeson-bson: [ i686-linux, x86_64-darwin, x86_64-linux ] + aeson-native: [ i686-linux, x86_64-darwin, x86_64-linux ] + aeson-smart: [ i686-linux, x86_64-darwin, x86_64-linux ] + AesonBson: [ i686-linux, x86_64-darwin, x86_64-linux ] + afv: [ i686-linux, x86_64-darwin, x86_64-linux ] + Agata: [ i686-linux, x86_64-darwin, x86_64-linux ] + Agda-executable: [ i686-linux, x86_64-darwin, x86_64-linux ] + agda-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + agda-snippets-hakyll: [ i686-linux, x86_64-darwin, x86_64-linux ] + agda-snippets: [ i686-linux, x86_64-darwin, x86_64-linux ] + AGI: [ i686-linux, x86_64-darwin, x86_64-linux ] + AhoCorasick: [ i686-linux, x86_64-darwin, x86_64-linux ] + airbrake: [ i686-linux, x86_64-darwin, x86_64-linux ] + ajhc: [ i686-linux, x86_64-darwin, x86_64-linux ] + al: [ i686-linux, x86_64-darwin, x86_64-linux ] + alea: [ i686-linux, x86_64-darwin, x86_64-linux ] + alga: [ i686-linux ] + algebraic: [ i686-linux, x86_64-darwin, x86_64-linux ] + AlignmentAlgorithms: [ i686-linux, x86_64-darwin, x86_64-linux ] + Allure: [ i686-linux, x86_64-darwin, x86_64-linux ] + alms: [ i686-linux, x86_64-darwin, x86_64-linux ] + alpha: [ i686-linux, x86_64-darwin, x86_64-linux ] + alpino-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + alsa-core: [ x86_64-darwin ] + alsa-gui: [ x86_64-darwin ] + alsa-midi: [ i686-linux, x86_64-linux, x86_64-darwin ] + alsa-mixer: [ x86_64-darwin ] + alsa-pcm-tests: [ i686-linux, x86_64-linux, x86_64-darwin ] + alsa-pcm: [ x86_64-darwin ] + alsa-seq-tests: [ i686-linux, x86_64-linux, x86_64-darwin ] + alsa-seq: [ x86_64-darwin ] + alsa: [ i686-linux, x86_64-linux, x86_64-darwin ] + altfloat: [ i686-linux, x86_64-darwin, x86_64-linux ] + alure: [ i686-linux, x86_64-darwin, x86_64-linux ] + ALUT: [ x86_64-darwin ] + amazon-emailer: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazon-products: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-rds: [ i686-linux ] + amazonka-sqs: [ i686-linux ] + AMI: [ i686-linux, x86_64-darwin, x86_64-linux ] + ampersand: [ i686-linux, x86_64-darwin, x86_64-linux ] + anansi-pandoc: [ i686-linux, x86_64-darwin, x86_64-linux ] + anatomy: [ i686-linux, x86_64-darwin, x86_64-linux ] + android-lint-summary: [ i686-linux, x86_64-darwin, x86_64-linux ] + AndroidViewHierarchyImporter: [ i686-linux, x86_64-darwin, x86_64-linux ] + Animas: [ i686-linux, x86_64-darwin, x86_64-linux ] + antfarm: [ i686-linux, x86_64-darwin, x86_64-linux ] + anticiv: [ i686-linux, x86_64-darwin, x86_64-linux ] + antigate: [ i686-linux, x86_64-darwin, x86_64-linux ] + antimirov: [ i686-linux, x86_64-darwin, x86_64-linux ] + antlrc: [ i686-linux, x86_64-darwin, x86_64-linux ] + anydbm: [ i686-linux, x86_64-darwin, x86_64-linux ] + aosd: [ i686-linux, x86_64-darwin, x86_64-linux ] + apelsin: [ i686-linux, x86_64-darwin, x86_64-linux ] + api-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + apiary-helics: [ i686-linux, x86_64-linux ] + apiary-purescript: [ i686-linux, x86_64-darwin, x86_64-linux ] + apis: [ i686-linux, x86_64-darwin, x86_64-linux ] + apotiki: [ i686-linux, x86_64-darwin, x86_64-linux ] + app-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] + appc: [ i686-linux, x86_64-darwin, x86_64-linux ] + ApplePush: [ i686-linux, x86_64-darwin, x86_64-linux ] + AppleScript: [ i686-linux, x86_64-darwin, x86_64-linux ] + apply-refact: [ x86_64-darwin ] + approx-rand-test: [ i686-linux, x86_64-darwin, x86_64-linux ] + arb-fft: [ i686-linux, x86_64-darwin, x86_64-linux ] + arbb-vm: [ i686-linux, x86_64-darwin, x86_64-linux ] + archiver: [ i686-linux, x86_64-darwin, x86_64-linux ] + archlinux-web: [ i686-linux, x86_64-darwin, x86_64-linux ] + archlinux: [ i686-linux, x86_64-darwin, x86_64-linux ] + arena: [ i686-linux, x86_64-darwin, x86_64-linux ] + arff: [ i686-linux, x86_64-darwin, x86_64-linux ] + arghwxhaskell: [ x86_64-darwin ] + argon2: [ i686-linux, x86_64-darwin, x86_64-linux ] + argparser: [ i686-linux, x86_64-darwin, x86_64-linux ] + arguedit: [ i686-linux, x86_64-darwin, x86_64-linux ] + ariadne: [ i686-linux, x86_64-darwin, x86_64-linux ] + arion: [ i686-linux, x86_64-darwin, x86_64-linux ] + arith-encode: [ i686-linux, x86_64-darwin, x86_64-linux ] + arithmetic: [ i686-linux ] + arithmoi: [ i686-linux ] + armada: [ i686-linux, x86_64-darwin, x86_64-linux ] + array-forth: [ i686-linux, x86_64-darwin, x86_64-linux ] + ArrayRef: [ i686-linux, x86_64-darwin, x86_64-linux ] + arrow-improve: [ i686-linux, x86_64-darwin, x86_64-linux ] + arrowapply-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + arrowp: [ i686-linux, x86_64-darwin, x86_64-linux ] + ArrowVHDL: [ i686-linux, x86_64-darwin, x86_64-linux ] + ascii85-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + asic: [ i686-linux, x86_64-darwin, x86_64-linux ] + asil: [ i686-linux, x86_64-darwin, x86_64-linux ] + AspectAG: [ i686-linux, x86_64-darwin, x86_64-linux ] + assimp: [ i686-linux, x86_64-darwin, x86_64-linux ] + astrds: [ i686-linux, x86_64-linux, x86_64-darwin ] + astview: [ i686-linux, x86_64-darwin, x86_64-linux ] + async-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + aterm-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + atlassian-connect-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + atlassian-connect-descriptor: [ i686-linux, x86_64-darwin, x86_64-linux ] + atom-msp430: [ x86_64-darwin, x86_64-linux ] + atomic-primops-foreign: [ x86_64-darwin ] + atomic-primops-vector: [ i686-linux, x86_64-darwin, x86_64-linux ] + atomo: [ i686-linux, x86_64-darwin, x86_64-linux ] + AttoJson: [ i686-linux, x86_64-darwin, x86_64-linux ] + attoparsec-csv: [ i686-linux, x86_64-darwin, x86_64-linux ] + attoparsec-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + attoparsec-text-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + attoparsec-text: [ i686-linux, x86_64-darwin, x86_64-linux ] + Attrac: [ i686-linux, x86_64-darwin, x86_64-linux ] + atuin: [ i686-linux, x86_64-darwin, x86_64-linux ] + audiovisual: [ i686-linux, x86_64-darwin, x86_64-linux ] + augeas: [ i686-linux, x86_64-darwin, x86_64-linux ] + augur: [ i686-linux, x86_64-darwin, x86_64-linux ] + Aurochs: [ i686-linux, x86_64-darwin, x86_64-linux ] + authoring: [ i686-linux, x86_64-darwin, x86_64-linux ] + AutoForms: [ i686-linux, x86_64-darwin, x86_64-linux ] + autonix-deps-kf5: [ x86_64-darwin ] + autonix-deps: [ x86_64-darwin ] + autoproc: [ i686-linux, x86_64-darwin, x86_64-linux ] + avahi: [ i686-linux, x86_64-darwin, x86_64-linux ] + AvlTree: [ i686-linux, x86_64-darwin, x86_64-linux ] + awesomium-glut: [ i686-linux, x86_64-darwin, x86_64-linux ] + awesomium-raw: [ i686-linux, x86_64-darwin, x86_64-linux ] + awesomium: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-configuration-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-dynamodb-streams: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-elastic-transcoder: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-general: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-kinesis-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-kinesis-reshard: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-kinesis: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-lambda: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-performance-tests: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-sdk: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-sign4: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-sns: [ i686-linux, x86_64-darwin, x86_64-linux ] + azure-service-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + azurify: [ i686-linux, x86_64-darwin, x86_64-linux ] + b-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] + babylon: [ x86_64-darwin ] + backdropper: [ i686-linux, x86_64-darwin, x86_64-linux ] + bag: [ i686-linux, x86_64-darwin, x86_64-linux ] + Baggins: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamboo-launcher: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamboo-plugin-highlight: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamboo-plugin-photo: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamboo-theme-blueprint: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamboo-theme-mini-html5: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamboo: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamse: [ i686-linux, x86_64-darwin, x86_64-linux ] + Bang: [ x86_64-darwin ] + barchart: [ i686-linux, x86_64-darwin, x86_64-linux ] + barcodes-code128: [ i686-linux, x86_64-darwin, x86_64-linux ] + barley: [ i686-linux, x86_64-darwin, x86_64-linux ] + Barracuda: [ i686-linux, x86_64-darwin, x86_64-linux ] + barrie: [ i686-linux, x86_64-darwin, x86_64-linux ] + barrier-monad: [ i686-linux, x86_64-darwin, x86_64-linux ] + base32-bytestring: [ x86_64-darwin ] + BASIC: [ i686-linux, x86_64-darwin, x86_64-linux ] + baskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + battleships: [ i686-linux, x86_64-darwin, x86_64-linux ] + bayes-stack: [ i686-linux, x86_64-darwin, x86_64-linux ] + BCMtools: [ i686-linux, x86_64-darwin, x86_64-linux ] + beamable: [ i686-linux, x86_64-darwin, x86_64-linux ] + beautifHOL: [ i686-linux, x86_64-darwin, x86_64-linux ] + bed-and-breakfast: [ i686-linux, x86_64-darwin, x86_64-linux ] + Befunge93: [ i686-linux, x86_64-darwin, x86_64-linux ] + bein: [ i686-linux, x86_64-darwin, x86_64-linux ] + berkeleydb: [ i686-linux, x86_64-darwin, x86_64-linux ] + BerkeleyDBXML: [ i686-linux, x86_64-darwin, x86_64-linux ] + berp: [ i686-linux, x86_64-darwin, x86_64-linux ] + bff: [ i686-linux, x86_64-darwin, x86_64-linux ] + bgzf: [ i686-linux, x86_64-darwin, x86_64-linux ] + bidirectionalization-combined: [ i686-linux, x86_64-darwin, x86_64-linux ] + bidispec: [ i686-linux, x86_64-darwin, x86_64-linux ] + BigPixel: [ x86_64-darwin ] + billboard-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + billeksah-forms: [ i686-linux, x86_64-darwin, x86_64-linux ] + billeksah-main: [ i686-linux, x86_64-darwin, x86_64-linux ] + billeksah-pane: [ i686-linux, x86_64-darwin, x86_64-linux ] + billeksah-services: [ i686-linux, x86_64-darwin, x86_64-linux ] + bimaps: [ i686-linux, x86_64-darwin, x86_64-linux ] + binary-derive: [ i686-linux, x86_64-darwin, x86_64-linux ] + binary-indexed-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] + binary-protocol-zmq: [ i686-linux, x86_64-darwin, x86_64-linux ] + binary-streams: [ i686-linux, x86_64-darwin, x86_64-linux ] + bind-marshal: [ i686-linux, x86_64-darwin, x86_64-linux ] + binding-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + binding-wx: [ x86_64-darwin ] + bindings-apr-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-apr: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-bfd: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-cctools: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-codec2: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-common: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-dc1394: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-directfb: [ x86_64-darwin ] + bindings-eskit: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-EsounD: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-fann: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-fluidsynth: [ x86_64-darwin ] + bindings-friso: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-GLFW: [ x86_64-darwin ] + bindings-gpgme: [ x86_64-darwin ] + bindings-gsl: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-gts: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-hamlib: [ x86_64-darwin ] + bindings-hdf5: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-K8055: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-levmar: [ x86_64-darwin ] + bindings-libcddb: [ x86_64-darwin ] + bindings-libftdi: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-librrd: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-libstemmer: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-libv4l2: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-libzip: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-linux-videodev2: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-lxc: [ x86_64-darwin ] + bindings-mmap: [ x86_64-darwin ] + bindings-mpdecimal: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-parport: [ x86_64-darwin ] + bindings-portaudio: [ x86_64-darwin ] + bindings-posix: [ x86_64-darwin ] + bindings-ppdev: [ x86_64-darwin ] + bindings-sane: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-sc3: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-sipc: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-svm: [ x86_64-darwin ] + binembed-example: [ x86_64-darwin ] + bio: [ i686-linux, x86_64-darwin, x86_64-linux ] + Biobase: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseBlast: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseDotP: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseFasta: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseFR3D: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseInfernal: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseMAF: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseTrainingData: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseTurner: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseTypes: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseVienna: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseXNA: [ i686-linux, x86_64-darwin, x86_64-linux ] + biohazard: [ i686-linux, x86_64-darwin, x86_64-linux ] + bioinformatics-toolkit: [ i686-linux, x86_64-darwin, x86_64-linux ] + biosff: [ i686-linux, x86_64-darwin, x86_64-linux ] + biostockholm: [ i686-linux, x86_64-darwin, x86_64-linux ] + bird: [ i686-linux, x86_64-darwin, x86_64-linux ] + BirdPP: [ i686-linux, x86_64-darwin, x86_64-linux ] + bit-vector: [ i686-linux ] + bitcoin-rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] + bitly-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] + Bitly: [ i686-linux, x86_64-darwin, x86_64-linux ] + bitmap-opengl: [ x86_64-darwin ] + bits-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + bits-extras: [ x86_64-darwin ] + bitset: [ i686-linux, x86_64-darwin, x86_64-linux ] + bitspeak: [ i686-linux, x86_64-darwin, x86_64-linux ] + bitstream: [ i686-linux, x86_64-darwin, x86_64-linux ] + bittorrent: [ i686-linux, x86_64-darwin, x86_64-linux ] + bitvec: [ i686-linux, x86_64-darwin, x86_64-linux ] + bkr: [ i686-linux, x86_64-darwin, x86_64-linux ] + bla: [ i686-linux, x86_64-darwin, x86_64-linux ] + black-jewel: [ i686-linux, x86_64-darwin, x86_64-linux ] + blake2: [ i686-linux ] + blakesum-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] + blakesum: [ i686-linux, x86_64-darwin, x86_64-linux ] + blas-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + blas: [ i686-linux, x86_64-darwin, x86_64-linux ] + blaze-html-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] + blaze-html-hexpat: [ i686-linux, x86_64-darwin, x86_64-linux ] + blaze-textual-native: [ i686-linux, x86_64-darwin, x86_64-linux ] + blazeMarker: [ i686-linux, x86_64-darwin, x86_64-linux ] + blip: [ i686-linux, x86_64-darwin, x86_64-linux ] + Blobs: [ i686-linux, x86_64-darwin, x86_64-linux ] + blogination: [ i686-linux, x86_64-darwin, x86_64-linux ] + BlogLiterately-diagrams: [ x86_64-darwin ] + bloodhound-amazonka-auth: [ i686-linux, x86_64-darwin, x86_64-linux ] + bloodhound: [ i686-linux, x86_64-darwin, x86_64-linux ] + bloxorz: [ x86_64-darwin ] + blubber: [ x86_64-darwin ] + Blueprint: [ i686-linux, x86_64-darwin, x86_64-linux ] + bluetile: [ i686-linux, x86_64-darwin, x86_64-linux ] + bluetileutils: [ x86_64-darwin ] + board-games: [ i686-linux, x86_64-darwin, x86_64-linux ] + bogre-banana: [ i686-linux, x86_64-darwin, x86_64-linux ] + bond-haskell-compiler: [ i686-linux, x86_64-darwin, x86_64-linux ] + bond-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + bond: [ i686-linux, x86_64-darwin, x86_64-linux ] + boolean-normal-forms: [ i686-linux, x86_64-darwin, x86_64-linux ] + boolsimplifier: [ i686-linux, x86_64-darwin, x86_64-linux ] + boomslang: [ i686-linux, x86_64-darwin, x86_64-linux ] + borel: [ i686-linux, x86_64-darwin, x86_64-linux ] + bot: [ i686-linux, x86_64-darwin, x86_64-linux ] + bowntz: [ x86_64-darwin ] + Bravo: [ i686-linux, x86_64-darwin, x86_64-linux ] + breakout: [ i686-linux, x86_64-darwin, x86_64-linux ] + breve: [ x86_64-darwin ] + brians-brain: [ i686-linux, x86_64-darwin, x86_64-linux ] + brillig: [ i686-linux, x86_64-darwin, x86_64-linux ] + broker-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + bsd-sysctl: [ i686-linux, x86_64-darwin, x86_64-linux ] + bson-generics: [ i686-linux, x86_64-darwin, x86_64-linux ] + bson-mapping: [ i686-linux, x86_64-darwin, x86_64-linux ] + btree-concurrent: [ i686-linux, x86_64-darwin, x86_64-linux ] + btrfs: [ x86_64-darwin ] + buffer-builder-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ] + buffer-builder: [ i686-linux ] + buffon: [ i686-linux, x86_64-darwin, x86_64-linux ] + buildbox-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + buildwrapper: [ i686-linux, x86_64-darwin, x86_64-linux ] + bullet: [ i686-linux, x86_64-darwin, x86_64-linux ] + buster-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + buster-network: [ i686-linux, x86_64-darwin, x86_64-linux ] + Buster: [ i686-linux, x86_64-darwin, x86_64-linux ] + buster: [ i686-linux, x86_64-darwin, x86_64-linux ] + bustle: [ x86_64-darwin ] + butterflies: [ i686-linux, x86_64-darwin, x86_64-linux ] + bytable: [ i686-linux, x86_64-darwin, x86_64-linux ] + bytestring-class: [ i686-linux, x86_64-darwin, x86_64-linux ] + bytestring-csv: [ i686-linux, x86_64-darwin, x86_64-linux ] + bytestring-rematch: [ i686-linux, x86_64-darwin, x86_64-linux ] + bytestringparser: [ i686-linux, x86_64-darwin, x86_64-linux ] + bytestringreadp: [ i686-linux, x86_64-darwin, x86_64-linux ] + c-io: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-constraints: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-dev: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-ghci: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-graphdeps: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-install-bundle: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-install-ghc72: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-install-ghc74: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-query: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-setup: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-test: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-upload: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal2arch: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal2doap: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal2spec: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabalgraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabalmdvrpm: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabalrpmdeps: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabocha: [ i686-linux, x86_64-darwin, x86_64-linux ] + cairo-appbase: [ x86_64-darwin ] + cake3: [ i686-linux, x86_64-darwin, x86_64-linux ] + cakyrespa: [ i686-linux, x86_64-darwin, x86_64-linux ] + cal3d-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + cal3d-opengl: [ i686-linux, x86_64-darwin, x86_64-linux ] + cal3d: [ i686-linux, x86_64-darwin, x86_64-linux ] + calc: [ i686-linux, x86_64-darwin, x86_64-linux ] + calculator: [ x86_64-darwin ] + caldims: [ i686-linux, x86_64-darwin, x86_64-linux ] + caledon: [ i686-linux, x86_64-darwin, x86_64-linux ] + call-haskell-from-anything: [ i686-linux, x86_64-darwin, x86_64-linux ] + call: [ i686-linux, x86_64-darwin, x86_64-linux ] + campfire: [ i686-linux, x86_64-darwin, x86_64-linux ] + cantor: [ i686-linux, x86_64-darwin, x86_64-linux ] + cao: [ i686-linux, x86_64-darwin, x86_64-linux ] + cap: [ i686-linux, x86_64-darwin, x86_64-linux ] + Capabilities: [ i686-linux, x86_64-darwin, x86_64-linux ] + capri: [ i686-linux, x86_64-darwin, x86_64-linux ] + caramia: [ x86_64-darwin ] + carboncopy: [ i686-linux, x86_64-darwin, x86_64-linux ] + carettah: [ i686-linux, x86_64-linux, x86_64-darwin ] + casadi-bindings-control: [ i686-linux, x86_64-darwin, x86_64-linux ] + casadi-bindings-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + casadi-bindings-internal: [ i686-linux, x86_64-darwin, x86_64-linux ] + casadi-bindings-ipopt-interface: [ i686-linux, x86_64-darwin, x86_64-linux ] + casadi-bindings-snopt-interface: [ i686-linux, x86_64-darwin, x86_64-linux ] + casadi-bindings: [ i686-linux, x86_64-darwin, x86_64-linux ] + Cascade: [ i686-linux, x86_64-darwin, x86_64-linux ] + cascading: [ i686-linux, x86_64-darwin, x86_64-linux ] + cash: [ i686-linux, x86_64-darwin, x86_64-linux ] + cassandra-thrift: [ i686-linux, x86_64-darwin, x86_64-linux ] + cassava-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + cassy: [ i686-linux, x86_64-darwin, x86_64-linux ] + casui: [ i686-linux, x86_64-darwin, x86_64-linux ] + Catana: [ i686-linux, x86_64-darwin, x86_64-linux ] + catch-fd: [ i686-linux, x86_64-darwin, x86_64-linux ] + categorical-algebra: [ i686-linux, x86_64-darwin, x86_64-linux ] + category-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + cblrepo: [ i686-linux, x86_64-darwin, x86_64-linux ] + CBOR: [ i686-linux, x86_64-darwin, x86_64-linux ] + CC-delcont-alt: [ i686-linux, x86_64-darwin, x86_64-linux ] + CC-delcont-cxe: [ i686-linux, x86_64-darwin, x86_64-linux ] + CC-delcont-exc: [ i686-linux, x86_64-darwin, x86_64-linux ] + CC-delcont-ref-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] + CC-delcont-ref: [ i686-linux, x86_64-darwin, x86_64-linux ] + CC-delcont: [ i686-linux, x86_64-darwin, x86_64-linux ] + cci: [ i686-linux, x86_64-darwin, x86_64-linux ] + cctools-workqueue: [ i686-linux, x86_64-darwin, x86_64-linux ] + cedict: [ i686-linux, x86_64-darwin, x86_64-linux ] + ceilometer-common: [ i686-linux, x86_64-darwin, x86_64-linux ] + cellrenderer-cairo: [ x86_64-darwin ] + cereal-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + cereal-ieee754: [ i686-linux, x86_64-darwin, x86_64-linux ] + cereal-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] + certificate: [ i686-linux, x86_64-darwin, x86_64-linux ] + cf: [ i686-linux, x86_64-darwin, x86_64-linux ] + cfipu: [ i686-linux, x86_64-darwin, x86_64-linux ] + cflp: [ i686-linux, x86_64-darwin, x86_64-linux ] + cfopu: [ i686-linux, x86_64-darwin, x86_64-linux ] + cgen: [ i686-linux, x86_64-darwin, x86_64-linux ] + cgi-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + chalkboard-viewer: [ i686-linux, x86_64-darwin, x86_64-linux ] + chalkboard: [ i686-linux, x86_64-darwin, x86_64-linux ] + charade: [ i686-linux, x86_64-darwin, x86_64-linux ] + charsetdetect-ae: [ x86_64-darwin ] + charsetdetect: [ x86_64-darwin ] + Chart-gtk: [ x86_64-darwin ] + Chart-simple: [ x86_64-darwin ] + chatter: [ i686-linux, x86_64-darwin, x86_64-linux ] + check-pvp: [ i686-linux, x86_64-darwin, x86_64-linux ] + checked: [ i686-linux, x86_64-darwin, x86_64-linux ] + chell-hunit: [ i686-linux, x86_64-darwin, x86_64-linux ] + chevalier-common: [ i686-linux, x86_64-darwin, x86_64-linux ] + Chitra: [ i686-linux, x86_64-darwin, x86_64-linux ] + chorale: [ i686-linux, x86_64-darwin, x86_64-linux ] + chp-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + chp-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] + chp-spec: [ i686-linux, x86_64-darwin, x86_64-linux ] + chp-transformers: [ i686-linux, x86_64-darwin, x86_64-linux ] + chp: [ i686-linux, x86_64-darwin, x86_64-linux ] + ChristmasTree: [ i686-linux, x86_64-darwin, x86_64-linux ] + chuchu: [ i686-linux, x86_64-darwin, x86_64-linux ] + chunks: [ i686-linux, x86_64-darwin, x86_64-linux ] + cil: [ i686-linux, x86_64-darwin, x86_64-linux ] + cinvoke: [ i686-linux, x86_64-darwin, x86_64-linux ] + cio: [ i686-linux, x86_64-darwin, x86_64-linux ] + citation-resolve: [ i686-linux, x86_64-darwin, x86_64-linux ] + citeproc-hs-pandoc-filter: [ i686-linux, x86_64-darwin, x86_64-linux ] + citeproc-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + cityhash: [ x86_64-darwin ] + cjk: [ i686-linux, x86_64-darwin, x86_64-linux ] + clafer: [ i686-linux, x86_64-darwin, x86_64-linux ] + claferIG: [ i686-linux, x86_64-darwin, x86_64-linux ] + claferwiki: [ i686-linux, x86_64-darwin, x86_64-linux ] + clang-pure: [ x86_64-darwin ] + CLASE: [ i686-linux, x86_64-darwin, x86_64-linux ] + clash-prelude-quickcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + clash: [ i686-linux, x86_64-darwin, x86_64-linux ] + ClassLaws: [ i686-linux, x86_64-darwin, x86_64-linux ] + ClassyPrelude: [ i686-linux, x86_64-darwin, x86_64-linux ] + clckwrks-plugin-bugs: [ i686-linux, x86_64-darwin, x86_64-linux ] + clckwrks-theme-geo-bootstrap: [ i686-linux, x86_64-darwin, x86_64-linux ] + cld2: [ x86_64-darwin ] + Clean: [ i686-linux, x86_64-darwin, x86_64-linux ] + clevercss: [ i686-linux, x86_64-darwin, x86_64-linux ] + click-clack: [ i686-linux, x86_64-darwin, x86_64-linux ] + clifford: [ i686-linux, x86_64-darwin, x86_64-linux ] + clipper: [ i686-linux, x86_64-darwin, x86_64-linux ] + clippings: [ i686-linux, x86_64-darwin, x86_64-linux ] + clocked: [ i686-linux, x86_64-darwin, x86_64-linux ] + clogparse: [ i686-linux, x86_64-darwin, x86_64-linux ] + clone-all: [ i686-linux, x86_64-darwin, x86_64-linux ] + cloud-haskell: [ x86_64-darwin ] + cloudfront-signer: [ i686-linux, x86_64-darwin, x86_64-linux ] + cloudyfs: [ i686-linux, x86_64-linux, x86_64-darwin ] + clua: [ i686-linux, x86_64-darwin, x86_64-linux ] + cluss: [ i686-linux, x86_64-darwin, x86_64-linux ] + clustertools: [ i686-linux, x86_64-darwin, x86_64-linux ] + clutterhs: [ i686-linux, x86_64-darwin, x86_64-linux ] + cmath: [ i686-linux, x86_64-darwin, x86_64-linux ] + cmathml3: [ i686-linux, x86_64-darwin, x86_64-linux ] + CMCompare: [ i686-linux, x86_64-darwin, x86_64-linux ] + cmdargs-browser: [ i686-linux, x86_64-darwin, x86_64-linux ] + cmdtheline: [ i686-linux, x86_64-darwin, x86_64-linux ] + cmonad: [ i686-linux, x86_64-darwin, x86_64-linux ] + cnc-spec-compiler: [ i686-linux, x86_64-darwin, x86_64-linux ] + cndict: [ i686-linux, x86_64-darwin, x86_64-linux ] + Coadjute: [ i686-linux, x86_64-darwin, x86_64-linux ] + Codec-Image-DevIL: [ i686-linux, x86_64-darwin, x86_64-linux ] + codec-libevent: [ i686-linux, x86_64-darwin, x86_64-linux ] + codecov-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + codemonitor: [ i686-linux, x86_64-darwin, x86_64-linux ] + codepad: [ i686-linux, x86_64-darwin, x86_64-linux ] + cognimeta-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + coinbase-exchange: [ i686-linux, x86_64-darwin, x86_64-linux ] + colada: [ i686-linux, x86_64-darwin, x86_64-linux ] + collada-output: [ i686-linux, x86_64-darwin, x86_64-linux ] + collada-types: [ i686-linux, x86_64-darwin, x86_64-linux ] + collections-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + collections-base-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] + collections: [ i686-linux, x86_64-darwin, x86_64-linux ] + coltrane: [ i686-linux, x86_64-darwin, x86_64-linux ] + com: [ i686-linux, x86_64-darwin, x86_64-linux ] + combinat-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + combinat: [ i686-linux, x86_64-darwin, x86_64-linux ] + combinator-interactive: [ i686-linux, x86_64-darwin, x86_64-linux ] + combinatorial-problems: [ i686-linux, x86_64-darwin, x86_64-linux ] + Combinatorrent: [ i686-linux, x86_64-darwin, x86_64-linux ] + Commando: [ i686-linux, x86_64-darwin, x86_64-linux ] + commodities: [ i686-linux, x86_64-darwin, x86_64-linux ] + commsec-keyexchange: [ i686-linux, x86_64-darwin, x86_64-linux ] + commsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + comonad-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + comonad-random: [ i686-linux, x86_64-darwin, x86_64-linux ] + compact-map: [ i686-linux, x86_64-darwin, x86_64-linux ] + compact-string: [ i686-linux, x86_64-darwin, x86_64-linux ] + compilation: [ i686-linux, x86_64-darwin, x86_64-linux ] + complexity: [ i686-linux, x86_64-darwin, x86_64-linux ] + compose-trans: [ i686-linux, x86_64-darwin, x86_64-linux ] + compression: [ i686-linux, x86_64-darwin, x86_64-linux ] + compstrat: [ i686-linux, x86_64-darwin, x86_64-linux ] + comptrans: [ i686-linux, x86_64-darwin, x86_64-linux ] + computational-algebra: [ i686-linux, x86_64-darwin, x86_64-linux ] + concraft-hr: [ i686-linux, x86_64-darwin, x86_64-linux ] + concraft-pl: [ i686-linux, x86_64-darwin, x86_64-linux ] + concraft: [ i686-linux, x86_64-darwin, x86_64-linux ] + concrete-typerep: [ i686-linux, x86_64-darwin, x86_64-linux ] + concurrent-state: [ i686-linux, x86_64-darwin, x86_64-linux ] + ConcurrentUtils: [ i686-linux, x86_64-darwin, x86_64-linux ] + Condor: [ i686-linux, x86_64-darwin, x86_64-linux ] + condor: [ i686-linux, x86_64-darwin, x86_64-linux ] + condorcet: [ i686-linux, x86_64-darwin, x86_64-linux ] + conductive-hsc3: [ i686-linux, x86_64-darwin, x86_64-linux ] + conduit-audio-lame: [ i686-linux, x86_64-darwin, x86_64-linux ] + conduit-audio-samplerate: [ i686-linux, x86_64-darwin, x86_64-linux ] + conduit-audio-sndfile: [ x86_64-darwin ] + conduit-network-stream: [ i686-linux, x86_64-darwin, x86_64-linux ] + conduit-resumablesink: [ i686-linux, x86_64-darwin, x86_64-linux ] + config-manager: [ i686-linux, x86_64-darwin, x86_64-linux ] + config-select: [ i686-linux, x86_64-darwin, x86_64-linux ] + Configger: [ i686-linux, x86_64-darwin, x86_64-linux ] + conjure: [ i686-linux, x86_64-darwin, x86_64-linux ] + consistent: [ i686-linux, x86_64-darwin, x86_64-linux ] + const-math-ghc-plugin: [ i686-linux, x86_64-darwin, x86_64-linux ] + ConstraintKinds: [ i686-linux, x86_64-darwin, x86_64-linux ] + constructible: [ i686-linux ] + constructive-algebra: [ i686-linux, x86_64-darwin, x86_64-linux ] + Consumer: [ i686-linux, x86_64-darwin, x86_64-linux ] + consumers: [ x86_64-darwin ] + container: [ i686-linux, x86_64-darwin, x86_64-linux ] + context-stack: [ i686-linux, x86_64-darwin, x86_64-linux ] + continue: [ i686-linux, x86_64-darwin, x86_64-linux ] + continuum: [ i686-linux, x86_64-darwin, x86_64-linux ] + Contract: [ i686-linux, x86_64-darwin, x86_64-linux ] + control-event: [ i686-linux, x86_64-darwin, x86_64-linux ] + control-monad-attempt: [ i686-linux, x86_64-darwin, x86_64-linux ] + control-monad-failure-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + control-monad-failure: [ i686-linux, x86_64-darwin, x86_64-linux ] + Control-Monad-MultiPass: [ i686-linux, x86_64-darwin, x86_64-linux ] + Control-Monad-ST2: [ i686-linux, x86_64-darwin, x86_64-linux ] + contstuff-monads-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] + contstuff-transformers: [ i686-linux, x86_64-darwin, x86_64-linux ] + convert: [ i686-linux, x86_64-darwin, x86_64-linux ] + convertible-ascii: [ i686-linux, x86_64-darwin, x86_64-linux ] + convertible-text: [ i686-linux, x86_64-darwin, x86_64-linux ] + copilot-cbmc: [ i686-linux, x86_64-darwin, x86_64-linux ] + copilot: [ i686-linux, x86_64-darwin, x86_64-linux ] + COrdering: [ i686-linux, x86_64-darwin, x86_64-linux ] + core-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + core: [ i686-linux, x86_64-darwin, x86_64-linux ] + corebot-bliki: [ i686-linux, x86_64-darwin, x86_64-linux ] + CoreFoundation: [ i686-linux, x86_64-darwin, x86_64-linux ] + coroutine-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + Coroutine: [ i686-linux, x86_64-darwin, x86_64-linux ] + couch-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + couch-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + couchdb-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + couchdb-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + CouchDB: [ i686-linux, x86_64-darwin, x86_64-linux ] + court: [ i686-linux, x86_64-darwin, x86_64-linux ] + CPBrainfuck: [ i686-linux, x86_64-darwin, x86_64-linux ] + cpio-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + cplex-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + cplusplus-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + cpuperf: [ i686-linux, x86_64-darwin, x86_64-linux ] + cpython: [ i686-linux, x86_64-darwin, x86_64-linux ] + cqrs-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] + cqrs-sqlite3: [ i686-linux, x86_64-darwin, x86_64-linux ] + cqrs-test: [ i686-linux, x86_64-darwin, x86_64-linux ] + cr: [ i686-linux, x86_64-darwin, x86_64-linux ] + crack: [ i686-linux, x86_64-darwin, x86_64-linux ] + Craft3e: [ i686-linux, x86_64-darwin, x86_64-linux ] + craftwerk-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] + craftwerk-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + craftwerk: [ i686-linux, x86_64-darwin, x86_64-linux ] + crc16: [ i686-linux, x86_64-darwin, x86_64-linux ] + crf-chain1-constrained: [ i686-linux, x86_64-darwin, x86_64-linux ] + crf-chain1: [ i686-linux, x86_64-darwin, x86_64-linux ] + crf-chain2-generic: [ i686-linux, x86_64-darwin, x86_64-linux ] + crf-chain2-tiers: [ i686-linux, x86_64-darwin, x86_64-linux ] + criterion-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] + crocodile: [ i686-linux, x86_64-darwin, x86_64-linux ] + cron-compat: [ i686-linux, x86_64-darwin, x86_64-linux ] + cruncher-types: [ i686-linux, x86_64-darwin, x86_64-linux ] + crunghc: [ i686-linux, x86_64-darwin, x86_64-linux ] + crypto-cipher-benchmarks: [ i686-linux, x86_64-darwin, x86_64-linux ] + crypto-enigma: [ i686-linux, x86_64-darwin, x86_64-linux ] + cryptsy-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + crystalfontz: [ i686-linux, x86_64-darwin, x86_64-linux ] + cse-ghc-plugin: [ i686-linux, x86_64-darwin, x86_64-linux ] + csound-catalog: [ i686-linux, x86_64-linux ] + csp: [ i686-linux, x86_64-darwin, x86_64-linux ] + CSPM-cspm: [ i686-linux, x86_64-darwin, x86_64-linux ] + CSPM-FiringRules: [ i686-linux, x86_64-darwin, x86_64-linux ] + cspmchecker: [ i686-linux, x86_64-darwin, x86_64-linux ] + css: [ i686-linux, x86_64-darwin, x86_64-linux ] + ctemplate: [ i686-linux, x86_64-darwin, x86_64-linux ] + ctkl: [ i686-linux, x86_64-darwin, x86_64-linux ] + ctpl: [ i686-linux, x86_64-darwin, x86_64-linux ] + cubicbezier: [ i686-linux, x86_64-darwin, x86_64-linux ] + cuboid: [ i686-linux, x86_64-darwin ] + cudd: [ i686-linux, x86_64-linux, x86_64-darwin ] + curry-base: [ i686-linux, x86_64-darwin, x86_64-linux ] + curry-frontend: [ i686-linux, x86_64-darwin, x86_64-linux ] + CurryDB: [ i686-linux, x86_64-darwin, x86_64-linux ] + curves: [ i686-linux, x86_64-darwin, x86_64-linux ] + cv-combinators: [ x86_64-darwin ] + CV: [ i686-linux, x86_64-darwin, x86_64-linux ] + cyclotomic: [ i686-linux ] + cypher: [ i686-linux, x86_64-darwin, x86_64-linux ] + DAG-Tournament: [ i686-linux, x86_64-darwin, x86_64-linux ] + Dangerous: [ i686-linux, x86_64-darwin, x86_64-linux ] + Dao: [ i686-linux, x86_64-darwin, x86_64-linux ] + dao: [ i686-linux, x86_64-darwin, x86_64-linux ] + dapi: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcs-benchmark: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcs-beta: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcs-buildpackage: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcs-cabalized: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcs-fastconvert: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcs-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcs-monitor: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcs2dot: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcsden: [ i686-linux, x86_64-darwin, x86_64-linux ] + DarcsHelpers: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcswatch: [ i686-linux, x86_64-darwin, x86_64-linux ] + darkplaces-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-cycle: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-dispersal: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-easy: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-ivar: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-layer: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-lens-ixset: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-named: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-nat: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-object-json: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-object-yaml: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-quotientref: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-result: [ i686-linux, x86_64-darwin, x86_64-linux ] + Data-Rope: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-rope: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-rtuple: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-store: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-type: [ i686-linux, x86_64-darwin, x86_64-linux ] + datadog: [ i686-linux ] + datalog: [ i686-linux, x86_64-darwin, x86_64-linux ] + DataTreeView: [ i686-linux, x86_64-darwin, x86_64-linux ] + dbjava: [ i686-linux, x86_64-darwin, x86_64-linux ] + dbus-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + dbus-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + DBus: [ i686-linux, x86_64-darwin, x86_64-linux ] + dclabel: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-build: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-core-eval: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-core-flow: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-core-llvm: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-core-salt: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-core-simpl: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-core-tetra: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-driver: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-source-tetra: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddci-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + dead-simple-json: [ i686-linux, x86_64-darwin, x86_64-linux ] + decepticons: [ i686-linux, x86_64-darwin, x86_64-linux ] + DecisionTree: [ i686-linux, x86_64-darwin, x86_64-linux ] + decoder-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + dedukti: [ i686-linux, x86_64-darwin, x86_64-linux ] + deeplearning-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + deepseq-bounded: [ i686-linux, x86_64-darwin, x86_64-linux ] + deepseq-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + deepzoom: [ i686-linux, x86_64-darwin, x86_64-linux ] + defargs: [ i686-linux, x86_64-darwin, x86_64-linux ] + DefendTheKing: [ i686-linux, x86_64-darwin, x86_64-linux ] + definitive-base: [ i686-linux, x86_64-darwin, x86_64-linux ] + definitive-filesystem: [ i686-linux, x86_64-darwin, x86_64-linux ] + definitive-graphics: [ i686-linux, x86_64-darwin, x86_64-linux ] + definitive-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + definitive-reactive: [ i686-linux, x86_64-darwin, x86_64-linux ] + definitive-sound: [ i686-linux, x86_64-linux, x86_64-darwin ] + deka-tests: [ i686-linux, x86_64-darwin, x86_64-linux ] + deka: [ i686-linux, x86_64-darwin, x86_64-linux ] + delicious: [ i686-linux, x86_64-darwin, x86_64-linux ] + delta-h: [ i686-linux, x86_64-darwin, x86_64-linux ] + delta: [ x86_64-darwin ] + demarcate: [ i686-linux, x86_64-darwin, x86_64-linux ] + denominate: [ i686-linux, x86_64-darwin, x86_64-linux ] + dependent-state: [ i686-linux, x86_64-darwin, x86_64-linux ] + depends: [ i686-linux, x86_64-darwin, x86_64-linux ] + dephd: [ i686-linux, x86_64-darwin, x86_64-linux ] + dequeue: [ i686-linux, x86_64-darwin, x86_64-linux ] + derangement: [ i686-linux, x86_64-darwin, x86_64-linux ] + derivation-trees: [ i686-linux, x86_64-darwin, x86_64-linux ] + derive-gadt: [ i686-linux, x86_64-darwin, x86_64-linux ] + derive-IG: [ i686-linux, x86_64-darwin, x86_64-linux ] + derive-topdown: [ i686-linux, x86_64-darwin, x86_64-linux ] + derive-trie: [ i686-linux, x86_64-darwin, x86_64-linux ] + derp-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + devil: [ x86_64-darwin ] + dewdrop: [ i686-linux, x86_64-darwin, x86_64-linux ] + Dflow: [ i686-linux, x86_64-darwin, x86_64-linux ] + dfsbuild: [ i686-linux, x86_64-darwin, x86_64-linux ] + dgim: [ i686-linux, x86_64-darwin, x86_64-linux ] + dgs: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-builder: [ x86_64-darwin ] + diagrams-cairo: [ x86_64-darwin ] + diagrams-gtk: [ x86_64-darwin ] + diagrams-haddock: [ x86_64-darwin ] + diagrams-hsqml: [ x86_64-darwin ] + diagrams-pandoc: [ x86_64-darwin ] + diagrams-pdf: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-pgf: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-reflex: [ i686-linux, x86_64-linux, x86_64-darwin ] + diagrams-tikz: [ i686-linux, x86_64-darwin, x86_64-linux ] + dialog: [ x86_64-darwin ] + dice-entropy-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + dictparser: [ i686-linux, x86_64-darwin, x86_64-linux ] + diffcabal: [ i686-linux, x86_64-darwin, x86_64-linux ] + DifferenceLogic: [ i686-linux, x86_64-darwin, x86_64-linux ] + DifferentialEvolution: [ i686-linux, x86_64-darwin, x86_64-linux ] + digestive-functors-hsp: [ i686-linux, x86_64-darwin, x86_64-linux ] + DimensionalHash: [ i686-linux, x86_64-darwin, x86_64-linux ] + dingo-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + dingo-example: [ i686-linux, x86_64-darwin, x86_64-linux ] + dingo-widgets: [ i686-linux, x86_64-darwin, x86_64-linux ] + diophantine: [ i686-linux, x86_64-darwin, x86_64-linux ] + diplomacy-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + direct-binary-files: [ i686-linux, x86_64-darwin, x86_64-linux ] + direct-fastcgi: [ i686-linux, x86_64-darwin, x86_64-linux ] + direct-http: [ i686-linux, x86_64-darwin, x86_64-linux ] + direct-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + directed-cubical: [ i686-linux, x86_64-darwin, x86_64-linux ] + dirfiles: [ i686-linux, x86_64-darwin, x86_64-linux ] + discount: [ i686-linux, x86_64-darwin, x86_64-linux ] + disjoint-set: [ i686-linux, x86_64-darwin, x86_64-linux ] + DisTract: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-async: [ x86_64-darwin ] + distributed-process-azure: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-client-server: [ x86_64-darwin ] + distributed-process-execution: [ x86_64-darwin ] + distributed-process-lifted: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-platform: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-registry: [ x86_64-darwin ] + distributed-process-registry: [ x86_64-darwin ] + distributed-process-registry: [ x86_64-linux ] + distributed-process-supervisor: [ x86_64-darwin ] + distributed-process-task: [ x86_64-darwin ] + distributed-process-tests: [ x86_64-darwin ] + distributed-process-zookeeper: [ i686-linux, x86_64-darwin, x86_64-linux ] + distribution-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] + distribution: [ i686-linux, x86_64-darwin, x86_64-linux ] + djembe: [ x86_64-darwin ] + djinn-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + DnaProteinAlignment: [ i686-linux, x86_64-darwin, x86_64-linux ] + dnscache: [ i686-linux, x86_64-darwin, x86_64-linux ] + dnssd: [ i686-linux, x86_64-darwin, x86_64-linux ] + doc-review: [ i686-linux, x86_64-darwin, x86_64-linux ] + doccheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + docidx: [ i686-linux, x86_64-darwin, x86_64-linux ] + dockercook: [ i686-linux, x86_64-darwin, x86_64-linux ] + doctest-discover-configurator: [ i686-linux, x86_64-darwin, x86_64-linux ] + doctest-discover: [ i686-linux, x86_64-darwin, x86_64-linux ] + DocTest: [ i686-linux, x86_64-darwin, x86_64-linux ] + DOM: [ i686-linux, x86_64-darwin, x86_64-linux ] + dotfs: [ x86_64-darwin ] + dow: [ x86_64-darwin ] + download-media-content: [ i686-linux, x86_64-darwin, x86_64-linux ] + download: [ i686-linux, x86_64-darwin, x86_64-linux ] + DP: [ i686-linux, x86_64-darwin, x86_64-linux ] + dph-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + dph-lifted-base: [ i686-linux, x86_64-darwin, x86_64-linux ] + dph-lifted-copy: [ i686-linux, x86_64-darwin, x86_64-linux ] + dph-lifted-vseg: [ i686-linux, x86_64-darwin, x86_64-linux ] + dph-prim-par: [ i686-linux, x86_64-darwin, x86_64-linux ] + dph-prim-seq: [ i686-linux, x86_64-darwin, x86_64-linux ] + dpkg: [ i686-linux, x86_64-linux, x86_64-darwin ] + DPM: [ i686-linux, x86_64-darwin, x86_64-linux ] + drClickOn: [ i686-linux, x86_64-darwin, x86_64-linux ] + dresdner-verkehrsbetriebe: [ i686-linux, x86_64-darwin, x86_64-linux ] + DrHylo: [ i686-linux, x86_64-darwin, x86_64-linux ] + DrIFT-cabalized: [ i686-linux, x86_64-darwin, x86_64-linux ] + DrIFT: [ i686-linux, x86_64-darwin, x86_64-linux ] + dropbox-sdk: [ i686-linux, x86_64-darwin, x86_64-linux ] + dropsolve: [ i686-linux, x86_64-darwin, x86_64-linux ] + ds-kanren: [ i686-linux, x86_64-darwin, x86_64-linux ] + dsmc-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + dsmc: [ i686-linux, x86_64-darwin, x86_64-linux ] + DSTM: [ i686-linux, x86_64-darwin, x86_64-linux ] + dstring: [ i686-linux, x86_64-darwin, x86_64-linux ] + DTC: [ i686-linux, x86_64-darwin, x86_64-linux ] + dtd-text: [ i686-linux, x86_64-darwin, x86_64-linux ] + dtd-types: [ i686-linux, x86_64-darwin, x86_64-linux ] + dtd: [ i686-linux, x86_64-darwin, x86_64-linux ] + dtw: [ i686-linux, x86_64-darwin, x86_64-linux ] + duplo: [ i686-linux, x86_64-darwin, x86_64-linux ] + Dust-crypto: [ i686-linux, x86_64-darwin, x86_64-linux ] + Dust-tools-pcap: [ i686-linux, x86_64-darwin, x86_64-linux ] + Dust-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + Dust: [ i686-linux, x86_64-darwin, x86_64-linux ] + dvda: [ i686-linux, x86_64-darwin, x86_64-linux ] + dvdread: [ i686-linux, x86_64-darwin, x86_64-linux ] + dynamic-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] + dynamic-object: [ i686-linux, x86_64-darwin, x86_64-linux ] + dynamic-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] + dynamic-pp: [ i686-linux, x86_64-darwin, x86_64-linux ] + DynamicTimeWarp: [ i686-linux, x86_64-darwin, x86_64-linux ] + dynobud: [ i686-linux, x86_64-darwin, x86_64-linux ] + DysFRP-Cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] + DysFRP-Craftwerk: [ i686-linux, x86_64-darwin, x86_64-linux ] + easy-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + easyjson: [ i686-linux, x86_64-darwin, x86_64-linux ] + easyplot: [ i686-linux, x86_64-darwin, x86_64-linux ] + easyrender: [ i686-linux, x86_64-darwin, x86_64-linux ] + ebnf-bff: [ i686-linux, x86_64-darwin, x86_64-linux ] + ecdsa: [ i686-linux, x86_64-darwin, x86_64-linux ] + ecma262: [ i686-linux, x86_64-darwin, x86_64-linux ] + ecu: [ i686-linux, x86_64-darwin, x86_64-linux ] + ed25519: [ i686-linux, x86_64-darwin, x86_64-linux ] + eddie: [ i686-linux, x86_64-darwin, x86_64-linux ] + edenmodules: [ i686-linux, x86_64-darwin, x86_64-linux ] + edenskel: [ i686-linux, x86_64-darwin, x86_64-linux ] + edentv: [ i686-linux, x86_64-darwin, x86_64-linux ] + edge: [ i686-linux, x86_64-darwin, x86_64-linux ] + edit-lenses: [ i686-linux, x86_64-darwin, x86_64-linux ] + editline: [ i686-linux, x86_64-darwin, x86_64-linux ] + EditTimeReport: [ i686-linux, x86_64-darwin, x86_64-linux ] + EEConfig: [ i686-linux, x86_64-darwin, x86_64-linux ] + effect-monad: [ i686-linux, x86_64-darwin, x86_64-linux ] + effective-aspects-mzv: [ i686-linux, x86_64-darwin, x86_64-linux ] + effective-aspects: [ i686-linux, x86_64-darwin, x86_64-linux ] + egison-quote: [ i686-linux, x86_64-darwin, x86_64-linux ] + ehaskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + ehs: [ i686-linux, x86_64-darwin, x86_64-linux ] + eibd-client-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + eigen: [ x86_64-darwin ] + EitherT: [ i686-linux, x86_64-darwin, x86_64-linux ] + ekg-rrd: [ i686-linux ] + electrum-mnemonic: [ i686-linux ] + elerea-examples: [ x86_64-darwin ] + elerea-sdl: [ x86_64-darwin ] + elision: [ i686-linux, x86_64-darwin, x86_64-linux ] + emacs-keys: [ i686-linux, x86_64-darwin, x86_64-linux ] + email-header: [ i686-linux, x86_64-darwin, x86_64-linux ] + email-postmark: [ i686-linux, x86_64-darwin, x86_64-linux ] + email: [ i686-linux, x86_64-darwin, x86_64-linux ] + embeddock-example: [ i686-linux, x86_64-darwin, x86_64-linux ] + embeddock: [ i686-linux, x86_64-darwin, x86_64-linux ] + embroidery: [ i686-linux, x86_64-darwin, x86_64-linux ] + emgm: [ i686-linux, x86_64-darwin, x86_64-linux ] + Emping: [ i686-linux, x86_64-darwin, x86_64-linux ] + Encode: [ i686-linux, x86_64-darwin, x86_64-linux ] + enumerate: [ i686-linux, x86_64-darwin, x86_64-linux ] + enumeration: [ i686-linux, x86_64-darwin, x86_64-linux ] + enumfun: [ i686-linux, x86_64-darwin, x86_64-linux ] + EnumMap: [ i686-linux, x86_64-darwin, x86_64-linux ] + enummapmap: [ i686-linux, x86_64-darwin, x86_64-linux ] + env-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + epanet-haskell: [ x86_64-darwin ] + epic: [ x86_64-darwin ] + epoll: [ i686-linux, x86_64-darwin, x86_64-linux ] + epub-metadata: [ x86_64-darwin ] + epub-tools: [ x86_64-darwin ] + epubname: [ i686-linux, x86_64-darwin, x86_64-linux ] + Eq: [ i686-linux, x86_64-darwin, x86_64-linux ] + eros-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + error-message: [ i686-linux, x86_64-darwin, x86_64-linux ] + ersatz-toysat: [ i686-linux, x86_64-darwin, x86_64-linux ] + ersatz: [ i686-linux, x86_64-darwin, x86_64-linux ] + esotericbot: [ i686-linux, x86_64-darwin, x86_64-linux ] + EsounD: [ i686-linux, x86_64-darwin, x86_64-linux ] + estimators: [ i686-linux, x86_64-darwin, x86_64-linux ] + estreps: [ i686-linux, x86_64-darwin, x86_64-linux ] + Etage-Graph: [ i686-linux, x86_64-darwin, x86_64-linux ] + Etage: [ i686-linux, x86_64-darwin, x86_64-linux ] + EtaMOO: [ x86_64-darwin ] + Eternal10Seconds: [ i686-linux, x86_64-linux, x86_64-darwin ] + eternal: [ i686-linux, x86_64-darwin, x86_64-linux ] + Etherbunny: [ i686-linux, x86_64-darwin, x86_64-linux ] + ethereum-client-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + ethereum-merkle-patricia-db: [ i686-linux, x86_64-darwin, x86_64-linux ] + euphoria: [ i686-linux, x86_64-darwin, x86_64-linux ] + eurofxref: [ i686-linux, x86_64-darwin, x86_64-linux ] + Euterpea: [ i686-linux, x86_64-linux, x86_64-darwin ] + event-driven: [ i686-linux, x86_64-darwin, x86_64-linux ] + event-monad: [ i686-linux, x86_64-darwin, x86_64-linux ] + eventloop: [ i686-linux, x86_64-darwin, x86_64-linux ] + EventSocket: [ i686-linux, x86_64-darwin, x86_64-linux ] + every-bit-counts: [ i686-linux, x86_64-darwin, x86_64-linux ] + ewe: [ i686-linux, x86_64-darwin, x86_64-linux ] + exif: [ i686-linux, x86_64-darwin, x86_64-linux ] + exists: [ i686-linux, x86_64-darwin, x86_64-linux ] + exp-pairs: [ i686-linux, x86_64-darwin, x86_64-linux ] + expand: [ i686-linux, x86_64-darwin, x86_64-linux ] + expat-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + explain: [ i686-linux, x86_64-darwin, x86_64-linux ] + explicit-sharing: [ i686-linux, x86_64-darwin, x86_64-linux ] + explore: [ i686-linux, x86_64-darwin, x86_64-linux ] + exposed-containers: [ i686-linux, x86_64-darwin, x86_64-linux ] + extcore: [ i686-linux, x86_64-darwin, x86_64-linux ] + extemp: [ i686-linux, x86_64-darwin, x86_64-linux ] + extended-categories: [ i686-linux, x86_64-darwin, x86_64-linux ] + ez-couch: [ i686-linux, x86_64-darwin, x86_64-linux ] + faceted: [ i686-linux, x86_64-darwin, x86_64-linux ] + factory: [ i686-linux, x86_64-darwin, x86_64-linux ] + factual-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + FailureT: [ i686-linux, x86_64-darwin, x86_64-linux ] + falling-turnip: [ x86_64-darwin, x86_64-linux ] + fallingblocks: [ i686-linux, x86_64-linux, x86_64-darwin ] + family-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] + farmhash: [ x86_64-darwin ] + fast-digits: [ i686-linux ] + fast-tags: [ i686-linux, x86_64-darwin, x86_64-linux ] + fastbayes: [ i686-linux, x86_64-darwin, x86_64-linux ] + fastirc: [ i686-linux, x86_64-darwin, x86_64-linux ] + fault-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] + fay-hsx: [ i686-linux, x86_64-darwin, x86_64-linux ] + fcd: [ i686-linux, x86_64-darwin, x86_64-linux ] + fckeditor: [ i686-linux, x86_64-darwin, x86_64-linux ] + FComp: [ i686-linux, x86_64-darwin, x86_64-linux ] + fdo-trash: [ i686-linux, x86_64-darwin, x86_64-linux ] + feed-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] + feed-translator: [ i686-linux, x86_64-darwin, x86_64-linux ] + feed2lj: [ i686-linux, x86_64-darwin, x86_64-linux ] + feed2twitter: [ i686-linux, x86_64-darwin, x86_64-linux ] + feldspar-compiler: [ i686-linux, x86_64-darwin, x86_64-linux ] + feldspar-language: [ i686-linux, x86_64-darwin, x86_64-linux ] + fenfire: [ i686-linux, x86_64-darwin, x86_64-linux ] + FermatsLastMargin: [ i686-linux, x86_64-darwin, x86_64-linux ] + FerryCore: [ i686-linux, x86_64-darwin, x86_64-linux ] + ffeed: [ i686-linux, x86_64-darwin, x86_64-linux ] + ffmpeg-tutorials: [ i686-linux, x86_64-darwin, x86_64-linux ] + fibon: [ i686-linux, x86_64-darwin, x86_64-linux ] + fields: [ i686-linux, x86_64-darwin, x86_64-linux ] + FieldTrip: [ i686-linux, x86_64-darwin, x86_64-linux ] + fieldwise: [ i686-linux, x86_64-darwin, x86_64-linux ] + file-location: [ x86_64-darwin ] + filecache: [ x86_64-darwin ] + FileManip: [ i686-linux, x86_64-darwin, x86_64-linux ] + FileManipCompat: [ i686-linux, x86_64-darwin, x86_64-linux ] + filesystem-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + filesystem-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + FileSystem: [ i686-linux, x86_64-darwin, x86_64-linux ] + Finance-Quote-Yahoo: [ i686-linux, x86_64-darwin, x86_64-linux ] + Finance-Treasury: [ i686-linux, x86_64-darwin, x86_64-linux ] + find-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + FiniteMap: [ i686-linux, x86_64-darwin, x86_64-linux ] + firstify: [ i686-linux, x86_64-darwin, x86_64-linux ] + FirstOrderTheory: [ i686-linux, x86_64-darwin, x86_64-linux ] + fishfood: [ i686-linux, x86_64-darwin, x86_64-linux ] + fit: [ i686-linux, x86_64-darwin, x86_64-linux ] + fitsio: [ i686-linux, x86_64-darwin, x86_64-linux ] + fix-parser-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + fix-symbols-gitit: [ i686-linux, x86_64-darwin, x86_64-linux ] + fixed-point-vector-space: [ i686-linux, x86_64-darwin, x86_64-linux ] + fixed-point-vector: [ i686-linux, x86_64-darwin, x86_64-linux ] + fixed-point: [ i686-linux, x86_64-darwin, x86_64-linux ] + fixed-precision: [ i686-linux, x86_64-darwin, x86_64-linux ] + fixed-storable-array: [ i686-linux, x86_64-darwin, x86_64-linux ] + fixfile: [ i686-linux, x86_64-darwin, x86_64-linux ] + flexiwrap-smallcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + flexiwrap: [ i686-linux, x86_64-darwin, x86_64-linux ] + flickr: [ i686-linux, x86_64-darwin, x86_64-linux ] + Flippi: [ i686-linux, x86_64-darwin, x86_64-linux ] + flite: [ i686-linux, x86_64-darwin, x86_64-linux ] + floating-bits: [ i686-linux, x86_64-darwin, x86_64-linux ] + flow2dot: [ i686-linux, x86_64-darwin, x86_64-linux ] + flowdock-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + flowdock-rest: [ i686-linux, x86_64-darwin, x86_64-linux ] + flower: [ i686-linux, x86_64-darwin, x86_64-linux ] + flowlocks-framework: [ i686-linux, x86_64-darwin, x86_64-linux ] + flowsim: [ i686-linux, x86_64-darwin, x86_64-linux ] + fltkhs-demos: [ i686-linux, x86_64-darwin, x86_64-linux ] + fltkhs-fluid-demos: [ i686-linux, x86_64-darwin, x86_64-linux ] + fltkhs-hello-world: [ i686-linux, x86_64-darwin, x86_64-linux ] + fluidsynth: [ x86_64-darwin ] + FM-SBLEX: [ i686-linux, x86_64-darwin, x86_64-linux ] + FModExRaw: [ i686-linux, x86_64-darwin, x86_64-linux ] + fold-debounce-conduit: [ x86_64-darwin ] + fold-debounce: [ x86_64-darwin ] + foldl-incremental: [ i686-linux, x86_64-darwin, x86_64-linux ] + folds-common: [ i686-linux, x86_64-darwin, x86_64-linux ] + folds: [ i686-linux, x86_64-linux ] + follower: [ i686-linux, x86_64-darwin, x86_64-linux ] + foma: [ i686-linux, x86_64-darwin, x86_64-linux ] + font-opengl-basic4x6: [ i686-linux, x86_64-darwin, x86_64-linux ] + foo: [ i686-linux, x86_64-darwin, x86_64-linux ] + for-free: [ i686-linux, x86_64-darwin, x86_64-linux ] + forbidden-fruit: [ i686-linux, x86_64-darwin, x86_64-linux ] + fordo: [ i686-linux, x86_64-darwin, x86_64-linux ] + formal: [ i686-linux, x86_64-darwin, x86_64-linux ] + FormalGrammars: [ i686-linux, x86_64-darwin, x86_64-linux ] + format-status: [ i686-linux, x86_64-darwin, x86_64-linux ] + format: [ i686-linux, x86_64-darwin, x86_64-linux ] + forml: [ i686-linux, x86_64-darwin, x86_64-linux ] + formlets-hsp: [ i686-linux, x86_64-darwin, x86_64-linux ] + formlets: [ i686-linux, x86_64-darwin, x86_64-linux ] + ForSyDe: [ i686-linux, x86_64-darwin, x86_64-linux ] + forth-hll: [ i686-linux, x86_64-darwin, x86_64-linux ] + foscam-sort: [ i686-linux, x86_64-darwin, x86_64-linux ] + Foster: [ i686-linux, x86_64-darwin, x86_64-linux ] + fpco-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + fpnla-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + FractalArt: [ i686-linux, x86_64-darwin, x86_64-linux ] + Fractaler: [ i686-linux, x86_64-linux, x86_64-darwin ] + frag: [ i686-linux, x86_64-darwin, x86_64-linux ] + franchise: [ i686-linux, x86_64-darwin, x86_64-linux ] + Frank: [ i686-linux, x86_64-darwin, x86_64-linux ] + free-game: [ i686-linux, x86_64-darwin, x86_64-linux ] + free-operational: [ i686-linux, x86_64-darwin, x86_64-linux ] + free-theorems-counterexamples: [ i686-linux, x86_64-darwin, x86_64-linux ] + free-theorems-seq-webui: [ i686-linux, x86_64-darwin, x86_64-linux ] + free-theorems-seq: [ i686-linux, x86_64-darwin, x86_64-linux ] + free-theorems-webui: [ i686-linux, x86_64-darwin, x86_64-linux ] + free-theorems: [ i686-linux, x86_64-darwin, x86_64-linux ] + freekick2: [ i686-linux, x86_64-linux, x86_64-darwin ] + freenect: [ x86_64-darwin ] + freer: [ i686-linux ] + freesect: [ i686-linux, x86_64-darwin, x86_64-linux ] + freesound: [ i686-linux, x86_64-darwin, x86_64-linux ] + FreeTypeGL: [ i686-linux, x86_64-darwin, x86_64-linux ] + friday-juicypixels: [ i686-linux, x86_64-darwin, x86_64-linux ] + frp-arduino: [ i686-linux, x86_64-darwin, x86_64-linux ] + frpnow-gloss: [ x86_64-darwin ] + frpnow-gtk: [ x86_64-darwin ] + fs-events: [ i686-linux, x86_64-darwin, x86_64-linux ] + fsmActions: [ i686-linux, x86_64-darwin, x86_64-linux ] + ftdi: [ i686-linux, x86_64-darwin, x86_64-linux ] + FTGL-bytestring: [ x86_64-darwin ] + FTGL: [ x86_64-darwin ] + ftp-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + ftshell: [ i686-linux, x86_64-darwin, x86_64-linux ] + full-sessions: [ i686-linux, x86_64-darwin, x86_64-linux ] + full-text-search: [ i686-linux, x86_64-darwin, x86_64-linux ] + fullstop: [ i686-linux, x86_64-darwin, x86_64-linux ] + funbot-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + funbot-git-hook: [ i686-linux, x86_64-darwin, x86_64-linux ] + funbot: [ i686-linux, x86_64-darwin, x86_64-linux ] + function-combine: [ i686-linux, x86_64-darwin, x86_64-linux ] + functional-arrow: [ i686-linux, x86_64-darwin, x86_64-linux ] + functorm: [ i686-linux, x86_64-darwin, x86_64-linux ] + FunGEn: [ x86_64-darwin ] + funion: [ i686-linux, x86_64-linux, x86_64-darwin ] + funsat: [ i686-linux, x86_64-darwin, x86_64-linux ] + future: [ i686-linux, x86_64-darwin, x86_64-linux ] + fuzzytime: [ i686-linux, x86_64-darwin, x86_64-linux ] + fwgl-glfw: [ i686-linux, x86_64-darwin ] + fwgl: [ i686-linux ] + g-npm: [ i686-linux, x86_64-darwin, x86_64-linux ] + gact: [ i686-linux, x86_64-darwin, x86_64-linux ] + gameclock: [ i686-linux, x86_64-darwin, x86_64-linux ] + Gamgine: [ i686-linux, x86_64-darwin, x86_64-linux ] + Ganymede: [ i686-linux, x86_64-darwin, x86_64-linux ] + gbu: [ i686-linux, x86_64-darwin, x86_64-linux ] + gc-monitoring-wai: [ i686-linux, x86_64-darwin, x86_64-linux ] + gdiff-ig: [ i686-linux, x86_64-darwin, x86_64-linux ] + gdiff-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + gearbox: [ i686-linux, x86_64-darwin, x86_64-linux ] + GeBoP: [ x86_64-darwin ] + geek-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + geek: [ i686-linux, x86_64-darwin, x86_64-linux ] + gelatin: [ i686-linux, x86_64-darwin, x86_64-linux ] + gemstone: [ i686-linux, x86_64-linux, x86_64-darwin ] + gencheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + gender: [ i686-linux, x86_64-darwin, x86_64-linux ] + genders: [ i686-linux, x86_64-darwin, x86_64-linux ] + general-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] + GeneralTicTacToe: [ i686-linux, x86_64-darwin, x86_64-linux ] + generators: [ i686-linux, x86_64-darwin, x86_64-linux ] + generic-accessors: [ i686-linux, x86_64-darwin, x86_64-linux ] + generic-church: [ i686-linux, x86_64-darwin, x86_64-linux ] + generic-storable: [ i686-linux, x86_64-darwin, x86_64-linux ] + generic-xml: [ i686-linux, x86_64-darwin, x86_64-linux ] + genericserialize: [ i686-linux, x86_64-darwin, x86_64-linux ] + genetics: [ i686-linux, x86_64-darwin, x86_64-linux ] + geni-gui: [ i686-linux, x86_64-darwin, x86_64-linux ] + geni-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + GenI: [ i686-linux, x86_64-darwin, x86_64-linux ] + geniconvert: [ i686-linux, x86_64-darwin, x86_64-linux ] + geniserver: [ i686-linux, x86_64-darwin, x86_64-linux ] + GenSmsPdu: [ i686-linux, x86_64-darwin, x86_64-linux ] + GenussFold: [ i686-linux, x86_64-darwin, x86_64-linux ] + geo-resolver: [ i686-linux, x86_64-linux ] + GeocoderOpenCage: [ i686-linux, x86_64-darwin, x86_64-linux ] + geoip2: [ i686-linux ] + GeoIp: [ i686-linux, x86_64-darwin, x86_64-linux ] + geojson: [ x86_64-darwin ] + geom2d: [ i686-linux, x86_64-darwin ] + GeomPredicates-SSE: [ i686-linux, x86_64-darwin, x86_64-linux ] + getemx: [ i686-linux, x86_64-darwin, x86_64-linux ] + getflag: [ i686-linux, x86_64-darwin, x86_64-linux ] + ggtsTC: [ i686-linux, x86_64-darwin, x86_64-linux ] + ghc-dup: [ i686-linux, x86_64-darwin, x86_64-linux ] + ghc-events-parallel: [ i686-linux, x86_64-darwin, x86_64-linux ] + ghc-exactprint: [ x86_64-darwin ] + ghc-pkg-autofix: [ i686-linux, x86_64-darwin, x86_64-linux ] + ghc-syb: [ i686-linux, x86_64-darwin, x86_64-linux ] + ghc-vis: [ x86_64-darwin ] + ghci-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + ghci-haskeline: [ i686-linux, x86_64-darwin, x86_64-linux ] + ghcjs-dom-hello: [ x86_64-darwin ] + ghcjs-dom: [ x86_64-darwin ] + ghclive: [ i686-linux, x86_64-darwin, x86_64-linux ] + ght: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-atk: [ i686-linux, x86_64-darwin ] + gi-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-gdk: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-gdkpixbuf: [ i686-linux, x86_64-darwin ] + gi-gio: [ i686-linux ] + gi-girepository: [ i686-linux, x86_64-darwin ] + gi-glib: [ i686-linux ] + gi-gobject: [ i686-linux ] + gi-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-javascriptcore: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-notify: [ i686-linux, x86_64-darwin ] + gi-pango: [ i686-linux, x86_64-darwin ] + gi-poppler: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-soup: [ i686-linux, x86_64-darwin ] + gi-vte: [ i686-linux, x86_64-linux, x86_64-darwin ] + gi-webkit2: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-webkit2webextension: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-webkit: [ i686-linux, x86_64-linux, x86_64-darwin ] + Gifcurry: [ x86_64-darwin ] + gist: [ i686-linux, x86_64-darwin, x86_64-linux ] + git-all: [ i686-linux, x86_64-darwin, x86_64-linux ] + git-checklist: [ i686-linux, x86_64-darwin, x86_64-linux ] + git-date: [ i686-linux, x86_64-darwin, x86_64-linux ] + git-gpush: [ i686-linux, x86_64-darwin, x86_64-linux ] + git-repair: [ i686-linux, x86_64-darwin, x86_64-linux ] + gitdo: [ i686-linux, x86_64-darwin, x86_64-linux ] + github-backup: [ i686-linux, x86_64-darwin, x86_64-linux ] + github-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + gitlib-cross: [ i686-linux, x86_64-darwin, x86_64-linux ] + gitlib-s3: [ i686-linux, x86_64-darwin, x86_64-linux ] + gitlib-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + gl-capture: [ x86_64-darwin ] + gl: [ x86_64-darwin ] + glade: [ i686-linux, x86_64-darwin, x86_64-linux ] + gladexml-accessor: [ i686-linux, x86_64-darwin, x86_64-linux ] + glapp: [ x86_64-darwin ] + GLFW-b-demo: [ x86_64-darwin ] + GLFW-b: [ x86_64-darwin ] + GLFW-OGL: [ i686-linux, x86_64-darwin, x86_64-linux ] + GLFW-task: [ x86_64-darwin ] + GLFW: [ x86_64-darwin ] + GLHUI: [ x86_64-darwin ] + glicko: [ i686-linux, x86_64-darwin, x86_64-linux ] + glider-nlp: [ i686-linux, x86_64-darwin, x86_64-linux ] + GLMatrix: [ i686-linux, x86_64-darwin, x86_64-linux ] + global: [ i686-linux, x86_64-darwin, x86_64-linux ] + glome-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + GlomeTrace: [ i686-linux, x86_64-darwin, x86_64-linux ] + GlomeView: [ i686-linux, x86_64-darwin, x86_64-linux ] + gloss-accelerate: [ x86_64-darwin ] + gloss-algorithms: [ x86_64-darwin ] + gloss-banana: [ i686-linux, x86_64-darwin, x86_64-linux ] + gloss-devil: [ i686-linux, x86_64-darwin, x86_64-linux ] + gloss-examples: [ x86_64-darwin ] + gloss-game: [ x86_64-darwin ] + gloss-juicy: [ x86_64-darwin ] + gloss-raster: [ x86_64-darwin ] + gloss-rendering: [ x86_64-darwin ] + gloss-sodium: [ x86_64-darwin ] + gloss: [ x86_64-darwin ] + GLURaw: [ x86_64-darwin ] + GLUT: [ x86_64-darwin ] + GLUtil: [ i686-linux, x86_64-darwin, x86_64-linux ] + gluturtle: [ x86_64-darwin ] + gmap: [ i686-linux, x86_64-darwin, x86_64-linux ] + gmndl: [ i686-linux, x86_64-linux, x86_64-darwin ] + gnome-desktop: [ i686-linux, x86_64-darwin, x86_64-linux ] + gnome-keyring: [ i686-linux, x86_64-linux, x86_64-darwin ] + gnomevfs: [ i686-linux, x86_64-linux, x86_64-darwin ] + gnss-converters: [ i686-linux, x86_64-darwin, x86_64-linux ] + goa: [ i686-linux, x86_64-darwin, x86_64-linux ] + goal-core: [ x86_64-darwin ] + goal-geometry: [ x86_64-darwin ] + goal-probability: [ x86_64-darwin ] + goal-simulation: [ i686-linux, x86_64-darwin, x86_64-linux ] + gofer-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] + gooey: [ i686-linux, x86_64-darwin, x86_64-linux ] + google-html5-slide: [ i686-linux, x86_64-darwin, x86_64-linux ] + google-mail-filters: [ i686-linux, x86_64-darwin, x86_64-linux ] + google-search: [ i686-linux, x86_64-darwin, x86_64-linux ] + GoogleDirections: [ i686-linux, x86_64-darwin, x86_64-linux ] + googleplus: [ i686-linux, x86_64-darwin, x86_64-linux ] + GoogleSB: [ i686-linux, x86_64-darwin, x86_64-linux ] + GoogleTranslate: [ i686-linux, x86_64-darwin, x86_64-linux ] + gopherbot: [ i686-linux, x86_64-darwin, x86_64-linux ] + gore-and-ash-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] + gore-and-ash-glfw: [ x86_64-darwin ] + gore-and-ash-network: [ i686-linux, x86_64-darwin, x86_64-linux ] + gore-and-ash-sync: [ i686-linux, x86_64-darwin, x86_64-linux ] + gpah: [ i686-linux, x86_64-darwin, x86_64-linux ] + GPipe-Collada: [ i686-linux, x86_64-darwin, x86_64-linux ] + GPipe-Examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + GPipe-GLFW: [ x86_64-darwin ] + GPipe-TextureLoad: [ i686-linux, x86_64-darwin, x86_64-linux ] + GPipe: [ x86_64-darwin ] + gps2htmlReport: [ i686-linux, x86_64-darwin, x86_64-linux ] + gps: [ i686-linux, x86_64-darwin, x86_64-linux ] + gpx-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + GPX: [ i686-linux, x86_64-darwin, x86_64-linux ] + grammar-combinators: [ i686-linux, x86_64-darwin, x86_64-linux ] + GrammarProducts: [ i686-linux, x86_64-darwin, x86_64-linux ] + grapefruit-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + grapefruit-frp: [ i686-linux, x86_64-darwin, x86_64-linux ] + grapefruit-records: [ i686-linux, x86_64-darwin, x86_64-linux ] + grapefruit-ui-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + grapefruit-ui: [ i686-linux, x86_64-darwin, x86_64-linux ] + graph-rewriting-cl: [ i686-linux, x86_64-darwin, x86_64-linux ] + graph-rewriting-gl: [ x86_64-darwin ] + graph-rewriting-lambdascope: [ x86_64-darwin ] + graph-rewriting-ski: [ x86_64-darwin ] + graph-rewriting-trs: [ x86_64-darwin ] + graph-rewriting-ww: [ x86_64-darwin ] + graph-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + Graph500: [ i686-linux, x86_64-darwin, x86_64-linux ] + Graphalyze: [ i686-linux, x86_64-darwin, x86_64-linux ] + graphbuilder: [ i686-linux, x86_64-darwin, x86_64-linux ] + GraphHammer-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + GraphHammer: [ i686-linux, x86_64-darwin, x86_64-linux ] + graphics-drawingcombinators: [ x86_64-darwin ] + graphics-formats-collada: [ i686-linux, x86_64-darwin, x86_64-linux ] + graphicsFormats: [ i686-linux, x86_64-darwin, x86_64-linux ] + graphicstools: [ i686-linux, x86_64-darwin, x86_64-linux ] + graphtype: [ i686-linux, x86_64-darwin, x86_64-linux ] + graylog: [ i686-linux, x86_64-darwin, x86_64-linux ] + greencard-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + greencard: [ i686-linux, x86_64-darwin, x86_64-linux ] + greg-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + gremlin-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + Grempa: [ i686-linux, x86_64-darwin, x86_64-linux ] + gridfs: [ i686-linux, x86_64-darwin, x86_64-linux ] + gridland: [ x86_64-darwin ] + grm: [ i686-linux, x86_64-darwin, x86_64-linux ] + groundhog-converters: [ i686-linux, x86_64-darwin, x86_64-linux ] + Grow: [ i686-linux, x86_64-darwin, x86_64-linux ] + GrowlNotify: [ i686-linux, x86_64-darwin, x86_64-linux ] + gruff-examples: [ i686-linux, x86_64-linux, x86_64-darwin ] + gruff: [ i686-linux, x86_64-linux, x86_64-darwin ] + gsl-random-fu: [ i686-linux, x86_64-darwin, x86_64-linux ] + gsl-random: [ i686-linux, x86_64-darwin, x86_64-linux ] + gsmenu: [ i686-linux, x86_64-darwin, x86_64-linux ] + gstreamer: [ i686-linux, x86_64-darwin, x86_64-linux ] + GTALib: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtfs: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk-helpers: [ x86_64-darwin ] + gtk-jsinput: [ x86_64-darwin ] + gtk-largeTreeStore: [ x86_64-darwin ] + gtk-mac-integration: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk-serialized-event: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk-simple-list-view: [ x86_64-darwin ] + gtk-toggle-button-list: [ x86_64-darwin ] + gtk-toy: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk-traymanager: [ x86_64-darwin ] + gtk2hs-cast-glade: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk2hs-cast-gnomevfs: [ i686-linux, x86_64-linux, x86_64-darwin ] + gtk2hs-cast-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk2hs-cast-gtkglext: [ i686-linux, x86_64-linux, x86_64-darwin ] + gtk2hs-cast-gtksourceview2: [ x86_64-darwin ] + gtk2hs-hello: [ x86_64-darwin ] + gtk2hs-rpn: [ i686-linux, x86_64-darwin, x86_64-linux ] + Gtk2hsGenerics: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk3-mac-integration: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk3: [ x86_64-darwin ] + gtk: [ x86_64-darwin ] + gtkglext: [ i686-linux, x86_64-linux, x86_64-darwin ] + GtkGLTV: [ i686-linux, x86_64-linux, x86_64-darwin ] + gtkimageview: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtkrsync: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtksourceview2: [ x86_64-darwin ] + gtksourceview3: [ x86_64-darwin ] + GtkTV: [ x86_64-darwin ] + guess-combinator: [ i686-linux, x86_64-darwin, x86_64-linux ] + GuiHaskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + GuiTV: [ i686-linux, x86_64-darwin, x86_64-linux ] + gulcii: [ x86_64-darwin ] + h-booru: [ i686-linux, x86_64-darwin, x86_64-linux ] + h-gpgme: [ i686-linux, x86_64-darwin, x86_64-linux ] + H: [ i686-linux, x86_64-darwin ] + haar: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hach: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-contrib-press: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-frontend-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-handler-epoll: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-handler-evhttp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-handler-fastcgi: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-handler-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-handler-hyena: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-handler-kibro: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-handler-simpleserver: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-middleware-cleanpath: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-middleware-clientsession: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-middleware-jsonp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack2-handler-happstack-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack2-handler-mongrel2-http: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack2-handler-warp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack2-interface-wai: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage-proxy: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage-repo-tool: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage-security-HTTP: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage-security: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage-sparks: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage2hwn: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage2twitter: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackernews: [ i686-linux, x86_64-darwin, x86_64-linux ] + HackMail: [ i686-linux, x86_64-darwin, x86_64-linux ] + hactor: [ i686-linux, x86_64-darwin, x86_64-linux ] + haddock-leksah: [ i686-linux, x86_64-darwin, x86_64-linux ] + haggis: [ i686-linux, x86_64-darwin, x86_64-linux ] + Haggressive: [ i686-linux, x86_64-darwin, x86_64-linux ] + haiji: [ i686-linux, x86_64-darwin, x86_64-linux ] + hairy: [ i686-linux, x86_64-darwin, x86_64-linux ] + hakaru: [ i686-linux, x86_64-darwin, x86_64-linux ] + hakismet: [ i686-linux, x86_64-darwin, x86_64-linux ] + hakyll-agda: [ i686-linux, x86_64-darwin, x86_64-linux ] + hakyll-blaze-templates: [ i686-linux, x86_64-darwin, x86_64-linux ] + hakyll-contrib-links: [ i686-linux, x86_64-darwin, x86_64-linux ] + hakyll-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] + hakyll-convert: [ i686-linux, x86_64-darwin, x86_64-linux ] + hakyll-R: [ i686-linux, x86_64-darwin, x86_64-linux ] + halberd: [ i686-linux, x86_64-darwin, x86_64-linux ] + HaLeX: [ i686-linux, x86_64-darwin, x86_64-linux ] + halfs: [ i686-linux, x86_64-linux, x86_64-darwin ] + halipeto: [ i686-linux, x86_64-darwin, x86_64-linux ] + halma: [ x86_64-darwin ] + hamid: [ x86_64-darwin ] + hampp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hamtmap: [ i686-linux, x86_64-darwin, x86_64-linux ] + hamusic: [ i686-linux, x86_64-darwin, x86_64-linux ] + handa-opengl: [ x86_64-darwin ] + handsy: [ i686-linux, x86_64-darwin, x86_64-linux ] + hannahci: [ i686-linux, x86_64-darwin, x86_64-linux ] + haphviz: [ i686-linux, x86_64-darwin, x86_64-linux ] + happindicator3: [ i686-linux, x86_64-darwin, x86_64-linux ] + happindicator: [ i686-linux, x86_64-darwin, x86_64-linux ] + happraise: [ i686-linux, x86_64-darwin, x86_64-linux ] + HAppS-Data: [ i686-linux, x86_64-darwin, x86_64-linux ] + happs-hsp-template: [ i686-linux, x86_64-darwin, x86_64-linux ] + happs-hsp: [ i686-linux, x86_64-darwin, x86_64-linux ] + HAppS-IxSet: [ i686-linux, x86_64-darwin, x86_64-linux ] + HAppS-Server: [ i686-linux, x86_64-darwin, x86_64-linux ] + HAppS-State: [ i686-linux, x86_64-darwin, x86_64-linux ] + happs-tutorial: [ i686-linux, x86_64-darwin, x86_64-linux ] + HAppS-Util: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-auth: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-data: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-dlg: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-facebook: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-fay: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-heist: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-helpers: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-ixset: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-monad-peel: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-state: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-static-routing: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-yui: [ i686-linux, x86_64-darwin, x86_64-linux ] + happybara-webkit-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + happybara-webkit: [ i686-linux, x86_64-darwin, x86_64-linux ] + happybara: [ i686-linux, x86_64-darwin, x86_64-linux ] + harchive: [ i686-linux, x86_64-darwin, x86_64-linux ] + hardware-edsl: [ i686-linux, x86_64-darwin, x86_64-linux ] + HaRe: [ x86_64-darwin ] + hark: [ i686-linux, x86_64-darwin, x86_64-linux ] + HARM: [ i686-linux, x86_64-darwin, x86_64-linux ] + harmony: [ i686-linux, x86_64-darwin, x86_64-linux ] + HarmTrace-Base: [ i686-linux, x86_64-darwin, x86_64-linux ] + HarmTrace: [ i686-linux, x86_64-darwin, x86_64-linux ] + haroonga-httpd: [ i686-linux, x86_64-darwin, x86_64-linux ] + haroonga: [ i686-linux, x86_64-darwin, x86_64-linux ] + has-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + has: [ i686-linux, x86_64-darwin, x86_64-linux ] + hascal: [ i686-linux, x86_64-darwin, x86_64-linux ] + hascat-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + hascat-setup: [ i686-linux, x86_64-darwin, x86_64-linux ] + hascat-system: [ i686-linux, x86_64-darwin, x86_64-linux ] + hascat: [ i686-linux, x86_64-darwin, x86_64-linux ] + Haschoo: [ i686-linux, x86_64-darwin, x86_64-linux ] + HasGP: [ i686-linux, x86_64-darwin, x86_64-linux ] + hash: [ i686-linux, x86_64-darwin, x86_64-linux ] + hashable-generics: [ i686-linux, x86_64-darwin, x86_64-linux ] + hashed-storage: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hashell: [ i686-linux, x86_64-darwin, x86_64-linux ] + hashids: [ i686-linux, x86_64-darwin, x86_64-linux ] + hasim: [ i686-linux, x86_64-darwin, x86_64-linux ] + hask-home: [ i686-linux, x86_64-darwin, x86_64-linux ] + hask: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskakafka: [ x86_64-darwin ] + haskanoid: [ i686-linux, x86_64-darwin ] + haskarrow: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskeem: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskeline-class: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-aliyun: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-awk: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-brainfuck: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-cnc: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-course-preludes: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-formatter: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-ftp: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-gi-base: [ i686-linux ] + haskell-gi: [ i686-linux, x86_64-darwin ] + haskell-mpfr: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-mpi: [ x86_64-darwin ] + haskell-names: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-openflow: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-pdf-presenter: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-platform-test: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-reflect: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-rules: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-src-meta-mwotton: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-token-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-tor: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-type-exts: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-tyrant: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-xmpp: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell2010: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell98: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-connect-hdbc-catchio-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-connect-hdbc-catchio-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-connect-hdbc-catchio-transformers: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-connect-hdbc-lifted: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-connect-hdbc: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-dynamic: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-hdbc-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-hsql-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-hsql-odbc: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-hsql-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-hsql-sqlite3: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-hsql: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-wx: [ i686-linux, x86_64-darwin, x86_64-linux ] + HaskellLM: [ i686-linux, x86_64-darwin, x86_64-linux ] + HaskellNN: [ i686-linux, x86_64-darwin, x86_64-linux ] + Haskelloids: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskellscrabble: [ i686-linux, x86_64-darwin, x86_64-linux ] + HaskellTorrent: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskgame: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskheap: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskhol-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin-crypto: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin-node: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin-protocol: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin-script: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin-wallet: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoon-httpspec: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoon-salvia: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoon: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskore-realtime: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskore-supercollider: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskore-synthesizer: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskore: [ i686-linux, x86_64-darwin, x86_64-linux ] + haslo: [ i686-linux, x86_64-darwin, x86_64-linux ] + hasloGUI: [ i686-linux, x86_64-darwin, x86_64-linux ] + hasparql-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + hasql-postgres-options: [ i686-linux, x86_64-darwin, x86_64-linux ] + hasql-postgres: [ i686-linux, x86_64-darwin, x86_64-linux ] + haste-perch: [ i686-linux, x86_64-darwin, x86_64-linux ] + hat: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hate: [ i686-linux, x86_64-darwin, x86_64-linux ] + hatex-guide: [ i686-linux, x86_64-darwin, x86_64-linux ] + HaTeX-meta: [ i686-linux, x86_64-darwin, x86_64-linux ] + haverer: [ i686-linux, x86_64-darwin, x86_64-linux ] + HaVSA: [ i686-linux, x86_64-darwin, x86_64-linux ] + hawitter: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hawk: [ i686-linux, x86_64-darwin, x86_64-linux ] + haxparse: [ i686-linux, x86_64-darwin, x86_64-linux ] + hayland: [ i686-linux, x86_64-linux, x86_64-darwin ] + hayoo-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hayoo: [ i686-linux, x86_64-darwin, x86_64-linux ] + hback: [ i686-linux, x86_64-darwin, x86_64-linux ] + hbayes: [ i686-linux, x86_64-darwin, x86_64-linux ] + hbb: [ i686-linux, x86_64-darwin, x86_64-linux ] + hBDD-CMUBDD: [ i686-linux, x86_64-darwin, x86_64-linux ] + hBDD-CUDD: [ i686-linux, x86_64-linux, x86_64-darwin ] + hbeat: [ i686-linux, x86_64-linux, x86_64-darwin ] + hblas: [ i686-linux, x86_64-linux, x86_64-darwin ] + hblock: [ i686-linux, x86_64-darwin, x86_64-linux ] + hbro: [ i686-linux, x86_64-linux, x86_64-darwin ] + hburg: [ i686-linux, x86_64-darwin, x86_64-linux ] + HCard: [ i686-linux, x86_64-darwin, x86_64-linux ] + hcheat: [ i686-linux, x86_64-darwin, x86_64-linux ] + hchesslib: [ i686-linux, x86_64-darwin, x86_64-linux ] + HCL: [ i686-linux, x86_64-darwin, x86_64-linux ] + hcron: [ i686-linux, x86_64-darwin, x86_64-linux ] + hCsound: [ i686-linux, x86_64-darwin, x86_64-linux ] + hcube: [ i686-linux, x86_64-darwin, x86_64-linux ] + hcwiid: [ x86_64-darwin ] + hdaemonize-buildfix: [ i686-linux, x86_64-darwin, x86_64-linux ] + HDBC-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdbi-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdbi-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdbi-sqlite: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdbi-tests: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdbi: [ i686-linux, x86_64-darwin, x86_64-linux ] + hDFA: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdigest: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdirect: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdis86: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdiscount: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdm: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdph-closure: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdph: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdr-histogram: [ i686-linux ] + HDRUtils: [ i686-linux, x86_64-darwin, x86_64-linux ] + hecc: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hedi: [ i686-linux, x86_64-darwin, x86_64-linux ] + hedn: [ i686-linux, x86_64-darwin, x86_64-linux ] + heist-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ] + helics-wai: [ i686-linux, x86_64-linux ] + helics: [ i686-linux, x86_64-linux ] + helium: [ i686-linux, x86_64-darwin, x86_64-linux ] + hell: [ i686-linux, x86_64-darwin, x86_64-linux ] + hellage: [ i686-linux, x86_64-darwin, x86_64-linux ] + hellnet: [ i686-linux, x86_64-darwin, x86_64-linux ] + helm: [ i686-linux, x86_64-darwin, x86_64-linux ] + hemkay: [ i686-linux, x86_64-darwin, x86_64-linux ] + hemokit: [ x86_64-darwin ] + hen: [ i686-linux, x86_64-darwin, x86_64-linux ] + henet: [ i686-linux, x86_64-darwin, x86_64-linux ] + hepevt: [ i686-linux, x86_64-darwin, x86_64-linux ] + her-lexer-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + her-lexer: [ i686-linux, x86_64-darwin, x86_64-linux ] + HERA: [ i686-linux, x86_64-darwin, x86_64-linux ] + herbalizer: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hermes: [ i686-linux, x86_64-darwin, x86_64-linux ] + hermit-syb: [ i686-linux, x86_64-darwin, x86_64-linux ] + hermit: [ i686-linux, x86_64-darwin, x86_64-linux ] + herringbone-embed: [ i686-linux, x86_64-darwin, x86_64-linux ] + herringbone-wai: [ i686-linux, x86_64-darwin, x86_64-linux ] + herringbone: [ i686-linux, x86_64-darwin, x86_64-linux ] + hesh: [ i686-linux, x86_64-darwin, x86_64-linux ] + hesql: [ i686-linux, x86_64-darwin, x86_64-linux ] + hetris: [ i686-linux, x86_64-darwin, x86_64-linux ] + heukarya: [ i686-linux, x86_64-darwin, x86_64-linux ] + hevolisa-dph: [ i686-linux, x86_64-darwin, x86_64-linux ] + hevolisa: [ i686-linux, x86_64-darwin, x86_64-linux ] + hexpat-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + hexpat-pickle-generic: [ i686-linux, x86_64-darwin, x86_64-linux ] + hexquote: [ i686-linux, x86_64-darwin, x86_64-linux ] + hF2: [ i686-linux, x86_64-darwin, x86_64-linux ] + hfann: [ i686-linux, x86_64-darwin, x86_64-linux ] + hfd: [ i686-linux, x86_64-darwin, x86_64-linux ] + hfiar: [ i686-linux, x86_64-darwin, x86_64-linux ] + hfmt: [ i686-linux, x86_64-darwin, x86_64-linux ] + hfoil: [ i686-linux, x86_64-darwin, x86_64-linux ] + hfractal: [ i686-linux, x86_64-darwin, x86_64-linux ] + HFrequencyQueue: [ i686-linux, x86_64-darwin, x86_64-linux ] + HFuse: [ x86_64-darwin ] + hfusion: [ i686-linux, x86_64-darwin, x86_64-linux ] + hg-buildpackage: [ i686-linux, x86_64-darwin, x86_64-linux ] + hgalib: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-API: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Audio: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Bullet-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-CAudio-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-CEGUI-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Common: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Data: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Enet-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Graphics3D: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-GUI: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-InputSystem: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Network: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Ogre-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-OIS-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-SDL2-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-SFML-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-WinEvent: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Wire: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D: [ i686-linux, x86_64-darwin, x86_64-linux ] + hgen: [ i686-linux, x86_64-darwin, x86_64-linux ] + hgeometric: [ i686-linux, x86_64-darwin, x86_64-linux ] + hgeometry: [ i686-linux, x86_64-darwin, x86_64-linux ] + hgithub: [ i686-linux, x86_64-darwin, x86_64-linux ] + hgom: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGraphStorage: [ i686-linux, x86_64-darwin, x86_64-linux ] + hgrib: [ i686-linux, x86_64-darwin, x86_64-linux ] + hharp: [ i686-linux, x86_64-darwin, x86_64-linux ] + HHDL: [ i686-linux, x86_64-darwin, x86_64-linux ] + hiccup: [ i686-linux, x86_64-darwin, x86_64-linux ] + hichi: [ i686-linux, x86_64-darwin, x86_64-linux ] + hid: [ x86_64-darwin ] + hidapi: [ x86_64-darwin ] + hieraclus: [ i686-linux, x86_64-darwin, x86_64-linux ] + hierarchical-clustering-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + hiernotify: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hieroglyph: [ i686-linux, x86_64-linux, x86_64-darwin ] + HiggsSet: [ i686-linux, x86_64-darwin, x86_64-linux ] + higher-leveldb: [ x86_64-darwin ] + higherorder: [ i686-linux, x86_64-darwin, x86_64-linux ] + highjson: [ i686-linux ] + highWaterMark: [ i686-linux, x86_64-darwin, x86_64-linux ] + himg: [ i686-linux, x86_64-darwin, x86_64-linux ] + himpy: [ i686-linux, x86_64-darwin, x86_64-linux ] + hinduce-classifier-decisiontree: [ i686-linux, x86_64-darwin, x86_64-linux ] + hinduce-classifier: [ i686-linux, x86_64-darwin, x86_64-linux ] + hinduce-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + hinvaders: [ i686-linux, x86_64-darwin, x86_64-linux ] + hinze-streams: [ i686-linux, x86_64-darwin, x86_64-linux ] + hip: [ i686-linux, x86_64-darwin, x86_64-linux ] + hipchat-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + hipe: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hipmunk: [ x86_64-darwin ] + HipmunkPlayground: [ x86_64-darwin ] + hircules: [ i686-linux, x86_64-darwin, x86_64-linux ] + hirt: [ i686-linux, x86_64-darwin, x86_64-linux ] + hissmetrics: [ i686-linux, x86_64-darwin, x86_64-linux ] + hist-pl-fusion: [ i686-linux, x86_64-darwin, x86_64-linux ] + hist-pl-lmf: [ i686-linux, x86_64-darwin, x86_64-linux ] + hist-pl: [ i686-linux, x86_64-darwin, x86_64-linux ] + historian: [ i686-linux, x86_64-darwin, x86_64-linux ] + hjs: [ i686-linux, x86_64-darwin, x86_64-linux ] + hjsonschema: [ i686-linux, x86_64-darwin, x86_64-linux ] + HJVM: [ i686-linux, x86_64-darwin, x86_64-linux ] + hlbfgsb: [ i686-linux, x86_64-darwin, x86_64-linux ] + hlcm: [ i686-linux, x86_64-darwin, x86_64-linux ] + HLearn-algebra: [ i686-linux, x86_64-darwin, x86_64-linux ] + HLearn-approximation: [ i686-linux, x86_64-darwin, x86_64-linux ] + HLearn-classification: [ i686-linux, x86_64-darwin, x86_64-linux ] + HLearn-datastructures: [ i686-linux, x86_64-darwin, x86_64-linux ] + HLearn-distributions: [ i686-linux, x86_64-darwin, x86_64-linux ] + hledger-chart: [ i686-linux, x86_64-darwin, x86_64-linux ] + hledger-vty: [ i686-linux, x86_64-darwin, x86_64-linux ] + hlibBladeRF: [ x86_64-darwin ] + hlibev: [ i686-linux, x86_64-darwin, x86_64-linux ] + hlibfam: [ i686-linux, x86_64-linux ] + HLogger: [ i686-linux, x86_64-darwin, x86_64-linux ] + hlogger: [ i686-linux, x86_64-darwin, x86_64-linux ] + hly: [ i686-linux, x86_64-darwin, x86_64-linux ] + HMap: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmark: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmarkup: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmatrix-banded: [ i686-linux, x86_64-linux, x86_64-darwin ] + hmatrix-mmap: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmatrix-nipals: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmatrix-quadprogpp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmatrix-repa: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmatrix-special: [ i686-linux, x86_64-linux ] + hmatrix-static: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmatrix-svdlibc: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmatrix-syntax: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmeap-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmeap: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmenu: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmidi: [ x86_64-darwin ] + hmk: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmm-hmatrix: [ i686-linux, x86_64-darwin, x86_64-linux ] + HMM: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmm: [ i686-linux, x86_64-darwin, x86_64-linux ] + hMollom: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmp3: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hmpf: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmpfr: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmumps: [ i686-linux, x86_64-darwin, x86_64-linux ] + hnetcdf: [ i686-linux, x86_64-darwin, x86_64-linux ] + HNM: [ i686-linux, x86_64-darwin, x86_64-linux ] + hnn: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoauth: [ i686-linux, x86_64-darwin, x86_64-linux ] + hob: [ i686-linux, x86_64-linux, x86_64-darwin ] + hobbes: [ i686-linux, x86_64-darwin, x86_64-linux ] + hobbits: [ i686-linux, x86_64-darwin, x86_64-linux ] + HODE: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hoed: [ i686-linux, x86_64-darwin, x86_64-linux ] + hofix-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + hog: [ i686-linux, x86_64-darwin, x86_64-linux ] + hogg: [ i686-linux, x86_64-darwin, x86_64-linux ] + hogre-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + hogre: [ i686-linux, x86_64-darwin, x86_64-linux ] + hois: [ i686-linux, x86_64-darwin, x86_64-linux ] + hole: [ i686-linux, x86_64-darwin, x86_64-linux ] + Holumbus-Distribution: [ i686-linux, x86_64-darwin, x86_64-linux ] + Holumbus-MapReduce: [ i686-linux, x86_64-darwin, x86_64-linux ] + Holumbus-Searchengine: [ i686-linux, x86_64-darwin, x86_64-linux ] + Holumbus-Storage: [ i686-linux, x86_64-darwin, x86_64-linux ] + homeomorphic: [ i686-linux, x86_64-darwin, x86_64-linux ] + hommage: [ i686-linux, x86_64-darwin, x86_64-linux ] + homplexity: [ i686-linux, x86_64-darwin, x86_64-linux ] + HongoDB: [ i686-linux, x86_64-darwin, x86_64-linux ] + honi: [ i686-linux, x86_64-linux, x86_64-darwin ] + honk: [ x86_64-darwin ] + hood-off: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodie: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle-builder: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle-extra: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle-publish: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle-render: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle-types: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoovie: [ i686-linux, x86_64-darwin, x86_64-linux ] + hopencc: [ i686-linux, x86_64-darwin, x86_64-linux ] + hopencl: [ i686-linux, x86_64-darwin, x86_64-linux ] + HOpenCV: [ x86_64-darwin ] + hopfield: [ i686-linux, x86_64-darwin, x86_64-linux ] + hops: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoq: [ i686-linux, x86_64-darwin, x86_64-linux ] + hosts-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + hothasktags: [ i686-linux, x86_64-darwin, x86_64-linux ] + hourglass-fuzzy-parsing: [ i686-linux, x86_64-darwin, x86_64-linux ] + hp2any-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + hp2any-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] + hp2any-manager: [ i686-linux, x86_64-linux, x86_64-darwin ] + hpage: [ i686-linux, x86_64-darwin, x86_64-linux ] + hpapi: [ i686-linux, x86_64-darwin, x86_64-linux ] + hpaste: [ i686-linux, x86_64-darwin, x86_64-linux ] + hpasteit: [ i686-linux, x86_64-darwin, x86_64-linux ] + HPath: [ i686-linux, x86_64-darwin, x86_64-linux ] + hpc-tracer: [ i686-linux, x86_64-darwin, x86_64-linux ] + hPDB-examples: [ x86_64-darwin ] + HPi: [ i686-linux, x86_64-darwin, x86_64-linux ] + hplayground: [ i686-linux, x86_64-darwin, x86_64-linux ] + hplaylist: [ i686-linux, x86_64-darwin, x86_64-linux ] + HPlot: [ i686-linux, x86_64-darwin, x86_64-linux ] + hpodder: [ i686-linux, x86_64-darwin, x86_64-linux ] + HPong: [ i686-linux, x86_64-darwin, x86_64-linux ] + hpqtypes: [ x86_64-darwin ] + hprotoc-fork: [ i686-linux, x86_64-darwin, x86_64-linux ] + hps-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] + hpylos: [ i686-linux, x86_64-darwin, x86_64-linux ] + hquantlib: [ i686-linux, x86_64-linux ] + hR: [ i686-linux, x86_64-darwin, x86_64-linux ] + hranker: [ i686-linux, x86_64-darwin, x86_64-linux ] + HRay: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hricket: [ i686-linux, x86_64-darwin, x86_64-linux ] + HROOT-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + HROOT-graf: [ i686-linux, x86_64-darwin, x86_64-linux ] + HROOT-hist: [ i686-linux, x86_64-darwin, x86_64-linux ] + HROOT-io: [ i686-linux, x86_64-darwin, x86_64-linux ] + HROOT-math: [ i686-linux, x86_64-darwin, x86_64-linux ] + HROOT: [ i686-linux, x86_64-darwin, x86_64-linux ] + hruby: [ i686-linux ] + hs-carbon-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-cdb: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-dotnet: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-duktape: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-ffmpeg: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-fltk: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-gchart: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-gen-iface: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-GeoIP: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-java: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-json-rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-logo: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-mesos: [ i686-linux, x86_64-linux, x86_64-darwin ] + hs-nombre-generator: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-pgms: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-pkpass: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-twitter: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-twitterarchiver: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-vcard: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs2bf: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs2dot: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hs2lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsbackup: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsbencher-fusion: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc2hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-auditor: [ x86_64-darwin ] + hsc3-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-data: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-forth: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-graphs: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-lang: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-lisp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-rec: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-sf-hsndfile: [ x86_64-darwin ] + hsc3-unsafe: [ i686-linux, x86_64-darwin, x86_64-linux ] + hscamwire: [ i686-linux, x86_64-darwin, x86_64-linux ] + hscassandra: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsclock: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsdip: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsdns-cache: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hsed: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsfacter: [ i686-linux, x86_64-darwin, x86_64-linux ] + HSFFIG: [ i686-linux, x86_64-darwin, x86_64-linux ] + HSGEP: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsgnutls-yj: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsgnutls: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsgsom: [ i686-linux, x86_64-darwin, x86_64-linux ] + HsHaruPDF: [ i686-linux, x86_64-darwin, x86_64-linux ] + HSHHelpers: [ i686-linux, x86_64-darwin, x86_64-linux ] + HsHyperEstraier: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsignal: [ x86_64-darwin ] + hSimpleDB: [ i686-linux, x86_64-darwin, x86_64-linux ] + HsJudy: [ i686-linux, x86_64-darwin, x86_64-linux ] + hskeleton: [ i686-linux, x86_64-darwin, x86_64-linux ] + hslackbuilder: [ i686-linux, x86_64-darwin, x86_64-linux ] + hslibsvm: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsmagick: [ i686-linux, x86_64-darwin, x86_64-linux ] + HSmarty: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hsmtlib: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsmtpclient: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsndfile-storablevector: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsndfile-vector: [ x86_64-darwin ] + hsndfile: [ x86_64-darwin ] + hsnock: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsns: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsntp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsoptions: [ i686-linux, x86_64-darwin, x86_64-linux ] + HSoundFile: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsp-cgi: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsparql: [ i686-linux, x86_64-darwin, x86_64-linux ] + hspear: [ i686-linux, x86_64-darwin, x86_64-linux ] + hspec-experimental: [ i686-linux, x86_64-darwin, x86_64-linux ] + hspec-shouldbe: [ i686-linux, x86_64-darwin, x86_64-linux ] + HsPerl5: [ i686-linux, x86_64-darwin, x86_64-linux ] + hspread: [ i686-linux, x86_64-darwin, x86_64-linux ] + hspresent: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsprocess: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsql-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsqml-datamodel-vinyl: [ i686-linux, x86_64-linux, x86_64-darwin ] + hsqml-datamodel: [ i686-linux, x86_64-linux, x86_64-darwin ] + hsqml-demo-morris: [ i686-linux, x86_64-darwin ] + hsqml-demo-notes: [ x86_64-darwin ] + hsqml-demo-samples: [ i686-linux, x86_64-linux, x86_64-darwin ] + hsqml-morris: [ i686-linux, x86_64-linux, x86_64-darwin ] + hsqml: [ x86_64-darwin ] + hsseccomp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsshellscript: [ x86_64-darwin ] + hssourceinfo: [ x86_64-darwin ] + hsSqlite3: [ i686-linux, x86_64-darwin, x86_64-linux ] + HsSVN: [ i686-linux, x86_64-darwin, x86_64-linux ] + hstest: [ i686-linux, x86_64-darwin, x86_64-linux ] + hstidy: [ i686-linux, x86_64-darwin, x86_64-linux ] + hstorchat: [ i686-linux, x86_64-linux, x86_64-darwin ] + hstradeking: [ i686-linux, x86_64-darwin, x86_64-linux ] + HStringTemplateHelpers: [ i686-linux, x86_64-darwin, x86_64-linux ] + hstyle: [ i686-linux, x86_64-darwin, x86_64-linux ] + hstzaar: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsubconvert: [ i686-linux, x86_64-darwin, x86_64-linux ] + HSvm: [ i686-linux, x86_64-darwin, x86_64-linux ] + hswip: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsx-xhtml: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsx: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsXenCtrl: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsyscall: [ i686-linux, x86_64-darwin, x86_64-linux ] + hszephyr: [ i686-linux, x86_64-darwin, x86_64-linux ] + HTab: [ i686-linux, x86_64-darwin, x86_64-linux ] + hTalos: [ i686-linux, x86_64-darwin, x86_64-linux ] + HTicTacToe: [ i686-linux, x86_64-darwin, x86_64-linux ] + html-entities: [ i686-linux, x86_64-darwin, x86_64-linux ] + html-rules: [ i686-linux, x86_64-darwin, x86_64-linux ] + htoml: [ i686-linux, x86_64-darwin, x86_64-linux ] + htsn-import: [ i686-linux, x86_64-darwin, x86_64-linux ] + http-client-request-modifiers: [ i686-linux, x86_64-darwin, x86_64-linux ] + http-conduit-browser: [ i686-linux, x86_64-darwin, x86_64-linux ] + http-conduit-downloader: [ i686-linux, x86_64-darwin, x86_64-linux ] + http-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + http-monad: [ i686-linux, x86_64-darwin, x86_64-linux ] + http-proxy: [ i686-linux, x86_64-darwin, x86_64-linux ] + http-shed: [ i686-linux, x86_64-darwin, x86_64-linux ] + https-everywhere-rules: [ i686-linux, x86_64-darwin, x86_64-linux ] + httpspec: [ i686-linux, x86_64-darwin, x86_64-linux ] + htune: [ i686-linux, x86_64-linux, x86_64-darwin ] + htzaar: [ x86_64-darwin ] + hubris: [ i686-linux, x86_64-darwin, x86_64-linux ] + hugs2yc: [ i686-linux, x86_64-darwin, x86_64-linux ] + hulk: [ i686-linux, x86_64-darwin, x86_64-linux ] + HulkImport: [ i686-linux, x86_64-darwin, x86_64-linux ] + hums: [ i686-linux, x86_64-darwin, x86_64-linux ] + HUnit-Diff: [ i686-linux, x86_64-darwin, x86_64-linux ] + hunit-gui: [ i686-linux, x86_64-darwin, x86_64-linux ] + HUnit-Plus: [ i686-linux, x86_64-darwin, x86_64-linux ] + hunit-rematch: [ i686-linux, x86_64-darwin, x86_64-linux ] + hunt-searchengine: [ i686-linux, x86_64-darwin, x86_64-linux ] + hunt-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + hurdle: [ i686-linux, x86_64-darwin, x86_64-linux ] + husky: [ i686-linux, x86_64-darwin, x86_64-linux ] + hutton: [ i686-linux, x86_64-darwin, x86_64-linux ] + huzzy: [ i686-linux, x86_64-darwin, x86_64-linux ] + hVOIDP: [ i686-linux, x86_64-linux, x86_64-darwin ] + hws: [ i686-linux, x86_64-darwin, x86_64-linux ] + hXmixer: [ x86_64-darwin ] + HXMPP: [ i686-linux, x86_64-darwin, x86_64-linux ] + hxmppc: [ i686-linux, x86_64-darwin, x86_64-linux ] + hxournal: [ i686-linux, x86_64-darwin, x86_64-linux ] + hxt-binary: [ i686-linux, x86_64-darwin, x86_64-linux ] + hxt-filter: [ i686-linux, x86_64-darwin, x86_64-linux ] + hxthelper: [ i686-linux, x86_64-darwin, x86_64-linux ] + hxweb: [ i686-linux, x86_64-darwin, x86_64-linux ] + hybrid: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydra-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydrogen-cli-args: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydrogen-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydrogen-data: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydrogen-parsing: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydrogen-prelude-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydrogen-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydrogen-syntax: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydrogen-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + hyena: [ i686-linux, x86_64-darwin, x86_64-linux ] + hylolib: [ i686-linux, x86_64-darwin, x86_64-linux ] + hylotab: [ i686-linux, x86_64-darwin, x86_64-linux ] + hyloutils: [ i686-linux, x86_64-darwin, x86_64-linux ] + hyperdrive: [ i686-linux, x86_64-darwin, x86_64-linux ] + hyperpublic: [ i686-linux, x86_64-darwin, x86_64-linux ] + hypher: [ i686-linux, x86_64-darwin, x86_64-linux ] + i18n: [ i686-linux, x86_64-darwin, x86_64-linux ] + ideas-math: [ i686-linux, x86_64-darwin, x86_64-linux ] + ideas: [ i686-linux, x86_64-darwin, x86_64-linux ] + idiii: [ i686-linux, x86_64-darwin, x86_64-linux ] + idna2008: [ i686-linux, x86_64-darwin, x86_64-linux ] + idris: [ i686-linux, x86_64-darwin, x86_64-linux ] + IDynamic: [ i686-linux, x86_64-darwin, x86_64-linux ] + ieee-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + iException: [ i686-linux, x86_64-darwin, x86_64-linux ] + IFS: [ i686-linux, x86_64-darwin, x86_64-linux ] + ige-mac-integration: [ i686-linux, x86_64-darwin, x86_64-linux ] + igraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + ihaskell-diagrams: [ x86_64-darwin ] + ihaskell-inline-r: [ i686-linux, x86_64-darwin, x86_64-linux ] + ihaskell-plot: [ x86_64-darwin ] + ihaskell-widgets: [ i686-linux, x86_64-darwin, x86_64-linux ] + ihttp: [ i686-linux, x86_64-darwin, x86_64-linux ] + illuminate: [ i686-linux, x86_64-darwin, x86_64-linux ] + imagemagick: [ i686-linux, x86_64-darwin ] + imagepaste: [ i686-linux, x86_64-darwin, x86_64-linux ] + imap: [ i686-linux, x86_64-darwin, x86_64-linux ] + imbib: [ i686-linux, x86_64-linux, x86_64-darwin ] + imgurder: [ i686-linux, x86_64-darwin, x86_64-linux ] + imm: [ i686-linux, x86_64-darwin, x86_64-linux ] + imparse: [ i686-linux, x86_64-darwin, x86_64-linux ] + imperative-edsl-vhdl: [ i686-linux, x86_64-darwin, x86_64-linux ] + imperative-edsl: [ i686-linux, x86_64-darwin ] + ImperativeHaskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + improve: [ i686-linux, x86_64-darwin, x86_64-linux ] + INblobs: [ i686-linux, x86_64-darwin, x86_64-linux ] + inch: [ i686-linux, x86_64-darwin, x86_64-linux ] + incremental-computing: [ i686-linux, x86_64-darwin, x86_64-linux ] + incremental-sat-solver: [ i686-linux, x86_64-darwin, x86_64-linux ] + increments: [ i686-linux, x86_64-darwin, x86_64-linux ] + index-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + indian-language-font-converter: [ x86_64-darwin ] + indices: [ i686-linux, x86_64-darwin, x86_64-linux ] + indieweb-algorithms: [ i686-linux, x86_64-darwin, x86_64-linux ] + inf-interval: [ i686-linux, x86_64-darwin, x86_64-linux ] + infer-upstream: [ i686-linux, x86_64-darwin, x86_64-linux ] + infinity: [ i686-linux, x86_64-darwin, x86_64-linux ] + infix: [ i686-linux, x86_64-darwin, x86_64-linux ] + InfixApplicative: [ i686-linux, x86_64-darwin, x86_64-linux ] + inflist: [ i686-linux, x86_64-darwin, x86_64-linux ] + influxdb: [ i686-linux, x86_64-darwin, x86_64-linux ] + informative: [ i686-linux, x86_64-darwin, x86_64-linux ] + inilist: [ i686-linux, x86_64-darwin, x86_64-linux ] + inline-c-cpp: [ x86_64-darwin ] + inline-r: [ i686-linux, x86_64-darwin ] + instant-zipper: [ i686-linux, x86_64-darwin, x86_64-linux ] + integer-pure: [ i686-linux, x86_64-darwin, x86_64-linux ] + intel-aes: [ i686-linux, x86_64-darwin, x86_64-linux ] + interleavableGen: [ i686-linux, x86_64-darwin, x86_64-linux ] + interleavableIO: [ i686-linux, x86_64-darwin, x86_64-linux ] + internetmarke: [ i686-linux, x86_64-darwin, x86_64-linux ] + interpolatedstring-qq-mwotton: [ i686-linux, x86_64-darwin, x86_64-linux ] + interpolatedstring-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] + intricacy: [ x86_64-darwin ] + intset: [ i686-linux, x86_64-darwin, x86_64-linux ] + io-reactive: [ i686-linux, x86_64-darwin, x86_64-linux ] + IOR: [ i686-linux, x86_64-darwin, x86_64-linux ] + IORefCAS: [ i686-linux, x86_64-darwin, x86_64-linux ] + iotransaction: [ i686-linux, x86_64-darwin, x86_64-linux ] + ipatch: [ i686-linux, x86_64-darwin, x86_64-linux ] + ipc: [ i686-linux, x86_64-darwin, x86_64-linux ] + ipopt-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + iptables-helpers: [ i686-linux, x86_64-darwin, x86_64-linux ] + iptadmin: [ i686-linux, x86_64-linux, x86_64-darwin ] + Irc: [ i686-linux, x86_64-darwin, x86_64-linux ] + isevaluated: [ i686-linux, x86_64-darwin, x86_64-linux ] + isiz: [ x86_64-darwin ] + ismtp: [ i686-linux, x86_64-darwin, x86_64-linux ] + iter-stats: [ i686-linux, x86_64-darwin, x86_64-linux ] + iteratee-compress: [ i686-linux, x86_64-darwin, x86_64-linux ] + iteratee-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + iteratee-stm: [ i686-linux, x86_64-darwin, x86_64-linux ] + iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + iterio-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + iterIO: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivor: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivory-backend-c: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivory-bitdata: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivory-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivory-hw: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivory-opts: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivory-quickcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivory-stdlib: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivory: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivy-web: [ i686-linux, x86_64-darwin, x86_64-linux ] + ixdopp: [ i686-linux, x86_64-darwin, x86_64-linux ] + iyql: [ i686-linux, x86_64-darwin, x86_64-linux ] + j2hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + jack-bindings: [ i686-linux, x86_64-darwin, x86_64-linux ] + jack: [ x86_64-darwin ] + JackMiniMix: [ i686-linux, x86_64-darwin, x86_64-linux ] + jackminimix: [ i686-linux, x86_64-darwin, x86_64-linux ] + jacobi-roots: [ i686-linux, x86_64-darwin, x86_64-linux ] + jalla: [ i686-linux, x86_64-darwin, x86_64-linux ] + jarfind: [ i686-linux, x86_64-darwin, x86_64-linux ] + java-bridge-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + java-bridge: [ i686-linux, x86_64-darwin, x86_64-linux ] + java-reflect: [ i686-linux, x86_64-darwin, x86_64-linux ] + javaclass: [ i686-linux, x86_64-darwin, x86_64-linux ] + Javasf: [ i686-linux, x86_64-darwin, x86_64-linux ] + javasf: [ i686-linux, x86_64-darwin, x86_64-linux ] + Javav: [ i686-linux, x86_64-darwin, x86_64-linux ] + javav: [ i686-linux, x86_64-darwin, x86_64-linux ] + jespresso: [ i686-linux, x86_64-linux ] + join: [ i686-linux, x86_64-darwin, x86_64-linux ] + joinlist: [ i686-linux, x86_64-darwin, x86_64-linux ] + jonathanscard: [ i686-linux, x86_64-darwin, x86_64-linux ] + jort: [ i686-linux, x86_64-darwin, x86_64-linux ] + js-good-parts: [ i686-linux, x86_64-darwin, x86_64-linux ] + jsaddle-hello: [ i686-linux, x86_64-linux, x86_64-darwin ] + jsaddle: [ x86_64-darwin ] + jsc: [ i686-linux, x86_64-linux, x86_64-darwin ] + JsContracts: [ i686-linux, x86_64-darwin, x86_64-linux ] + jsmw: [ i686-linux, x86_64-darwin, x86_64-linux ] + json-b: [ i686-linux, x86_64-darwin, x86_64-linux ] + JSON-Combinator-Examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + JSON-Combinator: [ i686-linux, x86_64-darwin, x86_64-linux ] + json-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + json-pointer-hasql: [ i686-linux, x86_64-darwin, x86_64-linux ] + json-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] + json-stream: [ i686-linux ] + json-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + json2-hdbc: [ i686-linux, x86_64-darwin, x86_64-linux ] + json2: [ i686-linux, x86_64-darwin, x86_64-linux ] + JSONb: [ i686-linux, x86_64-darwin, x86_64-linux ] + JsonGrammar: [ i686-linux, x86_64-darwin, x86_64-linux ] + jsonresume: [ i686-linux, x86_64-darwin, x86_64-linux ] + jspath: [ i686-linux, x86_64-darwin, x86_64-linux ] + judy: [ i686-linux, x86_64-darwin, x86_64-linux ] + jukebox: [ x86_64-darwin ] + JunkDB-driver-gdbm: [ i686-linux, x86_64-darwin, x86_64-linux ] + JYU-Utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + kafka-client: [ x86_64-darwin ] + kangaroo: [ i686-linux, x86_64-darwin, x86_64-linux ] + kansas-lava-cores: [ i686-linux, x86_64-darwin, x86_64-linux ] + kansas-lava-papilio: [ i686-linux, x86_64-darwin, x86_64-linux ] + kansas-lava-shake: [ i686-linux, x86_64-darwin, x86_64-linux ] + kansas-lava: [ i686-linux, x86_64-darwin, x86_64-linux ] + karakuri: [ i686-linux, x86_64-darwin, x86_64-linux ] + katip-elasticsearch: [ i686-linux, x86_64-darwin, x86_64-linux ] + katt: [ i686-linux, x86_64-darwin, x86_64-linux ] + kazura-queue: [ x86_64-linux ] + keera-hails-mvc-environment-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-mvc-model-lightmodel: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-mvc-model-protectedmodel: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-mvc-solutions-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-mvc-view-gtk: [ x86_64-darwin ] + keera-hails-reactive-fs: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-reactive-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-reactive-network: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-reactive-polling: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-reactive-wx: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-reactive-yampa: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-reactivelenses: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-reactivevalues: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-posture: [ i686-linux, x86_64-linux, x86_64-darwin ] + keiretsu: [ i686-linux, x86_64-darwin, x86_64-linux ] + Ketchup: [ i686-linux, x86_64-darwin, x86_64-linux ] + kevin: [ i686-linux, x86_64-darwin, x86_64-linux ] + keyring: [ i686-linux, x86_64-darwin, x86_64-linux ] + keystore: [ i686-linux, x86_64-darwin, x86_64-linux ] + kicad-data: [ i686-linux, x86_64-darwin, x86_64-linux ] + kickass-torrents-dump-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + KiCS-debugger: [ i686-linux, x86_64-darwin, x86_64-linux ] + KiCS-prophecy: [ i686-linux, x86_64-darwin, x86_64-linux ] + KiCS: [ i686-linux, x86_64-darwin, x86_64-linux ] + kif-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + kit: [ i686-linux, x86_64-darwin, x86_64-linux ] + kmeans-par: [ i686-linux, x86_64-darwin, x86_64-linux ] + koellner-phonetic: [ i686-linux, x86_64-darwin, x86_64-linux ] + Konf: [ i686-linux, x86_64-darwin, x86_64-linux ] + korfu: [ i686-linux, x86_64-darwin, x86_64-linux ] + kqueue: [ i686-linux, x86_64-darwin, x86_64-linux ] + ktx: [ x86_64-darwin ] + kure-your-boilerplate: [ i686-linux, x86_64-darwin, x86_64-linux ] + KyotoCabinet: [ i686-linux, x86_64-darwin, x86_64-linux ] + kyotocabinet: [ x86_64-darwin ] + l-bfgs-b: [ i686-linux, x86_64-darwin, x86_64-linux ] + L-seed: [ i686-linux, x86_64-darwin, x86_64-linux ] + labeled-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] + laborantin-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + labyrinth-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + labyrinth: [ i686-linux, x86_64-darwin, x86_64-linux ] + lagrangian: [ i686-linux, x86_64-darwin, x86_64-linux ] + laika: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambda-bridge: [ i686-linux, x86_64-linux ] + lambda-canvas: [ x86_64-darwin ] + lambda-devs: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambda-toolbox: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdaBase: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-haskell-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-irc-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-misc-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-novelty-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-reference-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-social-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot: [ i686-linux, x86_64-darwin, x86_64-linux ] + LambdaCalculator: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdacat: [ i686-linux, x86_64-linux, x86_64-darwin ] + lambdacube-bullet: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdacube-engine: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdacube-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdacube-gl: [ x86_64-darwin ] + lambdacube-samples: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdacube: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdaFeed: [ i686-linux, x86_64-darwin, x86_64-linux ] + LambdaHack: [ i686-linux, x86_64-darwin, x86_64-linux ] + LambdaINet: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdaLit: [ i686-linux, x86_64-darwin, x86_64-linux ] + LambdaNet: [ i686-linux, x86_64-darwin, x86_64-linux ] + LambdaPrettyQuote: [ i686-linux, x86_64-darwin, x86_64-linux ] + LambdaShell: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdatwit: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdiff: [ i686-linux, x86_64-darwin, x86_64-linux ] + lame-tester: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-bash: [ i686-linux, x86_64-linux ] + language-boogie: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-c-comments: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-c-inline: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-eiffel: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-go: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-java-classfile: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-mixal: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-objc: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-puppet: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-python-colour: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-qux: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-sh: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-spelling: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-sqlite: [ i686-linux, x86_64-darwin, x86_64-linux ] + Lastik: [ i686-linux, x86_64-darwin, x86_64-linux ] + lat: [ i686-linux, x86_64-darwin, x86_64-linux ] + latest-npm-version: [ i686-linux, x86_64-darwin, x86_64-linux ] + launchpad-control: [ i686-linux, x86_64-darwin, x86_64-linux ] + layers-game: [ i686-linux, x86_64-darwin, x86_64-linux ] + layers: [ i686-linux, x86_64-darwin, x86_64-linux ] + layout-bootstrap: [ i686-linux, x86_64-darwin, x86_64-linux ] + layout: [ i686-linux, x86_64-darwin, x86_64-linux ] + Lazy-Pbkdf2: [ i686-linux ] + lazyarray: [ i686-linux, x86_64-darwin, x86_64-linux ] + lazysplines: [ i686-linux, x86_64-darwin, x86_64-linux ] + lcs: [ i686-linux, x86_64-darwin, x86_64-linux ] + ldif: [ i686-linux, x86_64-darwin, x86_64-linux ] + leaf: [ i686-linux, x86_64-darwin, x86_64-linux ] + leaky: [ i686-linux, x86_64-darwin, x86_64-linux ] + learn-physics-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + learn-physics: [ i686-linux, x86_64-darwin, x86_64-linux ] + leksah-server: [ x86_64-darwin ] + leksah: [ x86_64-darwin ] + Level0: [ x86_64-darwin ] + leveldb-haskell-fork: [ i686-linux, x86_64-darwin, x86_64-linux ] + leveldb-haskell: [ x86_64-darwin ] + levmar-chart: [ i686-linux, x86_64-linux, x86_64-darwin ] + levmar: [ i686-linux, x86_64-linux, x86_64-darwin ] + lgtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + lha: [ i686-linux, x86_64-darwin, x86_64-linux ] + lhae: [ i686-linux, x86_64-darwin, x86_64-linux ] + lhe: [ i686-linux, x86_64-darwin, x86_64-linux ] + libarchive-conduit: [ x86_64-darwin ] + LibClang: [ i686-linux, x86_64-darwin, x86_64-linux ] + libconfig: [ i686-linux, x86_64-linux, x86_64-darwin ] + libcspm: [ i686-linux, x86_64-darwin, x86_64-linux ] + libexpect: [ i686-linux, x86_64-darwin, x86_64-linux ] + libGenI: [ i686-linux, x86_64-darwin, x86_64-linux ] + libgraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + libhbb: [ i686-linux, x86_64-darwin, x86_64-linux ] + libjenkins: [ i686-linux, x86_64-linux ] + liblinear-enumerator: [ x86_64-darwin ] + libltdl: [ i686-linux, x86_64-darwin, x86_64-linux ] + libnotify: [ x86_64-darwin ] + liboleg: [ i686-linux, x86_64-darwin, x86_64-linux ] + libpafe: [ i686-linux, x86_64-darwin, x86_64-linux ] + libpq: [ i686-linux, x86_64-darwin, x86_64-linux ] + libssh2-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + libsystemd-daemon: [ i686-linux, x86_64-darwin, x86_64-linux ] + libsystemd-journal: [ x86_64-darwin ] + libvirt-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + libxls: [ i686-linux, x86_64-darwin, x86_64-linux ] + libxml: [ i686-linux, x86_64-darwin, x86_64-linux ] + libxslt: [ i686-linux, x86_64-darwin, x86_64-linux ] + LibZip: [ i686-linux, x86_64-darwin, x86_64-linux ] + life: [ x86_64-darwin ] + lifter: [ i686-linux, x86_64-darwin, x86_64-linux ] + lighttpd-conf-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] + lighttpd-conf: [ i686-linux, x86_64-darwin, x86_64-linux ] + lilypond: [ i686-linux, x86_64-darwin, x86_64-linux ] + Limit: [ i686-linux, x86_64-darwin, x86_64-linux ] + limp-cbc: [ i686-linux, x86_64-darwin, x86_64-linux ] + lin-alg: [ i686-linux, x86_64-darwin, x86_64-linux ] + linda: [ i686-linux, x86_64-darwin, x86_64-linux ] + linear-algebra-cblas: [ i686-linux, x86_64-darwin, x86_64-linux ] + linear-circuit: [ i686-linux, x86_64-darwin, x86_64-linux ] + linear-maps: [ i686-linux, x86_64-darwin, x86_64-linux ] + linear-opengl: [ i686-linux, x86_64-darwin, x86_64-linux ] + linearscan-hoopl: [ i686-linux, x86_64-darwin, x86_64-linux ] + LinearSplit: [ i686-linux, x86_64-darwin, x86_64-linux ] + LinguisticsTypes: [ i686-linux, x86_64-darwin, x86_64-linux ] + LinkChecker: [ i686-linux, x86_64-darwin, x86_64-linux ] + linkchk: [ i686-linux, x86_64-darwin, x86_64-linux ] + linkcore: [ i686-linux, x86_64-darwin, x86_64-linux ] + linode: [ i686-linux, x86_64-darwin, x86_64-linux ] + linux-blkid: [ i686-linux, x86_64-darwin, x86_64-linux ] + linux-evdev: [ x86_64-darwin ] + linux-file-extents: [ x86_64-darwin ] + linux-inotify: [ x86_64-darwin ] + linux-kmod: [ i686-linux, x86_64-darwin, x86_64-linux ] + linux-mount: [ x86_64-darwin ] + linux-namespaces: [ x86_64-darwin ] + linux-perf: [ i686-linux, x86_64-darwin, x86_64-linux ] + linux-ptrace: [ i686-linux, x86_64-darwin, x86_64-linux ] + lio-eci11: [ i686-linux, x86_64-darwin, x86_64-linux ] + lio-fs: [ x86_64-darwin ] + lio-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + liquid-fixpoint: [ i686-linux, x86_64-darwin, x86_64-linux ] + liquidhaskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + list-t-html-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + listlike-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] + literals: [ i686-linux, x86_64-darwin, x86_64-linux ] + live-sequencer: [ i686-linux, x86_64-linux, x86_64-darwin ] + ll-picosat: [ i686-linux, x86_64-darwin, x86_64-linux ] + llsd: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-analysis: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-base-types: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-base-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-base: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-data-interop: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-extra: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-ffi: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-general-quote: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-general: [ x86_64-darwin ] + llvm-ht: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm: [ i686-linux, x86_64-darwin, x86_64-linux ] + lmdb: [ x86_64-darwin ] + lmonad-yesod: [ i686-linux, x86_64-darwin, x86_64-linux ] + lmonad: [ i686-linux, x86_64-darwin, x86_64-linux ] + local-search: [ i686-linux, x86_64-darwin, x86_64-linux ] + loch: [ i686-linux, x86_64-darwin, x86_64-linux ] + locked-poll: [ i686-linux, x86_64-darwin, x86_64-linux ] + log-effect: [ i686-linux, x86_64-darwin, x86_64-linux ] + log2json: [ i686-linux, x86_64-darwin, x86_64-linux ] + log: [ x86_64-darwin ] + logging-facade-journald: [ x86_64-darwin ] + logic-classes: [ i686-linux, x86_64-darwin, x86_64-linux ] + LogicGrowsOnTrees-MPI: [ i686-linux, x86_64-darwin, x86_64-linux ] + LogicGrowsOnTrees-network: [ i686-linux, x86_64-darwin, x86_64-linux ] + LogicGrowsOnTrees-processes: [ i686-linux, x86_64-darwin, x86_64-linux ] + LogicGrowsOnTrees: [ i686-linux, x86_64-darwin, x86_64-linux ] + lojban: [ i686-linux, x86_64-darwin, x86_64-linux ] + lojbanParser: [ i686-linux, x86_64-darwin, x86_64-linux ] + lojbanXiragan: [ i686-linux, x86_64-darwin, x86_64-linux ] + lojysamban: [ i686-linux, x86_64-darwin, x86_64-linux ] + lol-apps: [ i686-linux, x86_64-darwin, x86_64-linux ] + lol: [ i686-linux, x86_64-darwin ] + loli: [ i686-linux, x86_64-darwin, x86_64-linux ] + loop-effin: [ i686-linux, x86_64-darwin, x86_64-linux ] + loopy: [ i686-linux, x86_64-darwin, x86_64-linux ] + lord: [ i686-linux, x86_64-darwin, x86_64-linux ] + loris: [ i686-linux, x86_64-darwin, x86_64-linux ] + lostcities: [ i686-linux, x86_64-darwin, x86_64-linux ] + lowgl: [ x86_64-darwin ] + ls-usb: [ i686-linux, x86_64-darwin, x86_64-linux ] + lscabal: [ i686-linux, x86_64-darwin, x86_64-linux ] + LslPlus: [ i686-linux, x86_64-darwin, x86_64-linux ] + lsystem: [ i686-linux, x86_64-darwin, x86_64-linux ] + ltk: [ x86_64-darwin ] + luachunk: [ i686-linux, x86_64-darwin, x86_64-linux ] + lucienne: [ i686-linux, x86_64-darwin, x86_64-linux ] + Lucu: [ i686-linux, x86_64-darwin, x86_64-linux ] + lui: [ i686-linux, x86_64-darwin, x86_64-linux ] + luka: [ i686-linux, x86_64-darwin, x86_64-linux ] + luminance-samples: [ x86_64-darwin ] + luminance: [ x86_64-darwin ] + lushtags: [ i686-linux, x86_64-darwin, x86_64-linux ] + luthor: [ i686-linux, x86_64-darwin, x86_64-linux ] + lvish: [ i686-linux, x86_64-darwin, x86_64-linux ] + lvmlib: [ i686-linux, x86_64-darwin, x86_64-linux ] + lxc: [ x86_64-darwin ] + lye: [ i686-linux, x86_64-darwin, x86_64-linux ] + lzma-streams: [ i686-linux ] + lzma: [ i686-linux ] + mage: [ i686-linux, x86_64-darwin, x86_64-linux ] + MagicHaskeller: [ i686-linux, x86_64-darwin, x86_64-linux ] + magico: [ i686-linux, x86_64-darwin, x86_64-linux ] + mahoro: [ i686-linux, x86_64-darwin, x86_64-linux ] + majordomo: [ i686-linux, x86_64-darwin, x86_64-linux ] + majority: [ i686-linux, x86_64-darwin, x86_64-linux ] + make-package: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-all: [ i686-linux, x86_64-linux, x86_64-darwin ] + manatee-anything: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-browser: [ i686-linux, x86_64-linux, x86_64-darwin ] + manatee-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-curl: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-editor: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-filemanager: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-imageviewer: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-ircclient: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-mplayer: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-pdfviewer: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-processmanager: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-reader: [ i686-linux, x86_64-linux, x86_64-darwin ] + manatee-template: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-terminal: [ i686-linux, x86_64-linux, x86_64-darwin ] + manatee-welcome: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee: [ i686-linux, x86_64-darwin, x86_64-linux ] + mandulia: [ i686-linux, x86_64-darwin, x86_64-linux ] + manifold-random: [ x86_64-darwin ] + manifolds: [ x86_64-darwin ] + mappy: [ i686-linux, x86_64-darwin, x86_64-linux ] + marionetta: [ i686-linux, x86_64-darwin, x86_64-linux ] + markdown-kate: [ i686-linux, x86_64-darwin, x86_64-linux ] + markdown-pap: [ i686-linux, x86_64-darwin, x86_64-linux ] + markdown2svg: [ i686-linux, x86_64-darwin, x86_64-linux ] + markov-processes: [ i686-linux, x86_64-darwin, x86_64-linux ] + markup-preview: [ i686-linux, x86_64-linux, x86_64-darwin ] + marmalade-upload: [ i686-linux, x86_64-darwin, x86_64-linux ] + marquise: [ i686-linux, x86_64-darwin, x86_64-linux ] + marxup: [ i686-linux, x86_64-darwin, x86_64-linux ] + masakazu-bot: [ i686-linux, x86_64-darwin, x86_64-linux ] + matchers: [ i686-linux, x86_64-darwin, x86_64-linux ] + mathblog: [ i686-linux, x86_64-darwin, x86_64-linux ] + mathlink: [ i686-linux, x86_64-darwin, x86_64-linux ] + matlab: [ i686-linux, x86_64-darwin, x86_64-linux ] + matsuri: [ i686-linux, x86_64-darwin, x86_64-linux ] + maude: [ i686-linux, x86_64-darwin, x86_64-linux ] + maxent: [ i686-linux, x86_64-darwin, x86_64-linux ] + maxsharing: [ i686-linux, x86_64-darwin, x86_64-linux ] + maybench: [ i686-linux, x86_64-darwin, x86_64-linux ] + MaybeT-monads-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] + MaybeT-transformers: [ i686-linux, x86_64-darwin, x86_64-linux ] + MaybeT: [ i686-linux, x86_64-darwin, x86_64-linux ] + MazesOfMonad: [ i686-linux, x86_64-darwin, x86_64-linux ] + mbox-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + MC-Fold-DP: [ i686-linux, x86_64-darwin, x86_64-linux ] + mcmaster-gloss-examples: [ x86_64-darwin ] + mcmc-samplers: [ i686-linux, x86_64-darwin, x86_64-linux ] + mdcat: [ i686-linux, x86_64-darwin, x86_64-linux ] + Measure: [ i686-linux, x86_64-darwin, x86_64-linux ] + mecab: [ i686-linux, x86_64-darwin, x86_64-linux ] + mediawiki2latex: [ i686-linux, x86_64-darwin, x86_64-linux ] + mediawiki: [ i686-linux, x86_64-darwin, x86_64-linux ] + medium-sdk-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + meep: [ i686-linux, x86_64-darwin, x86_64-linux ] + mega-sdist: [ i686-linux, x86_64-darwin, x86_64-linux ] + melody: [ i686-linux, x86_64-darwin, x86_64-linux ] + memo-sqlite: [ i686-linux, x86_64-darwin, x86_64-linux ] + meta-par-accelerate: [ i686-linux, x86_64-darwin, x86_64-linux ] + metadata: [ x86_64-linux ] + metaplug: [ i686-linux, x86_64-darwin, x86_64-linux ] + metric: [ i686-linux, x86_64-darwin, x86_64-linux ] + Metrics: [ i686-linux, x86_64-darwin, x86_64-linux ] + metronome: [ i686-linux, x86_64-darwin, x86_64-linux ] + Mhailist: [ i686-linux, x86_64-darwin, x86_64-linux ] + MHask: [ i686-linux, x86_64-darwin, x86_64-linux ] + Michelangelo: [ i686-linux, x86_64-darwin, x86_64-linux ] + microlens-aeson: [ i686-linux ] + mida: [ i686-linux, x86_64-darwin, x86_64-linux ] + midi-alsa: [ x86_64-darwin ] + midimory: [ x86_64-darwin ] + midisurface: [ i686-linux, x86_64-linux, x86_64-darwin ] + mighttpd: [ i686-linux, x86_64-darwin, x86_64-linux ] + mikmod: [ x86_64-darwin ] + mime-string: [ i686-linux, x86_64-darwin, x86_64-linux ] + minesweeper: [ i686-linux, x86_64-darwin, x86_64-linux ] + MiniAgda: [ i686-linux, x86_64-darwin, x86_64-linux ] + miniball: [ x86_64-darwin ] + miniforth: [ i686-linux, x86_64-darwin, x86_64-linux ] + minimung: [ i686-linux, x86_64-darwin, x86_64-linux ] + minioperational: [ i686-linux, x86_64-darwin, x86_64-linux ] + miniplex: [ i686-linux, x86_64-darwin, x86_64-linux ] + minirotate: [ i686-linux, x86_64-darwin, x86_64-linux ] + minisat: [ x86_64-darwin ] + ministg: [ i686-linux, x86_64-darwin, x86_64-linux ] + mirror-tweet: [ i686-linux, x86_64-darwin, x86_64-linux ] + missing-py2: [ i686-linux, x86_64-darwin, x86_64-linux ] + MissingPy: [ i686-linux, x86_64-darwin, x86_64-linux ] + mix-arrows: [ i686-linux, x86_64-darwin, x86_64-linux ] + mkbndl: [ i686-linux, x86_64-darwin, x86_64-linux ] + ml-w: [ i686-linux, x86_64-darwin, x86_64-linux ] + mlist: [ i686-linux, x86_64-darwin, x86_64-linux ] + mmtl-base: [ i686-linux, x86_64-darwin, x86_64-linux ] + mmtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + moan: [ i686-linux, x86_64-darwin, x86_64-linux ] + modelicaparser: [ i686-linux, x86_64-darwin, x86_64-linux ] + modsplit: [ i686-linux, x86_64-darwin, x86_64-linux ] + modular-prelude-classy: [ i686-linux, x86_64-darwin, x86_64-linux ] + modular-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] + module-management: [ i686-linux, x86_64-darwin, x86_64-linux ] + Moe: [ x86_64-darwin ] + mohws: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-abort-fd: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-atom-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-atom: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-exception: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-interleave: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-levels: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-lrs: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-memo: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-mersenne-random: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-ran: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-stlike-io: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-stlike-stm: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-tx: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-unify: [ i686-linux, x86_64-darwin, x86_64-linux ] + monadacme: [ i686-linux, x86_64-darwin, x86_64-linux ] + MonadCatchIO-mtl-foreign: [ i686-linux, x86_64-darwin, x86_64-linux ] + MonadCatchIO-transformers-foreign: [ i686-linux, x86_64-darwin, x86_64-linux ] + monadiccp-gecode: [ i686-linux, x86_64-darwin, x86_64-linux ] + monadiccp: [ i686-linux, x86_64-darwin, x86_64-linux ] + Monadius: [ i686-linux, x86_64-darwin, x86_64-linux ] + MonadLab: [ i686-linux, x86_64-darwin, x86_64-linux ] + monarch: [ i686-linux, x86_64-darwin, x86_64-linux ] + Monaris: [ i686-linux, x86_64-darwin, x86_64-linux ] + Monatron-IO: [ i686-linux, x86_64-darwin, x86_64-linux ] + Monatron: [ i686-linux, x86_64-darwin, x86_64-linux ] + mongodb-queue: [ i686-linux, x86_64-darwin, x86_64-linux ] + mongrel2-handler: [ i686-linux, x86_64-darwin, x86_64-linux ] + monitor: [ x86_64-darwin ] + mono-foldable: [ i686-linux, x86_64-darwin, x86_64-linux ] + Monocle: [ i686-linux, x86_64-darwin, x86_64-linux ] + monoid-owns: [ i686-linux, x86_64-darwin, x86_64-linux ] + monoidplus: [ i686-linux, x86_64-darwin, x86_64-linux ] + monoids: [ i686-linux, x86_64-darwin, x86_64-linux ] + monte-carlo: [ i686-linux, x86_64-darwin, x86_64-linux ] + moo: [ i686-linux, x86_64-darwin, x86_64-linux ] + morfette: [ i686-linux, x86_64-darwin, x86_64-linux ] + morfeusz: [ i686-linux, x86_64-darwin, x86_64-linux ] + mosaico-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + mount: [ i686-linux, x86_64-darwin, x86_64-linux ] + mp3decoder: [ i686-linux, x86_64-darwin, x86_64-linux ] + mp: [ i686-linux, x86_64-darwin, x86_64-linux ] + mpdmate: [ i686-linux, x86_64-darwin, x86_64-linux ] + mpppc: [ i686-linux, x86_64-darwin, x86_64-linux ] + mpretty: [ i686-linux, x86_64-darwin, x86_64-linux ] + mprover: [ i686-linux, x86_64-darwin, x86_64-linux ] + mps: [ i686-linux, x86_64-darwin, x86_64-linux ] + mpvguihs: [ i686-linux, x86_64-darwin, x86_64-linux ] + mrm: [ i686-linux, x86_64-darwin, x86_64-linux ] + msgpack-idl: [ i686-linux, x86_64-darwin, x86_64-linux ] + msh: [ i686-linux, x86_64-darwin, x86_64-linux ] + msi-kb-backlit: [ x86_64-darwin ] + mtgoxapi: [ i686-linux, x86_64-darwin, x86_64-linux ] + mtl-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] + mtlx: [ i686-linux, x86_64-darwin, x86_64-linux ] + mtp: [ i686-linux, x86_64-darwin, x86_64-linux ] + mudbath: [ i686-linux, x86_64-darwin, x86_64-linux ] + mueval: [ i686-linux, x86_64-darwin, x86_64-linux ] + mulang: [ i686-linux, x86_64-darwin, x86_64-linux ] + multi-cabal: [ i686-linux, x86_64-darwin, x86_64-linux ] + multifocal: [ i686-linux, x86_64-darwin, x86_64-linux ] + multipass: [ i686-linux, x86_64-darwin, x86_64-linux ] + multiplate-simplified: [ i686-linux, x86_64-darwin, x86_64-linux ] + multirec-alt-deriver: [ i686-linux, x86_64-darwin, x86_64-linux ] + multirec-binary: [ i686-linux, x86_64-darwin, x86_64-linux ] + multisetrewrite: [ i686-linux, x86_64-darwin, x86_64-linux ] + murder: [ i686-linux, x86_64-darwin, x86_64-linux ] + murmurhash3: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-graphics: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-parts: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-preludes: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-score: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-sibelius: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-suite: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + musicbrainz-email: [ i686-linux, x86_64-darwin, x86_64-linux ] + musicxml: [ i686-linux, x86_64-darwin, x86_64-linux ] + mustache2hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + mutable-iter: [ i686-linux, x86_64-darwin, x86_64-linux ] + mvc-updates: [ i686-linux, x86_64-darwin, x86_64-linux ] + mvclient: [ i686-linux, x86_64-darwin, x86_64-linux ] + myo: [ i686-linux, x86_64-darwin, x86_64-linux ] + mysnapsession-example: [ i686-linux, x86_64-darwin, x86_64-linux ] + mysnapsession: [ i686-linux, x86_64-darwin, x86_64-linux ] + mysql-simple-quasi: [ i686-linux, x86_64-darwin, x86_64-linux ] + mysql-simple-typed: [ i686-linux, x86_64-darwin, x86_64-linux ] + myTestlll: [ i686-linux, x86_64-linux, x86_64-darwin ] + mzv: [ i686-linux, x86_64-darwin, x86_64-linux ] + nagios-plugin-ekg: [ i686-linux, x86_64-darwin, x86_64-linux ] + named-lock: [ i686-linux, x86_64-darwin, x86_64-linux ] + nano-cryptr: [ i686-linux, x86_64-darwin, x86_64-linux ] + nano-hmac: [ i686-linux, x86_64-darwin, x86_64-linux ] + nano-md5: [ i686-linux, x86_64-darwin, x86_64-linux ] + nanoAgda: [ i686-linux, x86_64-darwin, x86_64-linux ] + nanocurses: [ i686-linux, x86_64-darwin, x86_64-linux ] + nanq: [ i686-linux ] + narc: [ i686-linux, x86_64-darwin, x86_64-linux ] + nats-queue: [ i686-linux, x86_64-darwin, x86_64-linux ] + natural-number: [ i686-linux, x86_64-darwin, x86_64-linux ] + NaturalLanguageAlphabets: [ i686-linux, x86_64-darwin, x86_64-linux ] + nc-indicators: [ x86_64-darwin ] + neat: [ i686-linux, x86_64-darwin, x86_64-linux ] + needle: [ i686-linux, x86_64-darwin, x86_64-linux ] + nehe-tuts: [ i686-linux, x86_64-darwin, x86_64-linux ] + nemesis-titan: [ i686-linux, x86_64-darwin, x86_64-linux ] + nerf: [ i686-linux, x86_64-darwin, x86_64-linux ] + nero-wai: [ i686-linux, x86_64-darwin, x86_64-linux ] + nero-warp: [ i686-linux, x86_64-darwin, x86_64-linux ] + nero: [ i686-linux, x86_64-darwin, x86_64-linux ] + netcore: [ i686-linux, x86_64-darwin, x86_64-linux ] + netlines: [ i686-linux, x86_64-darwin, x86_64-linux ] + netlink: [ x86_64-darwin ] + NetSNMP: [ i686-linux, x86_64-darwin, x86_64-linux ] + netspec: [ i686-linux, x86_64-darwin, x86_64-linux ] + nettle-frp: [ i686-linux, x86_64-darwin, x86_64-linux ] + nettle-netkit: [ i686-linux, x86_64-darwin, x86_64-linux ] + nettle-openflow: [ i686-linux, x86_64-darwin, x86_64-linux ] + netwire-input-glfw: [ x86_64-darwin ] + network-address: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-anonymous-i2p: [ i686-linux ] + network-anonymous-tor: [ i686-linux ] + network-attoparsec: [ i686-linux ] + network-builder: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-bytestring: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-connection: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-interfacerequest: [ x86_64-darwin ] + network-minihttp: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-netpacket: [ x86_64-darwin ] + network-rpca: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-simple-tls: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-topic-models: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-transport-amqp: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-websocket: [ i686-linux, x86_64-darwin, x86_64-linux ] + newports: [ i686-linux, x86_64-darwin, x86_64-linux ] + newsynth: [ i686-linux, x86_64-darwin, x86_64-linux ] + newt: [ i686-linux, x86_64-darwin, x86_64-linux ] + newtype-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + NGrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + niagra: [ i686-linux, x86_64-darwin, x86_64-linux ] + nibblestring: [ i686-linux, x86_64-darwin, x86_64-linux ] + nikepub: [ i686-linux, x86_64-darwin, x86_64-linux ] + nimber: [ i686-linux ] + Ninjas: [ i686-linux, x86_64-darwin, x86_64-linux ] + nitro: [ i686-linux, x86_64-darwin, x86_64-linux ] + nixfromnpm: [ i686-linux, x86_64-darwin, x86_64-linux ] + nkjp: [ i686-linux, x86_64-darwin, x86_64-linux ] + nm: [ i686-linux, x86_64-darwin, x86_64-linux ] + nme: [ i686-linux, x86_64-darwin, x86_64-linux ] + nntp: [ i686-linux, x86_64-darwin, x86_64-linux ] + noise: [ i686-linux, x86_64-darwin, x86_64-linux ] + Nomyx-Core: [ i686-linux, x86_64-darwin, x86_64-linux ] + Nomyx-Language: [ i686-linux, x86_64-darwin, x86_64-linux ] + Nomyx-Rules: [ i686-linux, x86_64-darwin, x86_64-linux ] + Nomyx-Web: [ i686-linux, x86_64-darwin, x86_64-linux ] + Nomyx: [ i686-linux, x86_64-darwin, x86_64-linux ] + NonEmptyList: [ i686-linux, x86_64-darwin, x86_64-linux ] + noodle: [ i686-linux, x86_64-darwin, x86_64-linux ] + NoSlow: [ i686-linux, x86_64-darwin, x86_64-linux ] + not-gloss-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + not-gloss: [ i686-linux, x86_64-darwin, x86_64-linux ] + notmuch-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + notmuch-web: [ i686-linux, x86_64-darwin, x86_64-linux ] + np-linear: [ i686-linux, x86_64-darwin, x86_64-linux ] + nptools: [ i686-linux, x86_64-darwin, x86_64-linux ] + nthable: [ i686-linux, x86_64-darwin, x86_64-linux ] + NTRU: [ i686-linux ] + null-canvas: [ i686-linux, x86_64-darwin, x86_64-linux ] + NumberSieves: [ i686-linux, x86_64-darwin, x86_64-linux ] + numerals-base: [ i686-linux, x86_64-darwin, x86_64-linux ] + numerals: [ i686-linux, x86_64-darwin, x86_64-linux ] + Nussinov78: [ i686-linux, x86_64-darwin, x86_64-linux ] + nvim-hs-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] + nvim-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + NXT: [ i686-linux, x86_64-darwin, x86_64-linux ] + NXTDSL: [ i686-linux, x86_64-darwin, x86_64-linux ] + nymphaea: [ i686-linux, x86_64-darwin, x86_64-linux ] + oberon0: [ i686-linux, x86_64-darwin, x86_64-linux ] + obj: [ i686-linux, x86_64-darwin, x86_64-linux ] + Object: [ i686-linux, x86_64-darwin, x86_64-linux ] + ObjectIO: [ i686-linux, x86_64-darwin, x86_64-linux ] + octopus: [ i686-linux, x86_64-darwin, x86_64-linux ] + oculus: [ i686-linux, x86_64-linux, x86_64-darwin ] + OddWord: [ i686-linux ] + oden-go-packages: [ i686-linux, x86_64-darwin, x86_64-linux ] + OGL: [ i686-linux, x86_64-darwin, x86_64-linux ] + ohloh-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + oidc-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + ois-input-manager: [ i686-linux, x86_64-darwin, x86_64-linux ] + olwrapper: [ i686-linux, x86_64-darwin, x86_64-linux ] + omaketex: [ i686-linux, x86_64-darwin, x86_64-linux ] + Omega: [ i686-linux, x86_64-darwin, x86_64-linux ] + omega: [ i686-linux, x86_64-darwin, x86_64-linux ] + omnicodec: [ i686-linux, x86_64-darwin, x86_64-linux ] + on-a-horse: [ i686-linux, x86_64-darwin, x86_64-linux ] + one-liner: [ i686-linux, x86_64-darwin, x86_64-linux ] + oneormore: [ i686-linux, x86_64-darwin, x86_64-linux ] + onu-course: [ i686-linux, x86_64-darwin, x86_64-linux ] + open-pandoc: [ i686-linux, x86_64-darwin, x86_64-linux ] + open-typerep: [ i686-linux, x86_64-darwin ] + open-union: [ x86_64-darwin, x86_64-linux ] + open-witness: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenAFP-Utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenAFP: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenAL: [ x86_64-darwin ] + OpenCL: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenCLRaw: [ i686-linux, x86_64-darwin, x86_64-linux ] + opencog-atomspace: [ i686-linux, x86_64-darwin, x86_64-linux ] + opencv-raw: [ i686-linux, x86_64-linux, x86_64-darwin ] + openexchangerates: [ i686-linux, x86_64-darwin, x86_64-linux ] + openflow: [ i686-linux, x86_64-darwin, x86_64-linux ] + opengl-dlp-stereo: [ x86_64-darwin ] + opengl-spacenavigator: [ x86_64-darwin ] + OpenGL: [ x86_64-darwin ] + OpenGLCheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + opengles: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenGLRaw21: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenGLRaw: [ x86_64-darwin ] + openid: [ i686-linux, x86_64-darwin, x86_64-linux ] + openpgp-crypto-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + openpgp-Crypto: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenSCAD: [ i686-linux, x86_64-darwin, x86_64-linux ] + openssh-github-keys: [ i686-linux, x86_64-darwin, x86_64-linux ] + opentheory-char: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenVG: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenVGRaw: [ i686-linux, x86_64-darwin, x86_64-linux ] + Operads: [ i686-linux, x86_64-darwin, x86_64-linux ] + optimal-blocks: [ i686-linux, x86_64-darwin, x86_64-linux ] + optimusprime: [ i686-linux, x86_64-darwin, x86_64-linux ] + orchestrate: [ i686-linux, x86_64-darwin, x86_64-linux ] + OrchestrateDB: [ i686-linux, x86_64-darwin, x86_64-linux ] + orchid-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] + orchid: [ i686-linux, x86_64-darwin, x86_64-linux ] + order-maintenance: [ i686-linux, x86_64-darwin, x86_64-linux ] + orgmode-parse: [ i686-linux, x86_64-darwin, x86_64-linux ] + origami: [ i686-linux, x86_64-darwin, x86_64-linux ] + osdkeys: [ x86_64-darwin ] + osm-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + osm-download: [ i686-linux, x86_64-darwin, x86_64-linux ] + OSM: [ i686-linux, x86_64-darwin, x86_64-linux ] + ot: [ i686-linux, x86_64-darwin, x86_64-linux ] + pack: [ x86_64-darwin ] + package-vt: [ i686-linux, x86_64-darwin, x86_64-linux ] + packedstring: [ i686-linux, x86_64-darwin, x86_64-linux ] + packman: [ i686-linux, x86_64-darwin, x86_64-linux ] + padKONTROL: [ i686-linux, x86_64-darwin, x86_64-linux ] + PageIO: [ i686-linux, x86_64-darwin, x86_64-linux ] + Paillier: [ x86_64-darwin ] + pam: [ x86_64-darwin ] + panda: [ i686-linux, x86_64-darwin, x86_64-linux ] + pandoc-japanese-filters: [ i686-linux, x86_64-darwin, x86_64-linux ] + pandoc-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] + pandoc-plantuml-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + pandoc-unlit: [ i686-linux, x86_64-darwin, x86_64-linux ] + PandocAgda: [ i686-linux, x86_64-darwin, x86_64-linux ] + pango: [ x86_64-darwin ] + papillon: [ i686-linux, x86_64-darwin, x86_64-linux ] + pappy: [ i686-linux, x86_64-darwin, x86_64-linux ] + paragon: [ i686-linux, x86_64-darwin, x86_64-linux ] + Paraiso: [ i686-linux, x86_64-darwin, x86_64-linux ] + parallel-tasks: [ i686-linux, x86_64-darwin, x86_64-linux ] + parameterized-data: [ i686-linux, x86_64-darwin, x86_64-linux ] + parco-attoparsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + parco-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + parco: [ i686-linux, x86_64-darwin, x86_64-linux ] + parconc-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + parport: [ x86_64-darwin ] + Parry: [ i686-linux, x86_64-darwin, x86_64-linux ] + parse-help: [ i686-linux, x86_64-darwin, x86_64-linux ] + parsely: [ i686-linux, x86_64-darwin, x86_64-linux ] + parser-helper: [ i686-linux, x86_64-darwin, x86_64-linux ] + parser241: [ i686-linux, x86_64-darwin, x86_64-linux ] + parsestar: [ i686-linux, x86_64-darwin, x86_64-linux ] + partial-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] + partly: [ i686-linux, x86_64-darwin, x86_64-linux ] + passage: [ i686-linux, x86_64-darwin, x86_64-linux ] + pastis: [ i686-linux, x86_64-darwin, x86_64-linux ] + pasty: [ i686-linux, x86_64-darwin, x86_64-linux ] + Pathfinder: [ i686-linux, x86_64-darwin, x86_64-linux ] + pathfindingcore: [ i686-linux, x86_64-darwin, x86_64-linux ] + patterns: [ i686-linux, x86_64-darwin, x86_64-linux ] + paypal-adaptive-hoops: [ i686-linux, x86_64-darwin, x86_64-linux ] + paypal-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + pb: [ i686-linux, x86_64-darwin, x86_64-linux ] + PCLT-DB: [ i686-linux, x86_64-darwin, x86_64-linux ] + PCLT: [ i686-linux, x86_64-darwin, x86_64-linux ] + pdf-toolbox-viewer: [ x86_64-darwin ] + pdynload: [ i686-linux, x86_64-darwin, x86_64-linux ] + peakachu: [ i686-linux, x86_64-darwin, x86_64-linux ] + pec: [ i686-linux, x86_64-darwin, x86_64-linux ] + peg: [ i686-linux, x86_64-darwin, x86_64-linux ] + pell: [ i686-linux, x86_64-darwin, x86_64-linux ] + penny-bin: [ i686-linux, x86_64-darwin, x86_64-linux ] + penny-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + penny: [ i686-linux, x86_64-darwin, x86_64-linux ] + peparser: [ i686-linux, x86_64-darwin, x86_64-linux ] + perdure: [ i686-linux, x86_64-darwin, x86_64-linux ] + PerfectHash: [ i686-linux, x86_64-darwin, x86_64-linux ] + perm: [ i686-linux, x86_64-darwin, x86_64-linux ] + permute: [ i686-linux, x86_64-darwin, x86_64-linux ] + PermuteEffects: [ i686-linux, x86_64-darwin, x86_64-linux ] + persistent-hssqlppp: [ i686-linux, x86_64-darwin, x86_64-linux ] + persistent-map: [ i686-linux, x86_64-darwin, x86_64-linux ] + persistent-protobuf: [ i686-linux, x86_64-darwin, x86_64-linux ] + pesca: [ i686-linux, x86_64-darwin, x86_64-linux ] + peyotls-codec: [ i686-linux, x86_64-darwin, x86_64-linux ] + peyotls: [ i686-linux, x86_64-darwin, x86_64-linux ] + pez: [ i686-linux, x86_64-darwin, x86_64-linux ] + pg-harness-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + pg-harness: [ i686-linux, x86_64-darwin, x86_64-linux ] + pgsql-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + pgstream: [ i686-linux, x86_64-darwin, x86_64-linux ] + phasechange: [ i686-linux, x86_64-darwin, x86_64-linux ] + phoityne: [ x86_64-darwin ] + phone-numbers: [ i686-linux, x86_64-darwin, x86_64-linux ] + phone-push: [ i686-linux, x86_64-darwin, x86_64-linux ] + phooey: [ i686-linux, x86_64-darwin, x86_64-linux ] + photoname: [ i686-linux, x86_64-darwin, x86_64-linux ] + phraskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + Phsu: [ i686-linux, x86_64-darwin, x86_64-linux ] + phybin: [ i686-linux, x86_64-darwin, x86_64-linux ] + pi-calculus: [ i686-linux, x86_64-darwin, x86_64-linux ] + pianola: [ i686-linux, x86_64-darwin, x86_64-linux ] + piet: [ i686-linux, x86_64-darwin, x86_64-linux ] + piki: [ i686-linux, x86_64-darwin, x86_64-linux ] + pinch: [ i686-linux ] + Pipe: [ i686-linux, x86_64-darwin, x86_64-linux ] + pipes-cereal-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] + pipes-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + pipes-courier: [ i686-linux, x86_64-darwin, x86_64-linux ] + pipes-files: [ i686-linux ] + pipes-key-value-csv: [ i686-linux, x86_64-darwin, x86_64-linux ] + pipes-network-tls: [ i686-linux, x86_64-darwin, x86_64-linux ] + pipes-p2p-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + pisigma: [ i686-linux, x86_64-darwin, x86_64-linux ] + pit: [ i686-linux, x86_64-darwin, x86_64-linux ] + pkggraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + planar-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] + plat: [ i686-linux, x86_64-darwin, x86_64-linux ] + plist-buddy: [ i686-linux, x86_64-linux ] + plivo: [ i686-linux, x86_64-darwin, x86_64-linux ] + plot-gtk-ui: [ x86_64-darwin ] + plot-gtk3: [ x86_64-darwin ] + plot-gtk: [ x86_64-darwin ] + Plot-ho-matic: [ i686-linux ] + Plot-ho-matic: [ i686-linux, x86_64-darwin, x86_64-linux ] + Plot-ho-matic: [ x86_64-darwin ] + plot-lab: [ x86_64-darwin ] + plot: [ x86_64-darwin ] + PlslTools: [ i686-linux, x86_64-darwin, x86_64-linux ] + plugins-auto: [ i686-linux, x86_64-darwin, x86_64-linux ] + plugins-multistage: [ i686-linux, x86_64-darwin, x86_64-linux ] + plumbers: [ i686-linux, x86_64-darwin, x86_64-linux ] + ply-loader: [ i686-linux, x86_64-darwin, x86_64-linux ] + pngload-fixed: [ i686-linux, x86_64-darwin, x86_64-linux ] + pngload: [ i686-linux, x86_64-darwin, x86_64-linux ] + pocket-dns: [ i686-linux, x86_64-darwin, x86_64-linux ] + pointless-lenses: [ i686-linux, x86_64-darwin, x86_64-linux ] + pointless-rewrite: [ i686-linux, x86_64-darwin, x86_64-linux ] + polar-configfile: [ i686-linux, x86_64-darwin, x86_64-linux ] + polh-lexicon: [ i686-linux, x86_64-darwin, x86_64-linux ] + Pollutocracy: [ i686-linux, x86_64-darwin, x86_64-linux ] + polynom: [ i686-linux, x86_64-darwin, x86_64-linux ] + polyseq: [ i686-linux, x86_64-darwin, x86_64-linux ] + polytypeable-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + polytypeable: [ i686-linux, x86_64-darwin, x86_64-linux ] + pong-server: [ i686-linux, x86_64-linux ] + pontarius-mediaserver: [ i686-linux, x86_64-darwin, x86_64-linux ] + pontarius-xmpp: [ i686-linux, x86_64-darwin, x86_64-linux ] + pontarius-xpmn: [ i686-linux, x86_64-darwin, x86_64-linux ] + pool-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + pool: [ i686-linux, x86_64-darwin, x86_64-linux ] + popenhs: [ i686-linux, x86_64-darwin, x86_64-linux ] + poppler: [ i686-linux, x86_64-darwin, x86_64-linux ] + portaudio: [ x86_64-darwin ] + porte: [ i686-linux, x86_64-darwin, x86_64-linux ] + porter: [ i686-linux, x86_64-darwin, x86_64-linux ] + PortMidi: [ x86_64-darwin ] + ports: [ i686-linux, x86_64-darwin, x86_64-linux ] + posix-acl: [ i686-linux, x86_64-linux, x86_64-darwin ] + posix-realtime: [ x86_64-darwin ] + posix-timer: [ x86_64-darwin ] + posix-waitpid: [ i686-linux, x86_64-darwin, x86_64-linux ] + postgresql-simple-typed: [ i686-linux, x86_64-darwin, x86_64-linux ] + postgresql-typed: [ i686-linux, x86_64-darwin, x86_64-linux ] + PostgreSQL: [ i686-linux, x86_64-darwin, x86_64-linux ] + postgrest: [ i686-linux, x86_64-darwin, x86_64-linux ] + postie: [ i686-linux, x86_64-darwin, x86_64-linux ] + postmaster: [ i686-linux, x86_64-darwin, x86_64-linux ] + powermate: [ i686-linux, x86_64-darwin, x86_64-linux ] + powerpc: [ i686-linux, x86_64-darwin, x86_64-linux ] + pqc: [ i686-linux, x86_64-darwin, x86_64-linux ] + pqueue-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + practice-room: [ i686-linux, x86_64-darwin, x86_64-linux ] + precis: [ i686-linux, x86_64-darwin, x86_64-linux ] + prednote-test: [ i686-linux, x86_64-darwin, x86_64-linux ] + prefork: [ i686-linux, x86_64-darwin, x86_64-linux ] + pregame: [ i686-linux, x86_64-darwin, x86_64-linux ] + prelude-generalize: [ i686-linux, x86_64-darwin, x86_64-linux ] + prelude-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] + preprocess-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + present: [ i686-linux, x86_64-darwin, x86_64-linux ] + press: [ i686-linux, x86_64-darwin, x86_64-linux ] + primitive-simd: [ i686-linux, x86_64-darwin, x86_64-linux ] + PrimitiveArray: [ i686-linux, x86_64-darwin, x86_64-linux ] + primula-board: [ i686-linux, x86_64-darwin, x86_64-linux ] + primula-bot: [ i686-linux, x86_64-darwin, x86_64-linux ] + print-debugger: [ i686-linux, x86_64-darwin, x86_64-linux ] + printf-mauke: [ i686-linux, x86_64-darwin, x86_64-linux ] + Printf-TH: [ i686-linux, x86_64-darwin, x86_64-linux ] + printxosd: [ x86_64-darwin ] + priority-queue: [ i686-linux, x86_64-darwin, x86_64-linux ] + PriorityChansConverger: [ i686-linux, x86_64-darwin, x86_64-linux ] + ProbabilityMonads: [ i686-linux, x86_64-darwin, x86_64-linux ] + proc: [ i686-linux, x86_64-darwin, x86_64-linux ] + process-iterio: [ i686-linux, x86_64-darwin, x86_64-linux ] + process-leksah: [ i686-linux, x86_64-darwin, x86_64-linux ] + process-listlike: [ i686-linux, x86_64-darwin, x86_64-linux ] + process-progress: [ i686-linux, x86_64-darwin, x86_64-linux ] + process-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] + processing: [ i686-linux, x86_64-darwin, x86_64-linux ] + procrastinating-structure: [ i686-linux, x86_64-darwin, x86_64-linux ] + procrastinating-variable: [ i686-linux, x86_64-darwin, x86_64-linux ] + procstat: [ i686-linux, x86_64-darwin, x86_64-linux ] + prof2dot: [ i686-linux, x86_64-darwin, x86_64-linux ] + progress: [ i686-linux, x86_64-darwin, x86_64-linux ] + progressbar: [ i686-linux, x86_64-darwin, x86_64-linux ] + progression: [ i686-linux, x86_64-darwin, x86_64-linux ] + progressive: [ i686-linux, x86_64-darwin, x86_64-linux ] + proj4-hs-bindings: [ i686-linux, x86_64-darwin, x86_64-linux ] + prolog-graph-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + prolog-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] + prolog: [ i686-linux, x86_64-darwin, x86_64-linux ] + prologue: [ i686-linux, x86_64-darwin, x86_64-linux ] + propane: [ i686-linux, x86_64-darwin, x86_64-linux ] + Proper: [ i686-linux, x86_64-darwin, x86_64-linux ] + proplang: [ i686-linux, x86_64-darwin, x86_64-linux ] + proteaaudio: [ i686-linux, x86_64-darwin, x86_64-linux ] + protobuf-native: [ i686-linux, x86_64-darwin, x86_64-linux ] + protocol-buffers-descriptor-fork: [ i686-linux, x86_64-darwin, x86_64-linux ] + protocol-buffers-fork: [ i686-linux, x86_64-darwin, x86_64-linux ] + prove-everywhere-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + proxy-kindness: [ i686-linux, x86_64-darwin, x86_64-linux ] + pub: [ i686-linux, x86_64-darwin, x86_64-linux ] + publicsuffixlistcreate: [ i686-linux, x86_64-darwin, x86_64-linux ] + pubnub: [ i686-linux, x86_64-darwin, x86_64-linux ] + pubsub: [ i686-linux, x86_64-darwin, x86_64-linux ] + puffytools: [ i686-linux, x86_64-darwin, x86_64-linux ] + pugixml: [ x86_64-darwin ] + pugs-hsregex: [ i686-linux, x86_64-darwin, x86_64-linux ] + pugs-HsSyck: [ i686-linux, x86_64-darwin, x86_64-linux ] + Pugs: [ i686-linux, x86_64-darwin, x86_64-linux ] + PUH-Project: [ i686-linux, x86_64-darwin, x86_64-linux ] + pulse-simple: [ x86_64-darwin ] + punkt: [ i686-linux, x86_64-darwin, x86_64-linux ] + Pup-Events-Demo: [ i686-linux, x86_64-darwin, x86_64-linux ] + puppetresources: [ i686-linux, x86_64-darwin, x86_64-linux ] + purescript-bridge: [ x86_64-darwin ] + push-notify-ccs: [ i686-linux, x86_64-darwin, x86_64-linux ] + push-notify-general: [ i686-linux, x86_64-darwin, x86_64-linux ] + push-notify: [ i686-linux, x86_64-darwin, x86_64-linux ] + pushme: [ i686-linux, x86_64-darwin, x86_64-linux ] + putlenses: [ i686-linux, x86_64-darwin, x86_64-linux ] + puzzle-draw-cmdline: [ i686-linux, x86_64-darwin, x86_64-linux ] + puzzle-draw: [ i686-linux, x86_64-darwin, x86_64-linux ] + pvd: [ i686-linux, x86_64-darwin, x86_64-linux ] + python-pickle: [ i686-linux, x86_64-darwin, x86_64-linux ] + qd-vec: [ i686-linux, x86_64-darwin, x86_64-linux ] + qd: [ i686-linux, x86_64-darwin, x86_64-linux ] + qed: [ i686-linux, x86_64-darwin, x86_64-linux ] + qhull-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + QIO: [ i686-linux, x86_64-darwin, x86_64-linux ] + qt: [ i686-linux, x86_64-darwin, x86_64-linux ] + QuadEdge: [ i686-linux, x86_64-darwin, x86_64-linux ] + quadratic-irrational: [ i686-linux, x86_64-darwin, x86_64-linux ] + quantum-arrow: [ i686-linux, x86_64-darwin, x86_64-linux ] + qudb: [ i686-linux, x86_64-darwin, x86_64-linux ] + Quelea: [ x86_64-darwin ] + quenya-verb: [ i686-linux, x86_64-darwin, x86_64-linux ] + querystring-pickle: [ i686-linux, x86_64-darwin, x86_64-linux ] + queuelike: [ i686-linux, x86_64-darwin, x86_64-linux ] + QuickAnnotate: [ i686-linux, x86_64-darwin, x86_64-linux ] + QuickCheck-GenT: [ i686-linux, x86_64-darwin, x86_64-linux ] + quickcheck-poly: [ i686-linux, x86_64-darwin, x86_64-linux ] + quickcheck-rematch: [ i686-linux, x86_64-darwin, x86_64-linux ] + quickpull: [ i686-linux, x86_64-darwin, x86_64-linux ] + quickset: [ i686-linux, x86_64-darwin, x86_64-linux ] + Quickson: [ i686-linux, x86_64-darwin, x86_64-linux ] + quicktest: [ i686-linux, x86_64-darwin, x86_64-linux ] + quoridor-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + qux: [ i686-linux, x86_64-darwin, x86_64-linux ] + R-pandoc: [ i686-linux, x86_64-darwin, x86_64-linux ] + rabocsv2qif: [ i686-linux, x86_64-darwin, x86_64-linux ] + rad: [ i686-linux, x86_64-darwin, x86_64-linux ] + radium-formula-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + radium: [ i686-linux, x86_64-darwin, x86_64-linux ] + rados-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + rail-compiler-editor: [ i686-linux, x86_64-darwin, x86_64-linux ] + rainbow-tests: [ i686-linux, x86_64-darwin, x86_64-linux ] + Raincat: [ x86_64-darwin ] + rakhana: [ i686-linux, x86_64-darwin, x86_64-linux ] + ralist: [ i686-linux, x86_64-darwin, x86_64-linux ] + rallod: [ i686-linux, x86_64-darwin, x86_64-linux ] + rand-vars: [ i686-linux, x86_64-darwin, x86_64-linux ] + randfile: [ i686-linux, x86_64-darwin, x86_64-linux ] + random-access-list: [ i686-linux, x86_64-darwin, x86_64-linux ] + random-eff: [ i686-linux, x86_64-darwin, x86_64-linux ] + random-effin: [ i686-linux, x86_64-darwin, x86_64-linux ] + random-hypergeometric: [ i686-linux, x86_64-darwin, x86_64-linux ] + random-stream: [ i686-linux, x86_64-darwin, x86_64-linux ] + random-variates: [ i686-linux ] + RandomDotOrg: [ i686-linux, x86_64-darwin, x86_64-linux ] + rangemin: [ i686-linux, x86_64-darwin, x86_64-linux ] + Ranka: [ i686-linux, x86_64-darwin, x86_64-linux ] + Rasenschach: [ i686-linux, x86_64-darwin, x86_64-linux ] + raven-haskell-scotty: [ i686-linux, x86_64-darwin, x86_64-linux ] + rbr: [ i686-linux, x86_64-darwin, x86_64-linux ] + rcu: [ i686-linux, x86_64-darwin, x86_64-linux ] + rdf4h: [ i686-linux, x86_64-darwin, x86_64-linux ] + rdioh: [ i686-linux, x86_64-darwin, x86_64-linux ] + re2: [ x86_64-darwin ] + reaction-logic: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactive-bacon: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactive-balsa: [ i686-linux, x86_64-linux, x86_64-darwin ] + reactive-banana-sdl2: [ x86_64-darwin ] + reactive-banana-sdl: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactive-banana-threepenny: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactive-banana-wx: [ x86_64-darwin ] + reactive-fieldtrip: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactive-glut: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactive-thread: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactive: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactor: [ i686-linux, x86_64-darwin, x86_64-linux ] + really-simple-xml-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + reasonable-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] + record-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ] + record-gl: [ i686-linux, x86_64-darwin, x86_64-linux ] + record-preprocessor: [ i686-linux, x86_64-darwin, x86_64-linux ] + record-syntax: [ i686-linux, x86_64-darwin, x86_64-linux ] + records-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + records: [ i686-linux, x86_64-darwin, x86_64-linux ] + recursive-line-count: [ x86_64-darwin ] + redHandlers: [ i686-linux, x86_64-darwin, x86_64-linux ] + Redmine: [ i686-linux, x86_64-darwin, x86_64-linux ] + reedsolomon: [ i686-linux, x86_64-darwin, x86_64-linux ] + reenact: [ x86_64-darwin ] + Ref: [ i686-linux, x86_64-darwin, x86_64-linux ] + ref: [ i686-linux, x86_64-darwin, x86_64-linux ] + Referees: [ i686-linux, x86_64-darwin, x86_64-linux ] + refh: [ i686-linux, x86_64-darwin, x86_64-linux ] + reflection-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + reflex-dom-contrib: [ i686-linux, x86_64-linux, x86_64-darwin ] + reflex-dom: [ x86_64-darwin ] + reflex-gloss-scene: [ x86_64-darwin ] + reflex-gloss: [ x86_64-darwin ] + reflex-orphans: [ i686-linux, x86_64-darwin, x86_64-linux ] + regex-deriv: [ i686-linux, x86_64-darwin, x86_64-linux ] + regex-dfa: [ i686-linux, x86_64-darwin, x86_64-linux ] + regex-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + regex-pderiv: [ i686-linux, x86_64-darwin, x86_64-linux ] + regex-tdfa-utf8: [ i686-linux, x86_64-darwin, x86_64-linux ] + regex-tre: [ i686-linux, x86_64-darwin, x86_64-linux ] + regex-xmlschema: [ i686-linux, x86_64-darwin, x86_64-linux ] + regexchar: [ i686-linux, x86_64-darwin, x86_64-linux ] + regexdot: [ i686-linux, x86_64-darwin, x86_64-linux ] + regexp-tries: [ i686-linux, x86_64-darwin, x86_64-linux ] + regexqq: [ i686-linux, x86_64-darwin, x86_64-linux ] + regional-pointers: [ i686-linux, x86_64-darwin, x86_64-linux ] + regions-monadsfd: [ i686-linux, x86_64-darwin, x86_64-linux ] + regions-monadstf: [ i686-linux, x86_64-darwin, x86_64-linux ] + regions-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + regions: [ i686-linux, x86_64-darwin, x86_64-linux ] + regular-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + regular-web: [ i686-linux, x86_64-darwin, x86_64-linux ] + reheat: [ i686-linux, x86_64-darwin, x86_64-linux ] + rei: [ i686-linux, x86_64-darwin, x86_64-linux ] + reified-records: [ i686-linux, x86_64-darwin, x86_64-linux ] + reify: [ i686-linux, x86_64-darwin, x86_64-linux ] + reinterpret-cast: [ i686-linux ] + remote-json-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + remote-json-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + remote-json: [ i686-linux, x86_64-darwin, x86_64-linux ] + remote: [ i686-linux, x86_64-darwin, x86_64-linux ] + remotion: [ i686-linux, x86_64-darwin, x86_64-linux ] + reorderable: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-array: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-flow: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-plugin: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-series: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-sndfile: [ x86_64-darwin ] + repa-stream: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-v4l2: [ i686-linux, x86_64-darwin, x86_64-linux ] + repl: [ i686-linux, x86_64-darwin, x86_64-linux ] + repo-based-blog: [ i686-linux, x86_64-darwin, x86_64-linux ] + repr: [ i686-linux, x86_64-darwin, x86_64-linux ] + representable-functors: [ i686-linux, x86_64-darwin, x86_64-linux ] + representable-tries: [ i686-linux, x86_64-darwin, x86_64-linux ] + resistor-cube: [ i686-linux, x86_64-darwin, x86_64-linux ] + resource-embed: [ i686-linux, x86_64-darwin, x86_64-linux ] + resource-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + respond: [ i686-linux, x86_64-darwin, x86_64-linux ] + restful-snap: [ i686-linux, x86_64-darwin, x86_64-linux ] + RESTng: [ i686-linux, x86_64-darwin, x86_64-linux ] + restricted-workers: [ i686-linux, x86_64-darwin, x86_64-linux ] + restyle: [ i686-linux, x86_64-darwin, x86_64-linux ] + resumable-exceptions: [ i686-linux, x86_64-darwin, x86_64-linux ] + rethinkdb-model: [ i686-linux, x86_64-darwin, x86_64-linux ] + ReviewBoard: [ i686-linux, x86_64-darwin, x86_64-linux ] + rewrite: [ i686-linux, x86_64-darwin, x86_64-linux ] + rewriting: [ i686-linux, x86_64-darwin, x86_64-linux ] + rezoom: [ i686-linux, x86_64-darwin, x86_64-linux ] + rhythm-game-tutorial: [ i686-linux, x86_64-darwin, x86_64-linux ] + riot: [ i686-linux, x86_64-darwin, x86_64-linux ] + ripple-federation: [ i686-linux, x86_64-darwin, x86_64-linux ] + ripple: [ i686-linux, x86_64-darwin, x86_64-linux ] + risc386: [ i686-linux, x86_64-darwin, x86_64-linux ] + rivers: [ i686-linux, x86_64-darwin, x86_64-linux ] + RJson: [ i686-linux, x86_64-darwin, x86_64-linux ] + rmonad: [ i686-linux, x86_64-darwin, x86_64-linux ] + RMP: [ i686-linux, x86_64-linux, x86_64-darwin ] + RNAdesign: [ i686-linux, x86_64-darwin, x86_64-linux ] + RNAdraw: [ i686-linux, x86_64-darwin, x86_64-linux ] + RNAFold: [ i686-linux, x86_64-darwin, x86_64-linux ] + RNAFoldProgs: [ i686-linux, x86_64-darwin, x86_64-linux ] + RNAwolf: [ i686-linux, x86_64-darwin, x86_64-linux ] + roguestar-engine: [ i686-linux, x86_64-darwin, x86_64-linux ] + roguestar-gl: [ i686-linux, x86_64-darwin, x86_64-linux ] + roguestar-glut: [ i686-linux, x86_64-darwin, x86_64-linux ] + roguestar: [ i686-linux, x86_64-darwin, x86_64-linux ] + RollingDirectory: [ i686-linux, x86_64-darwin, x86_64-linux ] + rope: [ i686-linux, x86_64-darwin, x86_64-linux ] + rosa: [ i686-linux, x86_64-darwin, x86_64-linux ] + roshask: [ i686-linux, x86_64-darwin, x86_64-linux ] + rosso: [ i686-linux, x86_64-darwin, x86_64-linux ] + rounding: [ i686-linux, x86_64-darwin, x86_64-linux ] + roundtrip-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ] + roundtrip-string: [ i686-linux, x86_64-darwin, x86_64-linux ] + roundtrip-xml: [ i686-linux, x86_64-darwin, x86_64-linux ] + roundtrip: [ i686-linux, x86_64-darwin, x86_64-linux ] + route-generator: [ i686-linux, x86_64-darwin, x86_64-linux ] + route-planning: [ i686-linux, x86_64-darwin, x86_64-linux ] + rowrecord: [ i686-linux, x86_64-darwin, x86_64-linux ] + rpc-framework: [ i686-linux, x86_64-darwin, x86_64-linux ] + rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] + rpm: [ i686-linux, x86_64-darwin, x86_64-linux ] + rsagl-frp: [ i686-linux, x86_64-darwin, x86_64-linux ] + rsagl-math: [ i686-linux, x86_64-darwin, x86_64-linux ] + rsagl: [ i686-linux, x86_64-darwin, x86_64-linux ] + rss2irc: [ i686-linux, x86_64-darwin, x86_64-linux ] + rtcm: [ i686-linux, x86_64-darwin, x86_64-linux ] + rtlsdr: [ x86_64-darwin ] + rtorrent-rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] + rubberband: [ x86_64-darwin ] + ruff: [ i686-linux, x86_64-darwin, x86_64-linux ] + ruler-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + rungekutta: [ i686-linux, x86_64-darwin, x86_64-linux ] + RxHaskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + safe-freeze: [ i686-linux, x86_64-darwin, x86_64-linux ] + safe-globals: [ i686-linux, x86_64-darwin, x86_64-linux ] + safe-lazy-io: [ i686-linux, x86_64-darwin, x86_64-linux ] + safe-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + safer-file-handles-bytestring: [ i686-linux, x86_64-darwin, x86_64-linux ] + safer-file-handles-text: [ i686-linux, x86_64-darwin, x86_64-linux ] + safer-file-handles: [ i686-linux, x86_64-darwin, x86_64-linux ] + sai-shape-syb: [ i686-linux, x86_64-darwin, x86_64-linux ] + Salsa: [ i686-linux, x86_64-darwin, x86_64-linux ] + salvia-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] + salvia-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + salvia-protocol: [ i686-linux, x86_64-darwin, x86_64-linux ] + salvia-sessions: [ i686-linux, x86_64-darwin, x86_64-linux ] + salvia-websocket: [ i686-linux, x86_64-darwin, x86_64-linux ] + salvia: [ i686-linux, x86_64-darwin, x86_64-linux ] + samtools-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + sarasvati: [ x86_64-darwin ] + sasl: [ i686-linux, x86_64-darwin, x86_64-linux ] + sat-micro-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + sat: [ i686-linux, x86_64-darwin, x86_64-linux ] + satchmo-backends: [ i686-linux, x86_64-darwin, x86_64-linux ] + satchmo-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + satchmo-funsat: [ i686-linux, x86_64-darwin, x86_64-linux ] + satchmo-minisat: [ i686-linux, x86_64-darwin, x86_64-linux ] + satchmo-toysat: [ i686-linux, x86_64-darwin, x86_64-linux ] + satchmo: [ x86_64-darwin ] + SBench: [ i686-linux, x86_64-darwin, x86_64-linux ] + sbp: [ i686-linux, x86_64-darwin, x86_64-linux ] + scaleimage: [ i686-linux, x86_64-darwin, x86_64-linux ] + scalp-webhooks: [ i686-linux, x86_64-darwin, x86_64-linux ] + scan-vector-machine: [ i686-linux, x86_64-darwin, x86_64-linux ] + scenegraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + schedevr: [ i686-linux, x86_64-darwin, x86_64-linux ] + scholdoc-citeproc: [ i686-linux, x86_64-darwin, x86_64-linux ] + scholdoc: [ i686-linux, x86_64-darwin, x86_64-linux ] + science-constants-dimensional: [ i686-linux, x86_64-darwin, x86_64-linux ] + scion-browser: [ i686-linux, x86_64-darwin, x86_64-linux ] + scion: [ i686-linux, x86_64-darwin, x86_64-linux ] + scope-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] + scope: [ i686-linux, x86_64-darwin, x86_64-linux ] + scottish: [ i686-linux, x86_64-darwin, x86_64-linux ] + scotty-blaze: [ i686-linux, x86_64-darwin, x86_64-linux ] + scotty-fay: [ i686-linux, x86_64-darwin, x86_64-linux ] + scotty-hastache: [ i686-linux, x86_64-darwin, x86_64-linux ] + scotty-session: [ i686-linux, x86_64-darwin, x86_64-linux ] + scrabble-bot: [ i686-linux, x86_64-darwin, x86_64-linux ] + ScratchFs: [ i686-linux, x86_64-linux, x86_64-darwin ] + scrobble: [ i686-linux, x86_64-darwin, x86_64-linux ] + scrz: [ i686-linux, x86_64-darwin, x86_64-linux ] + Scurry: [ i686-linux, x86_64-darwin, x86_64-linux ] + sde-solver: [ x86_64-darwin ] + SDL-gfx: [ x86_64-darwin ] + SDL-image: [ x86_64-darwin ] + SDL-mixer: [ x86_64-darwin ] + SDL-mpeg: [ x86_64-darwin ] + SDL-ttf: [ x86_64-darwin ] + sdl2-compositor: [ i686-linux, x86_64-darwin, x86_64-linux ] + sdl2-image: [ i686-linux, x86_64-darwin, x86_64-linux ] + sdl2-ttf: [ x86_64-darwin ] + sdr: [ x86_64-darwin, x86_64-linux ] + seacat: [ i686-linux, x86_64-darwin, x86_64-linux ] + search: [ i686-linux, x86_64-darwin, x86_64-linux ] + secdh: [ i686-linux, x86_64-darwin, x86_64-linux ] + second-transfer: [ i686-linux, x86_64-darwin, x86_64-linux ] + secp256k1: [ i686-linux, x86_64-darwin, x86_64-linux ] + secret-santa: [ i686-linux, x86_64-darwin, x86_64-linux ] + secret-sharing: [ i686-linux, x86_64-darwin, x86_64-linux ] + secrm: [ i686-linux, x86_64-darwin, x86_64-linux ] + sednaDBXML: [ i686-linux, x86_64-darwin, x86_64-linux ] + select: [ x86_64-darwin ] + selectors: [ i686-linux, x86_64-darwin, x86_64-linux ] + selenium-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + selenium: [ i686-linux, x86_64-darwin, x86_64-linux ] + selinux: [ i686-linux, x86_64-darwin, x86_64-linux ] + Semantique: [ i686-linux, x86_64-darwin, x86_64-linux ] + semi-iso: [ i686-linux, x86_64-darwin, x86_64-linux ] + semigroups-actions: [ i686-linux, x86_64-darwin, x86_64-linux ] + semiring: [ i686-linux, x86_64-darwin, x86_64-linux ] + semver-range: [ i686-linux, x86_64-darwin, x86_64-linux ] + sensei: [ i686-linux, x86_64-darwin, x86_64-linux ] + sensenet: [ i686-linux, x86_64-darwin, x86_64-linux ] + sentry: [ i686-linux, x86_64-darwin, x86_64-linux ] + seqaid: [ i686-linux, x86_64-darwin, x86_64-linux ] + seqalign: [ i686-linux ] + SeqAlign: [ i686-linux, x86_64-darwin, x86_64-linux ] + seqloc-datafiles: [ i686-linux, x86_64-darwin, x86_64-linux ] + sequent-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + sequor: [ i686-linux, x86_64-darwin, x86_64-linux ] + servant-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + servant-foreign: [ i686-linux, x86_64-darwin, x86_64-linux ] + servant-js: [ i686-linux, x86_64-darwin, x86_64-linux ] + servant-pool: [ i686-linux, x86_64-darwin, x86_64-linux ] + servant-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] + servant-scotty: [ i686-linux, x86_64-darwin, x86_64-linux ] + servant-swagger: [ i686-linux ] + serversession-backend-acid-state: [ x86_64-darwin ] + serversession-backend-persistent: [ x86_64-darwin ] + ses-html-snaplet: [ i686-linux, x86_64-darwin, x86_64-linux ] + SessionLogger: [ i686-linux, x86_64-darwin, x86_64-linux ] + sessions: [ i686-linux, x86_64-darwin, x86_64-linux ] + set-cover: [ i686-linux, x86_64-darwin, x86_64-linux ] + set-with: [ i686-linux, x86_64-darwin, x86_64-linux ] + sexp-grammar: [ i686-linux, x86_64-darwin, x86_64-linux ] + sexp: [ i686-linux, x86_64-darwin, x86_64-linux ] + sexpr: [ i686-linux, x86_64-darwin, x86_64-linux ] + sfml-audio: [ x86_64-darwin ] + SFML-control: [ i686-linux, x86_64-darwin, x86_64-linux ] + SFML: [ i686-linux, x86_64-darwin, x86_64-linux ] + SFont: [ i686-linux, x86_64-darwin, x86_64-linux ] + SG: [ i686-linux, x86_64-darwin, x86_64-linux ] + SGdemo: [ i686-linux, x86_64-darwin, x86_64-linux ] + sgrep: [ i686-linux, x86_64-darwin, x86_64-linux ] + shadower: [ i686-linux, x86_64-darwin, x86_64-linux ] + shady-gen: [ i686-linux, x86_64-darwin, x86_64-linux ] + shady-graphics: [ i686-linux, x86_64-darwin, x86_64-linux ] + shake-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + shaker: [ i686-linux, x86_64-darwin, x86_64-linux ] + shapely-data: [ i686-linux, x86_64-darwin, x86_64-linux ] + shared-buffer: [ i686-linux, x86_64-darwin, x86_64-linux ] + shared-memory: [ x86_64-darwin ] + she: [ i686-linux, x86_64-darwin, x86_64-linux ] + shelduck: [ x86_64-darwin ] + shell-pipe: [ i686-linux, x86_64-darwin, x86_64-linux ] + Shellac-compatline: [ i686-linux, x86_64-darwin, x86_64-linux ] + Shellac-editline: [ i686-linux, x86_64-darwin, x86_64-linux ] + Shellac-haskeline: [ i686-linux, x86_64-darwin, x86_64-linux ] + Shellac-readline: [ i686-linux, x86_64-darwin, x86_64-linux ] + Shellac: [ i686-linux, x86_64-darwin, x86_64-linux ] + shellish: [ i686-linux, x86_64-darwin, x86_64-linux ] + showdown: [ i686-linux, x86_64-darwin, x86_64-linux ] + shpider: [ i686-linux, x86_64-darwin, x86_64-linux ] + Shu-thing: [ i686-linux, x86_64-darwin, x86_64-linux ] + sifflet-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + sifflet: [ i686-linux, x86_64-darwin, x86_64-linux ] + signals: [ i686-linux, x86_64-darwin, x86_64-linux ] + simd: [ i686-linux, x86_64-darwin, x86_64-linux ] + simgi: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-bluetooth: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-c-value: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-css: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-firewire: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-form: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-log-syslog: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-pascal: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-vec3: [ i686-linux, x86_64-darwin, x86_64-linux ] + SimpleGL: [ i686-linux, x86_64-darwin, x86_64-linux ] + SimpleH: [ i686-linux, x86_64-darwin, x86_64-linux ] + simpleirc-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] + simpleirc: [ i686-linux, x86_64-darwin, x86_64-linux ] + SimpleLog: [ i686-linux, x86_64-darwin, x86_64-linux ] + simplenote: [ i686-linux, x86_64-darwin, x86_64-linux ] + simpleprelude: [ i686-linux, x86_64-darwin, x86_64-linux ] + simplessh: [ i686-linux, x86_64-darwin, x86_64-linux ] + simseq: [ i686-linux, x86_64-darwin, x86_64-linux ] + sindre: [ i686-linux, x86_64-darwin, x86_64-linux ] + sirkel: [ i686-linux, x86_64-darwin, x86_64-linux ] + sized: [ i686-linux, x86_64-darwin, x86_64-linux ] + skeleton: [ i686-linux, x86_64-darwin, x86_64-linux ] + skype4hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + slack: [ i686-linux, x86_64-darwin, x86_64-linux ] + slidemews: [ i686-linux, x86_64-darwin, x86_64-linux ] + sloth: [ i686-linux, x86_64-darwin, x86_64-linux ] + smallarray: [ i686-linux, x86_64-darwin, x86_64-linux ] + smallpt-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + smallstring: [ i686-linux, x86_64-darwin, x86_64-linux ] + smartGroup: [ i686-linux, x86_64-linux ] + smartword: [ i686-linux, x86_64-darwin, x86_64-linux ] + sme: [ i686-linux, x86_64-darwin, x86_64-linux ] + Smooth: [ i686-linux, x86_64-darwin, x86_64-linux ] + smt-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + smtp-mail-ng: [ i686-linux, x86_64-darwin, x86_64-linux ] + smtp2mta: [ i686-linux, x86_64-darwin, x86_64-linux ] + snake-game: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap-accept: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap-loader-dynamic: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap-predicates: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap-testing: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-actionlog: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-css-min: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-environments: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-hasql: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-haxl: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-hdbc: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-i18n: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-influxdb: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-mongodb-minimalistic: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-mongoDB: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-mysql-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-oauth: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-redson: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-rest: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-riak: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-sedna: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-tasks: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-typed-sessions: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-wordpress: [ i686-linux, x86_64-darwin, x86_64-linux ] + snappy-conduit: [ x86_64-darwin ] + snappy-framing: [ x86_64-darwin ] + snappy-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + snappy: [ x86_64-darwin ] + sndfile-enumerators: [ i686-linux, x86_64-darwin, x86_64-linux ] + SNet: [ i686-linux, x86_64-darwin, x86_64-linux ] + snm: [ i686-linux, x86_64-darwin, x86_64-linux ] + snow-white: [ i686-linux, x86_64-darwin, x86_64-linux ] + snowglobe: [ i686-linux, x86_64-darwin, x86_64-linux ] + Snusmumrik: [ i686-linux, x86_64-linux, x86_64-darwin ] + SoccerFun: [ i686-linux, x86_64-darwin, x86_64-linux ] + SoccerFunGL: [ i686-linux, x86_64-darwin, x86_64-linux ] + sock2stream: [ i686-linux, x86_64-darwin, x86_64-linux ] + socket-sctp: [ i686-linux, x86_64-darwin, x86_64-linux ] + socketio: [ i686-linux, x86_64-darwin, x86_64-linux ] + socketson: [ i686-linux, x86_64-darwin, x86_64-linux ] + soegtk: [ x86_64-darwin ] + sonic-visualiser: [ i686-linux, x86_64-darwin, x86_64-linux ] + SoOSiM: [ i686-linux, x86_64-darwin, x86_64-linux ] + sorted: [ i686-linux, x86_64-darwin, x86_64-linux ] + sound-collage: [ i686-linux, x86_64-darwin, x86_64-linux ] + source-code-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + SourceGraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + sousit: [ i686-linux, x86_64-darwin, x86_64-linux ] + soxlib: [ i686-linux, x86_64-darwin, x86_64-linux ] + soyuz: [ i686-linux, x86_64-darwin, x86_64-linux ] + SpaceInvaders: [ i686-linux ] + SpacePrivateers: [ i686-linux, x86_64-darwin, x86_64-linux ] + spanout: [ i686-linux, x86_64-darwin, x86_64-linux ] + sparse: [ i686-linux, x86_64-darwin, x86_64-linux ] + sparsebit: [ i686-linux, x86_64-darwin, x86_64-linux ] + sparsecheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + spata: [ i686-linux, x86_64-darwin, x86_64-linux ] + spatial-math: [ i686-linux, x86_64-darwin, x86_64-linux ] + special-functors: [ i686-linux, x86_64-darwin, x86_64-linux ] + specialize-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + sphero: [ i686-linux, x86_64-darwin, x86_64-linux ] + sphinx-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] + spice: [ x86_64-darwin ] + spike: [ i686-linux, x86_64-linux, x86_64-darwin ] + splaytree: [ i686-linux, x86_64-darwin, x86_64-linux ] + spline3: [ i686-linux ] + splines: [ i686-linux, x86_64-darwin, x86_64-linux ] + split-record: [ i686-linux, x86_64-darwin, x86_64-linux ] + Spock-auth: [ i686-linux, x86_64-darwin, x86_64-linux ] + Spock-digestive: [ x86_64-darwin ] + Spock-lucid: [ x86_64-darwin ] + Spock-worker: [ x86_64-darwin ] + Spock: [ x86_64-darwin ] + spoonutil: [ i686-linux, x86_64-darwin, x86_64-linux ] + spoty: [ i686-linux, x86_64-darwin, x86_64-linux ] + Sprig: [ i686-linux, x86_64-darwin, x86_64-linux ] + spsa: [ i686-linux, x86_64-darwin, x86_64-linux ] + spy: [ i686-linux, x86_64-darwin, x86_64-linux ] + sql-simple-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] + sql-simple-pool: [ i686-linux, x86_64-darwin, x86_64-linux ] + sql-simple-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] + sql-simple-sqlite: [ i686-linux, x86_64-darwin, x86_64-linux ] + sql-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + sqlite-simple-typed: [ i686-linux, x86_64-darwin, x86_64-linux ] + squeeze: [ i686-linux, x86_64-darwin, x86_64-linux ] + srcinst: [ i686-linux, x86_64-darwin, x86_64-linux ] + ssh: [ i686-linux, x86_64-linux ] + sssp: [ i686-linux, x86_64-darwin, x86_64-linux ] + sstable: [ i686-linux, x86_64-darwin, x86_64-linux ] + stable-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] + stack-hpc-coveralls: [ i686-linux, x86_64-darwin, x86_64-linux ] + stack-prism: [ i686-linux, x86_64-darwin, x86_64-linux ] + starrover2: [ i686-linux, x86_64-linux, x86_64-darwin ] + stateful-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + statgrab: [ i686-linux, x86_64-darwin, x86_64-linux ] + statistics-dirichlet: [ i686-linux, x86_64-darwin, x86_64-linux ] + statistics-fusion: [ i686-linux, x86_64-darwin, x86_64-linux ] + stb-truetype: [ i686-linux, x86_64-darwin, x86_64-linux ] + step-function: [ i686-linux, x86_64-darwin, x86_64-linux ] + stepwise: [ i686-linux, x86_64-darwin, x86_64-linux ] + stm-chunked-queues: [ i686-linux, x86_64-darwin, x86_64-linux ] + stmcontrol: [ i686-linux, x86_64-darwin, x86_64-linux ] + Stomp: [ i686-linux, x86_64-darwin, x86_64-linux ] + stopwatch: [ x86_64-darwin ] + storable-static-array: [ i686-linux, x86_64-darwin, x86_64-linux ] + storablevector-carray: [ i686-linux, x86_64-darwin, x86_64-linux ] + storablevector-streamfusion: [ i686-linux, x86_64-darwin, x86_64-linux ] + storablevector: [ i686-linux, x86_64-darwin, x86_64-linux ] + Strafunski-Sdf2Haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + stratum-tool: [ i686-linux, x86_64-darwin, x86_64-linux ] + stream-fusion: [ i686-linux, x86_64-darwin, x86_64-linux ] + streamed: [ i686-linux, x86_64-linux, x86_64-darwin ] + streaming-utils: [ i686-linux ] + strict-concurrency: [ i686-linux, x86_64-darwin, x86_64-linux ] + StrictBench: [ i686-linux, x86_64-darwin, x86_64-linux ] + stringlike: [ i686-linux, x86_64-darwin, x86_64-linux ] + structured-mongoDB: [ i686-linux, x86_64-darwin, x86_64-linux ] + structures: [ i686-linux, x86_64-darwin, x86_64-linux ] + stunts: [ i686-linux, x86_64-darwin, x86_64-linux ] + sub-state: [ i686-linux, x86_64-darwin, x86_64-linux ] + subhask: [ i686-linux, x86_64-darwin, x86_64-linux ] + subleq-toolchain: [ i686-linux, x86_64-darwin, x86_64-linux ] + SuffixStructures: [ i686-linux, x86_64-darwin, x86_64-linux ] + suitable: [ i686-linux, x86_64-darwin, x86_64-linux ] + sunlight: [ i686-linux, x86_64-darwin, x86_64-linux ] + sunroof-compiler: [ i686-linux, x86_64-darwin, x86_64-linux ] + sunroof-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + sunroof-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + super-user-spark: [ i686-linux, x86_64-darwin, x86_64-linux ] + supercollider-midi: [ i686-linux, x86_64-linux, x86_64-darwin ] + superdoc: [ i686-linux, x86_64-darwin, x86_64-linux ] + supero: [ i686-linux, x86_64-darwin, x86_64-linux ] + supervisor: [ i686-linux, x86_64-darwin, x86_64-linux ] + SVG2Q: [ i686-linux, x86_64-darwin, x86_64-linux ] + svg2q: [ i686-linux, x86_64-darwin, x86_64-linux ] + svgcairo: [ x86_64-darwin ] + svm-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + svndump: [ i686-linux, x86_64-darwin, x86_64-linux ] + swagger2: [ i686-linux ] + swapper: [ i686-linux, x86_64-darwin, x86_64-linux ] + swearjure: [ i686-linux, x86_64-darwin, x86_64-linux ] + swf: [ i686-linux, x86_64-darwin, x86_64-linux ] + swift-lda: [ i686-linux, x86_64-darwin, x86_64-linux ] + sws: [ i686-linux, x86_64-darwin, x86_64-linux ] + syb-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + sylvia: [ i686-linux, x86_64-darwin, x86_64-linux ] + sym-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] + symengine-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + sync-mht: [ i686-linux ] + sync: [ i686-linux, x86_64-darwin, x86_64-linux ] + syncthing-hs: [ x86_64-darwin ] + syntactic: [ i686-linux, x86_64-darwin ] + syntax-attoparsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax-example-json: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax-example: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax-pretty: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax-printer: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax-trees-fork-bairyn: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax-trees: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax: [ i686-linux, x86_64-darwin, x86_64-linux ] + SyntaxMacros: [ i686-linux, x86_64-darwin, x86_64-linux ] + synthesizer-alsa: [ i686-linux, x86_64-linux, x86_64-darwin ] + synthesizer-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + synthesizer-dimensional: [ i686-linux, x86_64-darwin, x86_64-linux ] + synthesizer-filter: [ i686-linux, x86_64-darwin, x86_64-linux ] + synthesizer-llvm: [ i686-linux, x86_64-darwin, x86_64-linux ] + synthesizer-midi: [ i686-linux, x86_64-darwin, x86_64-linux ] + synthesizer: [ i686-linux, x86_64-darwin, x86_64-linux ] + Sysmon: [ i686-linux, x86_64-darwin, x86_64-linux ] + system-canonicalpath: [ i686-linux, x86_64-darwin, x86_64-linux ] + system-inotify: [ x86_64-darwin ] + system-lifted: [ i686-linux, x86_64-darwin, x86_64-linux ] + system-random-effect: [ i686-linux, x86_64-darwin, x86_64-linux ] + system-time-monotonic: [ x86_64-darwin ] + ta: [ i686-linux, x86_64-darwin, x86_64-linux ] + Tables: [ i686-linux, x86_64-darwin, x86_64-linux ] + tables: [ i686-linux, x86_64-darwin, x86_64-linux ] + tablestorage: [ i686-linux, x86_64-darwin, x86_64-linux ] + tabloid: [ i686-linux, x86_64-darwin, x86_64-linux ] + taffybar: [ x86_64-darwin ] + tagged-list: [ i686-linux, x86_64-darwin, x86_64-linux ] + tagged-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + tagsoup-ht: [ i686-linux, x86_64-darwin, x86_64-linux ] + tagsoup-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + takusen-oracle: [ i686-linux, x86_64-darwin, x86_64-linux ] + Takusen: [ i686-linux, x86_64-darwin, x86_64-linux ] + tamarin-prover-term: [ i686-linux, x86_64-darwin, x86_64-linux ] + tamarin-prover-theory: [ i686-linux, x86_64-darwin, x86_64-linux ] + tamarin-prover-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + tamarin-prover: [ i686-linux, x86_64-darwin, x86_64-linux ] + target: [ i686-linux, x86_64-darwin, x86_64-linux ] + task-distribution: [ i686-linux, x86_64-darwin, x86_64-linux ] + task: [ i686-linux, x86_64-darwin, x86_64-linux ] + taskpool: [ x86_64-darwin ] + tasty-groundhog-converters: [ i686-linux, x86_64-darwin, x86_64-linux ] + tasty-integrate: [ i686-linux, x86_64-darwin, x86_64-linux ] + TBC: [ i686-linux, x86_64-darwin, x86_64-linux ] + TBit: [ i686-linux, x86_64-darwin, x86_64-linux ] + tbox: [ i686-linux, x86_64-darwin, x86_64-linux ] + tccli: [ i686-linux, x86_64-darwin, x86_64-linux ] + tcp: [ i686-linux, x86_64-darwin, x86_64-linux ] + tdd-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + TeaHS: [ i686-linux, x86_64-linux, x86_64-darwin ] + teams: [ i686-linux, x86_64-darwin, x86_64-linux ] + telegram: [ i686-linux, x86_64-darwin, x86_64-linux ] + template-default: [ i686-linux, x86_64-darwin, x86_64-linux ] + template-haskell-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + template-hsml: [ i686-linux, x86_64-darwin, x86_64-linux ] + template-yj: [ i686-linux, x86_64-darwin, x86_64-linux ] + tempodb: [ i686-linux, x86_64-darwin, x86_64-linux ] + temporal-csound: [ i686-linux, x86_64-darwin, x86_64-linux ] + tempus: [ i686-linux, x86_64-darwin, x86_64-linux ] + tensor: [ i686-linux, x86_64-darwin, x86_64-linux ] + term-rewriting: [ i686-linux, x86_64-darwin, x86_64-linux ] + termbox-bindings: [ i686-linux, x86_64-darwin, x86_64-linux ] + terntup: [ i686-linux, x86_64-darwin, x86_64-linux ] + terrahs: [ i686-linux, x86_64-darwin, x86_64-linux ] + test-framework-doctest: [ i686-linux, x86_64-darwin, x86_64-linux ] + test-framework-quickcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + testloop: [ i686-linux, x86_64-darwin, x86_64-linux ] + testpack: [ i686-linux, x86_64-darwin, x86_64-linux ] + testpattern: [ i686-linux, x86_64-darwin, x86_64-linux ] + testPkg: [ i686-linux, x86_64-darwin, x86_64-linux ] + testrunner: [ i686-linux, x86_64-darwin, x86_64-linux ] + tetris: [ x86_64-darwin ] + tex2txt: [ i686-linux, x86_64-darwin, x86_64-linux ] + texrunner: [ i686-linux, x86_64-darwin, x86_64-linux ] + text-json-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] + text-normal: [ i686-linux, x86_64-darwin, x86_64-linux ] + text-register-machine: [ i686-linux, x86_64-darwin, x86_64-linux ] + text-show-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] + text-xml-generic: [ i686-linux, x86_64-darwin, x86_64-linux ] + text-xml-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] + textmatetags: [ i686-linux, x86_64-darwin, x86_64-linux ] + tfp-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + tftp: [ x86_64-darwin ] + th-context: [ i686-linux, x86_64-darwin, x86_64-linux ] + th-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] + th-kinds: [ i686-linux, x86_64-darwin, x86_64-linux ] + Theora: [ i686-linux, x86_64-darwin, x86_64-linux ] + theoremquest-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + thih: [ i686-linux, x86_64-darwin, x86_64-linux ] + thimk: [ i686-linux, x86_64-darwin, x86_64-linux ] + Thingie: [ i686-linux, x86_64-darwin, x86_64-linux ] + threadscope: [ x86_64-darwin ] + Thrift: [ i686-linux, x86_64-darwin, x86_64-linux ] + thrift: [ i686-linux, x86_64-darwin, x86_64-linux ] + tianbar: [ x86_64-darwin ] + tic-tac-toe: [ i686-linux, x86_64-darwin, x86_64-linux ] + tickle: [ i686-linux ] + TicTacToe: [ i686-linux, x86_64-darwin, x86_64-linux ] + tidal-midi: [ i686-linux, x86_64-linux, x86_64-darwin ] + tidal-vis: [ x86_64-darwin ] + tidal: [ x86_64-darwin ] + tiger: [ i686-linux, x86_64-darwin, x86_64-linux ] + tighttp: [ i686-linux, x86_64-darwin, x86_64-linux ] + timberc: [ i686-linux, x86_64-darwin, x86_64-linux ] + time-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + time-exts: [ i686-linux ] + time-http: [ i686-linux, x86_64-darwin, x86_64-linux ] + time-qq: [ i686-linux ] + time-recurrence: [ i686-linux, x86_64-darwin, x86_64-linux ] + time-series: [ i686-linux, x86_64-darwin, x86_64-linux ] + time-w3c: [ i686-linux, x86_64-darwin, x86_64-linux ] + timecalc: [ i686-linux, x86_64-darwin, x86_64-linux ] + timemap: [ i686-linux, x86_64-darwin, x86_64-linux ] + timeout: [ i686-linux, x86_64-darwin, x86_64-linux ] + timeparsers: [ i686-linux, x86_64-darwin, x86_64-linux ] + TimePiece: [ i686-linux, x86_64-darwin, x86_64-linux ] + timestamp-subprocess-lines: [ i686-linux, x86_64-darwin, x86_64-linux ] + TinyLaunchbury: [ i686-linux, x86_64-darwin, x86_64-linux ] + TinyURL: [ i686-linux, x86_64-darwin, x86_64-linux ] + tip-haskell-frontend: [ i686-linux, x86_64-darwin, x86_64-linux ] + Titim: [ i686-linux, x86_64-darwin, x86_64-linux ] + tkhs: [ i686-linux, x86_64-darwin, x86_64-linux ] + tkyprof: [ i686-linux, x86_64-darwin, x86_64-linux ] + tls-extra: [ i686-linux, x86_64-darwin, x86_64-linux ] + to-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + to-string-class: [ i686-linux, x86_64-darwin, x86_64-linux ] + to-string-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] + todos: [ i686-linux, x86_64-darwin, x86_64-linux ] + toilet: [ i686-linux, x86_64-darwin, x86_64-linux ] + toktok: [ i686-linux, x86_64-darwin, x86_64-linux ] + tokyocabinet-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + tokyotyrant-haskell: [ x86_64-darwin ] + tomato-rubato-openal: [ x86_64-darwin ] + toml: [ i686-linux, x86_64-darwin, x86_64-linux ] + toolshed: [ i686-linux, x86_64-darwin, x86_64-linux ] + Top: [ i686-linux, x86_64-darwin, x86_64-linux ] + topkata: [ i686-linux, x86_64-darwin, x86_64-linux ] + torch: [ i686-linux, x86_64-darwin, x86_64-linux ] + Tournament: [ i686-linux, x86_64-darwin, x86_64-linux ] + toysolver: [ i686-linux, x86_64-darwin, x86_64-linux ] + tracker: [ i686-linux, x86_64-darwin, x86_64-linux ] + trajectory: [ i686-linux, x86_64-darwin, x86_64-linux ] + transactional-events: [ i686-linux, x86_64-darwin, x86_64-linux ] + transf: [ i686-linux, x86_64-darwin, x86_64-linux ] + transformers-convert: [ i686-linux, x86_64-darwin, x86_64-linux ] + transformers-runnable: [ i686-linux, x86_64-darwin, x86_64-linux ] + transient: [ i686-linux, x86_64-darwin, x86_64-linux ] + translate: [ i686-linux, x86_64-darwin, x86_64-linux ] + traypoweroff: [ i686-linux, x86_64-darwin, x86_64-linux ] + tremulous-query: [ i686-linux, x86_64-darwin, x86_64-linux ] + TrendGraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + trhsx: [ i686-linux, x86_64-darwin, x86_64-linux ] + triangulation: [ i686-linux, x86_64-darwin, x86_64-linux ] + TrieMap: [ i686-linux, x86_64-darwin, x86_64-linux ] + trimpolya: [ i686-linux, x86_64-darwin, x86_64-linux ] + tripLL: [ x86_64-darwin ] + tropical: [ i686-linux, x86_64-darwin, x86_64-linux ] + tsession-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] + tsession: [ i686-linux, x86_64-darwin, x86_64-linux ] + tskiplist: [ i686-linux, x86_64-darwin, x86_64-linux ] + tsp-viz: [ i686-linux, x86_64-darwin, x86_64-linux ] + tuntap: [ i686-linux, x86_64-darwin, x86_64-linux ] + tuple-gen: [ i686-linux, x86_64-darwin, x86_64-linux ] + tuple-morph: [ i686-linux, x86_64-darwin, x86_64-linux ] + tupleinstances: [ i686-linux, x86_64-darwin, x86_64-linux ] + turing-music: [ x86_64-darwin ] + twee: [ x86_64-darwin ] + twentefp-eventloop-trees: [ i686-linux, x86_64-darwin, x86_64-linux ] + twentefp-rosetree: [ i686-linux, x86_64-darwin, x86_64-linux ] + twentefp: [ x86_64-darwin ] + twentyseven: [ i686-linux, x86_64-darwin, x86_64-linux ] + twhs: [ i686-linux, x86_64-darwin, x86_64-linux ] + twidge: [ i686-linux, x86_64-darwin, x86_64-linux ] + twilight-stm: [ i686-linux, x86_64-darwin, x86_64-linux ] + twilio: [ i686-linux, x86_64-darwin, x86_64-linux ] + twill: [ i686-linux, x86_64-darwin, x86_64-linux ] + twiml: [ i686-linux, x86_64-darwin, x86_64-linux ] + twine: [ i686-linux, x86_64-darwin, x86_64-linux ] + twisty: [ i686-linux, x86_64-darwin, x86_64-linux ] + twitter-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + twitter: [ i686-linux, x86_64-darwin, x86_64-linux ] + tx: [ i686-linux, x86_64-darwin, x86_64-linux ] + TYB: [ i686-linux, x86_64-darwin, x86_64-linux ] + typalyze: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-cereal: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-digits: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-equality-check: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-int: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-level-bst: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-level: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-ord-spine-cereal: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-ord: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-settheory: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-spine: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-structure: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-sub-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + typeable-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + TypeClass: [ i686-linux, x86_64-darwin, x86_64-linux ] + typed-spreadsheet: [ x86_64-darwin ] + typed-wire: [ i686-linux, x86_64-darwin, x86_64-linux ] + typedquery: [ i686-linux, x86_64-darwin, x86_64-linux ] + typehash: [ i686-linux, x86_64-darwin, x86_64-linux ] + TypeIlluminator: [ i686-linux, x86_64-darwin, x86_64-linux ] + typelevel-tensor: [ i686-linux, x86_64-darwin, x86_64-linux ] + typeparams: [ i686-linux, x86_64-darwin, x86_64-linux ] + typescript-docs: [ i686-linux, x86_64-darwin, x86_64-linux ] + tz: [ x86_64-darwin ] + uAgda: [ i686-linux, x86_64-darwin, x86_64-linux ] + uberlast: [ i686-linux, x86_64-darwin, x86_64-linux ] + uconv: [ i686-linux, x86_64-darwin, x86_64-linux ] + udbus-model: [ i686-linux, x86_64-darwin, x86_64-linux ] + udbus: [ i686-linux, x86_64-darwin, x86_64-linux ] + udev: [ i686-linux, x86_64-darwin, x86_64-linux ] + ui-command: [ i686-linux, x86_64-darwin, x86_64-linux ] + UISF: [ x86_64-darwin ] + UMM: [ i686-linux, x86_64-darwin, x86_64-linux ] + unamb-custom: [ i686-linux, x86_64-darwin, x86_64-linux ] + unbounded-delays-units: [ i686-linux, x86_64-darwin, x86_64-linux ] + unboxed-containers: [ i686-linux, x86_64-darwin, x86_64-linux ] + unbreak: [ x86_64-darwin ] + unicode-normalization: [ i686-linux, x86_64-darwin, x86_64-linux ] + unicoder: [ i686-linux, x86_64-darwin, x86_64-linux ] + uniform-io: [ i686-linux, x86_64-darwin, x86_64-linux ] + union-map: [ i686-linux, x86_64-darwin, x86_64-linux ] + uniqueid: [ i686-linux, x86_64-darwin, x86_64-linux ] + unittyped: [ i686-linux, x86_64-darwin, x86_64-linux ] + universe-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + unix-process-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + Unixutils-shadow: [ x86_64-darwin ] + unlit: [ i686-linux, x86_64-darwin, x86_64-linux ] + unordered-containers-rematch: [ i686-linux, x86_64-darwin, x86_64-linux ] + unpack-funcs: [ i686-linux, x86_64-darwin, x86_64-linux ] + unscramble: [ i686-linux, x86_64-darwin, x86_64-linux ] + up: [ i686-linux, x86_64-darwin, x86_64-linux ] + uploadcare: [ i686-linux, x86_64-darwin, x86_64-linux ] + upskirt: [ i686-linux, x86_64-darwin, x86_64-linux ] + ureader: [ i686-linux, x86_64-darwin, x86_64-linux ] + urembed: [ i686-linux, x86_64-darwin, x86_64-linux ] + uri-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + uri-enumerator-file: [ i686-linux, x86_64-darwin, x86_64-linux ] + uri-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + url-generic: [ i686-linux, x86_64-darwin, x86_64-linux ] + urlcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + urldecode: [ i686-linux, x86_64-darwin, x86_64-linux ] + urldisp-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] + UrlDisp: [ i686-linux, x86_64-darwin, x86_64-linux ] + URLT: [ i686-linux, x86_64-darwin, x86_64-linux ] + urxml: [ i686-linux, x86_64-darwin, x86_64-linux ] + usb-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + usb-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + usb-safe: [ i686-linux, x86_64-darwin, x86_64-linux ] + utf8-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] + UTFTConverter: [ i686-linux, x86_64-darwin, x86_64-linux ] + uuagc-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + uvector-algorithms: [ i686-linux, x86_64-darwin, x86_64-linux ] + uvector: [ i686-linux, x86_64-darwin, x86_64-linux ] + v4l2-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + v4l2: [ i686-linux, x86_64-darwin, x86_64-linux ] + vacuum-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] + vacuum-graphviz: [ i686-linux, x86_64-darwin, x86_64-linux ] + vacuum-opengl: [ i686-linux, x86_64-darwin, x86_64-linux ] + vacuum-ubigraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + vacuum: [ i686-linux, x86_64-darwin, x86_64-linux ] + vampire: [ i686-linux, x86_64-darwin, x86_64-linux ] + var: [ i686-linux, x86_64-darwin, x86_64-linux ] + vaultaire-common: [ i686-linux, x86_64-darwin, x86_64-linux ] + vcache-trie: [ x86_64-darwin ] + vcache: [ x86_64-darwin ] + vcsgui: [ x86_64-darwin ] + Vec-Boolean: [ i686-linux, x86_64-darwin, x86_64-linux ] + Vec-OpenGLRaw: [ i686-linux, x86_64-darwin, x86_64-linux ] + Vec-Transform: [ i686-linux, x86_64-darwin, x86_64-linux ] + vect-opengl: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-bytestring: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-clock: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-functorlazy: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-instances-collections: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-random: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-read-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-space-opengl: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-static: [ i686-linux, x86_64-darwin, x86_64-linux ] + verilog: [ i686-linux, x86_64-darwin, x86_64-linux ] + versions: [ i686-linux, x86_64-darwin, x86_64-linux ] + vigilance: [ i686-linux, x86_64-darwin, x86_64-linux ] + vimus: [ i686-linux ] + vintage-basic: [ i686-linux, x86_64-darwin, x86_64-linux ] + vinyl-gl: [ i686-linux, x86_64-darwin, x86_64-linux ] + vinyl-json: [ i686-linux, x86_64-darwin, x86_64-linux ] + vinyl-vectors: [ i686-linux, x86_64-darwin, x86_64-linux ] + virthualenv: [ i686-linux, x86_64-darwin, x86_64-linux ] + vision: [ i686-linux, x86_64-darwin, x86_64-linux ] + visual-graphrewrite: [ i686-linux, x86_64-darwin, x86_64-linux ] + visual-prof: [ i686-linux, x86_64-darwin, x86_64-linux ] + vivid: [ i686-linux, x86_64-darwin, x86_64-linux ] + vk-aws-route53: [ i686-linux, x86_64-darwin, x86_64-linux ] + VKHS: [ i686-linux, x86_64-darwin, x86_64-linux ] + vowpal-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + voyeur: [ i686-linux, x86_64-linux ] + vrpn: [ x86_64-darwin ] + vte: [ i686-linux, x86_64-linux, x86_64-darwin ] + vtegtk3: [ i686-linux, x86_64-linux, x86_64-darwin ] + vty-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + vty-menu: [ i686-linux, x86_64-darwin, x86_64-linux ] + vty-ui-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + vulkan: [ i686-linux, x86_64-darwin, x86_64-linux ] + wacom-daemon: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-graceful: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-handler-devel: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-handler-snap: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-handler-webkit: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-hastache: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-lite: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-logger-prefork: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-cache-redis: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-cache: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-catch: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-crowd: [ i686-linux ] + wai-middleware-headers: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-hmac-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-preprocessor: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-route: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-static-caching: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-session-tokyocabinet: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-static-cache: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-thrift: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-throttler: [ i686-linux, x86_64-darwin, x86_64-linux ] + warp-dynamic: [ i686-linux, x86_64-darwin, x86_64-linux ] + warp-static: [ i686-linux, x86_64-darwin, x86_64-linux ] + warp-tls-uid: [ i686-linux, x86_64-darwin, x86_64-linux ] + WashNGo: [ i686-linux, x86_64-darwin, x86_64-linux ] + watchdog: [ i686-linux, x86_64-darwin, x86_64-linux ] + watcher: [ i686-linux, x86_64-darwin, x86_64-linux ] + watchit: [ i686-linux, x86_64-darwin, x86_64-linux ] + WaveFront: [ i686-linux, x86_64-darwin, x86_64-linux ] + wavesurfer: [ i686-linux, x86_64-darwin, x86_64-linux ] + weather-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + web-browser-in-haskell: [ i686-linux, x86_64-linux, x86_64-darwin ] + web-encodings: [ i686-linux, x86_64-darwin, x86_64-linux ] + web-mongrel2: [ i686-linux, x86_64-darwin, x86_64-linux ] + web-routes-quasi: [ i686-linux, x86_64-darwin, x86_64-linux ] + web-routes-transformers: [ i686-linux, x86_64-darwin, x86_64-linux ] + webapi: [ i686-linux, x86_64-darwin, x86_64-linux ] + webapp: [ i686-linux, x86_64-darwin, x86_64-linux ] + WebBits-Html: [ i686-linux, x86_64-darwin, x86_64-linux ] + WebBits-multiplate: [ i686-linux, x86_64-darwin, x86_64-linux ] + WebCont: [ i686-linux, x86_64-darwin, x86_64-linux ] + webdriver-snoy: [ i686-linux, x86_64-darwin, x86_64-linux ] + webify: [ i686-linux, x86_64-darwin, x86_64-linux ] + webkit-javascriptcore: [ i686-linux, x86_64-linux, x86_64-darwin ] + webkit: [ x86_64-darwin ] + webkitgtk3-javascriptcore: [ x86_64-darwin ] + webkitgtk3: [ x86_64-darwin ] + Webrexp: [ i686-linux, x86_64-darwin, x86_64-linux ] + webserver: [ i686-linux, x86_64-darwin, x86_64-linux ] + websnap: [ i686-linux, x86_64-linux, x86_64-darwin ] + webwire: [ i686-linux, x86_64-darwin, x86_64-linux ] + wedged: [ i686-linux, x86_64-darwin, x86_64-linux ] + weighted-regexp: [ i686-linux, x86_64-darwin, x86_64-linux ] + welshy: [ i686-linux, x86_64-darwin, x86_64-linux ] + wheb-mongo: [ i686-linux, x86_64-darwin, x86_64-linux ] + wheb-redis: [ i686-linux, x86_64-darwin, x86_64-linux ] + wheb-strapped: [ i686-linux, x86_64-darwin, x86_64-linux ] + Wheb: [ i686-linux, x86_64-darwin, x86_64-linux ] + whim: [ i686-linux, x86_64-darwin, x86_64-linux ] + whitespace: [ i686-linux, x86_64-darwin, x86_64-linux ] + WikimediaParser: [ i686-linux, x86_64-darwin, x86_64-linux ] + wikipedia4epub: [ i686-linux, x86_64-darwin, x86_64-linux ] + windowslive: [ i686-linux, x86_64-darwin, x86_64-linux ] + winerror: [ i686-linux, x86_64-darwin, x86_64-linux ] + winio: [ i686-linux, x86_64-darwin, x86_64-linux ] + Wired: [ x86_64-darwin ] + WL500gPControl: [ i686-linux, x86_64-darwin, x86_64-linux ] + wlc-hs: [ i686-linux, x86_64-linux, x86_64-darwin ] + WMSigner: [ i686-linux ] + wobsurv: [ i686-linux, x86_64-darwin, x86_64-linux ] + woffex: [ i686-linux, x86_64-darwin, x86_64-linux ] + wolf: [ i686-linux, x86_64-darwin, x86_64-linux ] + word24: [ i686-linux, x86_64-darwin, x86_64-linux ] + WordAlignment: [ i686-linux, x86_64-darwin, x86_64-linux ] + Wordlint: [ i686-linux, x86_64-darwin, x86_64-linux ] + WordNet-ghc74: [ i686-linux, x86_64-darwin, x86_64-linux ] + WordNet: [ i686-linux, x86_64-darwin, x86_64-linux ] + wordsearch: [ i686-linux, x86_64-darwin, x86_64-linux ] + workflow-osx: [ i686-linux, x86_64-darwin, x86_64-linux ] + wp-archivebot: [ i686-linux, x86_64-darwin, x86_64-linux ] + wraxml: [ i686-linux, x86_64-darwin, x86_64-linux ] + wright: [ i686-linux, x86_64-darwin, x86_64-linux ] + wtk-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + wtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + wumpus-basic: [ i686-linux, x86_64-darwin, x86_64-linux ] + wumpus-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + wumpus-drawing: [ i686-linux, x86_64-darwin, x86_64-linux ] + wumpus-microprint: [ i686-linux, x86_64-darwin, x86_64-linux ] + wumpus-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] + WURFL: [ i686-linux, x86_64-darwin, x86_64-linux ] + wx: [ x86_64-darwin ] + wxAsteroids: [ x86_64-darwin ] + wxc: [ x86_64-darwin ] + wxcore: [ x86_64-darwin ] + WXDiffCtrl: [ i686-linux, x86_64-darwin, x86_64-linux ] + wxFruit: [ i686-linux, x86_64-darwin, x86_64-linux ] + WxGeneric: [ x86_64-darwin ] + wxhnotepad: [ i686-linux, x86_64-darwin, x86_64-linux ] + wxturtle: [ i686-linux, x86_64-darwin, x86_64-linux ] + wyvern: [ i686-linux, x86_64-darwin, x86_64-linux ] + x-dsp: [ i686-linux, x86_64-darwin, x86_64-linux ] + X11-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + X11-rm: [ i686-linux, x86_64-darwin, x86_64-linux ] + X11-xdamage: [ i686-linux, x86_64-darwin, x86_64-linux ] + X11-xfixes: [ i686-linux, x86_64-darwin, x86_64-linux ] + x11-xinput: [ i686-linux, x86_64-darwin, x86_64-linux ] + xattr: [ x86_64-darwin ] + xbattbar: [ x86_64-darwin ] + xchat-plugin: [ x86_64-darwin, x86_64-linux ] + xdot: [ x86_64-darwin ] + Xec: [ i686-linux, x86_64-darwin, x86_64-linux ] + xfconf: [ i686-linux, x86_64-darwin, x86_64-linux ] + xhaskell-library: [ i686-linux, x86_64-darwin, x86_64-linux ] + xhb-ewmh: [ i686-linux, x86_64-darwin, x86_64-linux ] + xine: [ i686-linux, x86_64-darwin, x86_64-linux ] + xing-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + xkbcommon: [ i686-linux, x86_64-darwin, x86_64-linux ] + xkcd: [ i686-linux, x86_64-darwin, x86_64-linux ] + xlsx-templater: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-catalog: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-enumerator-combinators: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-pipe: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-prettify: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-push: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-query-xml-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-query-xml-types: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml2json: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml2x: [ i686-linux, x86_64-darwin, x86_64-linux ] + XmlHtmlWriter: [ i686-linux, x86_64-darwin, x86_64-linux ] + xmltv: [ i686-linux, x86_64-darwin, x86_64-linux ] + xmms2-client-glib: [ i686-linux, x86_64-darwin, x86_64-linux ] + xmms2-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + XMMS: [ i686-linux, x86_64-darwin, x86_64-linux ] + xmobar: [ x86_64-darwin ] + xmonad-bluetilebranch: [ i686-linux, x86_64-darwin, x86_64-linux ] + xmonad-contrib-bluetilebranch: [ i686-linux, x86_64-darwin, x86_64-linux ] + xmonad-eval: [ i686-linux, x86_64-darwin, x86_64-linux ] + xmonad-screenshot: [ x86_64-darwin ] + xmonad-utils: [ x86_64-darwin ] + xmpipe: [ i686-linux, x86_64-darwin, x86_64-linux ] + XMPP: [ i686-linux, x86_64-darwin, x86_64-linux ] + xosd: [ x86_64-darwin ] + xournal-convert: [ i686-linux, x86_64-darwin, x86_64-linux ] + xournal-render: [ i686-linux, x86_64-darwin, x86_64-linux ] + xsact: [ i686-linux, x86_64-darwin, x86_64-linux ] + XSaiga: [ i686-linux, x86_64-darwin, x86_64-linux ] + xslt: [ i686-linux, x86_64-darwin, x86_64-linux ] + xtc: [ x86_64-darwin ] + y0l0bot: [ i686-linux, x86_64-darwin, x86_64-linux ] + Yablog: [ i686-linux, x86_64-darwin, x86_64-linux ] + YACPong: [ i686-linux, x86_64-linux, x86_64-darwin ] + yahoo-web-search: [ i686-linux, x86_64-darwin, x86_64-linux ] + yajl-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + yajl: [ i686-linux, x86_64-darwin, x86_64-linux ] + yaml-rpc-scotty: [ i686-linux, x86_64-darwin, x86_64-linux ] + yaml-rpc-snap: [ i686-linux, x86_64-darwin, x86_64-linux ] + yaml-rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] + yaml-union: [ i686-linux, x86_64-darwin, x86_64-linux ] + yaml2owl: [ i686-linux, x86_64-darwin, x86_64-linux ] + YamlReference: [ x86_64-darwin ] + yampa-canvas: [ i686-linux ] + yampa-glfw: [ i686-linux, x86_64-darwin, x86_64-linux ] + yampa-glut: [ i686-linux, x86_64-darwin, x86_64-linux ] + yampa2048: [ i686-linux, x86_64-darwin ] + Yampa: [ i686-linux ] + YampaSynth: [ i686-linux ] + yaop: [ i686-linux, x86_64-darwin, x86_64-linux ] + yarr-image-io: [ i686-linux, x86_64-darwin, x86_64-linux ] + yarr: [ i686-linux, x86_64-darwin, x86_64-linux ] + yate: [ i686-linux, x86_64-darwin, x86_64-linux ] + yavie: [ i686-linux, x86_64-darwin, x86_64-linux ] + ycextra: [ i686-linux, x86_64-darwin, x86_64-linux ] + yeshql: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-angular-ui: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-auth-ldap: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-auth-pam: [ i686-linux, x86_64-linux, x86_64-darwin ] + yesod-auth-smbclient: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-comments: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-content-pdf: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-continuations: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-datatables: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-goodies: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-links: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-media-simple: [ x86_64-darwin ] + yesod-paginate: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-pagination: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-pure: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-purescript: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-raml-bin: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-raml-mock: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-routes-typescript: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-rst: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-s3: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-session-redis: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-tableview: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-test-json: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-tls: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-vend: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-worker: [ i686-linux, x86_64-darwin, x86_64-linux ] + yet-another-logger: [ i686-linux ] + YFrob: [ i686-linux, x86_64-darwin, x86_64-linux ] + yhccore: [ i686-linux, x86_64-darwin, x86_64-linux ] + yi-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] + yi-fuzzy-open: [ x86_64-darwin ] + yi-monokai: [ x86_64-darwin ] + yi-rope: [ x86_64-darwin ] + yi-snippet: [ x86_64-darwin ] + yi-solarized: [ x86_64-darwin ] + yi-spolsky: [ x86_64-darwin ] + yi: [ x86_64-darwin ] + yices: [ i686-linux, x86_64-darwin, x86_64-linux ] + yjftp: [ i686-linux, x86_64-darwin, x86_64-linux ] + Yogurt-Standalone: [ i686-linux, x86_64-darwin, x86_64-linux ] + Yogurt: [ i686-linux, x86_64-darwin, x86_64-linux ] + yoko: [ i686-linux, x86_64-darwin, x86_64-linux ] + york-lava: [ i686-linux, x86_64-darwin, x86_64-linux ] + yql: [ i686-linux, x86_64-darwin, x86_64-linux ] + yuiGrid: [ i686-linux, x86_64-darwin, x86_64-linux ] + yuuko: [ i686-linux, x86_64-darwin, x86_64-linux ] + yxdb-utils: [ i686-linux ] + z3: [ x86_64-darwin ] + zampolit: [ i686-linux, x86_64-darwin, x86_64-linux ] + zasni-gerna: [ i686-linux, x86_64-darwin, x86_64-linux ] + zendesk-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + zeno: [ i686-linux, x86_64-darwin, x86_64-linux ] + zerobin: [ i686-linux, x86_64-darwin, x86_64-linux ] + zeromq-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + zeromq3-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + zeromq3-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + zeroth: [ i686-linux, x86_64-darwin, x86_64-linux ] + ZFS: [ i686-linux, x86_64-darwin, x86_64-linux ] + zip: [ i686-linux, x86_64-darwin, x86_64-linux ] + zipedit: [ i686-linux, x86_64-darwin, x86_64-linux ] + ZMachine: [ i686-linux, x86_64-darwin, x86_64-linux ] + zmcat: [ i686-linux, x86_64-darwin, x86_64-linux ] + zmqat: [ i686-linux, x86_64-darwin, x86_64-linux ] + zoneinfo: [ i686-linux, x86_64-darwin, x86_64-linux ] + zoom-cache-pcm: [ i686-linux, x86_64-darwin, x86_64-linux ] + zoom-cache-sndfile: [ i686-linux, x86_64-darwin, x86_64-linux ] + zoom-cache: [ i686-linux, x86_64-darwin, x86_64-linux ] + zoom: [ i686-linux, x86_64-darwin, x86_64-linux ] + zot: [ i686-linux, x86_64-darwin, x86_64-linux ] + zsh-battery: [ i686-linux, x86_64-darwin, x86_64-linux ] + ztail: [ i686-linux, x86_64-darwin, x86_64-linux ] + Zwaluw: [ i686-linux, x86_64-darwin, x86_64-linux ] diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 2486d91b95a..4288e9417f7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -333,6 +334,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = dontDistribute super."FontyFruity"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -620,6 +622,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -804,6 +807,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -931,6 +935,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_5_1"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = dontDistribute super."Spock-digestive"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = dontDistribute super."Spock-worker"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1256,6 +1261,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1263,6 +1269,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1274,10 +1281,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1286,6 +1295,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1297,6 +1307,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1358,6 +1369,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1389,6 +1401,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1591,6 +1604,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1773,6 +1787,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1783,6 +1798,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1953,6 +1970,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1971,6 +1989,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2047,6 +2066,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2056,6 +2077,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2189,6 +2211,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2260,6 +2283,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2278,6 +2302,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2350,6 +2375,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_6"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2403,8 +2429,11 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2454,6 +2483,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2583,6 +2613,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2632,6 +2663,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2807,6 +2839,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3436,6 +3469,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_0_3"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3532,6 +3566,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_3"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3789,6 +3824,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-mysql" = doDistribute super."groundhog-mysql_0_7_0"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0"; @@ -3962,6 +3998,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4757,6 +4794,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4933,10 +4971,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4977,6 +5017,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5037,6 +5078,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -5045,6 +5087,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5101,6 +5144,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5162,6 +5206,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5177,6 +5222,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5389,6 +5436,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5734,6 +5782,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5764,6 +5813,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5832,6 +5882,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5928,6 +5979,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6175,6 +6227,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6328,6 +6381,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6407,6 +6461,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6722,6 +6777,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6778,6 +6834,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6806,6 +6863,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6827,6 +6885,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6965,6 +7024,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7018,6 +7078,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7112,6 +7173,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7171,6 +7233,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7214,6 +7277,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7367,6 +7431,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7396,8 +7461,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7568,6 +7636,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_4"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7957,6 +8026,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -8014,6 +8084,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8034,6 +8105,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_0_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8041,6 +8113,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1"; @@ -8223,12 +8296,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8293,6 +8368,7 @@ self: super: { "torrent" = dontDistribute super."torrent"; "tostring" = doDistribute super."tostring_0_2_1"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8383,6 +8459,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8502,6 +8579,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8682,6 +8760,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8853,6 +8932,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8938,6 +9018,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; @@ -9035,6 +9116,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_1"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -9071,6 +9153,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_0"; "yesod-form" = doDistribute super."yesod-form_1_4_3"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9163,6 +9246,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 9ec9fd73f46..73a65c8b5a7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -333,6 +334,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = dontDistribute super."FontyFruity"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -620,6 +622,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -804,6 +807,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -931,6 +935,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_5_1"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = dontDistribute super."Spock-digestive"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = dontDistribute super."Spock-worker"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1256,6 +1261,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1263,6 +1269,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1274,10 +1281,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1286,6 +1295,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1297,6 +1307,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1358,6 +1369,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1389,6 +1401,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1591,6 +1604,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1773,6 +1787,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1783,6 +1798,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1953,6 +1970,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1971,6 +1989,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2047,6 +2066,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2056,6 +2077,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2189,6 +2211,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2260,6 +2283,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2278,6 +2302,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2350,6 +2375,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_6"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2403,8 +2429,11 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2454,6 +2483,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2583,6 +2613,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2632,6 +2663,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2807,6 +2839,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3436,6 +3469,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_0_3"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3532,6 +3566,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_3"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3789,6 +3824,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-mysql" = doDistribute super."groundhog-mysql_0_7_0"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0"; @@ -3962,6 +3998,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4757,6 +4794,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4933,10 +4971,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4977,6 +5017,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5037,6 +5078,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -5045,6 +5087,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5101,6 +5144,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5162,6 +5206,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5177,6 +5222,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5389,6 +5436,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5734,6 +5782,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5764,6 +5813,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5832,6 +5882,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5928,6 +5979,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6175,6 +6227,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6328,6 +6381,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6407,6 +6461,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6722,6 +6777,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6778,6 +6834,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6806,6 +6863,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6827,6 +6885,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6965,6 +7024,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7018,6 +7078,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7112,6 +7173,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7171,6 +7233,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7214,6 +7277,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7367,6 +7431,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7396,8 +7461,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7568,6 +7636,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_4"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7957,6 +8026,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -8014,6 +8084,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8034,6 +8105,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_0_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8041,6 +8113,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1"; @@ -8223,12 +8296,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8293,6 +8368,7 @@ self: super: { "torrent" = dontDistribute super."torrent"; "tostring" = doDistribute super."tostring_0_2_1"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8383,6 +8459,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8502,6 +8579,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8682,6 +8760,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8853,6 +8932,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8938,6 +9018,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; @@ -9035,6 +9116,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_1"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -9071,6 +9153,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_0"; "yesod-form" = doDistribute super."yesod-form_1_4_3"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9163,6 +9246,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 6f09f2d2418..6e6eb1960fb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -333,6 +334,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = dontDistribute super."FontyFruity"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -620,6 +622,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -804,6 +807,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -931,6 +935,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_5_1"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = dontDistribute super."Spock-digestive"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = dontDistribute super."Spock-worker"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1256,6 +1261,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1263,6 +1269,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1274,10 +1281,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1286,6 +1295,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1297,6 +1307,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1358,6 +1369,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1389,6 +1401,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1591,6 +1604,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1773,6 +1787,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1783,6 +1798,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1953,6 +1970,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1971,6 +1989,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2047,6 +2066,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2056,6 +2077,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2189,6 +2211,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2260,6 +2283,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2278,6 +2302,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2350,6 +2375,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_6"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2403,8 +2429,11 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2454,6 +2483,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2583,6 +2613,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2632,6 +2663,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2807,6 +2839,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3436,6 +3469,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_0_3"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3532,6 +3566,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_3"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3789,6 +3824,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-mysql" = doDistribute super."groundhog-mysql_0_7_0"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0"; @@ -3962,6 +3998,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4757,6 +4794,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4933,10 +4971,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4977,6 +5017,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5037,6 +5078,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -5045,6 +5087,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5101,6 +5144,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5162,6 +5206,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5177,6 +5222,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5389,6 +5436,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5734,6 +5782,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5764,6 +5813,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5832,6 +5882,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5928,6 +5979,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6175,6 +6227,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6328,6 +6381,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6407,6 +6461,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6722,6 +6777,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6778,6 +6834,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6806,6 +6863,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6827,6 +6885,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6965,6 +7024,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7018,6 +7078,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7112,6 +7173,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7171,6 +7233,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7214,6 +7277,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7367,6 +7431,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7396,8 +7461,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7568,6 +7636,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_4"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7957,6 +8026,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -8014,6 +8084,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8034,6 +8105,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_0_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8041,6 +8113,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1"; @@ -8223,12 +8296,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8293,6 +8368,7 @@ self: super: { "torrent" = dontDistribute super."torrent"; "tostring" = doDistribute super."tostring_0_2_1"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8383,6 +8459,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8502,6 +8579,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8682,6 +8760,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8853,6 +8932,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8938,6 +9018,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; @@ -9035,6 +9116,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_1"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -9071,6 +9153,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_0"; "yesod-form" = doDistribute super."yesod-form_1_4_3"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9163,6 +9246,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index a24c6905c07..dd2c73dd9e7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -333,6 +334,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = dontDistribute super."FontyFruity"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -620,6 +622,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -804,6 +807,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -931,6 +935,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_5_1"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = dontDistribute super."Spock-digestive"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = dontDistribute super."Spock-worker"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1256,6 +1261,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1263,6 +1269,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1274,10 +1281,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1286,6 +1295,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1297,6 +1307,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1358,6 +1369,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1389,6 +1401,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1591,6 +1604,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1773,6 +1787,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1783,6 +1798,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1953,6 +1970,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1971,6 +1989,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2047,6 +2066,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2056,6 +2077,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2189,6 +2211,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2260,6 +2283,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2278,6 +2302,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2350,6 +2375,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_6"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2403,8 +2429,11 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2454,6 +2483,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2583,6 +2613,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2632,6 +2663,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2807,6 +2839,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3436,6 +3469,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_0_3"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3532,6 +3566,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_3"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3789,6 +3824,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-mysql" = doDistribute super."groundhog-mysql_0_7_0"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0"; @@ -3962,6 +3998,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4757,6 +4794,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4933,10 +4971,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4977,6 +5017,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5037,6 +5078,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -5045,6 +5087,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5101,6 +5144,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5162,6 +5206,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5177,6 +5222,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5389,6 +5436,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5734,6 +5782,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5764,6 +5813,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5832,6 +5882,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5928,6 +5979,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6175,6 +6227,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6328,6 +6381,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6407,6 +6461,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6722,6 +6777,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6778,6 +6834,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6806,6 +6863,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6827,6 +6885,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6965,6 +7024,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7018,6 +7078,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7112,6 +7173,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7171,6 +7233,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7214,6 +7277,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7367,6 +7431,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7396,8 +7461,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7568,6 +7636,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_4"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7957,6 +8026,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -8014,6 +8084,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8034,6 +8105,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_0_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8041,6 +8113,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1"; @@ -8223,12 +8296,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8293,6 +8368,7 @@ self: super: { "torrent" = dontDistribute super."torrent"; "tostring" = doDistribute super."tostring_0_2_1"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8383,6 +8459,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8502,6 +8579,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8682,6 +8760,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8853,6 +8932,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8938,6 +9018,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; @@ -9035,6 +9116,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_1"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -9071,6 +9153,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_0"; "yesod-form" = doDistribute super."yesod-form_1_4_3"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9163,6 +9246,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index f979f700e91..40c40c0771a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -333,6 +334,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = dontDistribute super."FontyFruity"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -620,6 +622,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -804,6 +807,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -931,6 +935,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_5_1"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = dontDistribute super."Spock-digestive"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = dontDistribute super."Spock-worker"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1256,6 +1261,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1263,6 +1269,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1274,10 +1281,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1286,6 +1295,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1297,6 +1307,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1358,6 +1369,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1389,6 +1401,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1591,6 +1604,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1773,6 +1787,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1783,6 +1798,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1953,6 +1970,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1971,6 +1989,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2047,6 +2066,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2056,6 +2077,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2189,6 +2211,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2260,6 +2283,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2278,6 +2302,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_1"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2350,6 +2375,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_6"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2403,8 +2429,11 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2454,6 +2483,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2583,6 +2613,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2631,6 +2662,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2806,6 +2838,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3435,6 +3468,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_0_4"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3531,6 +3565,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_3"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3788,6 +3823,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_1"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; @@ -3959,6 +3995,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4754,6 +4791,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4930,10 +4968,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4974,6 +5014,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5034,6 +5075,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -5042,6 +5084,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5098,6 +5141,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5159,6 +5203,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5174,6 +5219,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5386,6 +5433,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5731,6 +5779,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5761,6 +5810,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5829,6 +5879,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5925,6 +5976,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6172,6 +6224,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6325,6 +6378,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6404,6 +6458,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6719,6 +6774,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6775,6 +6831,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6803,6 +6860,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6824,6 +6882,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6962,6 +7021,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7015,6 +7075,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7109,6 +7170,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7167,6 +7229,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7210,6 +7273,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7363,6 +7427,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7392,8 +7457,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7564,6 +7632,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7953,6 +8022,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -8010,6 +8080,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8030,6 +8101,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_0_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8037,6 +8109,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1"; @@ -8219,12 +8292,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8289,6 +8364,7 @@ self: super: { "torrent" = dontDistribute super."torrent"; "tostring" = doDistribute super."tostring_0_2_1"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8379,6 +8455,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8498,6 +8575,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8678,6 +8756,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8849,6 +8928,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8934,6 +9014,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; @@ -9031,6 +9112,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -9067,6 +9149,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_0"; "yesod-form" = doDistribute super."yesod-form_1_4_3"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9159,6 +9242,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 6ee51f7c699..5ba1a29c13b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -333,6 +334,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = dontDistribute super."FontyFruity"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -620,6 +622,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -804,6 +807,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -931,6 +935,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_5_1"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = dontDistribute super."Spock-digestive"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = dontDistribute super."Spock-worker"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1256,6 +1261,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1263,6 +1269,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1274,10 +1281,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1286,6 +1295,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1297,6 +1307,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1358,6 +1369,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1389,6 +1401,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1591,6 +1604,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1773,6 +1787,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1783,6 +1798,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1953,6 +1970,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1971,6 +1989,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2047,6 +2066,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2056,6 +2077,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2189,6 +2211,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2260,6 +2283,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2278,6 +2302,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_1"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2350,6 +2375,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_6"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2403,8 +2429,11 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2454,6 +2483,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2583,6 +2613,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2631,6 +2662,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2806,6 +2838,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3435,6 +3468,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_0_4"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3531,6 +3565,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_3"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3788,6 +3823,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_1"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; @@ -3959,6 +3995,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4754,6 +4791,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4930,10 +4968,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4974,6 +5014,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5034,6 +5075,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -5042,6 +5084,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5098,6 +5141,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5159,6 +5203,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5174,6 +5219,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5386,6 +5433,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5731,6 +5779,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5761,6 +5810,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5829,6 +5879,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5925,6 +5976,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6172,6 +6224,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6325,6 +6378,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6404,6 +6458,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6719,6 +6774,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6775,6 +6831,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6803,6 +6860,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6824,6 +6882,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6962,6 +7021,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7015,6 +7075,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7109,6 +7170,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7167,6 +7229,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7210,6 +7273,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7363,6 +7427,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7392,8 +7457,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7564,6 +7632,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7953,6 +8022,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -8010,6 +8080,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8030,6 +8101,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_0_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8037,6 +8109,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1"; @@ -8219,12 +8292,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8289,6 +8364,7 @@ self: super: { "torrent" = dontDistribute super."torrent"; "tostring" = doDistribute super."tostring_0_2_1"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8379,6 +8455,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8498,6 +8575,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8678,6 +8756,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8849,6 +8928,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8934,6 +9014,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; @@ -9031,6 +9112,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -9067,6 +9149,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_0"; "yesod-form" = doDistribute super."yesod-form_1_4_3"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9159,6 +9242,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 8fe1d730c80..893b3132463 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -333,6 +334,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = dontDistribute super."FontyFruity"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -620,6 +622,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -803,6 +806,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -930,6 +934,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_5_2"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = dontDistribute super."Spock-digestive"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = dontDistribute super."Spock-worker"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1255,6 +1260,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1262,6 +1268,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1273,10 +1280,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1285,6 +1294,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1296,6 +1306,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1357,6 +1368,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1388,6 +1400,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1590,6 +1603,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1772,6 +1786,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1782,6 +1797,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1952,6 +1969,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1970,6 +1988,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2046,6 +2065,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2055,6 +2076,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2188,6 +2210,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2259,6 +2282,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2277,6 +2301,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_1"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2349,6 +2374,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_6"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2402,8 +2428,11 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2453,6 +2482,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2582,6 +2612,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2630,6 +2661,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2805,6 +2837,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3434,6 +3467,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_0_4"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3530,6 +3564,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3787,6 +3822,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_1"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; @@ -3958,6 +3994,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4752,6 +4789,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4928,10 +4966,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4972,6 +5012,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5032,6 +5073,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -5040,6 +5082,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5096,6 +5139,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5157,6 +5201,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5172,6 +5217,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5384,6 +5431,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5729,6 +5777,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5759,6 +5808,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5827,6 +5877,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5923,6 +5974,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6170,6 +6222,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6323,6 +6376,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6402,6 +6456,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6717,6 +6772,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6773,6 +6829,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6801,6 +6858,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6822,6 +6880,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6960,6 +7019,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7013,6 +7073,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7106,6 +7167,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7164,6 +7226,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7207,6 +7270,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7360,6 +7424,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7389,8 +7454,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7561,6 +7629,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7950,6 +8019,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -8007,6 +8077,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8027,6 +8098,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_0_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8034,6 +8106,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1"; @@ -8216,12 +8289,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8286,6 +8361,7 @@ self: super: { "torrent" = dontDistribute super."torrent"; "tostring" = doDistribute super."tostring_0_2_1"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8376,6 +8452,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8495,6 +8572,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8675,6 +8753,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8846,6 +8925,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8931,6 +9011,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; @@ -9027,6 +9108,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_3"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -9062,6 +9144,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_0"; "yesod-form" = doDistribute super."yesod-form_1_4_3_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9153,6 +9236,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 48f29fddd71..086a8f96caa 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -333,6 +334,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = dontDistribute super."FontyFruity"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -620,6 +622,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -803,6 +806,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -930,6 +934,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_5_2"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = dontDistribute super."Spock-digestive"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = dontDistribute super."Spock-worker"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1255,6 +1260,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1262,6 +1268,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1273,10 +1280,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1285,6 +1294,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1296,6 +1306,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1357,6 +1368,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1388,6 +1400,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1590,6 +1603,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1772,6 +1786,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1782,6 +1797,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1952,6 +1969,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1970,6 +1988,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2046,6 +2065,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2055,6 +2076,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2188,6 +2210,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2259,6 +2282,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2277,6 +2301,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_1"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2349,6 +2374,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_6"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2402,8 +2428,11 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2453,6 +2482,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2582,6 +2612,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2630,6 +2661,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2805,6 +2837,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3434,6 +3467,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_0_4"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3530,6 +3564,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3787,6 +3822,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_1"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; @@ -3958,6 +3994,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4752,6 +4789,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4928,10 +4966,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4972,6 +5012,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5032,6 +5073,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -5040,6 +5082,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5096,6 +5139,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5157,6 +5201,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5172,6 +5217,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5384,6 +5431,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5729,6 +5777,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5759,6 +5808,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5827,6 +5877,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5923,6 +5974,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6170,6 +6222,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6323,6 +6376,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6402,6 +6456,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6717,6 +6772,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6773,6 +6829,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6801,6 +6858,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6822,6 +6880,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6960,6 +7019,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7013,6 +7073,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7106,6 +7167,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7164,6 +7226,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7207,6 +7270,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7360,6 +7424,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7389,8 +7454,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7561,6 +7629,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7950,6 +8019,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -8007,6 +8077,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8027,6 +8098,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_0_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8034,6 +8106,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1"; @@ -8216,12 +8289,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8286,6 +8361,7 @@ self: super: { "torrent" = dontDistribute super."torrent"; "tostring" = doDistribute super."tostring_0_2_1"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8376,6 +8452,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8495,6 +8572,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8675,6 +8753,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8846,6 +8925,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8931,6 +9011,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; @@ -9027,6 +9108,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_3"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -9062,6 +9144,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_0"; "yesod-form" = doDistribute super."yesod-form_1_4_3_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9153,6 +9236,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index 49ec22af7c7..aa31bb4fc7a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -332,6 +333,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -617,6 +619,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -799,6 +802,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -927,6 +931,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_6_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1251,6 +1257,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1258,6 +1265,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1269,10 +1277,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1281,6 +1291,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1292,6 +1303,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1353,6 +1365,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1384,6 +1397,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1586,6 +1600,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1767,6 +1782,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1777,6 +1793,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1945,6 +1963,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1963,6 +1982,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2039,6 +2059,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2048,6 +2070,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2181,6 +2204,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2252,6 +2276,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2270,6 +2295,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_2"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2342,6 +2368,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_6"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2394,8 +2421,11 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2445,6 +2475,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2574,6 +2605,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2622,6 +2654,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2797,6 +2830,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3425,6 +3459,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_0_4"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3521,6 +3556,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3777,6 +3813,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_1"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; @@ -3949,6 +3986,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4273,6 +4311,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4741,6 +4780,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4917,10 +4957,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4961,6 +5003,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5021,6 +5064,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -5029,6 +5073,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5085,6 +5130,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5146,6 +5192,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5161,6 +5208,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5373,6 +5422,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5718,6 +5768,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5748,6 +5799,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5816,6 +5868,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5912,6 +5965,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6159,6 +6213,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6312,6 +6367,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6391,6 +6447,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6706,6 +6763,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6762,6 +6820,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6790,6 +6849,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6811,6 +6871,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6949,6 +7010,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7002,6 +7064,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7094,6 +7157,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7152,6 +7216,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7195,6 +7260,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7348,6 +7414,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7377,8 +7444,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7549,6 +7619,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7937,6 +8008,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7994,6 +8066,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8014,6 +8087,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_0_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8021,6 +8095,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1"; @@ -8203,12 +8278,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8273,6 +8350,7 @@ self: super: { "torrent" = dontDistribute super."torrent"; "tostring" = doDistribute super."tostring_0_2_1"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8363,6 +8441,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8481,6 +8560,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8661,6 +8741,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8832,6 +8913,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8917,6 +8999,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; @@ -9013,6 +9096,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_3"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -9048,6 +9132,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_0"; "yesod-form" = doDistribute super."yesod-form_1_4_3_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9139,6 +9224,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index 3d4a16f325a..51578a50705 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -332,6 +333,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -617,6 +619,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -799,6 +802,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -927,6 +931,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_6_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1251,6 +1257,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1258,6 +1265,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1269,10 +1277,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1281,6 +1291,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1292,6 +1303,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1353,6 +1365,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1384,6 +1397,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1586,6 +1600,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1767,6 +1782,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1777,6 +1793,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1944,6 +1962,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1962,6 +1981,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2038,6 +2058,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2047,6 +2069,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2180,6 +2203,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2251,6 +2275,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2269,6 +2294,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2341,6 +2367,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_6"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2392,8 +2419,11 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2443,6 +2473,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2572,6 +2603,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2620,6 +2652,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2794,6 +2827,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3422,6 +3456,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3518,6 +3553,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3774,6 +3810,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_1"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; @@ -3946,6 +3983,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4269,6 +4307,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4735,6 +4774,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4911,10 +4951,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4955,6 +4997,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5015,6 +5058,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -5023,6 +5067,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5079,6 +5124,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5140,6 +5186,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5155,6 +5202,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5367,6 +5416,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5712,6 +5762,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5742,6 +5793,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5809,6 +5861,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5905,6 +5958,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6152,6 +6206,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6305,6 +6360,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6384,6 +6440,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6699,6 +6756,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6755,6 +6813,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6783,6 +6842,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6804,6 +6864,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6942,6 +7003,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6995,6 +7057,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7087,6 +7150,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7145,6 +7209,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7188,6 +7253,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7341,6 +7407,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7370,8 +7437,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7541,6 +7611,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7928,6 +7999,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7985,6 +8057,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8005,6 +8078,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_0_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8012,6 +8086,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1"; @@ -8191,12 +8266,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8261,6 +8338,7 @@ self: super: { "torrent" = dontDistribute super."torrent"; "tostring" = doDistribute super."tostring_0_2_1"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8351,6 +8429,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8469,6 +8548,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8648,6 +8728,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8819,6 +8900,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8904,6 +8986,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; @@ -9000,6 +9083,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_3"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -9035,6 +9119,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_0"; "yesod-form" = doDistribute super."yesod-form_1_4_3_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9126,6 +9211,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 67857ee4b1c..3a67b223ac7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -332,6 +333,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -616,6 +618,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -798,6 +801,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -926,6 +930,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1250,6 +1256,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1257,6 +1264,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1268,10 +1276,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1280,6 +1290,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1291,6 +1302,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1352,6 +1364,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1383,6 +1396,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1585,6 +1599,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1766,6 +1781,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1776,6 +1792,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1942,6 +1960,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1960,6 +1979,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2036,6 +2056,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2044,6 +2066,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2177,6 +2200,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2248,6 +2272,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2266,6 +2291,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2338,6 +2364,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_9"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2388,8 +2415,11 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2439,6 +2469,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2568,6 +2599,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2616,6 +2648,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2790,6 +2823,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3414,6 +3448,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3509,6 +3544,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3765,6 +3801,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_2"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -3936,6 +3973,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4258,6 +4296,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4724,6 +4763,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4895,10 +4935,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4939,6 +4981,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4999,6 +5042,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -5007,6 +5051,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5063,6 +5108,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5124,6 +5170,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5139,6 +5186,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5351,6 +5400,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5695,6 +5745,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5725,6 +5776,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5792,6 +5844,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5888,6 +5941,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6133,6 +6187,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6285,6 +6340,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6364,6 +6420,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6679,6 +6736,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6735,6 +6793,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6763,6 +6822,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6784,6 +6844,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6921,6 +6982,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6974,6 +7036,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7066,6 +7129,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7124,6 +7188,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7167,6 +7232,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7320,6 +7386,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7348,8 +7415,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7518,6 +7588,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7905,6 +7976,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7961,6 +8033,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7981,6 +8054,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7988,6 +8062,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_1"; @@ -8166,12 +8241,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8235,6 +8312,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8324,6 +8402,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8442,6 +8521,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8620,6 +8700,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8791,6 +8872,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8875,6 +8957,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8970,6 +9053,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -9005,6 +9089,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9096,6 +9181,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index c27a46a88c8..d2edd343231 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -332,6 +333,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -616,6 +618,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -798,6 +801,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -926,6 +930,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1250,6 +1256,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1257,6 +1264,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1268,10 +1276,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1280,6 +1290,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1291,6 +1302,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1352,6 +1364,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1383,6 +1396,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1585,6 +1599,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1766,6 +1781,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1776,6 +1792,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1942,6 +1960,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1960,6 +1979,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2036,6 +2056,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2044,6 +2066,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2177,6 +2200,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2248,6 +2272,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2266,6 +2291,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2338,6 +2364,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_9"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2388,8 +2415,11 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2439,6 +2469,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2568,6 +2599,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2616,6 +2648,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2790,6 +2823,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3413,6 +3447,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3508,6 +3543,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3764,6 +3800,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_2"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -3935,6 +3972,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4257,6 +4295,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4723,6 +4762,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4893,10 +4933,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4937,6 +4979,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4996,6 +5039,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -5004,6 +5048,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5060,6 +5105,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5121,6 +5167,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5136,6 +5183,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5347,6 +5396,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5691,6 +5741,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5721,6 +5772,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5788,6 +5840,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5884,6 +5937,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6129,6 +6183,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6281,6 +6336,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6360,6 +6416,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6675,6 +6732,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6731,6 +6789,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6759,6 +6818,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6780,6 +6840,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6917,6 +6978,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6970,6 +7032,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7062,6 +7125,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7120,6 +7184,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7163,6 +7228,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7316,6 +7382,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7344,8 +7411,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7514,6 +7584,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7901,6 +7972,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7957,6 +8029,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7977,6 +8050,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7984,6 +8058,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_1"; @@ -8162,12 +8237,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8231,6 +8308,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8320,6 +8398,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8438,6 +8517,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8616,6 +8696,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8787,6 +8868,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8871,6 +8953,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8966,6 +9049,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -9001,6 +9085,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9092,6 +9177,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index a5a7d7fa360..52b17245d47 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -332,6 +333,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -616,6 +618,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -798,6 +801,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -926,6 +930,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1250,6 +1256,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1257,6 +1264,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1268,10 +1276,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1280,6 +1290,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1291,6 +1302,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1352,6 +1364,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1383,6 +1396,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1585,6 +1599,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1766,6 +1781,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1776,6 +1792,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1942,6 +1960,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1960,6 +1979,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2036,6 +2056,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2044,6 +2066,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2177,6 +2200,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2248,6 +2272,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2266,6 +2291,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2338,6 +2364,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_9"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2388,8 +2415,11 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2439,6 +2469,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2568,6 +2599,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2616,6 +2648,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2790,6 +2823,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3413,6 +3447,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3508,6 +3543,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3764,6 +3800,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_2"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -3935,6 +3972,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4256,6 +4294,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4722,6 +4761,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4892,10 +4932,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4936,6 +4978,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4995,6 +5038,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -5003,6 +5047,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5059,6 +5104,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5120,6 +5166,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5135,6 +5182,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5346,6 +5395,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5690,6 +5740,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5720,6 +5771,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5787,6 +5839,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5883,6 +5936,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6128,6 +6182,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6280,6 +6335,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6359,6 +6415,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6674,6 +6731,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6730,6 +6788,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6758,6 +6817,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6779,6 +6839,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6916,6 +6977,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6969,6 +7031,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7061,6 +7124,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7119,6 +7183,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7162,6 +7227,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7315,6 +7381,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7343,8 +7410,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7513,6 +7583,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7900,6 +7971,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7956,6 +8028,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7976,6 +8049,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7983,6 +8057,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_1"; @@ -8160,12 +8235,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8229,6 +8306,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8318,6 +8396,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8436,6 +8515,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8614,6 +8694,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8785,6 +8866,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8869,6 +8951,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8964,6 +9047,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8999,6 +9083,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9090,6 +9175,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 66812de0443..f52251d185c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -332,6 +333,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -616,6 +618,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -798,6 +801,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -926,6 +930,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1250,6 +1256,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1257,6 +1264,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1268,10 +1276,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1280,6 +1290,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1291,6 +1302,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1352,6 +1364,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1383,6 +1396,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1585,6 +1599,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1766,6 +1781,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1776,6 +1792,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1942,6 +1960,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1960,6 +1979,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2036,6 +2056,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2044,6 +2066,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2177,6 +2200,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2248,6 +2272,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2266,6 +2291,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2338,6 +2364,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_9"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2388,8 +2415,11 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2439,6 +2469,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2568,6 +2599,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2616,6 +2648,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2790,6 +2823,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3413,6 +3447,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3508,6 +3543,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3763,6 +3799,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -3934,6 +3971,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4255,6 +4293,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4721,6 +4760,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4891,10 +4931,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4935,6 +4977,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4994,6 +5037,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -5002,6 +5046,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5058,6 +5103,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5119,6 +5165,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5134,6 +5181,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5345,6 +5394,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5689,6 +5739,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5719,6 +5770,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5786,6 +5838,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5882,6 +5935,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6127,6 +6181,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6279,6 +6334,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6358,6 +6414,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6673,6 +6730,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6729,6 +6787,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6757,6 +6816,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6778,6 +6838,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6915,6 +6976,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6968,6 +7030,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7060,6 +7123,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7118,6 +7182,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7161,6 +7226,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7314,6 +7380,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7342,8 +7409,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7512,6 +7582,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7899,6 +7970,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7955,6 +8027,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7975,6 +8048,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7982,6 +8056,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8158,12 +8233,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8227,6 +8304,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8316,6 +8394,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8434,6 +8513,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8612,6 +8692,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8783,6 +8864,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8867,6 +8949,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8962,6 +9045,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8997,6 +9081,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9088,6 +9173,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index e125520cf71..159383635a0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -331,6 +332,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -615,6 +617,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -797,6 +800,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -925,6 +929,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1249,6 +1255,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1256,6 +1263,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1267,10 +1275,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1279,6 +1289,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1290,6 +1301,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1351,6 +1363,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1382,6 +1395,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1583,6 +1597,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1764,6 +1779,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1774,6 +1790,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1940,6 +1958,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1958,6 +1977,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2034,6 +2054,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2042,6 +2064,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2175,6 +2198,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2246,6 +2270,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2264,6 +2289,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2336,6 +2362,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_9"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2385,8 +2412,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2436,6 +2466,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2565,6 +2596,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2613,6 +2645,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2787,6 +2820,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3410,6 +3444,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_1"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3505,6 +3540,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3760,6 +3796,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -3931,6 +3968,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4252,6 +4290,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4718,6 +4757,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4888,10 +4928,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4932,6 +4974,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4991,6 +5034,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4999,6 +5043,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5055,6 +5100,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5116,6 +5162,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5131,11 +5178,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5341,6 +5391,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5685,6 +5736,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5715,6 +5767,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5781,6 +5834,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5877,6 +5931,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6122,6 +6177,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6274,6 +6330,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6353,6 +6410,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6668,6 +6726,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6724,6 +6783,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6752,6 +6812,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6773,6 +6834,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6909,6 +6971,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6962,6 +7025,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7054,6 +7118,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7112,6 +7177,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7155,6 +7221,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7308,6 +7375,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7336,8 +7404,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7506,6 +7577,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7893,6 +7965,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7949,6 +8022,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7969,6 +8043,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7976,6 +8051,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8152,12 +8228,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8221,6 +8299,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8310,6 +8389,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8428,6 +8508,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8606,6 +8687,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8777,6 +8859,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8861,6 +8944,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8956,6 +9040,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8991,6 +9076,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9082,6 +9168,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 47821d85dab..c50ca30fa77 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -331,6 +332,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -615,6 +617,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -797,6 +800,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -924,6 +928,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1248,6 +1254,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1255,6 +1262,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1266,10 +1274,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1278,6 +1288,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1289,6 +1300,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1350,6 +1362,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1381,6 +1394,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1582,6 +1596,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1763,6 +1778,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1773,6 +1789,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1939,6 +1957,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1957,6 +1976,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2033,6 +2053,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2040,6 +2062,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2173,6 +2196,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2244,6 +2268,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2262,6 +2287,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2334,6 +2360,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_9"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2383,8 +2410,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2433,6 +2463,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2562,6 +2593,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2610,6 +2642,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2784,6 +2817,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3406,6 +3440,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3501,6 +3536,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3756,6 +3792,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -3927,6 +3964,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4248,6 +4286,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4714,6 +4753,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4884,10 +4924,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4928,6 +4970,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4987,6 +5030,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4995,6 +5039,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5051,6 +5096,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5112,6 +5158,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5127,11 +5174,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5337,6 +5387,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5681,6 +5732,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5711,6 +5763,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5777,6 +5830,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5873,6 +5927,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6116,6 +6171,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6268,6 +6324,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6347,6 +6404,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6662,6 +6720,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6718,6 +6777,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6746,6 +6806,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6767,6 +6828,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6902,6 +6964,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6955,6 +7018,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7047,6 +7111,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7105,6 +7170,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7148,6 +7214,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7301,6 +7368,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7329,8 +7397,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7499,6 +7570,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7884,6 +7956,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7940,6 +8013,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7960,6 +8034,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7967,6 +8042,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8143,12 +8219,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8212,6 +8290,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8301,6 +8380,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8419,6 +8499,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8597,6 +8678,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8768,6 +8850,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8851,6 +8934,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8946,6 +9030,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8981,6 +9066,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9072,6 +9158,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 8469c6f17c7..f4fd2cd8576 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -332,6 +333,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -617,6 +619,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -799,6 +802,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -927,6 +931,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1251,6 +1257,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1258,6 +1265,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1269,10 +1277,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1281,6 +1291,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1292,6 +1303,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1353,6 +1365,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1384,6 +1397,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1586,6 +1600,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1767,6 +1782,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1777,6 +1793,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1944,6 +1962,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1962,6 +1981,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2038,6 +2058,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2046,6 +2068,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2179,6 +2202,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2250,6 +2274,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2268,6 +2293,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2340,6 +2366,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_7"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2390,8 +2417,11 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2441,6 +2471,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2570,6 +2601,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2618,6 +2650,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2792,6 +2825,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3420,6 +3454,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3515,6 +3550,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3771,6 +3807,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_1"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; @@ -3943,6 +3980,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4266,6 +4304,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4732,6 +4771,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4908,10 +4948,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4952,6 +4994,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5012,6 +5055,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -5020,6 +5064,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5076,6 +5121,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5137,6 +5183,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5152,6 +5199,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5364,6 +5413,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5709,6 +5759,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5739,6 +5790,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5806,6 +5858,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5902,6 +5955,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6149,6 +6203,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6301,6 +6356,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6380,6 +6436,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6695,6 +6752,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6751,6 +6809,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6779,6 +6838,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6800,6 +6860,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6937,6 +6998,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6990,6 +7052,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7082,6 +7145,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7140,6 +7204,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7183,6 +7248,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7336,6 +7402,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7364,8 +7431,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7535,6 +7605,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7922,6 +7993,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7979,6 +8051,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7999,6 +8072,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_0_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8006,6 +8080,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1"; @@ -8185,12 +8260,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8255,6 +8332,7 @@ self: super: { "torrent" = dontDistribute super."torrent"; "tostring" = doDistribute super."tostring_0_2_1"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8345,6 +8423,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8463,6 +8542,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8642,6 +8722,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8813,6 +8894,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8898,6 +8980,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; @@ -8994,6 +9077,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_3"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -9029,6 +9113,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_0"; "yesod-form" = doDistribute super."yesod-form_1_4_3_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9120,6 +9205,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 8b9dedb59fe..fb9749c9486 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -332,6 +333,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -616,6 +618,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -798,6 +801,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -926,6 +930,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1250,6 +1256,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1257,6 +1264,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1268,10 +1276,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1280,6 +1290,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1291,6 +1302,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1352,6 +1364,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1383,6 +1396,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1585,6 +1599,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1766,6 +1781,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1776,6 +1792,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1943,6 +1961,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1961,6 +1980,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2037,6 +2057,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2045,6 +2067,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2178,6 +2201,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2249,6 +2273,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2267,6 +2292,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2339,6 +2365,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_8"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2389,8 +2416,11 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2440,6 +2470,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2569,6 +2600,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2617,6 +2649,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2791,6 +2824,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3418,6 +3452,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3513,6 +3548,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3769,6 +3805,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_1"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; @@ -3941,6 +3978,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4263,6 +4301,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4729,6 +4768,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4905,10 +4945,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4949,6 +4991,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5009,6 +5052,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -5017,6 +5061,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5073,6 +5118,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5134,6 +5180,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5149,6 +5196,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5361,6 +5410,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5706,6 +5756,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5736,6 +5787,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5803,6 +5855,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5899,6 +5952,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6145,6 +6199,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6297,6 +6352,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6376,6 +6432,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6691,6 +6748,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6747,6 +6805,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6775,6 +6834,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6796,6 +6856,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6933,6 +6994,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6986,6 +7048,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7078,6 +7141,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7136,6 +7200,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7179,6 +7244,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7332,6 +7398,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7360,8 +7427,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7531,6 +7601,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7918,6 +7989,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7975,6 +8047,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7995,6 +8068,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_0_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8002,6 +8076,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1"; @@ -8180,12 +8255,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8250,6 +8327,7 @@ self: super: { "torrent" = dontDistribute super."torrent"; "tostring" = doDistribute super."tostring_0_2_1"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8340,6 +8418,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8458,6 +8537,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8637,6 +8717,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8808,6 +8889,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8893,6 +8975,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; @@ -8989,6 +9072,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -9024,6 +9108,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_3_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9115,6 +9200,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 23909c3d2e7..4e3b2b6eec3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -332,6 +333,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -616,6 +618,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -798,6 +801,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -926,6 +930,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1250,6 +1256,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1257,6 +1264,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1268,10 +1276,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1280,6 +1290,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1291,6 +1302,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1352,6 +1364,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1383,6 +1396,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1585,6 +1599,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1766,6 +1781,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1776,6 +1792,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1942,6 +1960,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1960,6 +1979,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2036,6 +2056,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2044,6 +2066,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2177,6 +2200,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2248,6 +2272,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2266,6 +2291,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2338,6 +2364,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_8"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2388,8 +2415,11 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2439,6 +2469,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2568,6 +2599,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2616,6 +2648,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2790,6 +2823,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3417,6 +3451,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3512,6 +3547,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3768,6 +3804,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_1"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; @@ -3940,6 +3977,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4262,6 +4300,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4728,6 +4767,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4904,10 +4944,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4948,6 +4990,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5008,6 +5051,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -5016,6 +5060,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5072,6 +5117,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5133,6 +5179,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5148,6 +5195,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5360,6 +5409,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5705,6 +5755,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5735,6 +5786,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5802,6 +5854,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5898,6 +5951,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6144,6 +6198,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6296,6 +6351,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6375,6 +6431,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6690,6 +6747,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6746,6 +6804,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6774,6 +6833,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6795,6 +6855,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6932,6 +6993,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6985,6 +7047,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7077,6 +7140,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7135,6 +7199,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7178,6 +7243,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7331,6 +7397,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7359,8 +7426,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7530,6 +7600,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7917,6 +7988,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7974,6 +8046,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7994,6 +8067,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8001,6 +8075,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_1"; @@ -8179,12 +8254,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8248,6 +8325,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8338,6 +8416,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8456,6 +8535,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8634,6 +8714,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8805,6 +8886,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8890,6 +8972,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; @@ -8986,6 +9069,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -9021,6 +9105,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_3_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9112,6 +9197,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index 127f3e90509..fe328d71f91 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -332,6 +333,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -616,6 +618,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -798,6 +801,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -926,6 +930,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1250,6 +1256,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1257,6 +1264,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1268,10 +1276,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1280,6 +1290,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1291,6 +1302,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1352,6 +1364,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1383,6 +1396,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1585,6 +1599,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1766,6 +1781,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1776,6 +1792,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1942,6 +1960,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1960,6 +1979,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2036,6 +2056,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2044,6 +2066,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2177,6 +2200,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2248,6 +2272,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2266,6 +2291,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2338,6 +2364,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_8"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2388,8 +2415,11 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2439,6 +2469,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2568,6 +2599,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2616,6 +2648,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2790,6 +2823,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3417,6 +3451,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3512,6 +3547,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3768,6 +3804,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_1"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; @@ -3940,6 +3977,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4262,6 +4300,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4728,6 +4767,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4899,10 +4939,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4943,6 +4985,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5003,6 +5046,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -5011,6 +5055,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5067,6 +5112,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5128,6 +5174,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5143,6 +5190,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5355,6 +5404,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5700,6 +5750,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5730,6 +5781,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5797,6 +5849,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5893,6 +5946,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6139,6 +6193,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6291,6 +6346,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6370,6 +6426,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6685,6 +6742,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6741,6 +6799,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6769,6 +6828,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6790,6 +6850,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6927,6 +6988,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6980,6 +7042,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7072,6 +7135,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7130,6 +7194,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7173,6 +7238,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7326,6 +7392,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7354,8 +7421,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7525,6 +7595,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7912,6 +7983,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7969,6 +8041,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7989,6 +8062,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7996,6 +8070,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_1"; @@ -8174,12 +8249,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8243,6 +8320,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8333,6 +8411,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8451,6 +8530,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8629,6 +8709,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8800,6 +8881,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8885,6 +8967,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; @@ -8981,6 +9064,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -9016,6 +9100,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_3_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9107,6 +9192,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index efbf9037a6f..d14e5b4a2f1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -332,6 +333,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -616,6 +618,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -798,6 +801,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -926,6 +930,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1250,6 +1256,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1257,6 +1264,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1268,10 +1276,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1280,6 +1290,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1291,6 +1302,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1352,6 +1364,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1383,6 +1396,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1585,6 +1599,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1766,6 +1781,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1776,6 +1792,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1942,6 +1960,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1960,6 +1979,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2036,6 +2056,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2044,6 +2066,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2177,6 +2200,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2248,6 +2272,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2266,6 +2291,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2338,6 +2364,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_8"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2388,8 +2415,11 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2439,6 +2469,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2568,6 +2599,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2616,6 +2648,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2790,6 +2823,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3415,6 +3449,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3510,6 +3545,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3766,6 +3802,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_2"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -3937,6 +3974,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4259,6 +4297,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4725,6 +4764,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4896,10 +4936,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4940,6 +4982,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5000,6 +5043,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -5008,6 +5052,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5064,6 +5109,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5125,6 +5171,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5140,6 +5187,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5352,6 +5401,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5696,6 +5746,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5726,6 +5777,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5793,6 +5845,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5889,6 +5942,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6135,6 +6189,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6287,6 +6342,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6366,6 +6422,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6681,6 +6738,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6737,6 +6795,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6765,6 +6824,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6786,6 +6846,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6923,6 +6984,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6976,6 +7038,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7068,6 +7131,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7126,6 +7190,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7169,6 +7234,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7322,6 +7388,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7350,8 +7417,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7521,6 +7591,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7908,6 +7979,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7965,6 +8037,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7985,6 +8058,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7992,6 +8066,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_1"; @@ -8170,12 +8245,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8239,6 +8316,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8328,6 +8406,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8446,6 +8525,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8624,6 +8704,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8795,6 +8876,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8880,6 +8962,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; @@ -8976,6 +9059,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -9011,6 +9095,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9102,6 +9187,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index 99dc38c7f80..e41abe399da 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -332,6 +333,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -616,6 +618,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -798,6 +801,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -926,6 +930,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1250,6 +1256,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1257,6 +1264,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1268,10 +1276,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1280,6 +1290,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1291,6 +1302,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1352,6 +1364,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1383,6 +1396,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1585,6 +1599,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1766,6 +1781,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1776,6 +1792,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1942,6 +1960,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1960,6 +1979,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2036,6 +2056,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2044,6 +2066,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2177,6 +2200,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2248,6 +2272,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2266,6 +2291,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2338,6 +2364,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_9"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2388,8 +2415,11 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2439,6 +2469,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2568,6 +2599,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2616,6 +2648,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2790,6 +2823,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3414,6 +3448,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3509,6 +3544,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3765,6 +3801,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_2"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -3936,6 +3973,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4258,6 +4296,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4724,6 +4763,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4895,10 +4935,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4939,6 +4981,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4999,6 +5042,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -5007,6 +5051,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5063,6 +5108,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5124,6 +5170,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5139,6 +5186,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5351,6 +5400,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5695,6 +5745,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5725,6 +5776,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5792,6 +5844,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5888,6 +5941,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6134,6 +6188,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6286,6 +6341,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6365,6 +6421,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6680,6 +6737,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6736,6 +6794,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6764,6 +6823,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6785,6 +6845,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6922,6 +6983,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6975,6 +7037,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7067,6 +7130,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7125,6 +7189,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7168,6 +7233,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7321,6 +7387,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7349,8 +7416,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7520,6 +7590,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7907,6 +7978,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7964,6 +8036,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7984,6 +8057,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7991,6 +8065,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_1"; @@ -8169,12 +8244,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8238,6 +8315,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8327,6 +8405,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8445,6 +8524,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8623,6 +8703,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8794,6 +8875,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8879,6 +8961,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; @@ -8975,6 +9058,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -9010,6 +9094,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9101,6 +9186,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index 568076876a7..76cdad114a3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -330,6 +331,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -612,6 +614,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -792,6 +795,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -919,6 +923,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1242,6 +1248,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_3_1"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_3"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_3"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_3"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_3"; @@ -1249,6 +1256,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_3"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_3"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_3"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_3"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_3"; @@ -1260,10 +1268,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_3"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_3"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_3"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_3"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_3"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_3"; @@ -1272,6 +1282,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_3"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_3"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_3"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_3"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_3"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_3"; @@ -1283,6 +1294,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_3"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_3"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_3"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_3"; @@ -1344,6 +1356,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1374,6 +1387,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1574,6 +1588,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1753,6 +1768,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1763,6 +1779,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1929,6 +1947,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1947,6 +1966,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2023,6 +2043,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2030,6 +2052,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2162,6 +2185,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2233,6 +2257,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2251,6 +2276,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2322,6 +2348,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2354,6 +2381,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2369,8 +2397,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_1"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2419,6 +2450,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2548,6 +2580,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2596,6 +2629,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2770,6 +2804,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3390,6 +3425,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3485,6 +3521,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3738,6 +3775,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -3909,6 +3947,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4229,6 +4268,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4693,6 +4733,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4858,10 +4899,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4902,6 +4945,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4961,6 +5005,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4969,6 +5014,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5025,6 +5071,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5084,6 +5131,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5099,11 +5147,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5305,6 +5356,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5646,6 +5698,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5676,6 +5729,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5742,6 +5796,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5834,6 +5889,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6073,6 +6129,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6225,6 +6282,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6303,6 +6361,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6615,6 +6674,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6672,6 +6732,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6700,6 +6761,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6721,6 +6783,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6856,6 +6919,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6909,6 +6973,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7001,6 +7066,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7059,6 +7125,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7102,6 +7169,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7254,6 +7322,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7282,8 +7351,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7451,6 +7523,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7832,6 +7905,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7887,6 +7961,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7907,6 +7982,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7914,6 +7990,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8090,12 +8167,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8159,6 +8238,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8248,6 +8328,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8365,6 +8446,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8542,6 +8624,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8712,6 +8795,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8794,6 +8878,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8886,6 +8971,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8921,6 +9007,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9012,6 +9099,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index 498229f2a84..e9b6c46cb69 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -330,6 +331,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -612,6 +614,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -792,6 +795,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -919,6 +923,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1242,6 +1248,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_3_1"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_3"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_3"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_3"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_3"; @@ -1249,6 +1256,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_3"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_3"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_3"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_3"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_3"; @@ -1260,10 +1268,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_3"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_3"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_3"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_3"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_3"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_3"; @@ -1272,6 +1282,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_3"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_3"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_3"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_3"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_3"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_3"; @@ -1283,6 +1294,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_3"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_3"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_3"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_3"; @@ -1344,6 +1356,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1374,6 +1387,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1574,6 +1588,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1753,6 +1768,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1763,6 +1779,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1928,6 +1946,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1946,6 +1965,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2022,6 +2042,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2029,6 +2051,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2161,6 +2184,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2232,6 +2256,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2250,6 +2275,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2321,6 +2347,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2353,6 +2380,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2368,8 +2396,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_1"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2418,6 +2449,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2547,6 +2579,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2595,6 +2628,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2769,6 +2803,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3389,6 +3424,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3484,6 +3520,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3737,6 +3774,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -3908,6 +3946,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4228,6 +4267,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4692,6 +4732,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4857,10 +4898,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4901,6 +4944,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4960,6 +5004,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4968,6 +5013,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5024,6 +5070,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5083,6 +5130,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5098,11 +5146,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5304,6 +5355,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5645,6 +5697,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5675,6 +5728,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5741,6 +5795,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5833,6 +5888,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6072,6 +6128,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6224,6 +6281,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6302,6 +6360,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6614,6 +6673,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6671,6 +6731,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6699,6 +6760,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6720,6 +6782,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6855,6 +6918,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6908,6 +6972,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7000,6 +7065,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7058,6 +7124,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7101,6 +7168,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7253,6 +7321,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7281,8 +7350,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7450,6 +7522,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7831,6 +7904,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7886,6 +7960,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7906,6 +7981,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7913,6 +7989,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8089,12 +8166,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8158,6 +8237,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8247,6 +8327,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8364,6 +8445,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8540,6 +8622,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8710,6 +8793,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8792,6 +8876,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8884,6 +8969,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8919,6 +9005,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9010,6 +9097,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index d779e935a1c..04377238e10 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -916,6 +920,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_9_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1237,6 +1243,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_4"; @@ -1244,6 +1251,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_4"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_4"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_4"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_4"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; @@ -1255,10 +1263,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_4"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_4"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; @@ -1267,6 +1277,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; @@ -1278,6 +1289,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -1339,6 +1351,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1369,6 +1382,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1566,6 +1580,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1744,6 +1759,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1754,6 +1770,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1917,6 +1935,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1935,6 +1954,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2011,6 +2031,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2018,6 +2040,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2150,6 +2173,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2221,6 +2245,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2239,6 +2264,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2309,6 +2335,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2341,6 +2368,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2356,8 +2384,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2406,6 +2437,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2534,6 +2566,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2582,6 +2615,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2756,6 +2790,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3372,6 +3407,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_2"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3467,6 +3503,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3720,6 +3757,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3889,6 +3927,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4209,6 +4248,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4265,6 +4305,7 @@ self: super: { "hinotify" = doDistribute super."hinotify_0_3_7"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4671,6 +4712,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4834,10 +4876,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4878,6 +4922,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4937,6 +4982,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4945,6 +4991,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5001,6 +5048,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5058,6 +5106,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5073,11 +5122,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5279,6 +5331,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5582,6 +5635,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5615,6 +5669,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5645,6 +5700,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5711,6 +5767,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5803,6 +5860,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5999,6 +6057,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6041,6 +6100,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6193,6 +6253,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6271,6 +6332,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6580,6 +6642,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6637,6 +6700,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6665,6 +6729,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6686,6 +6751,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6820,6 +6886,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6873,6 +6940,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6964,6 +7032,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7022,6 +7091,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7065,6 +7135,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7216,6 +7287,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7244,8 +7316,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7413,6 +7488,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7788,6 +7864,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7841,6 +7918,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7861,6 +7939,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7868,6 +7947,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8044,12 +8124,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8111,6 +8193,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8200,6 +8283,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8317,6 +8401,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8493,6 +8578,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8663,6 +8749,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8744,6 +8831,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8835,6 +8923,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8870,6 +8959,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8961,6 +9051,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 88fa6fdbe07..ed39707ac20 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -916,6 +920,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_9_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1236,6 +1242,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_4"; @@ -1243,6 +1250,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_4"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_4"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_4"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_4"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; @@ -1254,10 +1262,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_4"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_4"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; @@ -1266,6 +1276,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; @@ -1277,6 +1288,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -1338,6 +1350,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1368,6 +1381,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1565,6 +1579,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1743,6 +1758,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1753,6 +1769,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1916,6 +1934,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1934,6 +1953,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2010,6 +2030,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2017,6 +2039,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2149,6 +2172,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2220,6 +2244,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2238,6 +2263,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2308,6 +2334,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2340,6 +2367,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2355,8 +2383,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2405,6 +2436,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2533,6 +2565,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2581,6 +2614,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2755,6 +2789,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3371,6 +3406,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_2"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3465,6 +3501,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3718,6 +3755,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3887,6 +3925,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4206,6 +4245,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4262,6 +4302,7 @@ self: super: { "hinotify" = doDistribute super."hinotify_0_3_7"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4668,6 +4709,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4831,10 +4873,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4875,6 +4919,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4934,6 +4979,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4942,6 +4988,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4998,6 +5045,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5054,6 +5102,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5069,11 +5118,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5275,6 +5327,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5578,6 +5631,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5611,6 +5665,7 @@ self: super: { "memory" = doDistribute super."memory_0_6"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5641,6 +5696,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5707,6 +5763,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5798,6 +5855,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5994,6 +6052,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6036,6 +6095,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6187,6 +6247,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6265,6 +6326,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6574,6 +6636,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6631,6 +6694,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6659,6 +6723,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6680,6 +6745,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6814,6 +6880,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6867,6 +6934,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6958,6 +7026,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7015,6 +7084,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7058,6 +7128,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7209,6 +7280,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7237,8 +7309,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7406,6 +7481,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7779,6 +7855,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7832,6 +7909,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7852,6 +7930,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7859,6 +7938,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8035,12 +8115,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8102,6 +8184,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8191,6 +8274,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8308,6 +8392,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8484,6 +8569,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8654,6 +8740,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8735,6 +8822,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8826,6 +8914,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8861,6 +8950,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8952,6 +9042,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 265cb7ab469..3084bd6e5b8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -916,6 +920,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_9_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1236,6 +1242,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_4"; @@ -1243,6 +1250,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_4"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_4"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_4"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_4"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; @@ -1254,10 +1262,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_4"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_4"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; @@ -1266,6 +1276,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; @@ -1277,6 +1288,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -1338,6 +1350,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1368,6 +1381,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1565,6 +1579,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1743,6 +1758,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1753,6 +1769,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1916,6 +1934,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1934,6 +1953,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2010,6 +2030,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2017,6 +2039,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2149,6 +2172,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2220,6 +2244,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2238,6 +2263,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2308,6 +2334,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2340,6 +2367,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2355,8 +2383,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2405,6 +2436,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2533,6 +2565,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2581,6 +2614,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2755,6 +2789,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3371,6 +3406,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_2"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3465,6 +3501,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3718,6 +3755,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3887,6 +3925,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4206,6 +4245,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4262,6 +4302,7 @@ self: super: { "hinotify" = doDistribute super."hinotify_0_3_7"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4668,6 +4709,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4831,10 +4873,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4875,6 +4919,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4934,6 +4979,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4942,6 +4988,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4998,6 +5045,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5054,6 +5102,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5069,11 +5118,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5275,6 +5327,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5578,6 +5631,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5611,6 +5665,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5641,6 +5696,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5707,6 +5763,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5798,6 +5855,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5994,6 +6052,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6036,6 +6095,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6187,6 +6247,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6265,6 +6326,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6574,6 +6636,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6631,6 +6694,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6659,6 +6723,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6680,6 +6745,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6814,6 +6880,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6867,6 +6934,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6958,6 +7026,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7015,6 +7084,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7058,6 +7128,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7208,6 +7279,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7236,8 +7308,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7405,6 +7480,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7778,6 +7854,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7831,6 +7908,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7851,6 +7929,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7858,6 +7937,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8034,12 +8114,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8101,6 +8183,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8190,6 +8273,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8307,6 +8391,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8483,6 +8568,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8653,6 +8739,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8734,6 +8821,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8825,6 +8913,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8860,6 +8949,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8951,6 +9041,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 64f691c05ec..fe188ea6fb0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -916,6 +920,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_9_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1236,6 +1242,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1243,6 +1250,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1254,10 +1262,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1266,6 +1276,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1277,6 +1288,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1338,6 +1350,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1368,6 +1381,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1565,6 +1579,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1743,6 +1758,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1753,6 +1769,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1916,6 +1934,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1934,6 +1953,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2010,6 +2030,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2017,6 +2039,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2149,6 +2172,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2220,6 +2244,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2238,6 +2263,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2308,6 +2334,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2340,6 +2367,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2355,8 +2383,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2405,6 +2436,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2533,6 +2565,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2581,6 +2614,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2755,6 +2789,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3371,6 +3406,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_2"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3465,6 +3501,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3718,6 +3755,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3886,6 +3924,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4205,6 +4244,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4261,6 +4301,7 @@ self: super: { "hinotify" = doDistribute super."hinotify_0_3_7"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4667,6 +4708,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4829,10 +4871,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4873,6 +4917,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4932,6 +4977,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4940,6 +4986,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4996,6 +5043,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5052,6 +5100,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5067,11 +5116,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5273,6 +5325,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5576,6 +5629,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5609,6 +5663,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5639,6 +5694,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5705,6 +5761,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5796,6 +5853,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5992,6 +6050,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6034,6 +6093,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6185,6 +6245,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6263,6 +6324,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6572,6 +6634,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6629,6 +6692,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6657,6 +6721,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6678,6 +6743,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6812,6 +6878,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6865,6 +6932,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6956,6 +7024,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7013,6 +7082,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7056,6 +7126,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7206,6 +7277,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7234,8 +7306,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7403,6 +7478,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7776,6 +7852,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7829,6 +7906,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7849,6 +7927,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7856,6 +7935,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8032,12 +8112,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8099,6 +8181,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8188,6 +8271,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8305,6 +8389,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8481,6 +8566,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8651,6 +8737,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8732,6 +8819,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8823,6 +8911,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8858,6 +8947,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8949,6 +9039,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 0ac7dfa05a4..280d1109333 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -916,6 +920,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_9_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1235,6 +1241,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1242,6 +1249,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1253,10 +1261,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1265,6 +1275,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1276,6 +1287,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1337,6 +1349,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1367,6 +1380,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1564,6 +1578,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1742,6 +1757,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1752,6 +1768,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1915,6 +1933,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1933,6 +1952,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2009,6 +2029,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2016,6 +2038,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2148,6 +2171,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2219,6 +2243,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2237,6 +2262,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2307,6 +2333,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2339,6 +2366,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2354,8 +2382,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2404,6 +2435,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2532,6 +2564,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2580,6 +2613,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2754,6 +2788,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3369,6 +3404,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_2"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3463,6 +3499,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3716,6 +3753,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3884,6 +3922,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4203,6 +4242,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4259,6 +4299,7 @@ self: super: { "hinotify" = doDistribute super."hinotify_0_3_7"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4664,6 +4705,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4826,10 +4868,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4870,6 +4914,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4929,6 +4974,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4937,6 +4983,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4993,6 +5040,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5049,6 +5097,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5064,11 +5113,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5270,6 +5322,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5573,6 +5626,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5606,6 +5660,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5636,6 +5691,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5702,6 +5758,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5793,6 +5850,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5989,6 +6047,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6031,6 +6090,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6182,6 +6242,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6260,6 +6321,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6569,6 +6631,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6626,6 +6689,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6654,6 +6718,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6675,6 +6740,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6809,6 +6875,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6862,6 +6929,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6953,6 +7021,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7010,6 +7079,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7053,6 +7123,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7203,6 +7274,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7231,8 +7303,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7399,6 +7474,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7772,6 +7848,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7825,6 +7902,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7845,6 +7923,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7852,6 +7931,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8028,12 +8108,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8095,6 +8177,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8184,6 +8267,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8301,6 +8385,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8477,6 +8562,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8647,6 +8733,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8727,6 +8814,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8818,6 +8906,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8852,6 +8941,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8943,6 +9033,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 9070ce99658..baed9b4b6d2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -916,6 +920,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_9_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1235,6 +1241,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1242,6 +1249,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1253,10 +1261,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1265,6 +1275,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1276,6 +1287,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1337,6 +1349,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1367,6 +1380,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1564,6 +1578,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1742,6 +1757,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1752,6 +1768,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1915,6 +1933,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1933,6 +1952,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2009,6 +2029,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2016,6 +2038,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2148,6 +2171,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2219,6 +2243,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2237,6 +2262,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2307,6 +2333,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2339,6 +2366,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2354,8 +2382,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2404,6 +2435,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2532,6 +2564,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2580,6 +2613,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2754,6 +2788,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3368,6 +3403,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_2"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3462,6 +3498,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3715,6 +3752,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3883,6 +3921,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4202,6 +4241,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4258,6 +4298,7 @@ self: super: { "hinotify" = doDistribute super."hinotify_0_3_7"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4663,6 +4704,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4825,10 +4867,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4869,6 +4913,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4928,6 +4973,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4936,6 +4982,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4992,6 +5039,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5048,6 +5096,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5063,11 +5112,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5269,6 +5321,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5572,6 +5625,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5605,6 +5659,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5635,6 +5690,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5701,6 +5757,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5791,6 +5848,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5987,6 +6045,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6029,6 +6088,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6180,6 +6240,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6258,6 +6319,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6567,6 +6629,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6624,6 +6687,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6652,6 +6716,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6673,6 +6738,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6807,6 +6873,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6860,6 +6927,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6951,6 +7019,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7008,6 +7077,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7051,6 +7121,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7201,6 +7272,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7229,8 +7301,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7397,6 +7472,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7769,6 +7845,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7822,6 +7899,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7842,6 +7920,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7849,6 +7928,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8025,12 +8105,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8092,6 +8174,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8181,6 +8264,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8298,6 +8382,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8474,6 +8559,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8644,6 +8730,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8724,6 +8811,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8815,6 +8903,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8849,6 +8938,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8939,6 +9029,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 37eff2fd08b..d439bfd44ad 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -916,6 +920,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_9_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1235,6 +1241,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1242,6 +1249,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1253,10 +1261,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1265,6 +1275,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1276,6 +1287,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1337,6 +1349,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1367,6 +1380,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1564,6 +1578,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1742,6 +1757,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1752,6 +1768,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1915,6 +1933,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1933,6 +1952,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2009,6 +2029,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2016,6 +2038,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2147,6 +2170,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2218,6 +2242,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2236,6 +2261,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2305,6 +2331,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2337,6 +2364,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2352,8 +2380,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2402,6 +2433,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2530,6 +2562,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2578,6 +2611,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2751,6 +2785,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3364,6 +3399,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_2"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3458,6 +3494,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3711,6 +3748,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3879,6 +3917,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4198,6 +4237,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4254,6 +4294,7 @@ self: super: { "hinotify" = doDistribute super."hinotify_0_3_7"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4659,6 +4700,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4821,10 +4863,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4865,6 +4909,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4924,6 +4969,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4932,6 +4978,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4988,6 +5035,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5044,6 +5092,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5059,11 +5108,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5264,6 +5316,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5567,6 +5620,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5600,6 +5654,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5630,6 +5685,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5696,6 +5752,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5786,6 +5843,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5982,6 +6040,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6024,6 +6083,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6175,6 +6235,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6253,6 +6314,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6562,6 +6624,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6619,6 +6682,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6647,6 +6711,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6668,6 +6733,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6802,6 +6868,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6855,6 +6922,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6946,6 +7014,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7003,6 +7072,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7046,6 +7116,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7196,6 +7267,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7224,8 +7296,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7392,6 +7467,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7764,6 +7840,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7817,6 +7894,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7837,6 +7915,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7844,6 +7923,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8020,12 +8100,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8087,6 +8169,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8176,6 +8259,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8293,6 +8377,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8469,6 +8554,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8639,6 +8725,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8719,6 +8806,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8810,6 +8898,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8844,6 +8933,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8933,6 +9023,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 83f4314bb12..97a5b4aa520 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -916,6 +920,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_10_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1235,6 +1241,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1242,6 +1249,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1253,10 +1261,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1265,6 +1275,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1276,6 +1287,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1337,6 +1349,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1367,6 +1380,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1563,6 +1577,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1740,6 +1755,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1750,6 +1766,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1913,6 +1931,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1931,6 +1950,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2007,6 +2027,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2014,6 +2036,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2145,6 +2168,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2216,6 +2240,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2234,6 +2259,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2303,6 +2329,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2335,6 +2362,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2350,8 +2378,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2400,6 +2431,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2528,6 +2560,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2576,6 +2609,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2749,6 +2783,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3360,6 +3395,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3454,6 +3490,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3707,6 +3744,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3875,6 +3913,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4194,6 +4233,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4250,6 +4290,7 @@ self: super: { "hinotify" = doDistribute super."hinotify_0_3_7"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4655,6 +4696,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5_1"; @@ -4817,10 +4859,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4861,6 +4905,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4920,6 +4965,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4928,6 +4974,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4984,6 +5031,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5040,6 +5088,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5055,11 +5104,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5260,6 +5312,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5563,6 +5616,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5596,6 +5650,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5626,6 +5681,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5692,6 +5748,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5782,6 +5839,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5978,6 +6036,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6019,6 +6078,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6170,6 +6230,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6248,6 +6309,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6557,6 +6619,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6614,6 +6677,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6642,6 +6706,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6663,6 +6728,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6797,6 +6863,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6850,6 +6917,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6941,6 +7009,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -6998,6 +7067,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7041,6 +7111,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7191,6 +7262,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7219,8 +7291,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7387,6 +7462,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7759,6 +7835,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7812,6 +7889,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7832,6 +7910,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7839,6 +7918,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8015,12 +8095,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8082,6 +8164,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8171,6 +8254,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8288,6 +8372,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8464,6 +8549,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8634,6 +8720,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8714,6 +8801,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8805,6 +8893,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8839,6 +8928,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8928,6 +9018,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index fad6e89bae9..3a61f20966d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -916,6 +920,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_10_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1235,6 +1241,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1242,6 +1249,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1253,10 +1261,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1265,6 +1275,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1276,6 +1287,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1337,6 +1349,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1367,6 +1380,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1563,6 +1577,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1740,6 +1755,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1750,6 +1766,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1912,6 +1930,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1930,6 +1949,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2006,6 +2026,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2013,6 +2035,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2144,6 +2167,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2215,6 +2239,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2233,6 +2258,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2302,6 +2328,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2334,6 +2361,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2349,8 +2377,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2399,6 +2430,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2527,6 +2559,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2575,6 +2608,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2748,6 +2782,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3358,6 +3393,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3452,6 +3488,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3705,6 +3742,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3873,6 +3911,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4138,6 +4177,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4191,6 +4231,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4247,6 +4288,7 @@ self: super: { "hinotify" = doDistribute super."hinotify_0_3_7"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4652,6 +4694,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5_1"; @@ -4814,10 +4857,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4858,6 +4903,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4917,6 +4963,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4925,6 +4972,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4981,6 +5029,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5037,6 +5086,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5052,11 +5102,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5257,6 +5310,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5560,6 +5614,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5593,6 +5648,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5623,6 +5679,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5689,6 +5746,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5779,6 +5837,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5974,6 +6033,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6015,6 +6075,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6166,6 +6227,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6244,6 +6306,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6553,6 +6616,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6610,6 +6674,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6638,6 +6703,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6659,6 +6725,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6793,6 +6860,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6846,6 +6914,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6937,6 +7006,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -6994,6 +7064,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7037,6 +7108,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7187,6 +7259,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7215,8 +7288,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7383,6 +7459,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7754,6 +7831,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7807,6 +7885,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7827,6 +7906,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7834,6 +7914,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8010,12 +8091,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8077,6 +8160,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8166,6 +8250,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8283,6 +8368,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8459,6 +8545,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8629,6 +8716,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8709,6 +8797,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8799,6 +8888,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8833,6 +8923,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8922,6 +9013,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index de41ab241a4..a133f8e5ed9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -916,6 +920,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_10_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1235,6 +1241,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1242,6 +1249,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1253,10 +1261,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1265,6 +1275,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1276,6 +1287,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1337,6 +1349,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1367,6 +1380,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1563,6 +1577,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1740,6 +1755,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1750,6 +1766,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1912,6 +1930,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1930,6 +1949,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2006,6 +2026,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2013,6 +2035,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2144,6 +2167,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2215,6 +2239,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2233,6 +2258,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2302,6 +2328,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2334,6 +2361,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2349,8 +2377,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2399,6 +2430,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2527,6 +2559,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2575,6 +2608,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2748,6 +2782,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3357,6 +3392,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3451,6 +3487,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3704,6 +3741,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3872,6 +3910,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4137,6 +4176,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4190,6 +4230,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4246,6 +4287,7 @@ self: super: { "hinotify" = doDistribute super."hinotify_0_3_7"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4651,6 +4693,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5_1"; @@ -4813,10 +4856,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4857,6 +4902,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4916,6 +4962,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4924,6 +4971,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4980,6 +5028,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5036,6 +5085,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5051,11 +5101,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5256,6 +5309,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5558,6 +5612,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5591,6 +5646,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5621,6 +5677,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5687,6 +5744,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5777,6 +5835,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5972,6 +6031,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6013,6 +6073,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6164,6 +6225,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6242,6 +6304,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6551,6 +6614,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6608,6 +6672,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6636,6 +6701,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6657,6 +6723,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6791,6 +6858,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6844,6 +6912,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6935,6 +7004,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -6992,6 +7062,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7035,6 +7106,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7185,6 +7257,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7213,8 +7286,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7381,6 +7457,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7409,6 +7486,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7750,6 +7828,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7803,6 +7882,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7823,6 +7903,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7830,6 +7911,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8006,12 +8088,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8073,6 +8157,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8162,6 +8247,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8279,6 +8365,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8455,6 +8542,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8625,6 +8713,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8704,6 +8793,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8794,6 +8884,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8828,6 +8919,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8917,6 +9009,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index 56704b5a5dc..cf59852c6e9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -330,6 +331,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -612,6 +614,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -792,6 +795,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -918,6 +922,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1241,6 +1247,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_3_1"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_3"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_3"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_3"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_3"; @@ -1248,6 +1255,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_3"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_3"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_3"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_3"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_3"; @@ -1259,10 +1267,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_3"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_3"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_3"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_3"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_3"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_3"; @@ -1271,6 +1281,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_3"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_3"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_3"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_3"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_3"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_3"; @@ -1282,6 +1293,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_3"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_3"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_3"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_3"; @@ -1343,6 +1355,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1373,6 +1386,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1573,6 +1587,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1752,6 +1767,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1762,6 +1778,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1925,6 +1943,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1943,6 +1962,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2019,6 +2039,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2026,6 +2048,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2158,6 +2181,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2229,6 +2253,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2247,6 +2272,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2318,6 +2344,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2350,6 +2377,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2365,8 +2393,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_1"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2415,6 +2446,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2544,6 +2576,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2592,6 +2625,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2766,6 +2800,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3386,6 +3421,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3481,6 +3517,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3734,6 +3771,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -3905,6 +3943,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4225,6 +4264,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4689,6 +4729,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4854,10 +4895,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4898,6 +4941,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4957,6 +5001,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4965,6 +5010,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5021,6 +5067,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5080,6 +5127,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5095,11 +5143,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5301,6 +5352,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5642,6 +5694,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5672,6 +5725,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5738,6 +5792,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5830,6 +5885,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6069,6 +6125,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6221,6 +6278,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6299,6 +6357,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6611,6 +6670,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6668,6 +6728,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6696,6 +6757,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6717,6 +6779,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6852,6 +6915,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6905,6 +6969,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6997,6 +7062,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7055,6 +7121,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7098,6 +7165,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7250,6 +7318,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7278,8 +7347,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7447,6 +7519,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7828,6 +7901,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7883,6 +7957,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7903,6 +7978,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7910,6 +7986,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8086,12 +8163,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8155,6 +8234,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8244,6 +8324,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8361,6 +8442,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8537,6 +8619,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8707,6 +8790,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8788,6 +8872,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8880,6 +8965,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8915,6 +9001,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9006,6 +9093,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index 14b71d7d362..28ce83e8ad8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -916,6 +920,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_10_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1235,6 +1241,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1242,6 +1249,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1253,10 +1261,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1265,6 +1275,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1276,6 +1287,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1337,6 +1349,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1367,6 +1380,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1563,6 +1577,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1740,6 +1755,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1750,6 +1766,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1912,6 +1930,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1930,6 +1949,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2006,6 +2026,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2013,6 +2035,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2144,6 +2167,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2214,6 +2238,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2232,6 +2257,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2301,6 +2327,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2333,6 +2360,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2348,8 +2376,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2398,6 +2429,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2526,6 +2558,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2574,6 +2607,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2747,6 +2781,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3356,6 +3391,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3450,6 +3486,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3703,6 +3740,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3871,6 +3909,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4136,6 +4175,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4189,6 +4229,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4245,6 +4286,7 @@ self: super: { "hinotify" = doDistribute super."hinotify_0_3_7"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4650,6 +4692,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_7_1"; @@ -4812,10 +4855,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4856,6 +4901,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4915,6 +4961,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4923,6 +4970,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4979,6 +5027,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5035,6 +5084,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5050,11 +5100,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5255,6 +5308,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5557,6 +5611,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5590,6 +5645,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5620,6 +5676,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5686,6 +5743,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5776,6 +5834,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5971,6 +6030,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6012,6 +6072,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6163,6 +6224,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6241,6 +6303,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6549,6 +6612,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6606,6 +6670,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6634,6 +6699,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6655,6 +6721,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6789,6 +6856,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6842,6 +6910,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6933,6 +7002,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -6990,6 +7060,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7033,6 +7104,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7183,6 +7255,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7211,8 +7284,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7378,6 +7454,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7406,6 +7483,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7747,6 +7825,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7800,6 +7879,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7820,6 +7900,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7827,6 +7908,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8003,12 +8085,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8070,6 +8154,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8159,6 +8244,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8276,6 +8362,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8452,6 +8539,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8622,6 +8710,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8701,6 +8790,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8791,6 +8881,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8825,6 +8916,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8914,6 +9006,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index a4c6afbdc20..014013bcd5d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -916,6 +920,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_10_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1235,6 +1241,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1242,6 +1249,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1253,10 +1261,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1265,6 +1275,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1276,6 +1287,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1337,6 +1349,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1367,6 +1380,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1563,6 +1577,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1740,6 +1755,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1750,6 +1766,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1912,6 +1930,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1930,6 +1949,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2006,6 +2026,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2013,6 +2035,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2144,6 +2167,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2214,6 +2238,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2232,6 +2257,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2301,6 +2327,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_2"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2333,6 +2360,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2348,8 +2376,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2398,6 +2429,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2526,6 +2558,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2574,6 +2607,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2747,6 +2781,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3356,6 +3391,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3450,6 +3486,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3703,6 +3740,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3871,6 +3909,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4136,6 +4175,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4189,6 +4229,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4245,6 +4286,7 @@ self: super: { "hinotify" = doDistribute super."hinotify_0_3_7"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4650,6 +4692,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_7_2"; @@ -4812,10 +4855,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4856,6 +4901,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4915,6 +4961,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4923,6 +4970,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4979,6 +5027,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5035,6 +5084,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5050,11 +5100,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5172,6 +5225,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5254,6 +5308,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5556,6 +5611,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5589,6 +5645,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5619,6 +5676,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5685,6 +5743,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5775,6 +5834,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5970,6 +6030,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6011,6 +6072,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6162,6 +6224,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6240,6 +6303,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6547,6 +6611,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6604,6 +6669,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6632,6 +6698,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6653,6 +6720,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6787,6 +6855,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6840,6 +6909,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6931,6 +7001,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -6988,6 +7059,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7031,6 +7103,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7181,6 +7254,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7209,8 +7283,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7376,6 +7453,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7404,6 +7482,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7745,6 +7824,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7798,6 +7878,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7818,6 +7899,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7825,6 +7907,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8001,12 +8084,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8068,6 +8153,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8157,6 +8243,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8274,6 +8361,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8448,6 +8536,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8618,6 +8707,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8697,6 +8787,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8786,6 +8877,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8820,6 +8912,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8909,6 +9002,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 6b945f2af10..a17f9ef401d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -916,6 +920,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_10_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1235,6 +1241,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1242,6 +1249,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1253,10 +1261,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1265,6 +1275,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1276,6 +1287,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1337,6 +1349,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1367,6 +1380,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1563,6 +1577,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1740,6 +1755,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1750,6 +1766,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1912,6 +1930,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1930,6 +1949,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2006,6 +2026,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2013,6 +2035,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2144,6 +2167,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2214,6 +2238,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2232,6 +2257,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2301,6 +2327,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_2"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2333,6 +2360,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2348,8 +2376,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2398,6 +2429,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2526,6 +2558,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2574,6 +2607,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2747,6 +2781,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3356,6 +3391,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3450,6 +3486,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3703,6 +3740,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3871,6 +3909,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4136,6 +4175,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4189,6 +4229,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4244,6 +4285,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4649,6 +4691,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_7_2"; @@ -4811,10 +4854,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4855,6 +4900,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4914,6 +4960,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4922,6 +4969,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4978,6 +5026,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5034,6 +5083,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5049,11 +5099,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5171,6 +5224,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5253,6 +5307,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5555,6 +5610,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5588,6 +5644,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5618,6 +5675,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5663,6 +5721,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5683,6 +5742,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5773,6 +5833,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5968,6 +6029,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6009,6 +6071,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6160,6 +6223,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6238,6 +6302,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6545,6 +6610,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6602,6 +6668,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6630,6 +6697,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6651,6 +6719,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6785,6 +6854,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6838,6 +6908,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6929,6 +7000,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -6986,6 +7058,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7029,6 +7102,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7179,6 +7253,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7207,8 +7282,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7374,6 +7452,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7402,6 +7481,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7743,6 +7823,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7796,6 +7877,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7816,6 +7898,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7823,6 +7906,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7999,12 +8083,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8066,6 +8152,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8155,6 +8242,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8272,6 +8360,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8446,6 +8535,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8616,6 +8706,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8695,6 +8786,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8784,6 +8876,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8818,6 +8911,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8907,6 +9001,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 3ce4419e3e0..aa2ca3a0f74 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -330,6 +331,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -612,6 +614,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -792,6 +795,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -918,6 +922,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1241,6 +1247,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_3_1"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_3"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_3"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_3"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_3"; @@ -1248,6 +1255,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_3"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_3"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_3"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_3"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_3"; @@ -1259,10 +1267,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_3"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_3"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_3"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_3"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_3"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_3"; @@ -1271,6 +1281,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_3"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_3"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_3"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_3"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_3"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_3"; @@ -1282,6 +1293,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_3"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_3"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_3"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_3"; @@ -1343,6 +1355,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1373,6 +1386,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1573,6 +1587,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1752,6 +1767,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1762,6 +1778,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1925,6 +1943,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1943,6 +1962,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2019,6 +2039,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2026,6 +2048,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2158,6 +2181,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2229,6 +2253,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2247,6 +2272,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2318,6 +2344,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2350,6 +2377,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2365,8 +2393,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2415,6 +2446,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2544,6 +2576,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2592,6 +2625,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2766,6 +2800,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3385,6 +3420,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3480,6 +3516,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3733,6 +3770,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -3904,6 +3942,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4224,6 +4263,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4688,6 +4728,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4852,10 +4893,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4896,6 +4939,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4955,6 +4999,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4963,6 +5008,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5019,6 +5065,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5078,6 +5125,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5093,11 +5141,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5299,6 +5350,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5640,6 +5692,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5670,6 +5723,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5736,6 +5790,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5828,6 +5883,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6067,6 +6123,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6219,6 +6276,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6297,6 +6355,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6609,6 +6668,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6666,6 +6726,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6694,6 +6755,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6715,6 +6777,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6850,6 +6913,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6903,6 +6967,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6995,6 +7060,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7053,6 +7119,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7096,6 +7163,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7248,6 +7316,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7276,8 +7345,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7445,6 +7517,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7826,6 +7899,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7881,6 +7955,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7901,6 +7976,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7908,6 +7984,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8084,12 +8161,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8153,6 +8232,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8242,6 +8322,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8359,6 +8440,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8535,6 +8617,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8705,6 +8788,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8786,6 +8870,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8878,6 +8963,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8913,6 +8999,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9004,6 +9091,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index 402e65f8b8f..b0cba8f674e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -330,6 +331,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -612,6 +614,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -792,6 +795,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -918,6 +922,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_9_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1241,6 +1247,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_4"; @@ -1248,6 +1255,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_4"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_4"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_4"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_4"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; @@ -1259,10 +1267,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_4"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_4"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; @@ -1271,6 +1281,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; @@ -1282,6 +1293,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -1343,6 +1355,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1373,6 +1386,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1573,6 +1587,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1751,6 +1766,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1761,6 +1777,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1924,6 +1942,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1942,6 +1961,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2018,6 +2038,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2025,6 +2047,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2157,6 +2180,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2228,6 +2252,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2246,6 +2271,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2317,6 +2343,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2349,6 +2376,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2364,8 +2392,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2414,6 +2445,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2543,6 +2575,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2591,6 +2624,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2765,6 +2799,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3384,6 +3419,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3479,6 +3515,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3732,6 +3769,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -3903,6 +3941,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4223,6 +4262,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4687,6 +4727,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4851,10 +4892,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4895,6 +4938,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4954,6 +4998,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4962,6 +5007,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5018,6 +5064,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5077,6 +5124,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5092,11 +5140,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5298,6 +5349,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5605,6 +5657,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5638,6 +5691,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5668,6 +5722,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5734,6 +5789,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5826,6 +5882,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6065,6 +6122,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6217,6 +6275,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6295,6 +6354,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6606,6 +6666,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6663,6 +6724,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6691,6 +6753,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6712,6 +6775,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6847,6 +6911,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6900,6 +6965,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6991,6 +7057,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7049,6 +7116,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7092,6 +7160,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7244,6 +7313,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7272,8 +7342,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7441,6 +7514,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7822,6 +7896,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7877,6 +7952,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7897,6 +7973,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7904,6 +7981,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8080,12 +8158,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8149,6 +8229,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8238,6 +8319,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8355,6 +8437,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8531,6 +8614,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8701,6 +8785,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8782,6 +8867,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8874,6 +8960,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8909,6 +8996,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9000,6 +9088,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 489f310c2d0..8b915c3fa3f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -330,6 +331,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -612,6 +614,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -792,6 +795,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -918,6 +922,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_9_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1241,6 +1247,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_4"; @@ -1248,6 +1255,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_4"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_4"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_4"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_4"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; @@ -1259,10 +1267,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_4"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_4"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; @@ -1271,6 +1281,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; @@ -1282,6 +1293,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -1343,6 +1355,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1373,6 +1386,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1573,6 +1587,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1751,6 +1766,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1761,6 +1777,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1924,6 +1942,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1942,6 +1961,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2018,6 +2038,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2025,6 +2047,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2157,6 +2180,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2228,6 +2252,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2246,6 +2271,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2316,6 +2342,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2348,6 +2375,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2363,8 +2391,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2413,6 +2444,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2542,6 +2574,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2590,6 +2623,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2764,6 +2798,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3383,6 +3418,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3478,6 +3514,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3731,6 +3768,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -3902,6 +3940,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4222,6 +4261,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4686,6 +4726,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4850,10 +4891,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4894,6 +4937,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4953,6 +4997,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4961,6 +5006,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5017,6 +5063,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5076,6 +5123,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5091,11 +5139,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5297,6 +5348,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5604,6 +5656,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5637,6 +5690,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5667,6 +5721,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5733,6 +5788,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5825,6 +5881,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6064,6 +6121,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6216,6 +6274,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6294,6 +6353,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6605,6 +6665,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6662,6 +6723,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6690,6 +6752,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6711,6 +6774,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6846,6 +6910,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6899,6 +6964,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6990,6 +7056,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7048,6 +7115,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7091,6 +7159,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7243,6 +7312,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7271,8 +7341,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7440,6 +7513,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7821,6 +7895,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7876,6 +7951,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7896,6 +7972,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7903,6 +7980,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8079,12 +8157,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8148,6 +8228,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8237,6 +8318,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8354,6 +8436,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8530,6 +8613,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8700,6 +8784,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8781,6 +8866,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8873,6 +8959,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8908,6 +8995,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8999,6 +9087,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 171d7187d19..07ee07a13bb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -330,6 +331,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -612,6 +614,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -792,6 +795,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -918,6 +922,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_9_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1239,6 +1245,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_4"; @@ -1246,6 +1253,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_4"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_4"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_4"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_4"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; @@ -1257,10 +1265,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_4"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_4"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; @@ -1269,6 +1279,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; @@ -1280,6 +1291,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -1341,6 +1353,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1371,6 +1384,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1570,6 +1584,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1748,6 +1763,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1758,6 +1774,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1921,6 +1939,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1939,6 +1958,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2015,6 +2035,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2022,6 +2044,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2154,6 +2177,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2225,6 +2249,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2243,6 +2268,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2313,6 +2339,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2345,6 +2372,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2360,8 +2388,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2410,6 +2441,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2539,6 +2571,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2587,6 +2620,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2761,6 +2795,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3380,6 +3415,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3475,6 +3511,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3728,6 +3765,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3897,6 +3935,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4217,6 +4256,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4681,6 +4721,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4845,10 +4886,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4889,6 +4932,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4948,6 +4992,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4956,6 +5001,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5012,6 +5058,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5071,6 +5118,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5086,11 +5134,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5292,6 +5343,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5599,6 +5651,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5632,6 +5685,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5662,6 +5716,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5728,6 +5783,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5820,6 +5876,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6058,6 +6115,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6210,6 +6268,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6288,6 +6347,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6599,6 +6659,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6656,6 +6717,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6684,6 +6746,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6705,6 +6768,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6840,6 +6904,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6893,6 +6958,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6984,6 +7050,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7042,6 +7109,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7085,6 +7153,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7237,6 +7306,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7265,8 +7335,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7434,6 +7507,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7815,6 +7889,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7870,6 +7945,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7890,6 +7966,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7897,6 +7974,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8073,12 +8151,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8140,6 +8220,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8229,6 +8310,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8346,6 +8428,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8522,6 +8605,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8692,6 +8776,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8773,6 +8858,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8865,6 +8951,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8900,6 +8987,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8991,6 +9079,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index d48d2912514..7e52dd04e2c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -791,6 +794,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -917,6 +921,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_9_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1238,6 +1244,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_4"; @@ -1245,6 +1252,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_4"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_4"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_4"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_4"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; @@ -1256,10 +1264,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_4"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_4"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; @@ -1268,6 +1278,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; @@ -1279,6 +1290,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -1340,6 +1352,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1370,6 +1383,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1569,6 +1583,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1747,6 +1762,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1757,6 +1773,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1920,6 +1938,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1938,6 +1957,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2014,6 +2034,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2021,6 +2043,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2153,6 +2176,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2224,6 +2248,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2242,6 +2267,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2312,6 +2338,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2344,6 +2371,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2359,8 +2387,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2409,6 +2440,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2538,6 +2570,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2586,6 +2619,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2760,6 +2794,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3379,6 +3414,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3474,6 +3510,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3727,6 +3764,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3896,6 +3934,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4216,6 +4255,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4680,6 +4720,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4844,10 +4885,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4888,6 +4931,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4947,6 +4991,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4955,6 +5000,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5011,6 +5057,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5070,6 +5117,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5085,11 +5133,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5291,6 +5342,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5598,6 +5650,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5631,6 +5684,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5661,6 +5715,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5727,6 +5782,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5819,6 +5875,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6015,6 +6072,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6057,6 +6115,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6209,6 +6268,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6287,6 +6347,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6598,6 +6659,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6655,6 +6717,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6683,6 +6746,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6704,6 +6768,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6839,6 +6904,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6892,6 +6958,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6983,6 +7050,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7041,6 +7109,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7084,6 +7153,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7236,6 +7306,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7264,8 +7335,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7433,6 +7507,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7814,6 +7889,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7869,6 +7945,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7889,6 +7966,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7896,6 +7974,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8072,12 +8151,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8139,6 +8220,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8228,6 +8310,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8345,6 +8428,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8521,6 +8605,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8691,6 +8776,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8772,6 +8858,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8864,6 +8951,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8899,6 +8987,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8990,6 +9079,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 2363e401c29..1bc128eec5b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -916,6 +920,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_9_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1237,6 +1243,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_4"; @@ -1244,6 +1251,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_4"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_4"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_4"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_4"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; @@ -1255,10 +1263,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_4"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_4"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; @@ -1267,6 +1277,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; @@ -1278,6 +1289,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -1339,6 +1351,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1369,6 +1382,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1568,6 +1582,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1746,6 +1761,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1756,6 +1772,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1919,6 +1937,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1937,6 +1956,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2013,6 +2033,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2020,6 +2042,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2152,6 +2175,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2223,6 +2247,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2241,6 +2266,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2311,6 +2337,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2343,6 +2370,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2358,8 +2386,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2408,6 +2439,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2537,6 +2569,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2585,6 +2618,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2759,6 +2793,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3377,6 +3412,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3472,6 +3508,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3725,6 +3762,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3894,6 +3932,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4214,6 +4253,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4678,6 +4718,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4842,10 +4883,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4886,6 +4929,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4945,6 +4989,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4953,6 +4998,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5009,6 +5055,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5068,6 +5115,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5083,11 +5131,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5289,6 +5340,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5596,6 +5648,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5629,6 +5682,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5659,6 +5713,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5725,6 +5780,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5817,6 +5873,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6013,6 +6070,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6055,6 +6113,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6207,6 +6266,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6285,6 +6345,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6596,6 +6657,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6653,6 +6715,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6681,6 +6744,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6702,6 +6766,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6837,6 +6902,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6890,6 +6956,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6981,6 +7048,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7039,6 +7107,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7082,6 +7151,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7233,6 +7303,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7261,8 +7332,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7430,6 +7504,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7808,6 +7883,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7863,6 +7939,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7883,6 +7960,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7890,6 +7968,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8066,12 +8145,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8133,6 +8214,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8222,6 +8304,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8339,6 +8422,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8515,6 +8599,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8685,6 +8770,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8766,6 +8852,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8858,6 +8945,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8893,6 +8981,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8984,6 +9073,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 2c924184096..752611fe299 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -121,6 +121,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -916,6 +920,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_9_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1237,6 +1243,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_4"; @@ -1244,6 +1251,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_4"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_4"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_4"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_4"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; @@ -1255,10 +1263,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_4"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_4"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; @@ -1267,6 +1277,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; @@ -1278,6 +1289,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -1339,6 +1351,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1369,6 +1382,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1566,6 +1580,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -1744,6 +1759,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1754,6 +1770,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1917,6 +1935,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1935,6 +1954,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -2011,6 +2031,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2018,6 +2040,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2150,6 +2173,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2221,6 +2245,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2239,6 +2264,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2309,6 +2335,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2341,6 +2368,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2356,8 +2384,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2406,6 +2437,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2535,6 +2567,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2583,6 +2616,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2757,6 +2791,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3373,6 +3408,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3468,6 +3504,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -3721,6 +3758,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3890,6 +3928,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4210,6 +4249,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4673,6 +4713,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4836,10 +4877,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4880,6 +4923,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4939,6 +4983,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4947,6 +4992,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -5003,6 +5049,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -5062,6 +5109,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5077,11 +5125,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5283,6 +5334,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5588,6 +5640,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5621,6 +5674,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5651,6 +5705,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5717,6 +5772,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5809,6 +5865,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -6005,6 +6062,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6047,6 +6105,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -6199,6 +6258,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6277,6 +6337,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6587,6 +6648,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6644,6 +6706,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6672,6 +6735,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6693,6 +6757,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6828,6 +6893,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6881,6 +6947,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6972,6 +7039,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7030,6 +7098,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7073,6 +7142,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7224,6 +7294,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7252,8 +7323,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7421,6 +7495,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7797,6 +7872,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7850,6 +7926,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7870,6 +7947,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7877,6 +7955,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8053,12 +8132,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -8120,6 +8201,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -8209,6 +8291,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8326,6 +8409,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8502,6 +8586,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8672,6 +8757,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8753,6 +8839,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8844,6 +8931,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8879,6 +8967,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8970,6 +9059,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index aa9d7348a73..2621b682725 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -114,6 +114,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -599,6 +601,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -778,6 +781,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -898,6 +902,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_0_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1129,6 +1135,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1211,6 +1218,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1218,6 +1226,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1229,10 +1238,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1241,6 +1252,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1252,6 +1264,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1307,6 +1320,7 @@ self: super: { "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_3"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1331,6 +1345,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1504,6 +1519,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1521,6 +1537,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -1692,6 +1709,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1701,6 +1719,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1718,6 +1738,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1858,6 +1879,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1876,6 +1898,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1951,6 +1974,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -1958,6 +1983,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2086,6 +2112,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2155,6 +2182,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2172,6 +2200,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2240,6 +2269,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_2"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2272,6 +2302,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2287,8 +2318,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2337,6 +2371,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2462,6 +2497,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2510,6 +2546,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2675,6 +2712,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3269,6 +3307,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3332,6 +3371,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3362,6 +3402,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -3613,6 +3654,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3776,6 +3818,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4023,6 +4066,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4039,6 +4083,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4090,6 +4135,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4144,6 +4190,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4546,6 +4593,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4697,10 +4745,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4740,6 +4790,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4797,6 +4848,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4805,6 +4857,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4858,6 +4911,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4913,8 +4967,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; @@ -4927,11 +4983,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5037,6 +5096,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5116,6 +5176,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5411,6 +5472,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5442,6 +5504,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5471,6 +5534,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_0"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5515,6 +5579,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5535,6 +5600,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5622,6 +5688,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5809,6 +5876,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5849,6 +5917,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5995,6 +6064,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6072,6 +6142,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6154,6 +6225,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; "persistent-template" = doDistribute super."persistent-template_2_1_3_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6425,6 +6497,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -6451,6 +6524,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_2"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6474,6 +6548,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_2_0"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6606,6 +6681,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6657,6 +6733,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6751,6 +6828,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reroute" = doDistribute super."reroute_0_3_0_2"; "reserve" = dontDistribute super."reserve"; @@ -6807,6 +6885,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6850,6 +6929,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -7000,6 +7080,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7026,8 +7107,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7187,6 +7271,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7214,6 +7299,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7548,6 +7634,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7600,6 +7687,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7620,6 +7708,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7627,6 +7716,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7800,12 +7890,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -7831,6 +7923,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -7862,6 +7955,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7879,7 +7973,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7949,6 +8042,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8065,6 +8159,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8234,6 +8329,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8401,6 +8497,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; @@ -8478,6 +8575,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_0_5"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8566,6 +8664,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8595,6 +8694,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -8682,6 +8782,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 1e1afff1d7a..c22456e3fde 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -114,6 +114,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -599,6 +601,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -778,6 +781,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -898,6 +902,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1129,6 +1135,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1210,6 +1217,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1217,6 +1225,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1228,10 +1237,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1240,6 +1251,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1251,6 +1263,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1306,6 +1319,7 @@ self: super: { "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_3"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1330,6 +1344,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1503,6 +1518,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1520,6 +1536,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -1691,6 +1708,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1700,6 +1718,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1717,6 +1737,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1857,6 +1878,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1875,6 +1897,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1950,6 +1973,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -1957,6 +1982,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2085,6 +2111,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2154,6 +2181,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2171,6 +2199,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2239,6 +2268,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_2"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2271,6 +2301,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2286,8 +2317,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2336,6 +2370,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2461,6 +2496,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2509,6 +2545,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2674,6 +2711,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3266,6 +3304,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3329,6 +3368,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3359,6 +3399,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -3610,6 +3651,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3773,6 +3815,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4020,6 +4063,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4036,6 +4080,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4087,6 +4132,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4141,6 +4187,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4543,6 +4590,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4694,10 +4742,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4737,6 +4787,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4794,6 +4845,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4802,6 +4854,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4855,6 +4908,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4910,8 +4964,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; @@ -4924,11 +4980,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5034,6 +5093,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5113,6 +5173,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5407,6 +5468,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5438,6 +5500,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5467,6 +5530,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5511,6 +5575,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5531,6 +5596,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5618,6 +5684,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5804,6 +5871,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5844,6 +5912,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5990,6 +6059,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6067,6 +6137,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6149,6 +6220,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; "persistent-template" = doDistribute super."persistent-template_2_1_3_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6419,6 +6491,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -6445,6 +6518,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_2"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6468,6 +6542,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_3_0"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6600,6 +6675,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6651,6 +6727,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6745,6 +6822,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6800,6 +6878,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6843,6 +6922,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6993,6 +7073,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7019,8 +7100,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7180,6 +7264,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7207,6 +7292,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7541,6 +7627,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7593,6 +7680,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7613,6 +7701,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7620,6 +7709,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7793,12 +7883,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -7824,6 +7916,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -7855,6 +7948,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7872,7 +7966,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7942,6 +8035,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8058,6 +8152,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8226,6 +8321,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8393,6 +8489,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; @@ -8470,6 +8567,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_0_5"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8558,6 +8656,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8587,6 +8686,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -8674,6 +8774,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index 6be62d0311f..b4429e65811 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -114,6 +114,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -164,7 +165,9 @@ self: super: { "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; "Chart-cairo" = doDistribute super."Chart-cairo_1_5_1"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_4"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_13"; @@ -318,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -595,6 +599,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -773,6 +778,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -893,6 +899,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1124,6 +1132,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1205,6 +1214,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1212,6 +1222,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1223,10 +1234,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1235,6 +1248,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1246,6 +1260,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1298,6 +1313,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1322,6 +1338,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1384,6 +1401,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1492,6 +1510,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1509,6 +1528,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -1677,6 +1697,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1686,6 +1707,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1703,6 +1726,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1843,6 +1867,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1861,6 +1886,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1869,6 +1895,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1935,6 +1962,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -1942,6 +1971,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2070,6 +2100,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2139,6 +2170,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2156,6 +2188,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2223,7 +2256,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2254,6 +2289,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2269,8 +2305,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2319,6 +2358,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2444,6 +2484,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2492,6 +2533,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2651,6 +2693,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3052,6 +3095,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3238,6 +3282,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3300,6 +3345,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3330,6 +3376,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -3579,6 +3626,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3742,6 +3790,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -3988,6 +4037,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4004,6 +4054,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4055,6 +4106,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4108,6 +4160,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4508,6 +4561,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4657,10 +4711,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4700,6 +4756,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4757,6 +4814,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4765,6 +4823,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4818,6 +4877,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4840,6 +4900,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4872,8 +4933,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4885,11 +4948,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4993,6 +5059,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5070,6 +5137,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5363,6 +5431,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5394,6 +5463,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5423,6 +5493,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5466,6 +5537,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5486,6 +5558,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5572,6 +5645,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5755,6 +5829,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5795,6 +5870,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5940,6 +6016,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6016,6 +6093,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6098,6 +6176,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; "persistent-template" = doDistribute super."persistent-template_2_1_3_7"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6362,6 +6441,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -6388,6 +6468,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6411,6 +6492,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_4_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6542,6 +6624,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6593,6 +6676,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6686,6 +6770,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6741,6 +6826,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6784,6 +6870,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6934,6 +7021,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6960,8 +7048,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7035,6 +7126,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7119,6 +7211,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7146,6 +7239,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7476,6 +7570,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7528,6 +7623,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7548,12 +7644,14 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_2"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7723,12 +7821,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -7754,6 +7854,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -7785,6 +7886,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7802,7 +7904,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7871,6 +7972,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -7987,6 +8089,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8153,6 +8256,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8220,6 +8324,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8315,6 +8420,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; @@ -8389,6 +8495,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_1_1"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8477,6 +8584,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; @@ -8505,6 +8613,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -8590,6 +8699,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index 6968b8f22ff..512e50b34c9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -114,6 +114,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -164,7 +165,9 @@ self: super: { "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; "Chart-cairo" = doDistribute super."Chart-cairo_1_5_1"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_4"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_13"; @@ -318,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -595,6 +599,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -773,6 +778,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -893,6 +899,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1124,6 +1132,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1205,6 +1214,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1212,6 +1222,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1223,10 +1234,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1235,6 +1248,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1246,6 +1260,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1298,6 +1313,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1322,6 +1338,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1384,6 +1401,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1492,6 +1510,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1509,6 +1528,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -1677,6 +1697,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1686,6 +1707,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1703,6 +1726,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1842,6 +1866,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1860,6 +1885,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1868,6 +1894,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1934,6 +1961,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -1941,6 +1970,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2069,6 +2099,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2138,6 +2169,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2155,6 +2187,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2222,7 +2255,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2253,6 +2288,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2268,8 +2304,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2318,6 +2357,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2443,6 +2483,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2491,6 +2532,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2650,6 +2692,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3050,6 +3093,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3236,6 +3280,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3298,6 +3343,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3328,6 +3374,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -3577,6 +3624,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3740,6 +3788,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -3986,6 +4035,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4002,6 +4052,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4053,6 +4104,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4106,6 +4158,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4506,6 +4559,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4655,10 +4709,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4698,6 +4754,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4755,6 +4812,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4763,6 +4821,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4816,6 +4875,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4838,6 +4898,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4870,8 +4931,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4883,11 +4946,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4991,6 +5057,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5068,6 +5135,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5361,6 +5429,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5392,6 +5461,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5421,6 +5491,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5464,6 +5535,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5484,6 +5556,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5570,6 +5643,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5753,6 +5827,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5793,6 +5868,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5938,6 +6014,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6014,6 +6091,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6095,6 +6173,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6359,6 +6438,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -6385,6 +6465,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6408,6 +6489,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_4_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6539,6 +6621,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6590,6 +6673,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6683,6 +6767,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6738,6 +6823,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6781,6 +6867,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6931,6 +7018,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6957,8 +7045,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7031,6 +7122,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7115,6 +7207,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7142,6 +7235,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7472,6 +7566,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7524,6 +7619,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7544,12 +7640,14 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_2"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7719,12 +7817,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -7750,6 +7850,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -7781,6 +7882,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7798,7 +7900,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7867,6 +7968,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -7983,6 +8085,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8149,6 +8252,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8216,6 +8320,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8311,6 +8416,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; @@ -8385,6 +8491,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_1_1"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8473,6 +8580,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; @@ -8501,6 +8609,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_5"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -8586,6 +8695,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index 54a18bac10a..82434379c76 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -114,6 +114,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -164,6 +165,9 @@ self: super: { "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_4"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_13"; @@ -317,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -594,6 +599,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -772,6 +778,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -892,6 +899,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1123,6 +1132,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1204,6 +1214,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1211,6 +1222,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1222,10 +1234,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1234,6 +1248,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1245,6 +1260,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1297,6 +1313,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1321,6 +1338,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1383,6 +1401,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1491,6 +1510,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1508,6 +1528,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -1676,6 +1697,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1685,6 +1707,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1702,6 +1726,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1841,6 +1866,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1859,6 +1885,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1867,6 +1894,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1933,12 +1961,15 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1981,6 +2012,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = dontDistribute super."clckwrks"; "clckwrks-cli" = dontDistribute super."clckwrks-cli"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; @@ -2065,6 +2098,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2134,6 +2168,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2151,6 +2186,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2218,7 +2254,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2249,6 +2287,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2264,8 +2303,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2314,6 +2356,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2439,6 +2482,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2487,6 +2531,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2646,6 +2691,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3046,6 +3092,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3232,6 +3279,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3294,6 +3342,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3324,6 +3373,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -3572,6 +3622,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3735,6 +3786,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -3981,6 +4033,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3997,6 +4050,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4048,6 +4102,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4101,6 +4156,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4501,6 +4557,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4650,10 +4707,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4693,6 +4752,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4750,6 +4810,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4758,6 +4819,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4811,6 +4873,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4833,6 +4896,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4865,8 +4929,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4878,11 +4944,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4986,6 +5055,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5063,6 +5133,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5356,6 +5427,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5387,6 +5459,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5416,6 +5489,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5459,6 +5533,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5479,6 +5554,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5565,6 +5641,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5748,6 +5825,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5788,6 +5866,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5933,6 +6012,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6009,6 +6089,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6089,6 +6170,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6353,6 +6435,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -6379,6 +6462,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6402,6 +6486,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_5_3"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6533,6 +6618,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6584,6 +6670,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6677,6 +6764,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6732,6 +6820,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6775,6 +6864,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6925,6 +7015,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6951,8 +7042,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7025,6 +7119,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7109,6 +7204,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7136,6 +7232,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7466,6 +7563,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7518,6 +7616,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7538,12 +7637,14 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_2"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7711,12 +7812,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -7742,6 +7845,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -7773,6 +7877,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7790,7 +7895,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7859,6 +7963,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -7975,6 +8080,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8141,6 +8247,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8208,6 +8315,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8303,6 +8411,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; @@ -8377,6 +8486,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_1_1"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8465,6 +8575,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; @@ -8493,6 +8604,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_5"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -8576,6 +8688,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index e2f847f30df..b75f071de11 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -114,6 +114,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -164,6 +165,9 @@ self: super: { "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_4"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_13"; @@ -317,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -594,6 +599,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -772,6 +778,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -892,6 +899,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1123,6 +1132,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1204,6 +1214,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1211,6 +1222,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1222,10 +1234,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1234,6 +1248,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1245,6 +1260,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1297,6 +1313,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1321,6 +1338,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1383,6 +1401,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1491,6 +1510,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1508,6 +1528,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -1676,6 +1697,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1685,6 +1707,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1702,6 +1726,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1841,6 +1866,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1859,6 +1885,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1867,6 +1894,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1933,12 +1961,15 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1981,6 +2012,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = dontDistribute super."clckwrks"; "clckwrks-cli" = dontDistribute super."clckwrks-cli"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; @@ -2065,6 +2098,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2134,6 +2168,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2151,6 +2186,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2218,7 +2254,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2249,6 +2287,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2264,8 +2303,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2314,6 +2356,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2439,6 +2482,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2487,6 +2531,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2646,6 +2691,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3046,6 +3092,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3232,6 +3279,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3294,6 +3342,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3324,6 +3373,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -3572,6 +3622,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3735,6 +3786,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -3981,6 +4033,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3997,6 +4050,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4048,6 +4102,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4100,6 +4155,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4500,6 +4556,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4649,10 +4706,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4692,6 +4751,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4749,6 +4809,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4757,6 +4818,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4810,6 +4872,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4832,6 +4895,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4864,8 +4928,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4877,11 +4943,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4985,6 +5054,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5061,6 +5131,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5354,6 +5425,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5385,6 +5457,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5414,6 +5487,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5457,6 +5531,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5477,6 +5552,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5563,6 +5639,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5746,6 +5823,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5786,6 +5864,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5931,6 +6010,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6007,6 +6087,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6086,6 +6167,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6350,6 +6432,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -6376,6 +6459,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6399,6 +6483,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_5_4"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6530,6 +6615,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6581,6 +6667,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6674,6 +6761,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6729,6 +6817,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6772,6 +6861,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6922,6 +7012,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6948,8 +7039,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7022,6 +7116,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7106,6 +7201,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7133,6 +7229,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7463,6 +7560,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7515,6 +7613,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7535,12 +7634,14 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_2"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7708,12 +7809,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -7739,6 +7842,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -7770,6 +7874,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7787,7 +7892,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7856,6 +7960,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -7972,6 +8077,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8138,6 +8244,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8204,6 +8311,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8299,6 +8407,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; @@ -8373,6 +8482,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_1_1"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8461,6 +8571,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; @@ -8489,6 +8600,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_5"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -8572,6 +8684,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index 1757791208f..fc89326dea8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -114,6 +114,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -164,6 +165,9 @@ self: super: { "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_4"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_13"; @@ -317,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -594,6 +599,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -772,6 +778,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -892,6 +899,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1121,6 +1130,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1202,6 +1212,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1209,6 +1220,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1220,10 +1232,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1232,6 +1246,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1243,6 +1258,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1295,6 +1311,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1319,6 +1336,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1381,6 +1399,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1489,6 +1508,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1506,6 +1526,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -1674,6 +1695,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1683,6 +1705,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1700,6 +1724,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1838,6 +1863,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1856,6 +1882,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1864,6 +1891,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1930,12 +1958,15 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1978,6 +2009,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = dontDistribute super."clckwrks"; "clckwrks-cli" = dontDistribute super."clckwrks-cli"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; @@ -2062,6 +2095,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2131,6 +2165,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2148,6 +2183,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2215,7 +2251,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2245,6 +2283,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2260,8 +2299,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2310,6 +2352,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2435,6 +2478,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2483,6 +2527,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2640,6 +2685,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3040,6 +3086,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3226,6 +3273,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3288,6 +3336,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3318,6 +3367,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -3566,6 +3616,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3729,6 +3780,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -3975,6 +4027,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3991,6 +4044,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4042,6 +4096,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4094,6 +4149,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4493,6 +4549,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4642,10 +4699,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4685,6 +4744,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4742,6 +4802,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4750,6 +4811,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4803,6 +4865,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4825,6 +4888,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4857,8 +4921,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4870,11 +4936,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4978,6 +5047,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5054,6 +5124,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5247,6 +5318,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; @@ -5346,6 +5418,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5377,6 +5450,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5406,6 +5480,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5449,6 +5524,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5469,6 +5545,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5555,6 +5632,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5738,6 +5816,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5778,6 +5857,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5923,6 +6003,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -5999,6 +6080,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6078,6 +6160,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6342,6 +6425,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -6368,6 +6452,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6391,6 +6476,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_5_4"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6522,6 +6608,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6573,6 +6660,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6666,6 +6754,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6721,6 +6810,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6764,6 +6854,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6914,6 +7005,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6940,8 +7032,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7014,6 +7109,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7098,6 +7194,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7125,6 +7222,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7455,6 +7553,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7507,6 +7606,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7527,12 +7627,14 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_2"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7700,12 +7802,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -7731,6 +7835,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -7762,6 +7867,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7779,7 +7885,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7848,6 +7953,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -7964,6 +8070,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8130,6 +8237,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8196,6 +8304,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8290,6 +8399,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; @@ -8364,6 +8474,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_1_1"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8452,6 +8563,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; @@ -8480,6 +8592,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_5"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -8563,6 +8676,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index 11783029b1a..cb77599cc2f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -114,6 +114,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -164,6 +165,9 @@ self: super: { "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_4"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_13"; @@ -317,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -594,6 +599,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -772,6 +778,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -892,6 +899,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1121,6 +1130,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1202,6 +1212,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1209,6 +1220,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1220,10 +1232,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1232,6 +1246,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1243,6 +1258,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1295,6 +1311,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1319,6 +1336,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1381,6 +1399,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1489,6 +1508,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1506,6 +1526,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -1674,6 +1695,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1683,6 +1705,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1700,6 +1724,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1838,6 +1863,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1856,6 +1882,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1864,6 +1891,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1930,12 +1958,15 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1978,6 +2009,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = dontDistribute super."clckwrks"; "clckwrks-cli" = dontDistribute super."clckwrks-cli"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; @@ -2062,6 +2095,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2131,6 +2165,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2148,6 +2183,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2215,7 +2251,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2245,6 +2283,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2260,8 +2299,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2310,6 +2352,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2435,6 +2478,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2483,6 +2527,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2640,6 +2685,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3040,6 +3086,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3226,6 +3273,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3288,6 +3336,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3318,6 +3367,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -3566,6 +3616,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3729,6 +3780,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -3974,6 +4026,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3990,6 +4043,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4041,6 +4095,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4093,6 +4148,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4491,6 +4547,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4639,10 +4696,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4682,6 +4741,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4739,6 +4799,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4747,6 +4808,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4800,6 +4862,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4822,6 +4885,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4854,8 +4918,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4867,11 +4933,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4975,6 +5044,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5051,6 +5121,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5244,6 +5315,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; @@ -5343,6 +5415,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5374,6 +5447,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5403,6 +5477,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5446,6 +5521,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5466,6 +5542,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5552,6 +5629,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5735,6 +5813,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5775,6 +5854,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5920,6 +6000,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -5996,6 +6077,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6075,6 +6157,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6339,6 +6422,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -6365,6 +6449,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6388,6 +6473,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6519,6 +6605,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6570,6 +6657,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6663,6 +6751,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6718,6 +6807,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6761,6 +6851,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6911,6 +7002,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6937,8 +7029,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; @@ -7010,6 +7105,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7094,6 +7190,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7121,6 +7218,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7451,6 +7549,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7503,6 +7602,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7523,12 +7623,14 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_2"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7696,12 +7798,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -7727,6 +7831,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -7758,6 +7863,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7775,7 +7881,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7844,6 +7949,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -7960,6 +8066,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8126,6 +8233,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8192,6 +8300,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8286,6 +8395,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; @@ -8360,6 +8470,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_1_1"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8448,6 +8559,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; @@ -8476,6 +8588,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_5"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -8559,6 +8672,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index e188ec15cbb..3954f26e498 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -114,6 +114,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -164,6 +165,9 @@ self: super: { "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_4"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_13"; @@ -317,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -594,6 +599,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -771,6 +777,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -891,6 +898,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1120,6 +1129,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1201,6 +1211,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1208,6 +1219,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1219,10 +1231,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1231,6 +1245,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1242,6 +1257,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1294,6 +1310,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1318,6 +1335,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1380,6 +1398,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1488,6 +1507,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1505,6 +1525,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -1673,6 +1694,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1682,6 +1704,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1699,6 +1723,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1837,6 +1862,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1855,6 +1881,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1863,6 +1890,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1929,12 +1957,15 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1977,6 +2008,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = dontDistribute super."clckwrks"; "clckwrks-cli" = dontDistribute super."clckwrks-cli"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; @@ -2061,6 +2094,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2130,6 +2164,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2147,6 +2182,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2214,7 +2250,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2244,6 +2282,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2259,8 +2298,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2309,6 +2351,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2434,6 +2477,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2482,6 +2526,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2639,6 +2684,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3038,6 +3084,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3224,6 +3271,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3286,6 +3334,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3316,6 +3365,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -3564,6 +3614,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3726,6 +3777,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -3971,6 +4023,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3987,6 +4040,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4038,6 +4092,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4090,6 +4145,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4488,6 +4544,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4636,10 +4693,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4679,6 +4738,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4736,6 +4796,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4744,6 +4805,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4797,6 +4859,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4819,6 +4882,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4851,8 +4915,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4864,11 +4930,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4971,6 +5040,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5047,6 +5117,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5240,6 +5311,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; @@ -5338,6 +5410,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5369,6 +5442,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5398,6 +5472,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5441,6 +5516,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5461,6 +5537,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5547,6 +5624,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5730,6 +5808,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5770,6 +5849,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5915,6 +5995,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -5991,6 +6072,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6003,6 +6085,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path" = doDistribute super."path_0_5_3"; "path-extra" = dontDistribute super."path-extra"; "path-io" = dontDistribute super."path-io"; "pathfinding" = dontDistribute super."pathfinding"; @@ -6069,6 +6152,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6332,6 +6416,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -6358,6 +6443,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6381,6 +6467,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6512,6 +6599,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6562,6 +6650,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6655,6 +6744,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6710,6 +6800,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6753,6 +6844,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6840,6 +6932,7 @@ self: super: { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_4_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6902,6 +6995,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6928,8 +7022,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; @@ -7001,6 +7098,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7085,6 +7183,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7112,6 +7211,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7442,6 +7542,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7494,6 +7595,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7514,11 +7616,13 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7685,11 +7789,13 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -7715,6 +7821,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -7746,6 +7853,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7763,7 +7871,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7832,6 +7939,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -7948,6 +8056,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8114,6 +8223,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8180,6 +8290,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8274,6 +8385,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; @@ -8348,6 +8460,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_2"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8436,6 +8549,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; @@ -8464,6 +8578,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_5"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -8547,6 +8662,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index 5875789a2af..815030d9dcc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -114,6 +114,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -164,6 +165,9 @@ self: super: { "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_4"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_13"; @@ -317,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -594,6 +599,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -771,6 +777,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -891,6 +898,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1120,6 +1129,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1201,6 +1211,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1208,6 +1219,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1219,10 +1231,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1231,6 +1245,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1242,6 +1257,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1294,6 +1310,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1317,6 +1334,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1379,6 +1397,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1487,6 +1506,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1504,6 +1524,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -1672,6 +1693,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1681,6 +1703,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1698,6 +1722,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1836,6 +1861,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1854,6 +1880,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1862,6 +1889,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1894,6 +1922,7 @@ self: super: { "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_1"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1927,12 +1956,15 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1975,6 +2007,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = dontDistribute super."clckwrks"; "clckwrks-cli" = dontDistribute super."clckwrks-cli"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; @@ -2059,6 +2093,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2128,6 +2163,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2145,6 +2181,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2212,7 +2249,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2242,6 +2281,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2257,8 +2297,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2307,6 +2350,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2432,6 +2476,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2480,6 +2525,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2637,6 +2683,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3036,6 +3083,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3222,6 +3270,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3284,6 +3333,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3314,6 +3364,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -3562,6 +3613,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3723,6 +3775,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -3968,6 +4021,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3984,6 +4038,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4035,6 +4090,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4087,6 +4143,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4485,6 +4542,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4633,10 +4691,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4675,6 +4735,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4732,6 +4793,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4740,6 +4802,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4793,6 +4856,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4815,6 +4879,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4847,8 +4912,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4860,11 +4927,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4967,6 +5037,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5043,6 +5114,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5235,6 +5307,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; @@ -5333,6 +5406,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5364,6 +5438,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5393,6 +5468,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5436,6 +5512,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5456,6 +5533,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5541,6 +5619,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5724,6 +5803,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5764,6 +5844,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5909,6 +5990,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -5985,6 +6067,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -5997,6 +6080,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path" = doDistribute super."path_0_5_3"; "path-extra" = dontDistribute super."path-extra"; "path-io" = dontDistribute super."path-io"; "pathfinding" = dontDistribute super."pathfinding"; @@ -6063,6 +6147,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6326,6 +6411,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -6352,6 +6438,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6375,6 +6462,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6506,6 +6594,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6556,6 +6645,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6649,6 +6739,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6704,6 +6795,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6747,6 +6839,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6834,6 +6927,7 @@ self: super: { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_4_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6896,6 +6990,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6922,8 +7017,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; @@ -6995,6 +7093,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7079,6 +7178,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7106,6 +7206,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7436,6 +7537,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7488,6 +7590,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7508,11 +7611,13 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7679,11 +7784,13 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -7709,6 +7816,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -7740,6 +7848,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7757,7 +7866,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7826,6 +7934,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -7942,6 +8051,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8108,6 +8218,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8174,6 +8285,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8268,6 +8380,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; @@ -8342,6 +8455,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_2"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8430,6 +8544,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; @@ -8457,6 +8572,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -8540,6 +8656,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index 58b5849579c..83f9a0923dd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -114,6 +114,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -164,6 +165,9 @@ self: super: { "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_4"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_13"; @@ -317,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -594,6 +599,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -771,6 +777,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -891,6 +898,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1120,6 +1129,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1201,6 +1211,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1208,6 +1219,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1219,10 +1231,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1231,6 +1245,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1242,6 +1257,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1294,6 +1310,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1317,6 +1334,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1379,6 +1397,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1487,6 +1506,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1504,6 +1524,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -1672,6 +1693,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1681,6 +1703,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1698,6 +1722,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1835,6 +1860,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1853,6 +1879,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1861,6 +1888,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1893,6 +1921,7 @@ self: super: { "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_1"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1926,12 +1955,15 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1974,6 +2006,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = dontDistribute super."clckwrks"; "clckwrks-cli" = dontDistribute super."clckwrks-cli"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; @@ -2058,6 +2092,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2127,6 +2162,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2144,6 +2180,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2211,7 +2248,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2241,6 +2280,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2256,8 +2296,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2306,6 +2349,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2431,6 +2475,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2479,6 +2524,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2636,6 +2682,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3035,6 +3082,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3221,6 +3269,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3283,6 +3332,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3312,6 +3362,7 @@ self: super: { "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -3559,6 +3610,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3719,6 +3771,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -3963,6 +4016,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3979,6 +4033,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4030,6 +4085,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4069,6 +4125,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4081,6 +4138,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4249,6 +4307,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4406,6 +4465,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4476,6 +4536,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4624,10 +4685,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4666,6 +4729,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4723,6 +4787,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4731,6 +4796,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4784,6 +4850,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4806,6 +4873,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4838,8 +4906,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4851,11 +4921,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4958,6 +5031,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5034,6 +5108,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5226,6 +5301,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; @@ -5324,6 +5400,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5355,6 +5432,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5384,6 +5462,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5427,6 +5506,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5447,6 +5527,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5532,6 +5613,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5715,6 +5797,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5755,6 +5838,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5900,6 +5984,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -5975,6 +6060,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -5987,6 +6073,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path" = doDistribute super."path_0_5_3"; "path-extra" = dontDistribute super."path-extra"; "path-io" = dontDistribute super."path-io"; "pathfinding" = dontDistribute super."pathfinding"; @@ -6053,6 +6140,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6316,6 +6404,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -6329,6 +6418,8 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -6340,6 +6431,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6363,6 +6455,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6494,6 +6587,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6544,6 +6638,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6637,6 +6732,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6692,6 +6788,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6735,6 +6832,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6822,6 +6920,7 @@ self: super: { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_4_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6884,6 +6983,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6910,8 +7010,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; @@ -6982,6 +7085,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7066,6 +7170,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7093,6 +7198,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7423,6 +7529,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7475,6 +7582,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7495,11 +7603,13 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7666,11 +7776,13 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -7696,6 +7808,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -7727,6 +7840,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7744,7 +7858,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7813,6 +7926,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -7929,6 +8043,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8095,6 +8210,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8161,6 +8277,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8255,6 +8372,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; @@ -8329,6 +8447,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_2"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8417,6 +8536,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; @@ -8444,6 +8564,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -8527,6 +8648,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index 3eeb0194a49..5760e899c8b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -113,6 +113,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -163,6 +164,9 @@ self: super: { "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_4"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_13"; @@ -316,6 +320,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -593,6 +598,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -770,6 +776,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -890,6 +897,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1119,6 +1128,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1200,6 +1210,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1207,6 +1218,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1218,10 +1230,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1230,6 +1244,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1241,6 +1256,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1293,6 +1309,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1316,6 +1333,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1377,6 +1395,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1484,6 +1503,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1501,6 +1521,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -1669,6 +1690,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1678,6 +1700,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1694,6 +1718,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1830,6 +1855,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1848,6 +1874,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1856,6 +1883,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1888,6 +1916,7 @@ self: super: { "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_1"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1921,12 +1950,15 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1969,6 +2001,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = dontDistribute super."clckwrks"; "clckwrks-cli" = dontDistribute super."clckwrks-cli"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; @@ -2053,6 +2087,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2121,6 +2156,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2138,6 +2174,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2205,7 +2242,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2235,6 +2274,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2250,8 +2290,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2300,6 +2343,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2425,6 +2469,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2473,6 +2518,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2630,6 +2676,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3029,6 +3076,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3215,6 +3263,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3277,6 +3326,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3306,6 +3356,7 @@ self: super: { "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -3553,6 +3604,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3713,6 +3765,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -3957,6 +4010,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3973,6 +4027,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4024,6 +4079,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4063,6 +4119,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4075,6 +4132,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4241,6 +4299,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4397,6 +4456,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4467,6 +4527,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4615,10 +4676,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4657,6 +4720,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4714,6 +4778,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4722,6 +4787,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4775,6 +4841,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4797,6 +4864,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4828,8 +4896,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4841,11 +4911,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4948,6 +5021,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5024,6 +5098,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5215,6 +5290,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; @@ -5313,6 +5389,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5344,6 +5421,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5373,6 +5451,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5416,6 +5495,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5436,6 +5516,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5521,6 +5602,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5703,6 +5785,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5743,6 +5826,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5888,6 +5972,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -5963,6 +6048,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -5975,6 +6061,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path" = doDistribute super."path_0_5_3"; "path-extra" = dontDistribute super."path-extra"; "path-io" = dontDistribute super."path-io"; "pathfinding" = dontDistribute super."pathfinding"; @@ -6028,6 +6115,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -6040,6 +6128,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6080,6 +6169,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_7"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; @@ -6302,6 +6392,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -6315,6 +6406,8 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -6326,6 +6419,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6349,6 +6443,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6480,6 +6575,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6530,6 +6626,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6623,6 +6720,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6678,6 +6776,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6721,6 +6820,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6808,6 +6908,7 @@ self: super: { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_4_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6870,6 +6971,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6896,8 +6998,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; @@ -6968,6 +7073,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7052,6 +7158,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7079,6 +7186,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7408,6 +7516,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7460,6 +7569,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7480,11 +7590,13 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7651,11 +7763,13 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -7681,6 +7795,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -7712,6 +7827,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7729,7 +7845,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7798,6 +7913,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -7914,6 +8030,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8080,6 +8197,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8146,6 +8264,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8240,6 +8359,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; @@ -8313,6 +8433,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_2"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8401,6 +8522,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; @@ -8428,6 +8550,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -8511,6 +8634,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 69483ad17f0..830a93f2cc0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -114,6 +114,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -598,6 +600,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -777,6 +780,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -897,6 +901,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1128,6 +1134,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1209,6 +1216,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1216,6 +1224,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1227,10 +1236,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1239,6 +1250,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1250,6 +1262,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1304,6 +1317,7 @@ self: super: { "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_3"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1328,6 +1342,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1501,6 +1516,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1518,6 +1534,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -1689,6 +1706,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1698,6 +1716,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1715,6 +1735,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1855,6 +1876,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1873,6 +1895,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1948,6 +1971,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -1955,6 +1980,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2083,6 +2109,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2152,6 +2179,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2169,6 +2197,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2237,6 +2266,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_2"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2269,6 +2299,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2284,8 +2315,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2334,6 +2368,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2459,6 +2494,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2507,6 +2543,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2671,6 +2708,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3263,6 +3301,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3325,6 +3364,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3355,6 +3395,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -3606,6 +3647,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3769,6 +3811,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4016,6 +4059,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4032,6 +4076,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4083,6 +4128,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4137,6 +4183,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4539,6 +4586,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4690,10 +4738,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4733,6 +4783,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4790,6 +4841,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4798,6 +4850,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4851,6 +4904,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4906,8 +4960,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; @@ -4920,11 +4976,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5029,6 +5088,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5107,6 +5167,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5401,6 +5462,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5432,6 +5494,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5461,6 +5524,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5505,6 +5569,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5525,6 +5590,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5612,6 +5678,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5798,6 +5865,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5838,6 +5906,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5984,6 +6053,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6061,6 +6131,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6143,6 +6214,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; "persistent-template" = doDistribute super."persistent-template_2_1_3_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6412,6 +6484,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -6438,6 +6511,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_2"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6461,6 +6535,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_3_0"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6592,6 +6667,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6643,6 +6719,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6737,6 +6814,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6792,6 +6870,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6835,6 +6914,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6985,6 +7065,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7011,8 +7092,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7087,6 +7171,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7171,6 +7256,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7198,6 +7284,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7531,6 +7618,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7583,6 +7671,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7603,6 +7692,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7610,6 +7700,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7783,12 +7874,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -7814,6 +7907,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -7845,6 +7939,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7862,7 +7957,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7932,6 +8026,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8048,6 +8143,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8216,6 +8312,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8284,6 +8381,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_4"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8382,6 +8480,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; @@ -8459,6 +8558,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_0_5"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8547,6 +8647,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; @@ -8576,6 +8677,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -8663,6 +8765,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index 535391a6252..1e842db7eed 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -113,6 +113,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -163,6 +164,9 @@ self: super: { "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_4"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_13"; @@ -316,6 +320,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -592,6 +597,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -769,6 +775,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -889,6 +896,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1118,6 +1127,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = doDistribute super."aeson-compat_0_3_0_0"; @@ -1199,6 +1209,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1206,6 +1217,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1217,10 +1229,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1229,6 +1243,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1240,6 +1255,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1292,6 +1308,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1315,6 +1332,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1376,6 +1394,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1483,6 +1502,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1500,6 +1520,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -1668,6 +1689,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1677,6 +1699,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1693,6 +1717,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1829,6 +1854,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1847,6 +1873,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1855,6 +1882,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1887,6 +1915,7 @@ self: super: { "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_1"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1920,12 +1949,15 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1968,6 +2000,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = dontDistribute super."clckwrks"; "clckwrks-cli" = dontDistribute super."clckwrks-cli"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; @@ -2052,6 +2086,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2120,6 +2155,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2137,6 +2173,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2204,7 +2241,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2234,6 +2273,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2249,8 +2289,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2299,6 +2342,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2424,6 +2468,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2472,6 +2517,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2629,6 +2675,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3028,6 +3075,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3214,6 +3262,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3276,6 +3325,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3305,6 +3355,7 @@ self: super: { "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -3552,6 +3603,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3712,6 +3764,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -3956,6 +4009,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3972,6 +4026,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4023,6 +4078,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4062,6 +4118,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4074,6 +4131,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4240,6 +4298,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4396,6 +4455,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4466,6 +4526,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4614,10 +4675,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4656,6 +4719,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4713,6 +4777,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4721,6 +4786,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4774,6 +4840,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4796,6 +4863,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4827,8 +4895,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4840,11 +4910,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4935,6 +5008,7 @@ self: super: { "language-boogie" = dontDistribute super."language-boogie"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = doDistribute super."language-c-quote_0_11_4"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; "language-dot" = dontDistribute super."language-dot"; @@ -4946,6 +5020,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5022,6 +5097,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5213,6 +5289,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; @@ -5311,6 +5388,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5342,6 +5420,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5371,6 +5450,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5414,6 +5494,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5434,6 +5515,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5519,6 +5601,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5701,6 +5784,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5741,6 +5825,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5886,6 +5971,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -5961,6 +6047,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -5973,6 +6060,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path" = doDistribute super."path_0_5_3"; "path-extra" = dontDistribute super."path-extra"; "path-io" = dontDistribute super."path-io"; "pathfinding" = dontDistribute super."pathfinding"; @@ -6026,6 +6114,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -6038,6 +6127,8 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; + "persistent-template" = doDistribute super."persistent-template_2_1_5"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -6077,6 +6168,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_7"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; @@ -6299,6 +6391,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -6312,6 +6405,8 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -6323,6 +6418,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6346,6 +6442,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6477,6 +6574,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6527,6 +6625,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6619,6 +6718,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6674,6 +6774,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6717,6 +6818,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6804,6 +6906,7 @@ self: super: { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_4_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6866,6 +6969,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6892,8 +6996,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; @@ -6964,6 +7071,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7048,6 +7156,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7075,6 +7184,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7403,6 +7513,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7455,6 +7566,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7475,11 +7587,13 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7558,6 +7672,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7645,11 +7760,13 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -7675,6 +7792,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -7706,6 +7824,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7723,7 +7842,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7792,6 +7910,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -7908,6 +8027,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8074,6 +8194,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8140,6 +8261,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8234,6 +8356,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; @@ -8306,6 +8429,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_2"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8394,6 +8518,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; @@ -8421,6 +8546,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -8504,6 +8630,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index 3f7fe51cd18..d2ba426e300 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -113,6 +113,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -163,6 +164,9 @@ self: super: { "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_4"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_13"; @@ -316,6 +320,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -592,6 +597,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -769,6 +775,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -889,6 +896,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1118,6 +1127,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = doDistribute super."aeson-compat_0_3_0_0"; @@ -1199,6 +1209,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1206,6 +1217,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1217,10 +1229,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1229,6 +1243,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1240,6 +1255,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1292,6 +1308,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1315,6 +1332,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1376,6 +1394,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1483,6 +1502,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1500,6 +1520,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -1668,6 +1689,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1677,6 +1699,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1693,6 +1717,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1829,6 +1854,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1847,6 +1873,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1855,6 +1882,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1887,6 +1915,7 @@ self: super: { "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_1"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1920,12 +1949,15 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1968,6 +2000,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = dontDistribute super."clckwrks"; "clckwrks-cli" = dontDistribute super."clckwrks-cli"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; @@ -2052,6 +2086,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2119,6 +2154,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2136,6 +2172,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2203,7 +2240,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2233,6 +2272,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2248,8 +2288,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2298,6 +2341,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2423,6 +2467,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2471,6 +2516,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2628,6 +2674,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3025,6 +3072,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3211,6 +3259,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3273,6 +3322,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3302,6 +3352,7 @@ self: super: { "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -3549,6 +3600,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3682,6 +3734,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3708,6 +3761,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -3952,6 +4006,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3968,6 +4023,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4019,6 +4075,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4058,6 +4115,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4070,6 +4128,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4236,6 +4295,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4392,6 +4452,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4462,6 +4523,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4608,10 +4670,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4650,6 +4714,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4707,6 +4772,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4715,6 +4781,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4768,6 +4835,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4790,6 +4858,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4821,8 +4890,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4834,11 +4905,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4929,6 +5003,7 @@ self: super: { "language-boogie" = dontDistribute super."language-boogie"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = doDistribute super."language-c-quote_0_11_4"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; "language-dot" = dontDistribute super."language-dot"; @@ -4940,6 +5015,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5016,6 +5092,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5207,6 +5284,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; @@ -5305,6 +5383,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5336,6 +5415,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5365,6 +5445,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5408,6 +5489,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5428,6 +5510,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5512,6 +5595,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5694,6 +5778,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5734,6 +5819,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5879,6 +5965,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -5953,6 +6040,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -5965,6 +6053,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path" = doDistribute super."path_0_5_3"; "path-extra" = dontDistribute super."path-extra"; "path-io" = dontDistribute super."path-io"; "pathfinding" = dontDistribute super."pathfinding"; @@ -6018,6 +6107,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -6030,6 +6120,8 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; + "persistent-template" = doDistribute super."persistent-template_2_1_5"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -6069,6 +6161,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_7"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; @@ -6290,6 +6383,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -6303,6 +6397,8 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -6314,6 +6410,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6337,6 +6434,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6468,6 +6566,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6517,6 +6616,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6609,6 +6709,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6663,6 +6764,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6706,6 +6808,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6792,6 +6895,7 @@ self: super: { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_4_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6854,6 +6958,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6871,19 +6976,27 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = dontDistribute super."servant-swagger"; "servant-yaml" = dontDistribute super."servant-yaml"; "servius" = dontDistribute super."servius"; @@ -6944,6 +7057,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7027,6 +7141,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7054,6 +7169,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7382,6 +7498,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7434,6 +7551,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7454,11 +7572,13 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7537,6 +7657,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7624,11 +7745,13 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -7654,6 +7777,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -7685,6 +7809,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7702,7 +7827,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7770,6 +7894,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -7886,6 +8011,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8052,6 +8178,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8115,6 +8242,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8207,6 +8335,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; @@ -8279,6 +8408,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_2"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8367,6 +8497,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; @@ -8394,6 +8525,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -8476,6 +8608,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index e3fb760f538..d85a7f7081a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -113,6 +113,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -163,6 +164,9 @@ self: super: { "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_4"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_13"; @@ -316,6 +320,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -592,6 +597,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -769,6 +775,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -889,6 +896,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1118,6 +1127,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = doDistribute super."aeson-compat_0_3_0_0"; @@ -1199,6 +1209,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1206,6 +1217,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1217,10 +1229,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1229,6 +1243,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1240,6 +1255,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1292,6 +1308,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1315,6 +1332,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1376,6 +1394,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1483,6 +1502,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1500,6 +1520,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -1668,6 +1689,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1677,6 +1699,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1693,6 +1717,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1829,6 +1854,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1847,6 +1873,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1855,6 +1882,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1887,6 +1915,7 @@ self: super: { "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_1"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1920,12 +1949,15 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1968,6 +2000,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = dontDistribute super."clckwrks"; "clckwrks-cli" = dontDistribute super."clckwrks-cli"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; @@ -2052,6 +2086,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2119,6 +2154,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2136,6 +2172,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2203,7 +2240,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2233,6 +2272,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2248,8 +2288,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2298,6 +2341,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2423,6 +2467,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2471,6 +2516,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2628,6 +2674,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3023,6 +3070,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3209,6 +3257,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3271,6 +3320,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3300,6 +3350,7 @@ self: super: { "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -3547,6 +3598,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3680,6 +3732,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3706,6 +3759,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -3950,6 +4004,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3965,6 +4020,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4016,6 +4072,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4055,6 +4112,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4067,6 +4125,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4233,6 +4292,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4389,6 +4449,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4459,6 +4520,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4604,10 +4666,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4645,6 +4709,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4701,6 +4766,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4709,6 +4775,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4762,6 +4829,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4784,6 +4852,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4815,8 +4884,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4828,11 +4899,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4923,6 +4997,7 @@ self: super: { "language-boogie" = dontDistribute super."language-boogie"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = doDistribute super."language-c-quote_0_11_4"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; "language-dot" = dontDistribute super."language-dot"; @@ -4934,6 +5009,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5010,6 +5086,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5201,6 +5278,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; @@ -5299,6 +5377,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5330,6 +5409,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5359,6 +5439,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5402,6 +5483,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5422,6 +5504,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5506,6 +5589,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5688,6 +5772,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5728,6 +5813,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5873,6 +5959,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -5947,6 +6034,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -5959,6 +6047,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path" = doDistribute super."path_0_5_3"; "path-extra" = dontDistribute super."path-extra"; "path-io" = dontDistribute super."path-io"; "pathfinding" = dontDistribute super."pathfinding"; @@ -6012,6 +6101,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -6024,6 +6114,8 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; + "persistent-template" = doDistribute super."persistent-template_2_1_5"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -6063,6 +6155,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_7"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; @@ -6284,6 +6377,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -6297,6 +6391,8 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -6308,6 +6404,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6331,6 +6428,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6462,6 +6560,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6511,6 +6610,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6603,6 +6703,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6657,6 +6758,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6700,6 +6802,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6786,6 +6889,7 @@ self: super: { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_4_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6848,6 +6952,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6865,19 +6970,27 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = dontDistribute super."servant-swagger"; "servant-yaml" = dontDistribute super."servant-yaml"; "servius" = dontDistribute super."servius"; @@ -6938,6 +7051,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7021,6 +7135,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7048,6 +7163,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7376,6 +7492,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7428,6 +7545,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7448,11 +7566,13 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7531,6 +7651,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7618,11 +7739,13 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -7648,6 +7771,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -7679,6 +7803,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7696,7 +7821,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7764,6 +7888,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -7880,6 +8005,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8046,6 +8172,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8109,6 +8236,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8201,6 +8329,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; @@ -8273,6 +8402,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_2"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8361,6 +8491,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; @@ -8388,6 +8519,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -8470,6 +8602,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index fe46fd0999f..c939e3fded7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -114,6 +114,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -598,6 +600,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -777,6 +780,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -897,6 +901,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1128,6 +1134,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1209,6 +1216,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1216,6 +1224,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1227,10 +1236,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1239,6 +1250,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1250,6 +1262,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1303,6 +1316,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1327,6 +1341,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1500,6 +1515,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1517,6 +1533,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -1688,6 +1705,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1697,6 +1715,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1714,6 +1734,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1854,6 +1875,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1872,6 +1894,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1947,6 +1970,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -1954,6 +1979,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2082,6 +2108,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2151,6 +2178,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2168,6 +2196,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2236,7 +2265,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2267,6 +2298,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2282,8 +2314,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2332,6 +2367,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2457,6 +2493,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2505,6 +2542,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2669,6 +2707,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3260,6 +3299,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3322,6 +3362,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3352,6 +3393,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -3603,6 +3645,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3766,6 +3809,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4013,6 +4057,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4029,6 +4074,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4080,6 +4126,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4134,6 +4181,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4535,6 +4583,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4686,10 +4735,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4729,6 +4780,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4786,6 +4838,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4794,6 +4847,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4847,6 +4901,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4902,8 +4957,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; @@ -4916,11 +4973,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5025,6 +5085,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5103,6 +5164,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5397,6 +5459,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5428,6 +5491,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5457,6 +5521,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5501,6 +5566,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5521,6 +5587,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5608,6 +5675,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5794,6 +5862,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5834,6 +5903,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5980,6 +6050,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6057,6 +6128,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6139,6 +6211,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; "persistent-template" = doDistribute super."persistent-template_2_1_3_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6408,6 +6481,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -6434,6 +6508,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_2"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6457,6 +6532,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_4_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6588,6 +6664,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6639,6 +6716,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6732,6 +6810,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6787,6 +6866,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6830,6 +6910,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6980,6 +7061,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7006,8 +7088,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_2"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7082,6 +7167,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7166,6 +7252,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7193,6 +7280,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7525,6 +7613,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7577,6 +7666,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7597,6 +7687,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7604,6 +7695,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7776,12 +7868,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -7807,6 +7901,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -7838,6 +7933,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7855,7 +7951,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7925,6 +8020,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8041,6 +8137,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8208,6 +8305,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8276,6 +8374,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_4"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8374,6 +8473,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; @@ -8451,6 +8551,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_0_5"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8539,6 +8640,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6"; @@ -8567,6 +8669,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -8654,6 +8757,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index 6d56cc3fd65..97948f17848 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -114,6 +114,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -598,6 +600,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -777,6 +780,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -897,6 +901,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1128,6 +1134,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1209,6 +1216,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1216,6 +1224,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1227,10 +1236,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1239,6 +1250,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1250,6 +1262,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1303,6 +1316,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1327,6 +1341,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1500,6 +1515,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1517,6 +1533,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -1688,6 +1705,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1697,6 +1715,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1714,6 +1734,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1854,6 +1875,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1872,6 +1894,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1947,6 +1970,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -1954,6 +1979,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2082,6 +2108,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2151,6 +2178,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2168,6 +2196,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2236,7 +2265,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2267,6 +2298,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2282,8 +2314,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2332,6 +2367,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2457,6 +2493,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2505,6 +2542,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2669,6 +2707,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3260,6 +3299,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3322,6 +3362,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3352,6 +3393,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -3603,6 +3645,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3766,6 +3809,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4013,6 +4057,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4029,6 +4074,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4080,6 +4126,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4134,6 +4181,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4535,6 +4583,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4686,10 +4735,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4729,6 +4780,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4786,6 +4838,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4794,6 +4847,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4847,6 +4901,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4902,8 +4957,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; @@ -4916,11 +4973,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5025,6 +5085,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5103,6 +5164,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5397,6 +5459,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5428,6 +5491,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5457,6 +5521,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5501,6 +5566,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5521,6 +5587,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5608,6 +5675,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5794,6 +5862,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5834,6 +5903,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5980,6 +6050,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6057,6 +6128,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6139,6 +6211,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; "persistent-template" = doDistribute super."persistent-template_2_1_3_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6408,6 +6481,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -6434,6 +6508,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_2"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6457,6 +6532,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_4_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6588,6 +6664,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6639,6 +6716,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6732,6 +6810,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6787,6 +6866,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6830,6 +6910,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6980,6 +7061,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7006,8 +7088,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_2"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7082,6 +7167,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7166,6 +7252,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7193,6 +7280,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7524,6 +7612,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7576,6 +7665,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7596,6 +7686,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7603,6 +7694,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7775,12 +7867,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -7806,6 +7900,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -7837,6 +7932,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7854,7 +7950,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7924,6 +8019,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8040,6 +8136,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8207,6 +8304,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8275,6 +8373,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_4"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8372,6 +8471,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; @@ -8449,6 +8549,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_0_5"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8537,6 +8638,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6"; @@ -8565,6 +8667,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -8652,6 +8755,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index bc5a71482e4..6563871a826 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -114,6 +114,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -598,6 +600,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -777,6 +780,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -897,6 +901,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1128,6 +1134,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1209,6 +1216,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1216,6 +1224,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1227,10 +1236,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1239,6 +1250,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1250,6 +1262,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1302,6 +1315,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1326,6 +1340,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1499,6 +1514,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1516,6 +1532,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -1687,6 +1704,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1696,6 +1714,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1713,6 +1733,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1853,6 +1874,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1871,6 +1893,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1946,6 +1969,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -1953,6 +1978,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2081,6 +2107,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2150,6 +2177,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2167,6 +2195,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2235,7 +2264,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2266,6 +2297,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2281,8 +2313,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2331,6 +2366,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2456,6 +2492,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2504,6 +2541,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2668,6 +2706,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3258,6 +3297,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3320,6 +3360,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3350,6 +3391,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -3601,6 +3643,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3764,6 +3807,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4011,6 +4055,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4027,6 +4072,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4078,6 +4124,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4131,6 +4178,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4531,6 +4579,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4680,10 +4729,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4723,6 +4774,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4780,6 +4832,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4788,6 +4841,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4841,6 +4895,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4896,8 +4951,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; @@ -4910,11 +4967,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5019,6 +5079,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5097,6 +5158,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5391,6 +5453,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5422,6 +5485,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5451,6 +5515,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5495,6 +5560,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5515,6 +5581,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5602,6 +5669,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5787,6 +5855,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5827,6 +5896,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5973,6 +6043,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6049,6 +6120,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6131,6 +6203,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; "persistent-template" = doDistribute super."persistent-template_2_1_3_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6399,6 +6472,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -6425,6 +6499,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_2"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6448,6 +6523,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_4_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6579,6 +6655,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6630,6 +6707,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6723,6 +6801,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6778,6 +6857,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6821,6 +6901,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6971,6 +7052,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6997,8 +7079,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_2"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7073,6 +7158,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7157,6 +7243,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7184,6 +7271,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7515,6 +7603,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7567,6 +7656,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7587,12 +7677,14 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7763,12 +7855,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -7794,6 +7888,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -7825,6 +7920,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7842,7 +7938,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7912,6 +8007,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8028,6 +8124,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8195,6 +8292,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8263,6 +8361,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_4"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8360,6 +8459,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; @@ -8436,6 +8536,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_1"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8524,6 +8625,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; @@ -8552,6 +8654,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -8637,6 +8740,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index f9bb0ec0e00..ccf8b2a6300 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -114,6 +114,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -598,6 +600,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -777,6 +780,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -897,6 +901,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1128,6 +1134,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1209,6 +1216,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1216,6 +1224,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1227,10 +1236,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1239,6 +1250,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1250,6 +1262,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1302,6 +1315,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1326,6 +1340,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1499,6 +1514,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1516,6 +1532,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -1687,6 +1704,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1696,6 +1714,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1713,6 +1733,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1853,6 +1874,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1871,6 +1893,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1946,6 +1969,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -1953,6 +1978,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2081,6 +2107,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2150,6 +2177,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2167,6 +2195,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2235,7 +2264,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2266,6 +2297,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2281,8 +2313,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2331,6 +2366,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2456,6 +2492,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2504,6 +2541,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2668,6 +2706,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3257,6 +3296,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3319,6 +3359,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3349,6 +3390,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -3598,6 +3640,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3761,6 +3804,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4008,6 +4052,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4024,6 +4069,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4075,6 +4121,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4128,6 +4175,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4528,6 +4576,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4677,10 +4726,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4720,6 +4771,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4777,6 +4829,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4785,6 +4838,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4838,6 +4892,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4893,8 +4948,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4906,11 +4963,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5014,6 +5074,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5091,6 +5152,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5385,6 +5447,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5416,6 +5479,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5445,6 +5509,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5489,6 +5554,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5509,6 +5575,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5595,6 +5662,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5780,6 +5848,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5820,6 +5889,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5966,6 +6036,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6042,6 +6113,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6124,6 +6196,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; "persistent-template" = doDistribute super."persistent-template_2_1_3_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6392,6 +6465,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -6418,6 +6492,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_2"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6441,6 +6516,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_4_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6572,6 +6648,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6623,6 +6700,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6716,6 +6794,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6771,6 +6850,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6814,6 +6894,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6964,6 +7045,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6990,8 +7072,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_2"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7066,6 +7151,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7150,6 +7236,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7177,6 +7264,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7508,6 +7596,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7560,6 +7649,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7580,12 +7670,14 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7756,12 +7848,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -7787,6 +7881,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -7818,6 +7913,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7835,7 +7931,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7904,6 +7999,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8020,6 +8116,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8187,6 +8284,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8254,6 +8352,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8351,6 +8450,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; @@ -8427,6 +8527,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_1_1"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8515,6 +8616,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; @@ -8543,6 +8645,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -8628,6 +8731,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index fb31054c6e7..1fb8a3e6edd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -114,6 +114,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -598,6 +600,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -777,6 +780,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -897,6 +901,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1128,6 +1134,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1209,6 +1216,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1216,6 +1224,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1227,10 +1236,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1239,6 +1250,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1250,6 +1262,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1302,6 +1315,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1326,6 +1340,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1497,6 +1512,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1514,6 +1530,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -1685,6 +1702,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1694,6 +1712,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1711,6 +1731,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1851,6 +1872,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1869,6 +1891,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1944,6 +1967,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -1951,6 +1976,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2079,6 +2105,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2148,6 +2175,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2165,6 +2193,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2232,7 +2261,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2263,6 +2294,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2278,8 +2310,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2328,6 +2363,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2453,6 +2489,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2501,6 +2538,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2665,6 +2703,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3254,6 +3293,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3316,6 +3356,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3346,6 +3387,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -3595,6 +3637,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3758,6 +3801,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -4004,6 +4048,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4020,6 +4065,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4071,6 +4117,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4124,6 +4171,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4524,6 +4572,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4673,10 +4722,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4716,6 +4767,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4773,6 +4825,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4781,6 +4834,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4834,6 +4888,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4856,6 +4911,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4888,8 +4944,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4901,11 +4959,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5009,6 +5070,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5086,6 +5148,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5380,6 +5443,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5411,6 +5475,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5440,6 +5505,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5484,6 +5550,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5504,6 +5571,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5590,6 +5658,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5775,6 +5844,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5815,6 +5885,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5961,6 +6032,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6037,6 +6109,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6119,6 +6192,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; "persistent-template" = doDistribute super."persistent-template_2_1_3_6"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6385,6 +6459,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -6411,6 +6486,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6434,6 +6510,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_4_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6565,6 +6642,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6616,6 +6694,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6709,6 +6788,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6764,6 +6844,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6807,6 +6888,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6957,6 +7039,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6983,8 +7066,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7059,6 +7145,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7143,6 +7230,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7170,6 +7258,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7500,6 +7589,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7552,6 +7642,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7572,12 +7663,14 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7748,12 +7841,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -7779,6 +7874,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -7810,6 +7906,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7827,7 +7924,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7896,6 +7992,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8012,6 +8109,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8179,6 +8277,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8246,6 +8345,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8343,6 +8443,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; @@ -8417,6 +8518,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_1_1"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8505,6 +8607,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; @@ -8533,6 +8636,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -8618,6 +8722,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index f5c350e91c1..325fdcc7778 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -114,6 +114,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -598,6 +600,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -777,6 +780,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -897,6 +901,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1128,6 +1134,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1209,6 +1216,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1216,6 +1224,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1227,10 +1236,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1239,6 +1250,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1250,6 +1262,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1302,6 +1315,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1326,6 +1340,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1497,6 +1512,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1514,6 +1530,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -1683,6 +1700,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1692,6 +1710,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1709,6 +1729,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1849,6 +1870,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1867,6 +1889,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1875,6 +1898,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1941,6 +1965,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -1948,6 +1974,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2076,6 +2103,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2145,6 +2173,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2162,6 +2191,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2229,7 +2259,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2260,6 +2292,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2275,8 +2308,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2325,6 +2361,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2450,6 +2487,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2498,6 +2536,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2658,6 +2697,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3247,6 +3287,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3309,6 +3350,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3339,6 +3381,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -3588,6 +3631,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3751,6 +3795,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -3997,6 +4042,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4013,6 +4059,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4064,6 +4111,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4117,6 +4165,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4517,6 +4566,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4666,10 +4716,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4709,6 +4761,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4766,6 +4819,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4774,6 +4828,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4827,6 +4882,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4849,6 +4905,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4881,8 +4938,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4894,11 +4953,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5002,6 +5064,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5079,6 +5142,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5372,6 +5436,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5403,6 +5468,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5432,6 +5498,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5475,6 +5542,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5495,6 +5563,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5581,6 +5650,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5766,6 +5836,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5806,6 +5877,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5952,6 +6024,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6028,6 +6101,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6110,6 +6184,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; "persistent-template" = doDistribute super."persistent-template_2_1_3_6"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6375,6 +6450,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -6401,6 +6477,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6424,6 +6501,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_4_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6555,6 +6633,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6606,6 +6685,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6699,6 +6779,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6754,6 +6835,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6797,6 +6879,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6947,6 +7030,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6973,8 +7057,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7049,6 +7136,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7133,6 +7221,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7160,6 +7249,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7490,6 +7580,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7542,6 +7633,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7562,12 +7654,14 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_2"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7737,12 +7831,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -7768,6 +7864,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -7799,6 +7896,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7816,7 +7914,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7885,6 +7982,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -8001,6 +8099,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8168,6 +8267,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8235,6 +8335,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8332,6 +8433,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; @@ -8406,6 +8508,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_1_1"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8494,6 +8597,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; @@ -8522,6 +8626,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -8607,6 +8712,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index e2d045ed44d..d4ca2e6fb55 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -114,6 +114,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -597,6 +599,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -775,6 +778,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -895,6 +899,8 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1126,6 +1132,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1207,6 +1214,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1214,6 +1222,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1225,10 +1234,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1237,6 +1248,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1248,6 +1260,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1300,6 +1313,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1324,6 +1338,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon" = dontDistribute super."argon"; @@ -1495,6 +1510,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1512,6 +1528,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -1680,6 +1697,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1689,6 +1707,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1706,6 +1726,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1846,6 +1867,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1864,6 +1886,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1872,6 +1895,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1938,6 +1962,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -1945,6 +1971,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2073,6 +2100,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -2142,6 +2170,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2159,6 +2188,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2226,7 +2256,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2257,6 +2289,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2272,8 +2305,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2322,6 +2358,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2447,6 +2484,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2495,6 +2533,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2655,6 +2694,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3056,6 +3096,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3242,6 +3283,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3304,6 +3346,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3334,6 +3377,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -3583,6 +3627,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3746,6 +3791,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -3992,6 +4038,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4008,6 +4055,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4059,6 +4107,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4112,6 +4161,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4512,6 +4562,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4661,10 +4712,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4704,6 +4757,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4761,6 +4815,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4769,6 +4824,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4822,6 +4878,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4844,6 +4901,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4876,8 +4934,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4889,11 +4949,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4997,6 +5060,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5074,6 +5138,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5367,6 +5432,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5398,6 +5464,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5427,6 +5494,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5470,6 +5538,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5490,6 +5559,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5576,6 +5646,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5761,6 +5832,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5801,6 +5873,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5946,6 +6019,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -6022,6 +6096,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6104,6 +6179,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; "persistent-template" = doDistribute super."persistent-template_2_1_3_7"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6369,6 +6445,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -6395,6 +6472,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6418,6 +6496,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_4_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6549,6 +6628,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6600,6 +6680,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6693,6 +6774,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6748,6 +6830,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6791,6 +6874,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6941,6 +7025,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6967,8 +7052,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7043,6 +7131,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7127,6 +7216,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7154,6 +7244,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7484,6 +7575,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7536,6 +7628,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7556,12 +7649,14 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_2"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7731,12 +7826,14 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; @@ -7762,6 +7859,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -7793,6 +7891,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7810,7 +7909,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7879,6 +7977,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -7995,6 +8094,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8162,6 +8262,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -8229,6 +8330,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8326,6 +8428,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; @@ -8400,6 +8503,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_1_1"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8488,6 +8592,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_7"; @@ -8516,6 +8621,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -8601,6 +8707,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index d744f166c32..04242b21f00 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -113,6 +113,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -163,6 +164,8 @@ self: super: { "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; "Chart-diagrams" = dontDistribute super."Chart-diagrams"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; @@ -312,6 +315,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -577,6 +581,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -752,6 +757,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -870,6 +876,8 @@ self: super: { "SpinCounter" = dontDistribute super."SpinCounter"; "Spintax" = dontDistribute super."Spintax"; "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1094,6 +1102,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_10_0_0"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-compat" = doDistribute super."aeson-compat_0_3_0_0"; "aeson-diff" = dontDistribute super."aeson-diff"; @@ -1171,6 +1180,75 @@ self: super: { "amazon-emailer" = dontDistribute super."amazon-emailer"; "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_13_0"; "amqp-conduit" = dontDistribute super."amqp-conduit"; @@ -1203,6 +1281,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1226,6 +1305,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon2" = dontDistribute super."argon2"; @@ -1285,6 +1365,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1388,6 +1469,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1404,6 +1486,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; "berkeleydb" = dontDistribute super."berkeleydb"; @@ -1563,6 +1646,8 @@ self: super: { "bliplib" = dontDistribute super."bliplib"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; + "bloodhound" = doDistribute super."bloodhound_0_10_0_0"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1572,6 +1657,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1586,6 +1673,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1719,6 +1807,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1737,6 +1826,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = doDistribute super."carray_0_1_6_2"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1745,6 +1835,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -1776,6 +1867,7 @@ self: super: { "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_1"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1807,12 +1899,15 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1855,6 +1950,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = doDistribute super."clckwrks_0_23_13"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; @@ -1935,6 +2032,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -1972,6 +2070,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -1996,6 +2095,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2013,6 +2113,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_6"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2079,7 +2180,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2108,10 +2211,12 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; "cron-compat" = dontDistribute super."cron-compat"; "cruncher-types" = dontDistribute super."cruncher-types"; "crunghc" = dontDistribute super."crunghc"; @@ -2122,8 +2227,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2169,6 +2277,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2295,6 +2404,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2340,6 +2450,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2488,6 +2599,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -2876,6 +2988,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock" = dontDistribute super."flowdock"; "flowdock-api" = dontDistribute super."flowdock-api"; @@ -3059,6 +3172,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_2_0_0"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3118,6 +3232,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3147,6 +3262,7 @@ self: super: { "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; "gipeda" = doDistribute super."gipeda_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20151218"; @@ -3387,6 +3503,7 @@ self: super: { "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = doDistribute super."grouped-list_0_2_1_0"; @@ -3518,6 +3635,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3544,6 +3662,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -3693,6 +3812,7 @@ self: super: { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_6_0_0"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-core" = dontDistribute super."haskoin-core"; @@ -3778,6 +3898,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3794,6 +3915,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -3845,6 +3967,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -3881,6 +4004,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3892,6 +4016,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4050,6 +4175,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4144,6 +4270,7 @@ self: super: { "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; "hset" = dontDistribute super."hset"; + "hsexif" = doDistribute super."hsexif_0_6_0_7"; "hsfacter" = dontDistribute super."hsfacter"; "hsfcsh" = dontDistribute super."hsfcsh"; "hsfilt" = dontDistribute super."hsfilt"; @@ -4195,6 +4322,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -4231,6 +4359,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = doDistribute super."htaglib_1_0_1"; "htags" = dontDistribute super."htags"; "htar" = dontDistribute super."htar"; "htiled" = dontDistribute super."htiled"; @@ -4258,6 +4387,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4375,9 +4505,11 @@ self: super: { "ifcxt" = dontDistribute super."ifcxt"; "iff" = dontDistribute super."iff"; "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; "ige-mac-integration" = dontDistribute super."ige-mac-integration"; "igraph" = dontDistribute super."igraph"; "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_8_3_0"; "ihaskell-display" = dontDistribute super."ihaskell-display"; "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; @@ -4394,10 +4526,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4435,6 +4569,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4481,10 +4616,12 @@ self: super: { "ipprint" = dontDistribute super."ipprint"; "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; "irc-client" = doDistribute super."irc-client_0_2_5_0"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4493,6 +4630,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4542,6 +4680,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4563,6 +4702,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4594,8 +4734,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4607,11 +4749,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4722,6 +4867,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -4792,6 +4938,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -4979,6 +5126,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -5074,6 +5222,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5103,6 +5252,7 @@ self: super: { "memory" = doDistribute super."memory_0_10"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5120,6 +5270,7 @@ self: super: { "mgeneric" = dontDistribute super."mgeneric"; "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = doDistribute super."microformats2-parser_1_0_1_3"; "microformats2-types" = dontDistribute super."microformats2-types"; "microlens" = doDistribute super."microlens_0_3_5_1"; "microlens-aeson" = dontDistribute super."microlens-aeson"; @@ -5131,6 +5282,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_2_0"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5173,6 +5325,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = doDistribute super."modify-fasta_0_8_0_4"; @@ -5192,6 +5345,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5271,6 +5425,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5446,6 +5601,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5485,6 +5641,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5625,6 +5782,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -5697,6 +5855,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -5708,6 +5867,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = doDistribute super."patches-vector_0_1_5_0"; + "path" = doDistribute super."path_0_5_3"; "path-io" = dontDistribute super."path-io"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5725,6 +5885,7 @@ self: super: { "pcd-loader" = dontDistribute super."pcd-loader"; "pcf" = dontDistribute super."pcf"; "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; "pdf-toolbox-content" = doDistribute super."pdf-toolbox-content_0_0_5_0"; @@ -5756,6 +5917,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -5767,6 +5929,8 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; + "persistent-template" = doDistribute super."persistent-template_2_1_5"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5804,6 +5968,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_7"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; @@ -6014,6 +6179,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -6026,6 +6192,8 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -6037,6 +6205,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; @@ -6060,6 +6229,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6187,6 +6357,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = doDistribute super."read-editor_0_1_0_1"; @@ -6234,6 +6405,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "regex-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; @@ -6316,6 +6488,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6351,6 +6524,8 @@ self: super: { "rezoom" = dontDistribute super."rezoom"; "rfc3339" = dontDistribute super."rfc3339"; "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; "richreports" = dontDistribute super."richreports"; "riemann" = dontDistribute super."riemann"; "riff" = dontDistribute super."riff"; @@ -6365,6 +6540,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6406,6 +6582,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6491,6 +6668,7 @@ self: super: { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_4_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6552,6 +6730,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6569,17 +6748,27 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = dontDistribute super."servant-swagger"; "ses-html" = dontDistribute super."ses-html"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; @@ -6638,6 +6827,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; @@ -6718,6 +6908,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -6743,6 +6934,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -6943,6 +7135,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -6972,6 +7165,7 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; @@ -7056,6 +7250,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; @@ -7106,6 +7301,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7126,7 +7322,9 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; "tasty-laws" = dontDistribute super."tasty-laws"; @@ -7202,6 +7400,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7217,7 +7416,6 @@ self: super: { "text-region" = dontDistribute super."text-region"; "text-register-machine" = dontDistribute super."text-register-machine"; "text-render" = dontDistribute super."text-render"; - "text-show" = doDistribute super."text-show_2_1_2"; "text-show-instances" = dontDistribute super."text-show-instances"; "text-stream-decode" = dontDistribute super."text-stream-decode"; "text-utf7" = dontDistribute super."text-utf7"; @@ -7287,11 +7485,13 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7315,6 +7515,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; "tiphys" = dontDistribute super."tiphys"; @@ -7343,6 +7544,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7354,12 +7556,12 @@ self: super: { "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; "tracker" = dontDistribute super."tracker"; + "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7426,6 +7628,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -7536,6 +7739,7 @@ self: super: { "unicoder" = dontDistribute super."unicoder"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -7690,6 +7894,7 @@ self: super: { "vinyl" = doDistribute super."vinyl_0_5_1"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -7744,9 +7949,11 @@ self: super: { "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-metrics" = doDistribute super."wai-middleware-metrics_0_2_2"; "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; @@ -7829,6 +8036,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -7898,6 +8106,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_2_0"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -7981,6 +8190,7 @@ self: super: { "ycextra" = dontDistribute super."ycextra"; "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; @@ -8007,6 +8217,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -8043,6 +8254,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_3"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; @@ -8082,6 +8294,8 @@ self: super: { "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index 8645bceb82e..2b56b592c0c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -113,6 +113,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -163,6 +164,8 @@ self: super: { "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; "Chart-diagrams" = dontDistribute super."Chart-diagrams"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; @@ -312,6 +315,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -577,6 +581,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -752,6 +757,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -870,6 +876,8 @@ self: super: { "SpinCounter" = dontDistribute super."SpinCounter"; "Spintax" = dontDistribute super."Spintax"; "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1093,6 +1101,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_10_0_0"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-compat" = doDistribute super."aeson-compat_0_3_0_0"; "aeson-diff" = dontDistribute super."aeson-diff"; @@ -1169,6 +1178,75 @@ self: super: { "amazon-emailer" = dontDistribute super."amazon-emailer"; "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_13_0"; "amqp-conduit" = dontDistribute super."amqp-conduit"; @@ -1201,6 +1279,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1224,6 +1303,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon2" = dontDistribute super."argon2"; @@ -1283,6 +1363,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1386,6 +1467,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1402,6 +1484,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; "berkeleydb" = dontDistribute super."berkeleydb"; @@ -1561,6 +1644,8 @@ self: super: { "bliplib" = dontDistribute super."bliplib"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; + "bloodhound" = doDistribute super."bloodhound_0_10_0_0"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1570,6 +1655,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1584,6 +1671,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1717,6 +1805,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1735,6 +1824,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = doDistribute super."carray_0_1_6_2"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1743,6 +1833,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -1774,6 +1865,7 @@ self: super: { "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_1"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1805,12 +1897,15 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1853,6 +1948,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = doDistribute super."clckwrks_0_23_13"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; @@ -1933,6 +2030,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -1970,6 +2068,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -1994,6 +2093,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2011,6 +2111,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_6"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2077,7 +2178,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2106,10 +2209,12 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; "cron-compat" = dontDistribute super."cron-compat"; "cruncher-types" = dontDistribute super."cruncher-types"; "crunghc" = dontDistribute super."crunghc"; @@ -2120,8 +2225,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2167,6 +2275,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2293,6 +2402,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2338,6 +2448,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2486,6 +2597,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -2870,6 +2982,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock" = dontDistribute super."flowdock"; "flowdock-api" = dontDistribute super."flowdock-api"; @@ -3053,6 +3166,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_2_0_0"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3112,6 +3226,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3141,6 +3256,7 @@ self: super: { "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; "gipeda" = doDistribute super."gipeda_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20151218"; @@ -3381,6 +3497,7 @@ self: super: { "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = doDistribute super."grouped-list_0_2_1_0"; @@ -3512,6 +3629,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3538,6 +3656,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -3687,6 +3806,7 @@ self: super: { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_6_0_0"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-core" = dontDistribute super."haskoin-core"; @@ -3772,6 +3892,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3787,6 +3908,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -3838,6 +3960,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -3874,6 +3997,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3885,6 +4009,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4043,6 +4168,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4137,6 +4263,7 @@ self: super: { "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; "hset" = dontDistribute super."hset"; + "hsexif" = doDistribute super."hsexif_0_6_0_7"; "hsfacter" = dontDistribute super."hsfacter"; "hsfcsh" = dontDistribute super."hsfcsh"; "hsfilt" = dontDistribute super."hsfilt"; @@ -4188,6 +4315,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -4224,6 +4352,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = doDistribute super."htaglib_1_0_1"; "htags" = dontDistribute super."htags"; "htar" = dontDistribute super."htar"; "htiled" = dontDistribute super."htiled"; @@ -4251,6 +4380,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4365,9 +4495,11 @@ self: super: { "ifcxt" = dontDistribute super."ifcxt"; "iff" = dontDistribute super."iff"; "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; "ige-mac-integration" = dontDistribute super."ige-mac-integration"; "igraph" = dontDistribute super."igraph"; "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_8_3_0"; "ihaskell-display" = dontDistribute super."ihaskell-display"; "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; @@ -4384,10 +4516,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4424,6 +4558,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4469,10 +4604,12 @@ self: super: { "ipprint" = dontDistribute super."ipprint"; "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; "irc-client" = doDistribute super."irc-client_0_2_5_0"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4481,6 +4618,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4530,6 +4668,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4551,6 +4690,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4582,8 +4722,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4595,11 +4737,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4710,6 +4855,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -4777,6 +4923,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -4964,6 +5111,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -5059,6 +5207,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5088,6 +5237,7 @@ self: super: { "memory" = doDistribute super."memory_0_10"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5105,6 +5255,7 @@ self: super: { "mgeneric" = dontDistribute super."mgeneric"; "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = doDistribute super."microformats2-parser_1_0_1_3"; "microformats2-types" = dontDistribute super."microformats2-types"; "microlens" = doDistribute super."microlens_0_3_5_1"; "microlens-aeson" = dontDistribute super."microlens-aeson"; @@ -5116,6 +5267,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_2_0"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5158,6 +5310,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = doDistribute super."modify-fasta_0_8_0_4"; @@ -5177,6 +5330,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5256,6 +5410,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5431,6 +5586,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5470,6 +5626,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5610,6 +5767,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -5682,6 +5840,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -5692,6 +5851,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "path" = doDistribute super."path_0_5_3"; "path-io" = dontDistribute super."path-io"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5709,6 +5869,7 @@ self: super: { "pcd-loader" = dontDistribute super."pcd-loader"; "pcf" = dontDistribute super."pcf"; "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; "pdf-toolbox-content" = doDistribute super."pdf-toolbox-content_0_0_5_0"; @@ -5740,6 +5901,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -5751,6 +5913,8 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; + "persistent-template" = doDistribute super."persistent-template_2_1_5"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5788,6 +5952,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_7"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; @@ -5997,6 +6162,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -6009,6 +6175,8 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -6020,6 +6188,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; @@ -6043,6 +6212,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6170,6 +6340,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = doDistribute super."read-editor_0_1_0_1"; @@ -6217,6 +6388,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "regex-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; @@ -6299,6 +6471,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6334,6 +6507,8 @@ self: super: { "rezoom" = dontDistribute super."rezoom"; "rfc3339" = dontDistribute super."rfc3339"; "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; "richreports" = dontDistribute super."richreports"; "riemann" = dontDistribute super."riemann"; "riff" = dontDistribute super."riff"; @@ -6348,6 +6523,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6389,6 +6565,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6474,6 +6651,7 @@ self: super: { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_4_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6535,6 +6713,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6552,17 +6731,27 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = dontDistribute super."servant-swagger"; "ses-html" = dontDistribute super."ses-html"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; @@ -6621,6 +6810,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; @@ -6701,6 +6891,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -6726,6 +6917,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -6926,6 +7118,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -6955,6 +7148,7 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; @@ -7039,6 +7233,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; @@ -7089,6 +7284,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7109,7 +7305,9 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; "tasty-laws" = dontDistribute super."tasty-laws"; @@ -7185,6 +7383,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7200,7 +7399,6 @@ self: super: { "text-region" = dontDistribute super."text-region"; "text-register-machine" = dontDistribute super."text-register-machine"; "text-render" = dontDistribute super."text-render"; - "text-show" = doDistribute super."text-show_2_1_2"; "text-show-instances" = dontDistribute super."text-show-instances"; "text-stream-decode" = dontDistribute super."text-stream-decode"; "text-utf7" = dontDistribute super."text-utf7"; @@ -7270,11 +7468,13 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7298,6 +7498,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; "tiphys" = dontDistribute super."tiphys"; @@ -7326,6 +7527,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7337,12 +7539,12 @@ self: super: { "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; "tracker" = dontDistribute super."tracker"; + "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7408,6 +7610,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -7518,6 +7721,7 @@ self: super: { "unicoder" = dontDistribute super."unicoder"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -7672,6 +7876,7 @@ self: super: { "vinyl" = doDistribute super."vinyl_0_5_1"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -7726,9 +7931,11 @@ self: super: { "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-metrics" = doDistribute super."wai-middleware-metrics_0_2_2"; "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; @@ -7810,6 +8017,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -7879,6 +8087,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_2_0"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -7962,6 +8171,7 @@ self: super: { "ycextra" = dontDistribute super."ycextra"; "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; @@ -7988,6 +8198,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -8024,6 +8235,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_3"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; @@ -8063,6 +8275,8 @@ self: super: { "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index ecca396a71c..518d60405fa 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -113,6 +113,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -163,6 +164,8 @@ self: super: { "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; "Chart-diagrams" = dontDistribute super."Chart-diagrams"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; @@ -312,6 +315,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -575,6 +579,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -749,6 +754,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -867,6 +873,8 @@ self: super: { "SpinCounter" = dontDistribute super."SpinCounter"; "Spintax" = dontDistribute super."Spintax"; "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1089,6 +1097,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_10_0_0"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-compat" = doDistribute super."aeson-compat_0_3_0_0"; "aeson-diff" = dontDistribute super."aeson-diff"; @@ -1120,6 +1129,7 @@ self: super: { "air-spec" = dontDistribute super."air-spec"; "air-th" = dontDistribute super."air-th"; "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; "aivika-experiment" = dontDistribute super."aivika-experiment"; @@ -1164,6 +1174,75 @@ self: super: { "amazon-emailer" = dontDistribute super."amazon-emailer"; "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_13_0"; "amqp-conduit" = dontDistribute super."amqp-conduit"; @@ -1196,6 +1275,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1219,6 +1299,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon2" = dontDistribute super."argon2"; @@ -1278,6 +1359,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1381,6 +1463,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1397,6 +1480,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; "berkeleydb" = dontDistribute super."berkeleydb"; @@ -1556,6 +1640,8 @@ self: super: { "bliplib" = dontDistribute super."bliplib"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; + "bloodhound" = doDistribute super."bloodhound_0_10_0_0"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1565,6 +1651,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1579,6 +1667,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1710,6 +1799,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1727,6 +1817,7 @@ self: super: { "carboncopy" = dontDistribute super."carboncopy"; "carettah" = dontDistribute super."carettah"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1735,6 +1826,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -1765,6 +1857,7 @@ self: super: { "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_1"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1796,12 +1889,15 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1844,6 +1940,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = doDistribute super."clckwrks_0_23_13"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; @@ -1923,6 +2021,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -1960,6 +2059,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -1983,6 +2083,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2000,6 +2101,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constraints" = doDistribute super."constraints_0_6"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2066,7 +2168,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2095,10 +2199,12 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; "cron-compat" = dontDistribute super."cron-compat"; "cruncher-types" = dontDistribute super."cruncher-types"; "crunghc" = dontDistribute super."crunghc"; @@ -2109,8 +2215,11 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2156,6 +2265,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = dontDistribute super."darcs"; @@ -2281,6 +2391,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2326,6 +2437,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2362,6 +2474,7 @@ self: super: { "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; + "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_5"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; @@ -2473,6 +2586,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -2853,6 +2967,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock" = dontDistribute super."flowdock"; "flowdock-api" = dontDistribute super."flowdock-api"; @@ -3035,6 +3150,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_2_0_0"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3093,6 +3209,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3122,6 +3239,7 @@ self: super: { "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; "gipeda" = doDistribute super."gipeda_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20151218"; @@ -3361,6 +3479,7 @@ self: super: { "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "groupoid" = dontDistribute super."groupoid"; @@ -3491,6 +3610,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3516,6 +3636,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -3663,6 +3784,7 @@ self: super: { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_6_0_0"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-core" = dontDistribute super."haskoin-core"; @@ -3707,6 +3829,7 @@ self: super: { "haxl-amazonka" = dontDistribute super."haxl-amazonka"; "haxl-facebook" = dontDistribute super."haxl-facebook"; "haxparse" = dontDistribute super."haxparse"; + "haxr" = doDistribute super."haxr_3000_11_1_3"; "haxr-th" = dontDistribute super."haxr-th"; "haxy" = dontDistribute super."haxy"; "hayland" = dontDistribute super."hayland"; @@ -3747,6 +3870,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3761,6 +3885,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -3812,6 +3937,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -3848,6 +3974,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3859,6 +3986,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4016,6 +4144,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4110,6 +4239,7 @@ self: super: { "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; "hset" = dontDistribute super."hset"; + "hsexif" = doDistribute super."hsexif_0_6_0_7"; "hsfacter" = dontDistribute super."hsfacter"; "hsfcsh" = dontDistribute super."hsfcsh"; "hsfilt" = dontDistribute super."hsfilt"; @@ -4157,6 +4287,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -4193,6 +4324,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = doDistribute super."htaglib_1_0_1"; "htags" = dontDistribute super."htags"; "htar" = dontDistribute super."htar"; "htiled" = dontDistribute super."htiled"; @@ -4220,6 +4352,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4333,9 +4466,11 @@ self: super: { "ifcxt" = dontDistribute super."ifcxt"; "iff" = dontDistribute super."iff"; "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; "ige-mac-integration" = dontDistribute super."ige-mac-integration"; "igraph" = dontDistribute super."igraph"; "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_8_3_0"; "ihaskell-display" = dontDistribute super."ihaskell-display"; "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; @@ -4352,10 +4487,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4391,6 +4528,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4435,9 +4573,11 @@ self: super: { "ipprint" = dontDistribute super."ipprint"; "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4446,6 +4586,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4495,6 +4636,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4516,6 +4658,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4547,8 +4690,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4560,11 +4705,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4675,6 +4823,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -4742,6 +4891,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -4929,6 +5079,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -5023,6 +5174,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5052,6 +5204,7 @@ self: super: { "memory" = doDistribute super."memory_0_10"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5069,6 +5222,7 @@ self: super: { "mgeneric" = dontDistribute super."mgeneric"; "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = doDistribute super."microformats2-parser_1_0_1_3"; "microformats2-types" = dontDistribute super."microformats2-types"; "microlens" = doDistribute super."microlens_0_3_5_1"; "microlens-aeson" = dontDistribute super."microlens-aeson"; @@ -5080,6 +5234,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_2_0"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5122,6 +5277,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = doDistribute super."modify-fasta_0_8_0_4"; @@ -5141,6 +5297,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5218,6 +5375,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5392,6 +5550,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5431,6 +5590,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5571,6 +5731,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -5643,6 +5804,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -5653,6 +5815,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "path" = doDistribute super."path_0_5_3"; "path-io" = dontDistribute super."path-io"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5670,6 +5833,7 @@ self: super: { "pcd-loader" = dontDistribute super."pcd-loader"; "pcf" = dontDistribute super."pcf"; "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; "pdf-toolbox-content" = doDistribute super."pdf-toolbox-content_0_0_5_0"; @@ -5701,6 +5865,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -5712,6 +5877,8 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; + "persistent-template" = doDistribute super."persistent-template_2_1_5"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5749,6 +5916,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_7"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; @@ -5955,6 +6123,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -5967,6 +6136,8 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -5978,6 +6149,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; @@ -6001,6 +6173,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6128,6 +6301,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "readable" = dontDistribute super."readable"; @@ -6174,6 +6348,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "regex-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; @@ -6256,6 +6431,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6288,6 +6464,8 @@ self: super: { "rezoom" = dontDistribute super."rezoom"; "rfc3339" = dontDistribute super."rfc3339"; "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; "richreports" = dontDistribute super."richreports"; "riemann" = dontDistribute super."riemann"; "riff" = dontDistribute super."riff"; @@ -6302,6 +6480,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6343,6 +6522,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6428,6 +6608,7 @@ self: super: { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_4_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6488,6 +6669,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6505,17 +6687,27 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = dontDistribute super."servant-swagger"; "ses-html" = dontDistribute super."ses-html"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; @@ -6574,6 +6766,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; @@ -6650,6 +6843,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -6675,6 +6869,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -6873,6 +7068,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -6902,6 +7098,7 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; @@ -6986,6 +7183,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; @@ -7036,6 +7234,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7043,6 +7242,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7055,7 +7255,9 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; "tasty-laws" = dontDistribute super."tasty-laws"; @@ -7130,6 +7332,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7145,7 +7348,6 @@ self: super: { "text-region" = dontDistribute super."text-region"; "text-register-machine" = dontDistribute super."text-register-machine"; "text-render" = dontDistribute super."text-render"; - "text-show" = doDistribute super."text-show_2_1_2"; "text-show-instances" = dontDistribute super."text-show-instances"; "text-stream-decode" = dontDistribute super."text-stream-decode"; "text-utf7" = dontDistribute super."text-utf7"; @@ -7215,11 +7417,13 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7243,6 +7447,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; "tiphys" = dontDistribute super."tiphys"; @@ -7271,6 +7476,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7282,12 +7488,12 @@ self: super: { "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; "tracker" = dontDistribute super."tracker"; + "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7353,6 +7559,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -7463,6 +7670,7 @@ self: super: { "unicoder" = dontDistribute super."unicoder"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -7617,6 +7825,7 @@ self: super: { "vinyl" = doDistribute super."vinyl_0_5_1"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -7669,9 +7878,11 @@ self: super: { "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-metrics" = doDistribute super."wai-middleware-metrics_0_2_2"; "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; @@ -7717,6 +7928,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_1"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -7752,6 +7964,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -7821,6 +8034,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_2_0"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -7904,6 +8118,7 @@ self: super: { "ycextra" = dontDistribute super."ycextra"; "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; @@ -7929,6 +8144,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -7965,6 +8181,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_3"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; @@ -8004,6 +8221,8 @@ self: super: { "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index 9934d049508..dcee088ade7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -113,6 +113,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -162,6 +163,8 @@ self: super: { "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; "Chart-diagrams" = dontDistribute super."Chart-diagrams"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; @@ -309,6 +312,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -567,6 +571,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -738,6 +743,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -855,6 +861,8 @@ self: super: { "SpacePrivateers" = dontDistribute super."SpacePrivateers"; "SpinCounter" = dontDistribute super."SpinCounter"; "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1075,6 +1083,7 @@ self: super: { "adp-multi" = dontDistribute super."adp-multi"; "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-compat" = doDistribute super."aeson-compat_0_3_0_0"; "aeson-diff" = dontDistribute super."aeson-diff"; @@ -1106,6 +1115,7 @@ self: super: { "air-spec" = dontDistribute super."air-spec"; "air-th" = dontDistribute super."air-th"; "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; "aivika-experiment" = dontDistribute super."aivika-experiment"; @@ -1150,6 +1160,75 @@ self: super: { "amazon-emailer" = dontDistribute super."amazon-emailer"; "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_13_0"; "amqp-conduit" = dontDistribute super."amqp-conduit"; @@ -1182,6 +1261,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1205,6 +1285,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon2" = dontDistribute super."argon2"; @@ -1263,6 +1344,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1364,6 +1446,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1380,6 +1463,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; "berkeleydb" = dontDistribute super."berkeleydb"; @@ -1398,7 +1482,6 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; - "bifunctors" = doDistribute super."bifunctors_5_2"; "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; @@ -1535,6 +1618,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1544,6 +1628,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1558,6 +1644,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1684,6 +1771,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1701,6 +1789,7 @@ self: super: { "carboncopy" = dontDistribute super."carboncopy"; "carettah" = dontDistribute super."carettah"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1709,6 +1798,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -1737,6 +1827,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1749,6 +1840,7 @@ self: super: { "cfopu" = dontDistribute super."cfopu"; "cg" = dontDistribute super."cg"; "cgen" = dontDistribute super."cgen"; + "cgi" = doDistribute super."cgi_3001_2_2_3"; "cgi-undecidable" = dontDistribute super."cgi-undecidable"; "cgi-utils" = dontDistribute super."cgi-utils"; "cgrep" = dontDistribute super."cgrep"; @@ -1767,12 +1859,15 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1815,6 +1910,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = doDistribute super."clckwrks_0_23_13"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; @@ -1893,6 +1990,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -1930,6 +2028,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -1953,6 +2052,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -1969,6 +2069,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; "consumers" = dontDistribute super."consumers"; @@ -2033,7 +2134,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2061,10 +2164,12 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; "cron-compat" = dontDistribute super."cron-compat"; "cruncher-types" = dontDistribute super."cruncher-types"; "crunghc" = dontDistribute super."crunghc"; @@ -2075,7 +2180,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2121,6 +2229,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = doDistribute super."darcs_2_10_2"; @@ -2243,6 +2352,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2288,6 +2398,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2324,6 +2435,7 @@ self: super: { "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; + "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_5"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; @@ -2427,8 +2539,10 @@ self: super: { "dominion" = dontDistribute super."dominion"; "domplate" = dontDistribute super."domplate"; "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -2802,6 +2916,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -2817,8 +2932,11 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = doDistribute super."fn_0_2_0_2"; + "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl" = doDistribute super."foldl_1_1_5"; "foldl-incremental" = dontDistribute super."foldl-incremental"; "foldl-transduce" = dontDistribute super."foldl-transduce"; "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; @@ -2978,6 +3096,7 @@ self: super: { "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-sop" = doDistribute super."generics-sop_0_2_0_0"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3033,6 +3152,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3062,6 +3182,7 @@ self: super: { "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; "gipeda" = doDistribute super."gipeda_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_6_20160114"; @@ -3298,6 +3419,7 @@ self: super: { "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "groupoid" = dontDistribute super."groupoid"; @@ -3426,6 +3548,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3451,6 +3574,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -3598,6 +3722,7 @@ self: super: { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_6_0_0"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-core" = dontDistribute super."haskoin-core"; @@ -3642,6 +3767,7 @@ self: super: { "haxl-amazonka" = dontDistribute super."haxl-amazonka"; "haxl-facebook" = dontDistribute super."haxl-facebook"; "haxparse" = dontDistribute super."haxparse"; + "haxr" = doDistribute super."haxr_3000_11_1_3"; "haxr-th" = dontDistribute super."haxr-th"; "haxy" = dontDistribute super."haxy"; "hayland" = dontDistribute super."hayland"; @@ -3682,6 +3808,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3696,6 +3823,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -3747,6 +3875,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -3783,6 +3912,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3794,6 +3924,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -3950,6 +4081,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4044,6 +4176,7 @@ self: super: { "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; "hset" = dontDistribute super."hset"; + "hsexif" = doDistribute super."hsexif_0_6_0_7"; "hsfacter" = dontDistribute super."hsfacter"; "hsfcsh" = dontDistribute super."hsfcsh"; "hsfilt" = dontDistribute super."hsfilt"; @@ -4091,6 +4224,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -4127,6 +4261,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = doDistribute super."htaglib_1_0_1"; "htags" = dontDistribute super."htags"; "htar" = dontDistribute super."htar"; "htiled" = dontDistribute super."htiled"; @@ -4153,6 +4288,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4264,9 +4400,11 @@ self: super: { "ifcxt" = dontDistribute super."ifcxt"; "iff" = dontDistribute super."iff"; "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; "ige-mac-integration" = dontDistribute super."ige-mac-integration"; "igraph" = dontDistribute super."igraph"; "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_8_3_0"; "ihaskell-display" = dontDistribute super."ihaskell-display"; "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; @@ -4283,10 +4421,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4321,6 +4461,7 @@ self: super: { "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4365,9 +4506,11 @@ self: super: { "ipprint" = dontDistribute super."ipprint"; "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4376,6 +4519,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4425,6 +4569,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4446,6 +4591,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4477,8 +4623,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4489,11 +4637,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4603,6 +4754,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -4670,6 +4822,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -4855,6 +5008,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -4948,6 +5102,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -4964,6 +5119,7 @@ self: super: { "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; "meep" = dontDistribute super."meep"; "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_3_0"; "meldable-heap" = dontDistribute super."meldable-heap"; "melody" = dontDistribute super."melody"; "memcache" = dontDistribute super."memcache"; @@ -4975,6 +5131,7 @@ self: super: { "memo-sqlite" = dontDistribute super."memo-sqlite"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messente" = dontDistribute super."messente"; "meta-misc" = dontDistribute super."meta-misc"; "meta-par" = dontDistribute super."meta-par"; @@ -4990,6 +5147,7 @@ self: super: { "mgeneric" = dontDistribute super."mgeneric"; "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = doDistribute super."microformats2-parser_1_0_1_3"; "microformats2-types" = dontDistribute super."microformats2-types"; "microlens" = doDistribute super."microlens_0_4_1_0"; "microlens-aeson" = doDistribute super."microlens-aeson_2_1_0"; @@ -4999,6 +5157,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_3_0_0"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5041,6 +5200,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = doDistribute super."modify-fasta_0_8_0_4"; @@ -5060,6 +5220,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5137,6 +5298,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5308,6 +5470,7 @@ self: super: { "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5347,6 +5510,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5486,6 +5650,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -5511,6 +5676,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_9"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; @@ -5555,6 +5721,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -5565,6 +5732,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "path" = doDistribute super."path_0_5_3"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5582,6 +5750,7 @@ self: super: { "pcd-loader" = dontDistribute super."pcd-loader"; "pcf" = dontDistribute super."pcf"; "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; "pdf-toolbox-content" = doDistribute super."pdf-toolbox-content_0_0_5_0"; @@ -5613,6 +5782,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -5623,6 +5793,8 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; + "persistent-template" = doDistribute super."persistent-template_2_1_5"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5659,6 +5831,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; @@ -5861,6 +6034,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "propane" = dontDistribute super."propane"; @@ -5872,6 +6046,8 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -5883,6 +6059,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; @@ -5905,6 +6082,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6031,6 +6209,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6076,6 +6255,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "regex-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6157,6 +6337,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6189,6 +6370,8 @@ self: super: { "rezoom" = dontDistribute super."rezoom"; "rfc3339" = dontDistribute super."rfc3339"; "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; "richreports" = dontDistribute super."richreports"; "riemann" = dontDistribute super."riemann"; "riff" = dontDistribute super."riff"; @@ -6203,6 +6386,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6244,6 +6428,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6326,6 +6511,7 @@ self: super: { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_4_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6385,6 +6571,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6402,11 +6589,20 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -6414,6 +6610,7 @@ self: super: { "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6470,6 +6667,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; @@ -6545,6 +6743,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -6569,6 +6768,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -6763,6 +6963,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -6792,6 +6993,7 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; @@ -6816,6 +7018,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = doDistribute super."stripe-core_2_0_2"; + "stripe-haskell" = doDistribute super."stripe-haskell_2_0_2"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -6873,6 +7078,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; @@ -6923,6 +7129,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -6930,6 +7137,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -6941,7 +7149,9 @@ self: super: { "tamper" = dontDistribute super."tamper"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; "tasty-laws" = dontDistribute super."tasty-laws"; @@ -7012,6 +7222,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7027,7 +7238,6 @@ self: super: { "text-region" = dontDistribute super."text-region"; "text-register-machine" = dontDistribute super."text-register-machine"; "text-render" = dontDistribute super."text-render"; - "text-show" = doDistribute super."text-show_2_1_2"; "text-show-instances" = dontDistribute super."text-show-instances"; "text-stream-decode" = dontDistribute super."text-stream-decode"; "text-utf7" = dontDistribute super."text-utf7"; @@ -7094,11 +7304,13 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7122,6 +7334,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; "tiphys" = dontDistribute super."tiphys"; @@ -7150,6 +7363,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7161,12 +7375,12 @@ self: super: { "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; "tracker" = dontDistribute super."tracker"; + "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7231,6 +7445,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -7241,8 +7456,11 @@ self: super: { "twisty" = dontDistribute super."twisty"; "twitch" = dontDistribute super."twitch"; "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = doDistribute super."twitter-conduit_0_1_1_1"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; + "twitter-types" = doDistribute super."twitter-types_0_7_1_1"; + "twitter-types-lens" = doDistribute super."twitter-types-lens_0_7_1"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; @@ -7335,6 +7553,7 @@ self: super: { "unicoder" = dontDistribute super."unicoder"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -7489,6 +7708,7 @@ self: super: { "vinyl" = doDistribute super."vinyl_0_5_1"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -7540,9 +7760,11 @@ self: super: { "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-metrics" = doDistribute super."wai-middleware-metrics_0_2_2"; "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -7588,6 +7810,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_1"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -7622,6 +7845,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -7691,6 +7915,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_2_0"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -7774,6 +7999,7 @@ self: super: { "ycextra" = dontDistribute super."ycextra"; "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; @@ -7797,6 +8023,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -7833,6 +8060,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_3"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; @@ -7872,6 +8100,8 @@ self: super: { "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index 37a5a87c4f2..884b11b28b6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -113,6 +113,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -122,6 +123,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -161,6 +163,8 @@ self: super: { "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; "Chart-diagrams" = dontDistribute super."Chart-diagrams"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; @@ -308,6 +312,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -565,6 +570,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -736,6 +742,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -853,6 +860,8 @@ self: super: { "SpacePrivateers" = dontDistribute super."SpacePrivateers"; "SpinCounter" = dontDistribute super."SpinCounter"; "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1073,6 +1082,7 @@ self: super: { "adp-multi" = dontDistribute super."adp-multi"; "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-compat" = doDistribute super."aeson-compat_0_3_0_0"; "aeson-diff" = dontDistribute super."aeson-diff"; @@ -1104,6 +1114,7 @@ self: super: { "air-spec" = dontDistribute super."air-spec"; "air-th" = dontDistribute super."air-th"; "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; "aivika-experiment" = dontDistribute super."aivika-experiment"; @@ -1148,6 +1159,75 @@ self: super: { "amazon-emailer" = dontDistribute super."amazon-emailer"; "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; "ampersand" = dontDistribute super."ampersand"; "amqp-conduit" = dontDistribute super."amqp-conduit"; "amrun" = dontDistribute super."amrun"; @@ -1179,6 +1259,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1202,6 +1283,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon2" = dontDistribute super."argon2"; @@ -1260,6 +1342,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1358,6 +1441,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1374,6 +1458,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; "berkeleydb" = dontDistribute super."berkeleydb"; @@ -1392,7 +1477,6 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; - "bifunctors" = doDistribute super."bifunctors_5_2"; "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; @@ -1528,6 +1612,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1537,6 +1622,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1551,6 +1638,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1676,6 +1764,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1693,6 +1782,7 @@ self: super: { "carboncopy" = dontDistribute super."carboncopy"; "carettah" = dontDistribute super."carettah"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1701,6 +1791,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -1729,6 +1820,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1741,6 +1833,7 @@ self: super: { "cfopu" = dontDistribute super."cfopu"; "cg" = dontDistribute super."cg"; "cgen" = dontDistribute super."cgen"; + "cgi" = doDistribute super."cgi_3001_2_2_3"; "cgi-undecidable" = dontDistribute super."cgi-undecidable"; "cgi-utils" = dontDistribute super."cgi-utils"; "cgrep" = dontDistribute super."cgrep"; @@ -1759,12 +1852,15 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1800,10 +1896,14 @@ self: super: { "clash-lib" = doDistribute super."clash-lib_0_6_9"; "clash-prelude" = doDistribute super."clash-prelude_0_10_5"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_5"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_5"; "clash-vhdl" = doDistribute super."clash-vhdl_0_6_6"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = doDistribute super."clckwrks_0_23_13"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; @@ -1882,6 +1982,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -1919,6 +2020,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -1942,6 +2044,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -1958,6 +2061,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; "consumers" = dontDistribute super."consumers"; @@ -2022,7 +2126,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2050,10 +2156,12 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; "cron-compat" = dontDistribute super."cron-compat"; "cruncher-types" = dontDistribute super."cruncher-types"; "crunghc" = dontDistribute super."crunghc"; @@ -2064,7 +2172,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2110,6 +2221,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; @@ -2231,6 +2343,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2276,6 +2389,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2312,6 +2426,7 @@ self: super: { "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; + "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_5"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; @@ -2415,8 +2530,10 @@ self: super: { "dominion" = dontDistribute super."dominion"; "domplate" = dontDistribute super."domplate"; "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -2790,6 +2907,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -2805,8 +2923,11 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = doDistribute super."fn_0_2_0_2"; + "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl" = doDistribute super."foldl_1_1_5"; "foldl-incremental" = dontDistribute super."foldl-incremental"; "foldl-transduce" = dontDistribute super."foldl-transduce"; "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; @@ -2966,6 +3087,7 @@ self: super: { "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-sop" = doDistribute super."generics-sop_0_2_0_0"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3021,6 +3143,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3050,6 +3173,7 @@ self: super: { "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; "gipeda" = doDistribute super."gipeda_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_6_20160114"; @@ -3286,6 +3410,7 @@ self: super: { "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "groupoid" = dontDistribute super."groupoid"; @@ -3414,6 +3539,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3439,6 +3565,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -3586,6 +3713,7 @@ self: super: { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_6_0_0"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-core" = dontDistribute super."haskoin-core"; @@ -3630,6 +3758,7 @@ self: super: { "haxl-amazonka" = dontDistribute super."haxl-amazonka"; "haxl-facebook" = dontDistribute super."haxl-facebook"; "haxparse" = dontDistribute super."haxparse"; + "haxr" = doDistribute super."haxr_3000_11_1_3"; "haxr-th" = dontDistribute super."haxr-th"; "haxy" = dontDistribute super."haxy"; "hayland" = dontDistribute super."hayland"; @@ -3670,6 +3799,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3684,6 +3814,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -3735,6 +3866,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -3771,6 +3903,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3782,6 +3915,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -3938,6 +4072,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4032,6 +4167,7 @@ self: super: { "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; "hset" = dontDistribute super."hset"; + "hsexif" = doDistribute super."hsexif_0_6_0_7"; "hsfacter" = dontDistribute super."hsfacter"; "hsfcsh" = dontDistribute super."hsfcsh"; "hsfilt" = dontDistribute super."hsfilt"; @@ -4079,6 +4215,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -4115,6 +4252,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = doDistribute super."htaglib_1_0_1"; "htags" = dontDistribute super."htags"; "htar" = dontDistribute super."htar"; "htiled" = dontDistribute super."htiled"; @@ -4141,6 +4279,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4251,9 +4390,11 @@ self: super: { "ifcxt" = dontDistribute super."ifcxt"; "iff" = dontDistribute super."iff"; "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; "ige-mac-integration" = dontDistribute super."ige-mac-integration"; "igraph" = dontDistribute super."igraph"; "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_8_3_0"; "ihaskell-display" = dontDistribute super."ihaskell-display"; "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; @@ -4270,10 +4411,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4308,6 +4451,7 @@ self: super: { "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4352,9 +4496,11 @@ self: super: { "ipprint" = dontDistribute super."ipprint"; "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4363,6 +4509,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4412,6 +4559,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4433,6 +4581,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4464,8 +4613,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4476,11 +4627,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4590,6 +4744,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -4657,6 +4812,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -4842,6 +4998,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -4935,6 +5092,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -4951,6 +5109,7 @@ self: super: { "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; "meep" = dontDistribute super."meep"; "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_3_0"; "meldable-heap" = dontDistribute super."meldable-heap"; "melody" = dontDistribute super."melody"; "memcache" = dontDistribute super."memcache"; @@ -4962,6 +5121,7 @@ self: super: { "memo-sqlite" = dontDistribute super."memo-sqlite"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messente" = dontDistribute super."messente"; "meta-misc" = dontDistribute super."meta-misc"; "meta-par" = dontDistribute super."meta-par"; @@ -4977,6 +5137,7 @@ self: super: { "mgeneric" = dontDistribute super."mgeneric"; "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = doDistribute super."microformats2-parser_1_0_1_3"; "microformats2-types" = dontDistribute super."microformats2-types"; "microlens" = doDistribute super."microlens_0_4_1_0"; "microlens-aeson" = doDistribute super."microlens-aeson_2_1_0"; @@ -4986,6 +5147,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_3_0_0"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5028,6 +5190,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = doDistribute super."modify-fasta_0_8_0_4"; @@ -5046,6 +5209,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; @@ -5122,6 +5286,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5293,6 +5458,7 @@ self: super: { "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5332,6 +5498,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5471,6 +5638,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -5496,6 +5664,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_9"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; @@ -5540,6 +5709,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -5550,6 +5720,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "path" = doDistribute super."path_0_5_3"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5567,6 +5738,7 @@ self: super: { "pcd-loader" = dontDistribute super."pcd-loader"; "pcf" = dontDistribute super."pcf"; "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; "pdf-toolbox-content" = doDistribute super."pdf-toolbox-content_0_0_5_0"; @@ -5598,6 +5770,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -5608,6 +5781,8 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; + "persistent-template" = doDistribute super."persistent-template_2_1_5"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5644,6 +5819,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; @@ -5846,6 +6022,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "propane" = dontDistribute super."propane"; @@ -5857,6 +6034,8 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -5868,6 +6047,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; @@ -5890,6 +6070,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6016,6 +6197,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6060,6 +6242,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "regex-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6141,6 +6324,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6173,6 +6357,8 @@ self: super: { "rezoom" = dontDistribute super."rezoom"; "rfc3339" = dontDistribute super."rfc3339"; "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; "richreports" = dontDistribute super."richreports"; "riemann" = dontDistribute super."riemann"; "riff" = dontDistribute super."riff"; @@ -6187,6 +6373,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6228,6 +6415,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6310,6 +6498,7 @@ self: super: { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_4_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6368,6 +6557,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6385,11 +6575,20 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -6397,6 +6596,7 @@ self: super: { "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6453,6 +6653,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; @@ -6528,6 +6729,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -6552,6 +6754,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -6746,6 +6949,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -6775,6 +6979,7 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; @@ -6799,6 +7004,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = doDistribute super."stripe-core_2_0_2"; + "stripe-haskell" = doDistribute super."stripe-haskell_2_0_2"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -6856,6 +7064,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; @@ -6905,6 +7114,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -6912,6 +7122,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -6923,7 +7134,9 @@ self: super: { "tamper" = dontDistribute super."tamper"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; "tasty-laws" = dontDistribute super."tasty-laws"; @@ -6994,6 +7207,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7009,7 +7223,6 @@ self: super: { "text-region" = dontDistribute super."text-region"; "text-register-machine" = dontDistribute super."text-register-machine"; "text-render" = dontDistribute super."text-render"; - "text-show" = doDistribute super."text-show_2_1_2"; "text-show-instances" = dontDistribute super."text-show-instances"; "text-stream-decode" = dontDistribute super."text-stream-decode"; "text-utf7" = dontDistribute super."text-utf7"; @@ -7076,11 +7289,13 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7104,6 +7319,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; "tiphys" = dontDistribute super."tiphys"; @@ -7132,6 +7348,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7143,12 +7360,12 @@ self: super: { "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; "tracker" = dontDistribute super."tracker"; + "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7213,6 +7430,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -7223,8 +7441,11 @@ self: super: { "twisty" = dontDistribute super."twisty"; "twitch" = dontDistribute super."twitch"; "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = doDistribute super."twitter-conduit_0_1_1_1"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; + "twitter-types" = doDistribute super."twitter-types_0_7_1_1"; + "twitter-types-lens" = doDistribute super."twitter-types-lens_0_7_1"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; @@ -7317,6 +7538,7 @@ self: super: { "unicoder" = dontDistribute super."unicoder"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -7470,6 +7692,7 @@ self: super: { "vinyl" = doDistribute super."vinyl_0_5_1"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -7521,9 +7744,11 @@ self: super: { "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-metrics" = doDistribute super."wai-middleware-metrics_0_2_2"; "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -7569,6 +7794,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_1"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -7603,6 +7829,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -7672,6 +7899,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_2_0"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -7755,6 +7983,7 @@ self: super: { "ycextra" = dontDistribute super."ycextra"; "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; @@ -7778,6 +8007,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -7813,6 +8043,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_3"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; @@ -7852,6 +8083,8 @@ self: super: { "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index 0e4e457bf1e..2f1000c9245 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -113,6 +113,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -122,6 +123,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -161,6 +163,8 @@ self: super: { "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; "Chart-diagrams" = dontDistribute super."Chart-diagrams"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; @@ -308,6 +312,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -564,6 +569,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -735,6 +741,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -852,6 +859,8 @@ self: super: { "SpacePrivateers" = dontDistribute super."SpacePrivateers"; "SpinCounter" = dontDistribute super."SpinCounter"; "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1072,6 +1081,7 @@ self: super: { "adp-multi" = dontDistribute super."adp-multi"; "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-compat" = doDistribute super."aeson-compat_0_3_0_0"; "aeson-diff" = dontDistribute super."aeson-diff"; @@ -1103,6 +1113,7 @@ self: super: { "air-spec" = dontDistribute super."air-spec"; "air-th" = dontDistribute super."air-th"; "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; "aivika-experiment" = dontDistribute super."aivika-experiment"; @@ -1147,6 +1158,75 @@ self: super: { "amazon-emailer" = dontDistribute super."amazon-emailer"; "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; "ampersand" = dontDistribute super."ampersand"; "amqp-conduit" = dontDistribute super."amqp-conduit"; "amrun" = dontDistribute super."amrun"; @@ -1178,6 +1258,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1201,6 +1282,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon2" = dontDistribute super."argon2"; @@ -1259,6 +1341,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1357,6 +1440,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1373,6 +1457,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; "berkeleydb" = dontDistribute super."berkeleydb"; @@ -1391,7 +1476,6 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; - "bifunctors" = doDistribute super."bifunctors_5_2"; "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; @@ -1527,6 +1611,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1536,6 +1621,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1550,6 +1637,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1623,6 +1711,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-info" = dontDistribute super."cabal-info"; + "cabal-install" = doDistribute super."cabal-install_1_22_8_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1674,6 +1763,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1691,6 +1781,7 @@ self: super: { "carboncopy" = dontDistribute super."carboncopy"; "carettah" = dontDistribute super."carettah"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1699,6 +1790,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -1727,6 +1819,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1739,6 +1832,7 @@ self: super: { "cfopu" = dontDistribute super."cfopu"; "cg" = dontDistribute super."cg"; "cgen" = dontDistribute super."cgen"; + "cgi" = doDistribute super."cgi_3001_2_2_3"; "cgi-undecidable" = dontDistribute super."cgi-undecidable"; "cgi-utils" = dontDistribute super."cgi-utils"; "cgrep" = dontDistribute super."cgrep"; @@ -1757,12 +1851,15 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1798,10 +1895,14 @@ self: super: { "clash-lib" = doDistribute super."clash-lib_0_6_9"; "clash-prelude" = doDistribute super."clash-prelude_0_10_5"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_5"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_5"; "clash-vhdl" = doDistribute super."clash-vhdl_0_6_6"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = doDistribute super."clckwrks_0_23_13"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; @@ -1880,6 +1981,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -1917,6 +2019,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -1940,6 +2043,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -1956,6 +2060,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; "consumers" = dontDistribute super."consumers"; @@ -2020,7 +2125,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2048,10 +2155,12 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; "cron-compat" = dontDistribute super."cron-compat"; "cruncher-types" = dontDistribute super."cruncher-types"; "crunghc" = dontDistribute super."crunghc"; @@ -2062,7 +2171,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2108,6 +2220,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; @@ -2229,6 +2342,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2274,6 +2388,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2310,6 +2425,7 @@ self: super: { "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; + "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_5"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; @@ -2412,8 +2528,10 @@ self: super: { "dominion" = dontDistribute super."dominion"; "domplate" = dontDistribute super."domplate"; "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -2784,6 +2902,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -2799,8 +2918,11 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = doDistribute super."fn_0_2_0_2"; + "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl" = doDistribute super."foldl_1_1_5"; "foldl-incremental" = dontDistribute super."foldl-incremental"; "foldl-transduce" = dontDistribute super."foldl-transduce"; "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; @@ -2960,6 +3082,7 @@ self: super: { "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-sop" = doDistribute super."generics-sop_0_2_0_0"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3014,6 +3137,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3043,6 +3167,7 @@ self: super: { "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; "gipeda" = doDistribute super."gipeda_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_6_20160114"; @@ -3278,6 +3403,7 @@ self: super: { "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "groupoid" = dontDistribute super."groupoid"; @@ -3332,6 +3458,7 @@ self: super: { "hGelf" = dontDistribute super."hGelf"; "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; + "hOpenPGP" = doDistribute super."hOpenPGP_2_4_3"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3405,6 +3532,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3430,6 +3558,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -3577,6 +3706,7 @@ self: super: { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_6_0_0"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-core" = dontDistribute super."haskoin-core"; @@ -3621,6 +3751,7 @@ self: super: { "haxl-amazonka" = dontDistribute super."haxl-amazonka"; "haxl-facebook" = dontDistribute super."haxl-facebook"; "haxparse" = dontDistribute super."haxparse"; + "haxr" = doDistribute super."haxr_3000_11_1_3"; "haxr-th" = dontDistribute super."haxr-th"; "haxy" = dontDistribute super."haxy"; "hayland" = dontDistribute super."hayland"; @@ -3661,6 +3792,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3675,6 +3807,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -3726,6 +3859,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -3762,6 +3896,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3773,6 +3908,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -3929,6 +4065,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4023,6 +4160,7 @@ self: super: { "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; "hset" = dontDistribute super."hset"; + "hsexif" = doDistribute super."hsexif_0_6_0_7"; "hsfacter" = dontDistribute super."hsfacter"; "hsfcsh" = dontDistribute super."hsfcsh"; "hsfilt" = dontDistribute super."hsfilt"; @@ -4070,6 +4208,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -4106,6 +4245,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = doDistribute super."htaglib_1_0_1"; "htags" = dontDistribute super."htags"; "htar" = dontDistribute super."htar"; "htiled" = dontDistribute super."htiled"; @@ -4132,6 +4272,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4241,9 +4382,11 @@ self: super: { "ifcxt" = dontDistribute super."ifcxt"; "iff" = dontDistribute super."iff"; "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; "ige-mac-integration" = dontDistribute super."ige-mac-integration"; "igraph" = dontDistribute super."igraph"; "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_8_3_0"; "ihaskell-display" = dontDistribute super."ihaskell-display"; "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; @@ -4260,10 +4403,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4298,6 +4443,7 @@ self: super: { "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4341,9 +4487,11 @@ self: super: { "ipprint" = dontDistribute super."ipprint"; "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4352,6 +4500,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4401,6 +4550,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4422,6 +4572,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4453,8 +4604,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4465,11 +4618,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4579,6 +4735,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -4646,6 +4803,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -4831,6 +4989,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -4924,6 +5083,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -4940,6 +5100,7 @@ self: super: { "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; "meep" = dontDistribute super."meep"; "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_3_0"; "meldable-heap" = dontDistribute super."meldable-heap"; "melody" = dontDistribute super."melody"; "memcache" = dontDistribute super."memcache"; @@ -4951,6 +5112,7 @@ self: super: { "memo-sqlite" = dontDistribute super."memo-sqlite"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messente" = dontDistribute super."messente"; "meta-misc" = dontDistribute super."meta-misc"; "meta-par" = dontDistribute super."meta-par"; @@ -4966,6 +5128,7 @@ self: super: { "mgeneric" = dontDistribute super."mgeneric"; "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = doDistribute super."microformats2-parser_1_0_1_3"; "microformats2-types" = dontDistribute super."microformats2-types"; "microlens" = doDistribute super."microlens_0_4_1_0"; "microlens-aeson" = doDistribute super."microlens-aeson_2_1_0"; @@ -4975,6 +5138,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_3_0_0"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5016,6 +5180,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modsplit" = dontDistribute super."modsplit"; @@ -5033,6 +5198,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5105,6 +5271,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5276,6 +5443,7 @@ self: super: { "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5315,6 +5483,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5454,6 +5623,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -5479,6 +5649,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_9"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; @@ -5523,6 +5694,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -5533,6 +5705,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "path" = doDistribute super."path_0_5_3"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5550,6 +5723,7 @@ self: super: { "pcd-loader" = dontDistribute super."pcd-loader"; "pcf" = dontDistribute super."pcf"; "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; @@ -5578,6 +5752,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -5588,6 +5763,8 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; + "persistent-template" = doDistribute super."persistent-template_2_1_5"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5624,6 +5801,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; @@ -5825,6 +6003,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "propane" = dontDistribute super."propane"; @@ -5836,6 +6015,8 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -5847,6 +6028,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -5868,6 +6050,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -5993,6 +6176,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6037,6 +6221,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "regex-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6118,6 +6303,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6149,6 +6335,8 @@ self: super: { "rezoom" = dontDistribute super."rezoom"; "rfc3339" = dontDistribute super."rfc3339"; "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; "richreports" = dontDistribute super."richreports"; "riemann" = dontDistribute super."riemann"; "riff" = dontDistribute super."riff"; @@ -6163,6 +6351,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6204,6 +6393,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6286,6 +6476,7 @@ self: super: { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_4_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6344,6 +6535,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6361,11 +6553,20 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -6373,6 +6574,7 @@ self: super: { "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6429,6 +6631,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; @@ -6504,6 +6707,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -6528,6 +6732,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -6722,6 +6927,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -6751,6 +6957,7 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; @@ -6775,6 +6982,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = doDistribute super."stripe-core_2_0_2"; + "stripe-haskell" = doDistribute super."stripe-haskell_2_0_2"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -6831,6 +7041,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; @@ -6880,6 +7091,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -6887,6 +7099,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -6898,7 +7111,9 @@ self: super: { "tamper" = dontDistribute super."tamper"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; "tasty-laws" = dontDistribute super."tasty-laws"; @@ -6969,6 +7184,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -6984,7 +7200,6 @@ self: super: { "text-region" = dontDistribute super."text-region"; "text-register-machine" = dontDistribute super."text-register-machine"; "text-render" = dontDistribute super."text-render"; - "text-show" = doDistribute super."text-show_2_1_2"; "text-show-instances" = dontDistribute super."text-show-instances"; "text-stream-decode" = dontDistribute super."text-stream-decode"; "text-utf7" = dontDistribute super."text-utf7"; @@ -7051,11 +7266,13 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7079,6 +7296,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; "tiphys" = dontDistribute super."tiphys"; @@ -7107,6 +7325,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7118,12 +7337,12 @@ self: super: { "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; "tracker" = dontDistribute super."tracker"; + "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7188,6 +7407,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -7198,8 +7418,11 @@ self: super: { "twisty" = dontDistribute super."twisty"; "twitch" = dontDistribute super."twitch"; "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = doDistribute super."twitter-conduit_0_1_1_1"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; + "twitter-types" = doDistribute super."twitter-types_0_7_1_1"; + "twitter-types-lens" = doDistribute super."twitter-types-lens_0_7_1"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; @@ -7292,6 +7515,7 @@ self: super: { "unicoder" = dontDistribute super."unicoder"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -7413,6 +7637,7 @@ self: super: { "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; "vector-binary" = dontDistribute super."vector-binary"; + "vector-binary-instances" = doDistribute super."vector-binary-instances_0_2_1_1"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; "vector-conduit" = dontDistribute super."vector-conduit"; @@ -7444,6 +7669,7 @@ self: super: { "vinyl" = doDistribute super."vinyl_0_5_1"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -7495,9 +7721,11 @@ self: super: { "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-metrics" = doDistribute super."wai-middleware-metrics_0_2_2"; "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -7543,6 +7771,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_1"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -7577,6 +7806,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -7646,9 +7876,11 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_2_0"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_3_1"; "xml-enumerator" = dontDistribute super."xml-enumerator"; "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; "xml-extractors" = dontDistribute super."xml-extractors"; @@ -7728,6 +7960,7 @@ self: super: { "ycextra" = dontDistribute super."ycextra"; "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; @@ -7751,6 +7984,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -7786,6 +8020,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_3"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; @@ -7825,6 +8060,8 @@ self: super: { "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index 2e3c31fe650..f831a7ec7cf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -113,6 +113,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -122,6 +123,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -161,6 +163,8 @@ self: super: { "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; "Chart-diagrams" = dontDistribute super."Chart-diagrams"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; @@ -306,6 +310,7 @@ self: super: { "Focus" = dontDistribute super."Focus"; "Folly" = dontDistribute super."Folly"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -561,6 +566,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -732,6 +738,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -849,6 +856,8 @@ self: super: { "SpacePrivateers" = dontDistribute super."SpacePrivateers"; "SpinCounter" = dontDistribute super."SpinCounter"; "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1068,6 +1077,7 @@ self: super: { "adp-multi" = dontDistribute super."adp-multi"; "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_3_1_0"; @@ -1098,6 +1108,7 @@ self: super: { "air-spec" = dontDistribute super."air-spec"; "air-th" = dontDistribute super."air-th"; "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; "aivika-experiment" = dontDistribute super."aivika-experiment"; @@ -1142,6 +1153,75 @@ self: super: { "amazon-emailer" = dontDistribute super."amazon-emailer"; "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; "ampersand" = dontDistribute super."ampersand"; "amqp-conduit" = dontDistribute super."amqp-conduit"; "amrun" = dontDistribute super."amrun"; @@ -1173,6 +1253,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1195,6 +1276,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon2" = dontDistribute super."argon2"; @@ -1253,6 +1335,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1351,6 +1434,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1367,6 +1451,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; "berkeleydb" = dontDistribute super."berkeleydb"; @@ -1385,7 +1470,6 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; - "bifunctors" = doDistribute super."bifunctors_5_2"; "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; @@ -1519,6 +1603,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1528,6 +1613,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1542,6 +1629,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1615,6 +1703,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-info" = dontDistribute super."cabal-info"; + "cabal-install" = doDistribute super."cabal-install_1_22_8_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1666,6 +1755,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1683,6 +1773,7 @@ self: super: { "carboncopy" = dontDistribute super."carboncopy"; "carettah" = dontDistribute super."carettah"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1691,6 +1782,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "casr-logbook" = dontDistribute super."casr-logbook"; @@ -1718,6 +1810,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1730,6 +1823,7 @@ self: super: { "cfopu" = dontDistribute super."cfopu"; "cg" = dontDistribute super."cg"; "cgen" = dontDistribute super."cgen"; + "cgi" = doDistribute super."cgi_3001_2_2_3"; "cgi-undecidable" = dontDistribute super."cgi-undecidable"; "cgi-utils" = dontDistribute super."cgi-utils"; "cgrep" = dontDistribute super."cgrep"; @@ -1748,12 +1842,15 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1785,9 +1882,17 @@ self: super: { "clanki" = dontDistribute super."clanki"; "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_6_10"; + "clash-lib" = doDistribute super."clash-lib_0_6_10"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_5"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_5"; + "clash-vhdl" = doDistribute super."clash-vhdl_0_6_7"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; + "classy-prelude" = doDistribute super."classy-prelude_0_12_5_1"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = doDistribute super."clckwrks_0_23_13"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; @@ -1866,6 +1971,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -1903,6 +2009,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -1925,6 +2032,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -1941,6 +2049,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; "consumers" = dontDistribute super."consumers"; @@ -2004,7 +2113,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2032,10 +2143,12 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; "cron-compat" = dontDistribute super."cron-compat"; "cruncher-types" = dontDistribute super."cruncher-types"; "crunghc" = dontDistribute super."crunghc"; @@ -2046,7 +2159,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2092,6 +2208,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; @@ -2212,6 +2329,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2257,6 +2375,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2293,6 +2412,7 @@ self: super: { "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; + "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_5"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; @@ -2394,8 +2514,10 @@ self: super: { "dominion" = dontDistribute super."dominion"; "domplate" = dontDistribute super."domplate"; "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -2597,6 +2719,7 @@ self: super: { "event-list" = dontDistribute super."event-list"; "event-monad" = dontDistribute super."event-monad"; "eventloop" = dontDistribute super."eventloop"; + "eventstore" = doDistribute super."eventstore_0_10_0_2"; "every-bit-counts" = dontDistribute super."every-bit-counts"; "ewe" = dontDistribute super."ewe"; "ex-pool" = dontDistribute super."ex-pool"; @@ -2758,6 +2881,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -2773,8 +2897,11 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = doDistribute super."fn_0_2_0_2"; + "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl" = doDistribute super."foldl_1_1_5"; "foldl-incremental" = dontDistribute super."foldl-incremental"; "foldl-transduce" = dontDistribute super."foldl-transduce"; "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; @@ -2933,6 +3060,7 @@ self: super: { "generic-tree" = dontDistribute super."generic-tree"; "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -2987,6 +3115,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3015,6 +3144,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_6_20160114"; @@ -3250,6 +3380,7 @@ self: super: { "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "groupoid" = dontDistribute super."groupoid"; @@ -3304,6 +3435,7 @@ self: super: { "hGelf" = dontDistribute super."hGelf"; "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; + "hOpenPGP" = doDistribute super."hOpenPGP_2_4_3"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3377,6 +3509,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3402,6 +3535,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -3549,6 +3683,7 @@ self: super: { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_6_0_0"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-core" = dontDistribute super."haskoin-core"; @@ -3593,6 +3728,7 @@ self: super: { "haxl-amazonka" = dontDistribute super."haxl-amazonka"; "haxl-facebook" = dontDistribute super."haxl-facebook"; "haxparse" = dontDistribute super."haxparse"; + "haxr" = doDistribute super."haxr_3000_11_1_3"; "haxr-th" = dontDistribute super."haxr-th"; "haxy" = dontDistribute super."haxy"; "hayland" = dontDistribute super."hayland"; @@ -3633,6 +3769,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3647,6 +3784,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -3698,6 +3836,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -3734,6 +3873,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3745,6 +3885,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -3901,6 +4042,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -3995,6 +4137,7 @@ self: super: { "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; "hset" = dontDistribute super."hset"; + "hsexif" = doDistribute super."hsexif_0_6_0_7"; "hsfacter" = dontDistribute super."hsfacter"; "hsfcsh" = dontDistribute super."hsfcsh"; "hsfilt" = dontDistribute super."hsfilt"; @@ -4042,6 +4185,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -4078,6 +4222,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = doDistribute super."htaglib_1_0_1"; "htags" = dontDistribute super."htags"; "htar" = dontDistribute super."htar"; "htiled" = dontDistribute super."htiled"; @@ -4104,6 +4249,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4213,9 +4359,11 @@ self: super: { "ifcxt" = dontDistribute super."ifcxt"; "iff" = dontDistribute super."iff"; "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; "ige-mac-integration" = dontDistribute super."ige-mac-integration"; "igraph" = dontDistribute super."igraph"; "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_8_3_0"; "ihaskell-display" = dontDistribute super."ihaskell-display"; "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; @@ -4232,10 +4380,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4269,6 +4419,7 @@ self: super: { "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4312,9 +4463,11 @@ self: super: { "ipprint" = dontDistribute super."ipprint"; "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4323,6 +4476,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4372,6 +4526,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4393,6 +4548,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4424,8 +4580,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4436,11 +4594,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4550,6 +4711,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -4617,6 +4779,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -4801,6 +4964,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -4893,6 +5057,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -4909,6 +5074,7 @@ self: super: { "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; "meep" = dontDistribute super."meep"; "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_3_0"; "meldable-heap" = dontDistribute super."meldable-heap"; "melody" = dontDistribute super."melody"; "memcache" = dontDistribute super."memcache"; @@ -4920,6 +5086,7 @@ self: super: { "memo-sqlite" = dontDistribute super."memo-sqlite"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messente" = dontDistribute super."messente"; "meta-misc" = dontDistribute super."meta-misc"; "meta-par" = dontDistribute super."meta-par"; @@ -4935,6 +5102,7 @@ self: super: { "mgeneric" = dontDistribute super."mgeneric"; "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = doDistribute super."microformats2-parser_1_0_1_3"; "microformats2-types" = dontDistribute super."microformats2-types"; "microlens" = doDistribute super."microlens_0_4_1_0"; "microlens-each" = dontDistribute super."microlens-each"; @@ -4942,6 +5110,7 @@ self: super: { "microlens-platform" = doDistribute super."microlens-platform_0_2_2_0"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -4983,6 +5152,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modsplit" = dontDistribute super."modsplit"; @@ -5000,6 +5170,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5072,6 +5243,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5243,6 +5415,7 @@ self: super: { "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5282,6 +5455,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5421,6 +5595,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -5440,11 +5615,13 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_6"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_9"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; @@ -5488,6 +5665,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -5498,6 +5676,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "path" = doDistribute super."path_0_5_3"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5515,6 +5694,7 @@ self: super: { "pcd-loader" = dontDistribute super."pcd-loader"; "pcf" = dontDistribute super."pcf"; "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; @@ -5543,6 +5723,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -5553,6 +5734,8 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; + "persistent-template" = doDistribute super."persistent-template_2_1_5"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5589,6 +5772,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; @@ -5789,6 +5973,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "propane" = dontDistribute super."propane"; @@ -5800,6 +5985,8 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -5811,6 +5998,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -5832,6 +6020,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -5956,6 +6145,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -5999,6 +6189,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "regex-deriv" = dontDistribute super."regex-deriv"; "regex-dfa" = dontDistribute super."regex-dfa"; @@ -6079,6 +6270,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6109,6 +6301,8 @@ self: super: { "rezoom" = dontDistribute super."rezoom"; "rfc3339" = dontDistribute super."rfc3339"; "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; "richreports" = dontDistribute super."richreports"; "riemann" = dontDistribute super."riemann"; "riff" = dontDistribute super."riff"; @@ -6123,6 +6317,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6164,6 +6359,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6246,6 +6442,7 @@ self: super: { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_4_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6304,6 +6501,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6321,11 +6519,20 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -6333,6 +6540,7 @@ self: super: { "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6389,6 +6597,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; @@ -6463,6 +6672,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -6486,6 +6696,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -6678,6 +6889,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -6706,6 +6918,8 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; + "streaming-commons" = doDistribute super."streaming-commons_0_1_15_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -6729,6 +6943,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = doDistribute super."stripe-core_2_0_2"; + "stripe-haskell" = doDistribute super."stripe-haskell_2_0_2"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -6785,6 +7002,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; @@ -6834,6 +7052,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -6841,6 +7060,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -6852,7 +7072,9 @@ self: super: { "tamper" = dontDistribute super."tamper"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; "tasty-laws" = dontDistribute super."tasty-laws"; @@ -6921,7 +7143,9 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4_2"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -6937,7 +7161,6 @@ self: super: { "text-region" = dontDistribute super."text-region"; "text-register-machine" = dontDistribute super."text-register-machine"; "text-render" = dontDistribute super."text-render"; - "text-show" = doDistribute super."text-show_2_1_2"; "text-show-instances" = dontDistribute super."text-show-instances"; "text-stream-decode" = dontDistribute super."text-stream-decode"; "text-utf7" = dontDistribute super."text-utf7"; @@ -7004,11 +7227,13 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7032,6 +7257,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; "tiphys" = dontDistribute super."tiphys"; @@ -7060,6 +7286,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7071,12 +7298,12 @@ self: super: { "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; "tracker" = dontDistribute super."tracker"; + "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7141,6 +7368,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -7151,8 +7379,11 @@ self: super: { "twisty" = dontDistribute super."twisty"; "twitch" = dontDistribute super."twitch"; "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = doDistribute super."twitter-conduit_0_1_1_1"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; + "twitter-types" = doDistribute super."twitter-types_0_7_1_1"; + "twitter-types-lens" = doDistribute super."twitter-types-lens_0_7_1"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; @@ -7245,6 +7476,7 @@ self: super: { "unicoder" = dontDistribute super."unicoder"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -7365,6 +7597,7 @@ self: super: { "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; "vector-binary" = dontDistribute super."vector-binary"; + "vector-binary-instances" = doDistribute super."vector-binary-instances_0_2_1_1"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; "vector-conduit" = dontDistribute super."vector-conduit"; @@ -7396,6 +7629,7 @@ self: super: { "vinyl" = doDistribute super."vinyl_0_5_1"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -7447,9 +7681,11 @@ self: super: { "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-metrics" = doDistribute super."wai-middleware-metrics_0_2_2"; "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; @@ -7492,6 +7728,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_1"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -7526,6 +7763,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -7595,9 +7833,11 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_2_0"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_3_1"; "xml-enumerator" = dontDistribute super."xml-enumerator"; "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; "xml-extractors" = dontDistribute super."xml-extractors"; @@ -7677,6 +7917,7 @@ self: super: { "ycextra" = dontDistribute super."ycextra"; "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; @@ -7685,6 +7926,7 @@ self: super: { "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_1_7"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; @@ -7699,6 +7941,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -7734,6 +7977,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_3"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; @@ -7773,6 +8017,8 @@ self: super: { "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index a167ad714b8..fc4d8cb7798 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -113,6 +113,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -122,6 +123,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -161,6 +163,8 @@ self: super: { "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; "Chart-diagrams" = dontDistribute super."Chart-diagrams"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; @@ -306,6 +310,7 @@ self: super: { "Focus" = dontDistribute super."Focus"; "Folly" = dontDistribute super."Folly"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -560,6 +565,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -731,6 +737,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -848,6 +855,8 @@ self: super: { "SpacePrivateers" = dontDistribute super."SpacePrivateers"; "SpinCounter" = dontDistribute super."SpinCounter"; "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1067,6 +1076,7 @@ self: super: { "adp-multi" = dontDistribute super."adp-multi"; "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1096,6 +1106,7 @@ self: super: { "air-spec" = dontDistribute super."air-spec"; "air-th" = dontDistribute super."air-th"; "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; "aivika-experiment" = dontDistribute super."aivika-experiment"; @@ -1140,6 +1151,75 @@ self: super: { "amazon-emailer" = dontDistribute super."amazon-emailer"; "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; "ampersand" = dontDistribute super."ampersand"; "amqp-conduit" = dontDistribute super."amqp-conduit"; "amrun" = dontDistribute super."amrun"; @@ -1171,6 +1251,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1193,6 +1274,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon2" = dontDistribute super."argon2"; @@ -1251,6 +1333,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1349,6 +1432,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1365,6 +1449,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; "berkeleydb" = dontDistribute super."berkeleydb"; @@ -1383,7 +1468,6 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; - "bifunctors" = doDistribute super."bifunctors_5_2"; "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; @@ -1517,6 +1601,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1526,6 +1611,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1540,6 +1627,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1613,6 +1701,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-info" = dontDistribute super."cabal-info"; + "cabal-install" = doDistribute super."cabal-install_1_22_8_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1664,6 +1753,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1681,6 +1771,7 @@ self: super: { "carboncopy" = dontDistribute super."carboncopy"; "carettah" = dontDistribute super."carettah"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1689,6 +1780,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "casr-logbook" = dontDistribute super."casr-logbook"; @@ -1716,6 +1808,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1728,6 +1821,7 @@ self: super: { "cfopu" = dontDistribute super."cfopu"; "cg" = dontDistribute super."cg"; "cgen" = dontDistribute super."cgen"; + "cgi" = doDistribute super."cgi_3001_2_2_3"; "cgi-undecidable" = dontDistribute super."cgi-undecidable"; "cgi-utils" = dontDistribute super."cgi-utils"; "cgrep" = dontDistribute super."cgrep"; @@ -1746,12 +1840,15 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1783,9 +1880,17 @@ self: super: { "clanki" = dontDistribute super."clanki"; "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_6_10"; + "clash-lib" = doDistribute super."clash-lib_0_6_10"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_5"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_5"; + "clash-vhdl" = doDistribute super."clash-vhdl_0_6_7"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; + "classy-prelude" = doDistribute super."classy-prelude_0_12_5_1"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = doDistribute super."clckwrks_0_23_13"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; @@ -1863,6 +1968,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -1900,6 +2006,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -1912,14 +2019,17 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_2"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_10_1"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -1936,6 +2046,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; "consumers" = dontDistribute super."consumers"; @@ -1998,7 +2109,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2026,10 +2139,12 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; "cron-compat" = dontDistribute super."cron-compat"; "cruncher-types" = dontDistribute super."cruncher-types"; "crunghc" = dontDistribute super."crunghc"; @@ -2040,7 +2155,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2086,6 +2204,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; @@ -2206,6 +2325,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2251,6 +2371,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2286,6 +2407,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; @@ -2383,8 +2505,10 @@ self: super: { "dominion" = dontDistribute super."dominion"; "domplate" = dontDistribute super."domplate"; "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -2584,6 +2708,7 @@ self: super: { "event-list" = dontDistribute super."event-list"; "event-monad" = dontDistribute super."event-monad"; "eventloop" = dontDistribute super."eventloop"; + "eventstore" = doDistribute super."eventstore_0_10_0_2"; "every-bit-counts" = dontDistribute super."every-bit-counts"; "ewe" = dontDistribute super."ewe"; "ex-pool" = dontDistribute super."ex-pool"; @@ -2744,6 +2869,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -2759,8 +2885,11 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = doDistribute super."fn_0_2_0_2"; + "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl" = doDistribute super."foldl_1_1_5"; "foldl-incremental" = dontDistribute super."foldl-incremental"; "foldl-transduce" = dontDistribute super."foldl-transduce"; "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; @@ -2919,6 +3048,7 @@ self: super: { "generic-tree" = dontDistribute super."generic-tree"; "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -2972,6 +3102,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3000,6 +3131,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_6_20160114"; @@ -3235,6 +3367,7 @@ self: super: { "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "groupoid" = dontDistribute super."groupoid"; @@ -3289,6 +3422,7 @@ self: super: { "hGelf" = dontDistribute super."hGelf"; "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; + "hOpenPGP" = doDistribute super."hOpenPGP_2_4_3"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3362,6 +3496,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3387,6 +3522,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -3401,6 +3537,7 @@ self: super: { "happs-tutorial" = dontDistribute super."happs-tutorial"; "happstack" = dontDistribute super."happstack"; "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = doDistribute super."happstack-authenticate_2_3_4"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3532,6 +3669,7 @@ self: super: { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_6_0_0"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-core" = dontDistribute super."haskoin-core"; @@ -3576,6 +3714,7 @@ self: super: { "haxl-amazonka" = dontDistribute super."haxl-amazonka"; "haxl-facebook" = dontDistribute super."haxl-facebook"; "haxparse" = dontDistribute super."haxparse"; + "haxr" = doDistribute super."haxr_3000_11_1_3"; "haxr-th" = dontDistribute super."haxr-th"; "haxy" = dontDistribute super."haxy"; "hayland" = dontDistribute super."hayland"; @@ -3616,6 +3755,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3630,6 +3770,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -3681,6 +3822,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -3717,6 +3859,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3728,6 +3871,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -3882,6 +4026,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -3976,6 +4121,7 @@ self: super: { "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; "hset" = dontDistribute super."hset"; + "hsexif" = doDistribute super."hsexif_0_6_0_7"; "hsfacter" = dontDistribute super."hsfacter"; "hsfcsh" = dontDistribute super."hsfcsh"; "hsfilt" = dontDistribute super."hsfilt"; @@ -4022,6 +4168,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -4058,6 +4205,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = doDistribute super."htaglib_1_0_1"; "htags" = dontDistribute super."htags"; "htar" = dontDistribute super."htar"; "htiled" = dontDistribute super."htiled"; @@ -4084,6 +4232,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4193,9 +4342,11 @@ self: super: { "ifcxt" = dontDistribute super."ifcxt"; "iff" = dontDistribute super."iff"; "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; "ige-mac-integration" = dontDistribute super."ige-mac-integration"; "igraph" = dontDistribute super."igraph"; "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_8_3_0"; "ihaskell-display" = dontDistribute super."ihaskell-display"; "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; @@ -4212,10 +4363,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4249,6 +4402,7 @@ self: super: { "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4292,9 +4446,11 @@ self: super: { "ipprint" = dontDistribute super."ipprint"; "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4303,6 +4459,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4352,6 +4509,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4373,6 +4531,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4404,8 +4563,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4416,11 +4577,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4530,6 +4694,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -4597,6 +4762,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -4779,6 +4945,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -4871,6 +5038,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -4887,6 +5055,7 @@ self: super: { "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; "meep" = dontDistribute super."meep"; "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_3_0"; "meldable-heap" = dontDistribute super."meldable-heap"; "melody" = dontDistribute super."melody"; "memcache" = dontDistribute super."memcache"; @@ -4898,6 +5067,7 @@ self: super: { "memo-sqlite" = dontDistribute super."memo-sqlite"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messente" = dontDistribute super."messente"; "meta-misc" = dontDistribute super."meta-misc"; "meta-par" = dontDistribute super."meta-par"; @@ -4913,10 +5083,12 @@ self: super: { "mgeneric" = dontDistribute super."mgeneric"; "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = doDistribute super."microformats2-parser_1_0_1_3"; "microformats2-types" = dontDistribute super."microformats2-types"; "microlens-each" = dontDistribute super."microlens-each"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -4958,6 +5130,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modsplit" = dontDistribute super."modsplit"; @@ -4975,6 +5148,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5045,6 +5219,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5151,6 +5326,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3_1_1"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5212,6 +5388,7 @@ self: super: { "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5251,6 +5428,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5390,6 +5568,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -5409,10 +5588,12 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_6"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_9"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; @@ -5456,6 +5637,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -5466,6 +5648,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "path" = doDistribute super."path_0_5_3"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5483,6 +5666,7 @@ self: super: { "pcd-loader" = dontDistribute super."pcd-loader"; "pcf" = dontDistribute super."pcf"; "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; @@ -5511,6 +5695,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -5521,6 +5706,8 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; + "persistent-template" = doDistribute super."persistent-template_2_1_5"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5557,6 +5744,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bzip" = dontDistribute super."pipes-bzip"; @@ -5756,6 +5944,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "propane" = dontDistribute super."propane"; @@ -5767,6 +5956,8 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -5778,6 +5969,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -5799,6 +5991,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -5922,6 +6115,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -5965,6 +6159,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "regex-deriv" = dontDistribute super."regex-deriv"; "regex-dfa" = dontDistribute super."regex-dfa"; @@ -6045,6 +6240,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6053,6 +6249,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_2"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; @@ -6074,6 +6271,8 @@ self: super: { "rezoom" = dontDistribute super."rezoom"; "rfc3339" = dontDistribute super."rfc3339"; "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; "richreports" = dontDistribute super."richreports"; "riemann" = dontDistribute super."riemann"; "riff" = dontDistribute super."riff"; @@ -6088,6 +6287,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6129,6 +6329,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6211,6 +6412,7 @@ self: super: { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_4_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6269,6 +6471,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6286,11 +6489,20 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -6298,6 +6510,7 @@ self: super: { "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6354,6 +6567,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; @@ -6428,6 +6642,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -6451,6 +6666,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -6643,6 +6859,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -6671,6 +6888,8 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; + "streaming-commons" = doDistribute super."streaming-commons_0_1_15_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -6694,6 +6913,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = doDistribute super."stripe-core_2_0_2"; + "stripe-haskell" = doDistribute super."stripe-haskell_2_0_2"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -6750,6 +6972,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; @@ -6799,6 +7022,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -6806,6 +7030,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -6817,7 +7042,9 @@ self: super: { "tamper" = dontDistribute super."tamper"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; "tasty-laws" = dontDistribute super."tasty-laws"; @@ -6885,7 +7112,9 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4_2"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -6901,7 +7130,6 @@ self: super: { "text-region" = dontDistribute super."text-region"; "text-register-machine" = dontDistribute super."text-register-machine"; "text-render" = dontDistribute super."text-render"; - "text-show" = doDistribute super."text-show_2_1_2"; "text-show-instances" = dontDistribute super."text-show-instances"; "text-stream-decode" = dontDistribute super."text-stream-decode"; "text-utf7" = dontDistribute super."text-utf7"; @@ -6968,11 +7196,13 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -6996,6 +7226,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; "tiphys" = dontDistribute super."tiphys"; @@ -7024,6 +7255,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7035,12 +7267,12 @@ self: super: { "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; "tracker" = dontDistribute super."tracker"; + "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7105,6 +7337,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -7115,7 +7348,10 @@ self: super: { "twisty" = dontDistribute super."twisty"; "twitch" = dontDistribute super."twitch"; "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = doDistribute super."twitter-conduit_0_1_1_1"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-types" = doDistribute super."twitter-types_0_7_1_1"; + "twitter-types-lens" = doDistribute super."twitter-types-lens_0_7_1"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; @@ -7208,6 +7444,7 @@ self: super: { "unicoder" = dontDistribute super."unicoder"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -7328,6 +7565,7 @@ self: super: { "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; "vector-binary" = dontDistribute super."vector-binary"; + "vector-binary-instances" = doDistribute super."vector-binary-instances_0_2_1_1"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; "vector-conduit" = dontDistribute super."vector-conduit"; @@ -7358,6 +7596,7 @@ self: super: { "vinyl" = doDistribute super."vinyl_0_5_1"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -7409,9 +7648,11 @@ self: super: { "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-metrics" = doDistribute super."wai-middleware-metrics_0_2_2"; "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; @@ -7454,6 +7695,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_1"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -7488,6 +7730,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -7557,9 +7800,11 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_2_0"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_3_1"; "xml-enumerator" = dontDistribute super."xml-enumerator"; "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; "xml-extractors" = dontDistribute super."xml-extractors"; @@ -7638,6 +7883,7 @@ self: super: { "ycextra" = dontDistribute super."ycextra"; "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; @@ -7646,6 +7892,7 @@ self: super: { "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_1_7"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; @@ -7660,6 +7907,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -7695,6 +7943,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_3"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; @@ -7734,6 +7983,8 @@ self: super: { "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index 90bd4fed403..62c28b5dc61 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -113,6 +113,7 @@ self: super: { "BiobaseFasta" = dontDistribute super."BiobaseFasta"; "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; "BiobaseTurner" = dontDistribute super."BiobaseTurner"; "BiobaseTypes" = dontDistribute super."BiobaseTypes"; @@ -122,6 +123,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -161,6 +163,8 @@ self: super: { "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; "Chart-diagrams" = dontDistribute super."Chart-diagrams"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; @@ -306,6 +310,7 @@ self: super: { "Focus" = dontDistribute super."Focus"; "Folly" = dontDistribute super."Folly"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -560,6 +565,7 @@ self: super: { "Kriens" = dontDistribute super."Kriens"; "KyotoCabinet" = dontDistribute super."KyotoCabinet"; "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; "LDAP" = dontDistribute super."LDAP"; "LRU" = dontDistribute super."LRU"; "LTree" = dontDistribute super."LTree"; @@ -731,6 +737,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -848,6 +855,8 @@ self: super: { "SpacePrivateers" = dontDistribute super."SpacePrivateers"; "SpinCounter" = dontDistribute super."SpinCounter"; "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1067,6 +1076,7 @@ self: super: { "adp-multi" = dontDistribute super."adp-multi"; "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1096,6 +1106,7 @@ self: super: { "air-spec" = dontDistribute super."air-spec"; "air-th" = dontDistribute super."air-th"; "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; "aivika-experiment" = dontDistribute super."aivika-experiment"; @@ -1140,6 +1151,75 @@ self: super: { "amazon-emailer" = dontDistribute super."amazon-emailer"; "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; "ampersand" = dontDistribute super."ampersand"; "amqp-conduit" = dontDistribute super."amqp-conduit"; "amrun" = dontDistribute super."amrun"; @@ -1171,6 +1251,7 @@ self: super: { "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; "apis" = dontDistribute super."apis"; "apotiki" = dontDistribute super."apotiki"; @@ -1193,6 +1274,7 @@ self: super: { "archlinux" = dontDistribute super."archlinux"; "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; "argon2" = dontDistribute super."argon2"; @@ -1251,6 +1333,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1348,6 +1431,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1364,6 +1448,7 @@ self: super: { "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; "berkeleydb" = dontDistribute super."berkeleydb"; @@ -1382,7 +1467,6 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; - "bifunctors" = doDistribute super."bifunctors_5_2"; "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; @@ -1516,6 +1600,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1525,6 +1610,8 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; "boolexpr" = dontDistribute super."boolexpr"; @@ -1539,6 +1626,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1611,6 +1699,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-info" = dontDistribute super."cabal-info"; + "cabal-install" = doDistribute super."cabal-install_1_22_8_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1662,6 +1751,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1679,6 +1769,7 @@ self: super: { "carboncopy" = dontDistribute super."carboncopy"; "carettah" = dontDistribute super."carettah"; "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; "casadi-bindings" = dontDistribute super."casadi-bindings"; "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; @@ -1687,6 +1778,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "casr-logbook" = dontDistribute super."casr-logbook"; @@ -1714,6 +1806,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1726,6 +1819,7 @@ self: super: { "cfopu" = dontDistribute super."cfopu"; "cg" = dontDistribute super."cg"; "cgen" = dontDistribute super."cgen"; + "cgi" = doDistribute super."cgi_3001_2_2_3"; "cgi-undecidable" = dontDistribute super."cgi-undecidable"; "cgi-utils" = dontDistribute super."cgi-utils"; "cgrep" = dontDistribute super."cgrep"; @@ -1744,12 +1838,15 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1781,9 +1878,17 @@ self: super: { "clanki" = dontDistribute super."clanki"; "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_6_10"; + "clash-lib" = doDistribute super."clash-lib_0_6_10"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_5"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_5"; + "clash-vhdl" = doDistribute super."clash-vhdl_0_6_7"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; + "classy-prelude" = doDistribute super."classy-prelude_0_12_5_1"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -1859,6 +1964,7 @@ self: super: { "comfort-graph" = dontDistribute super."comfort-graph"; "command" = dontDistribute super."command"; "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; "commodities" = dontDistribute super."commodities"; "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; @@ -1896,6 +2002,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -1908,14 +2015,17 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_2"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_10_1"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -1932,6 +2042,7 @@ self: super: { "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; "constrained-categories" = dontDistribute super."constrained-categories"; "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; "consumers" = dontDistribute super."consumers"; @@ -1994,7 +2105,9 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; "cpsa" = dontDistribute super."cpsa"; "cpuid" = dontDistribute super."cpuid"; @@ -2022,10 +2135,12 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; "cron-compat" = dontDistribute super."cron-compat"; "cruncher-types" = dontDistribute super."cruncher-types"; "crunghc" = dontDistribute super."crunghc"; @@ -2036,7 +2151,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2082,6 +2200,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; @@ -2202,6 +2321,7 @@ self: super: { "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; "dclabel" = dontDistribute super."dclabel"; "dclabel-eci11" = dontDistribute super."dclabel-eci11"; "ddc-base" = dontDistribute super."ddc-base"; @@ -2247,6 +2367,7 @@ self: super: { "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; "delicious" = dontDistribute super."delicious"; "delimited-text" = dontDistribute super."delimited-text"; "delimiter-separated" = dontDistribute super."delimiter-separated"; @@ -2282,6 +2403,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; @@ -2379,8 +2501,10 @@ self: super: { "dominion" = dontDistribute super."dominion"; "domplate" = dontDistribute super."domplate"; "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -2580,6 +2704,7 @@ self: super: { "event-list" = dontDistribute super."event-list"; "event-monad" = dontDistribute super."event-monad"; "eventloop" = dontDistribute super."eventloop"; + "eventstore" = doDistribute super."eventstore_0_10_0_2"; "every-bit-counts" = dontDistribute super."every-bit-counts"; "ewe" = dontDistribute super."ewe"; "ex-pool" = dontDistribute super."ex-pool"; @@ -2740,6 +2865,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -2755,8 +2881,11 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = doDistribute super."fn_0_2_0_2"; + "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl" = doDistribute super."foldl_1_1_5"; "foldl-incremental" = dontDistribute super."foldl-incremental"; "foldl-transduce" = dontDistribute super."foldl-transduce"; "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; @@ -2915,6 +3044,7 @@ self: super: { "generic-tree" = dontDistribute super."generic-tree"; "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -2968,6 +3098,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -2996,6 +3127,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_6_20160114"; @@ -3231,6 +3363,7 @@ self: super: { "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "groupoid" = dontDistribute super."groupoid"; @@ -3285,6 +3418,7 @@ self: super: { "hGelf" = dontDistribute super."hGelf"; "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; + "hOpenPGP" = doDistribute super."hOpenPGP_2_4_3"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3358,6 +3492,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3383,6 +3518,7 @@ self: super: { "handa-opengl" = dontDistribute super."handa-opengl"; "handle-like" = dontDistribute super."handle-like"; "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; "hangman" = dontDistribute super."hangman"; "hannahci" = dontDistribute super."hannahci"; "hans" = dontDistribute super."hans"; @@ -3397,6 +3533,7 @@ self: super: { "happs-tutorial" = dontDistribute super."happs-tutorial"; "happstack" = dontDistribute super."happstack"; "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = doDistribute super."happstack-authenticate_2_3_4"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3527,6 +3664,7 @@ self: super: { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_6_0_0"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-core" = dontDistribute super."haskoin-core"; @@ -3571,6 +3709,7 @@ self: super: { "haxl-amazonka" = dontDistribute super."haxl-amazonka"; "haxl-facebook" = dontDistribute super."haxl-facebook"; "haxparse" = dontDistribute super."haxparse"; + "haxr" = doDistribute super."haxr_3000_11_1_3"; "haxr-th" = dontDistribute super."haxr-th"; "haxy" = dontDistribute super."haxy"; "hayland" = dontDistribute super."hayland"; @@ -3611,6 +3750,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3625,6 +3765,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -3676,6 +3817,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -3712,6 +3854,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3723,6 +3866,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -3876,6 +4020,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -3970,6 +4115,7 @@ self: super: { "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; "hset" = dontDistribute super."hset"; + "hsexif" = doDistribute super."hsexif_0_6_0_7"; "hsfacter" = dontDistribute super."hsfacter"; "hsfcsh" = dontDistribute super."hsfcsh"; "hsfilt" = dontDistribute super."hsfilt"; @@ -4016,6 +4162,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -4052,6 +4199,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = doDistribute super."htaglib_1_0_1"; "htags" = dontDistribute super."htags"; "htar" = dontDistribute super."htar"; "htiled" = dontDistribute super."htiled"; @@ -4078,6 +4226,7 @@ self: super: { "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; @@ -4187,9 +4336,11 @@ self: super: { "ifcxt" = dontDistribute super."ifcxt"; "iff" = dontDistribute super."iff"; "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; "ige-mac-integration" = dontDistribute super."ige-mac-integration"; "igraph" = dontDistribute super."igraph"; "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_8_3_0"; "ihaskell-display" = dontDistribute super."ihaskell-display"; "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; @@ -4206,10 +4357,12 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; "implicit-params" = dontDistribute super."implicit-params"; "imports" = dontDistribute super."imports"; "impossible" = dontDistribute super."impossible"; @@ -4243,6 +4396,7 @@ self: super: { "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4286,9 +4440,11 @@ self: super: { "ipprint" = dontDistribute super."ipprint"; "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; + "irc-dcc" = dontDistribute super."irc-dcc"; "irc-fun-bot" = dontDistribute super."irc-fun-bot"; "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; @@ -4297,6 +4453,7 @@ self: super: { "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; "iron-mq" = dontDistribute super."iron-mq"; "ironforge" = dontDistribute super."ironforge"; "is" = dontDistribute super."is"; @@ -4346,6 +4503,7 @@ self: super: { "java-character" = dontDistribute super."java-character"; "java-poker" = dontDistribute super."java-poker"; "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; "javasf" = dontDistribute super."javasf"; "javav" = dontDistribute super."javav"; "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; @@ -4366,6 +4524,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4397,8 +4556,10 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4409,11 +4570,14 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4523,6 +4687,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -4589,6 +4754,7 @@ self: super: { "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -4771,6 +4937,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -4863,6 +5030,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -4879,6 +5047,7 @@ self: super: { "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; "meep" = dontDistribute super."meep"; "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_3_0"; "meldable-heap" = dontDistribute super."meldable-heap"; "melody" = dontDistribute super."melody"; "memcache" = dontDistribute super."memcache"; @@ -4890,6 +5059,7 @@ self: super: { "memo-sqlite" = dontDistribute super."memo-sqlite"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messente" = dontDistribute super."messente"; "meta-misc" = dontDistribute super."meta-misc"; "meta-par" = dontDistribute super."meta-par"; @@ -4905,10 +5075,12 @@ self: super: { "mgeneric" = dontDistribute super."mgeneric"; "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = doDistribute super."microformats2-parser_1_0_1_3"; "microformats2-types" = dontDistribute super."microformats2-types"; "microlens-each" = dontDistribute super."microlens-each"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -4950,6 +5122,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modsplit" = dontDistribute super."modsplit"; @@ -4967,6 +5140,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5037,6 +5211,7 @@ self: super: { "mps" = dontDistribute super."mps"; "mpvguihs" = dontDistribute super."mpvguihs"; "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; "ms" = dontDistribute super."ms"; "msgpack" = dontDistribute super."msgpack"; "msgpack-aeson" = dontDistribute super."msgpack-aeson"; @@ -5143,6 +5318,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3_1_1"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5204,6 +5380,7 @@ self: super: { "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5243,6 +5420,7 @@ self: super: { "non-empty" = dontDistribute super."non-empty"; "non-negative" = dontDistribute super."non-negative"; "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; "nonfree" = dontDistribute super."nonfree"; "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; @@ -5382,6 +5560,7 @@ self: super: { "origami" = dontDistribute super."origami"; "os-release" = dontDistribute super."os-release"; "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; "osm-download" = dontDistribute super."osm-download"; "oso2pdf" = dontDistribute super."oso2pdf"; "osx-ar" = dontDistribute super."osx-ar"; @@ -5401,10 +5580,12 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_6"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_9"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; @@ -5448,6 +5629,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -5458,6 +5640,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "path" = doDistribute super."path_0_5_3"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5475,6 +5658,7 @@ self: super: { "pcd-loader" = dontDistribute super."pcd-loader"; "pcf" = dontDistribute super."pcf"; "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; @@ -5503,6 +5687,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -5513,6 +5698,8 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; + "persistent-template" = doDistribute super."persistent-template_2_1_5"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5549,6 +5736,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bzip" = dontDistribute super."pipes-bzip"; @@ -5748,6 +5936,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "propane" = dontDistribute super."propane"; @@ -5759,6 +5948,8 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -5770,6 +5961,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -5791,6 +5983,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -5914,6 +6107,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -5957,6 +6151,7 @@ self: super: { "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "regex-deriv" = dontDistribute super."regex-deriv"; "regex-dfa" = dontDistribute super."regex-dfa"; @@ -6037,6 +6232,7 @@ self: super: { "representable-functors" = dontDistribute super."representable-functors"; "representable-profunctors" = dontDistribute super."representable-profunctors"; "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; "request-monad" = dontDistribute super."request-monad"; "reserve" = dontDistribute super."reserve"; "resistor-cube" = dontDistribute super."resistor-cube"; @@ -6045,6 +6241,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_2"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; @@ -6066,6 +6263,8 @@ self: super: { "rezoom" = dontDistribute super."rezoom"; "rfc3339" = dontDistribute super."rfc3339"; "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; "richreports" = dontDistribute super."richreports"; "riemann" = dontDistribute super."riemann"; "riff" = dontDistribute super."riff"; @@ -6080,6 +6279,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6121,6 +6321,7 @@ self: super: { "rsagl-math" = dontDistribute super."rsagl-math"; "rspp" = dontDistribute super."rspp"; "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; "rss2irc" = dontDistribute super."rss2irc"; "rtcm" = dontDistribute super."rtcm"; "rtld" = dontDistribute super."rtld"; @@ -6203,6 +6404,7 @@ self: super: { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_4_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6261,6 +6463,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6278,11 +6481,20 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -6290,6 +6502,7 @@ self: super: { "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6346,6 +6559,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; @@ -6420,6 +6634,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -6443,6 +6658,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -6635,6 +6851,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -6663,6 +6880,8 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; + "streaming-commons" = doDistribute super."streaming-commons_0_1_15_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -6686,6 +6905,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = doDistribute super."stripe-core_2_0_2"; + "stripe-haskell" = doDistribute super."stripe-haskell_2_0_2"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -6742,6 +6964,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; @@ -6791,6 +7014,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -6798,6 +7022,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -6809,7 +7034,9 @@ self: super: { "tamper" = dontDistribute super."tamper"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; "tasty-laws" = dontDistribute super."tasty-laws"; @@ -6877,7 +7104,9 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4_2"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -6893,7 +7122,6 @@ self: super: { "text-region" = dontDistribute super."text-region"; "text-register-machine" = dontDistribute super."text-register-machine"; "text-render" = dontDistribute super."text-render"; - "text-show" = doDistribute super."text-show_2_1_2"; "text-show-instances" = dontDistribute super."text-show-instances"; "text-stream-decode" = dontDistribute super."text-stream-decode"; "text-utf7" = dontDistribute super."text-utf7"; @@ -6960,11 +7188,13 @@ self: super: { "tighttp" = dontDistribute super."tighttp"; "tilings" = dontDistribute super."tilings"; "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; "time-extras" = dontDistribute super."time-extras"; "time-exts" = dontDistribute super."time-exts"; "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -6988,6 +7218,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; "tiphys" = dontDistribute super."tiphys"; @@ -7016,6 +7247,7 @@ self: super: { "topkata" = dontDistribute super."topkata"; "torch" = dontDistribute super."torch"; "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; "total-map" = dontDistribute super."total-map"; "total-maps" = dontDistribute super."total-maps"; "touched" = dontDistribute super."touched"; @@ -7027,12 +7259,12 @@ self: super: { "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; "tracker" = dontDistribute super."tracker"; + "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7097,6 +7329,7 @@ self: super: { "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; "twentefp-trees" = dontDistribute super."twentefp-trees"; "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; "twhs" = dontDistribute super."twhs"; "twidge" = dontDistribute super."twidge"; "twilight-stm" = dontDistribute super."twilight-stm"; @@ -7107,7 +7340,10 @@ self: super: { "twisty" = dontDistribute super."twisty"; "twitch" = dontDistribute super."twitch"; "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = doDistribute super."twitter-conduit_0_1_1_1"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-types" = doDistribute super."twitter-types_0_7_1_1"; + "twitter-types-lens" = doDistribute super."twitter-types-lens_0_7_1"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; @@ -7200,6 +7436,7 @@ self: super: { "unicoder" = dontDistribute super."unicoder"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -7319,6 +7556,7 @@ self: super: { "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; "vector-binary" = dontDistribute super."vector-binary"; + "vector-binary-instances" = doDistribute super."vector-binary-instances_0_2_1_1"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; "vector-conduit" = dontDistribute super."vector-conduit"; @@ -7348,6 +7586,7 @@ self: super: { "vintage-basic" = dontDistribute super."vintage-basic"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; @@ -7399,9 +7638,11 @@ self: super: { "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-metrics" = doDistribute super."wai-middleware-metrics_0_2_2"; "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; @@ -7443,6 +7684,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_1"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -7477,6 +7719,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -7545,9 +7788,11 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_3_1"; "xml-enumerator" = dontDistribute super."xml-enumerator"; "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; "xml-extractors" = dontDistribute super."xml-extractors"; @@ -7626,6 +7871,7 @@ self: super: { "ycextra" = dontDistribute super."ycextra"; "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; @@ -7634,6 +7880,7 @@ self: super: { "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_1_7"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; @@ -7648,6 +7895,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; @@ -7683,6 +7931,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_3"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; @@ -7722,6 +7971,8 @@ self: super: { "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix new file mode 100644 index 00000000000..ce744723e3b --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix @@ -0,0 +1,7966 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # core libraries provided by the compiler + Cabal = null; + array = null; + base = null; + bin-package-db = null; + binary = null; + bytestring = null; + containers = null; + deepseq = null; + directory = null; + filepath = null; + ghc-prim = null; + hoopl = null; + hpc = null; + integer-gmp = null; + pretty = null; + process = null; + rts = null; + template-haskell = null; + time = null; + transformers = null; + unix = null; + + # lts-5.6 packages + "3d-graphics-examples" = dontDistribute super."3d-graphics-examples"; + "3dmodels" = dontDistribute super."3dmodels"; + "4Blocks" = dontDistribute super."4Blocks"; + "AAI" = dontDistribute super."AAI"; + "ABList" = dontDistribute super."ABList"; + "AC-Angle" = dontDistribute super."AC-Angle"; + "AC-Boolean" = dontDistribute super."AC-Boolean"; + "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform"; + "AC-Colour" = dontDistribute super."AC-Colour"; + "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK"; + "AC-HalfInteger" = dontDistribute super."AC-HalfInteger"; + "AC-MiniTest" = dontDistribute super."AC-MiniTest"; + "AC-PPM" = dontDistribute super."AC-PPM"; + "AC-Random" = dontDistribute super."AC-Random"; + "AC-Terminal" = dontDistribute super."AC-Terminal"; + "AC-VanillaArray" = dontDistribute super."AC-VanillaArray"; + "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy"; + "ACME" = dontDistribute super."ACME"; + "ADPfusion" = dontDistribute super."ADPfusion"; + "AERN-Basics" = dontDistribute super."AERN-Basics"; + "AERN-Net" = dontDistribute super."AERN-Net"; + "AERN-Real" = dontDistribute super."AERN-Real"; + "AERN-Real-Double" = dontDistribute super."AERN-Real-Double"; + "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval"; + "AERN-RnToRm" = dontDistribute super."AERN-RnToRm"; + "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot"; + "AES" = dontDistribute super."AES"; + "AGI" = dontDistribute super."AGI"; + "ALUT" = dontDistribute super."ALUT"; + "AMI" = dontDistribute super."AMI"; + "ANum" = dontDistribute super."ANum"; + "ASN1" = dontDistribute super."ASN1"; + "AVar" = dontDistribute super."AVar"; + "AWin32Console" = dontDistribute super."AWin32Console"; + "AbortT-monadstf" = dontDistribute super."AbortT-monadstf"; + "AbortT-mtl" = dontDistribute super."AbortT-mtl"; + "AbortT-transformers" = dontDistribute super."AbortT-transformers"; + "ActionKid" = dontDistribute super."ActionKid"; + "Adaptive" = dontDistribute super."Adaptive"; + "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade"; + "Advgame" = dontDistribute super."Advgame"; + "AesonBson" = dontDistribute super."AesonBson"; + "Agata" = dontDistribute super."Agata"; + "Agda-executable" = dontDistribute super."Agda-executable"; + "AhoCorasick" = dontDistribute super."AhoCorasick"; + "AlgorithmW" = dontDistribute super."AlgorithmW"; + "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms"; + "Allure" = dontDistribute super."Allure"; + "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter"; + "Animas" = dontDistribute super."Animas"; + "Annotations" = dontDistribute super."Annotations"; + "Ansi2Html" = dontDistribute super."Ansi2Html"; + "ApplePush" = dontDistribute super."ApplePush"; + "AppleScript" = dontDistribute super."AppleScript"; + "ApproxFun-hs" = dontDistribute super."ApproxFun-hs"; + "ArrayRef" = dontDistribute super."ArrayRef"; + "ArrowVHDL" = dontDistribute super."ArrowVHDL"; + "AspectAG" = dontDistribute super."AspectAG"; + "AttoBencode" = dontDistribute super."AttoBencode"; + "AttoJson" = dontDistribute super."AttoJson"; + "Attrac" = dontDistribute super."Attrac"; + "Aurochs" = dontDistribute super."Aurochs"; + "AutoForms" = dontDistribute super."AutoForms"; + "AvlTree" = dontDistribute super."AvlTree"; + "BASIC" = dontDistribute super."BASIC"; + "BCMtools" = dontDistribute super."BCMtools"; + "BNFC" = dontDistribute super."BNFC"; + "BNFC-meta" = dontDistribute super."BNFC-meta"; + "Baggins" = dontDistribute super."Baggins"; + "Bang" = dontDistribute super."Bang"; + "Barracuda" = dontDistribute super."Barracuda"; + "Befunge93" = dontDistribute super."Befunge93"; + "BenchmarkHistory" = dontDistribute super."BenchmarkHistory"; + "BerkeleyDB" = dontDistribute super."BerkeleyDB"; + "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; + "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BigPixel" = dontDistribute super."BigPixel"; + "Binpack" = dontDistribute super."Binpack"; + "Biobase" = dontDistribute super."Biobase"; + "BiobaseBlast" = dontDistribute super."BiobaseBlast"; + "BiobaseDotP" = dontDistribute super."BiobaseDotP"; + "BiobaseFR3D" = dontDistribute super."BiobaseFR3D"; + "BiobaseFasta" = dontDistribute super."BiobaseFasta"; + "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; + "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; + "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; + "BiobaseTurner" = dontDistribute super."BiobaseTurner"; + "BiobaseTypes" = dontDistribute super."BiobaseTypes"; + "BiobaseVienna" = dontDistribute super."BiobaseVienna"; + "BiobaseXNA" = dontDistribute super."BiobaseXNA"; + "BirdPP" = dontDistribute super."BirdPP"; + "BitSyntax" = dontDistribute super."BitSyntax"; + "Bitly" = dontDistribute super."Bitly"; + "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; + "BluePrintCSS" = dontDistribute super."BluePrintCSS"; + "Blueprint" = dontDistribute super."Blueprint"; + "Bookshelf" = dontDistribute super."Bookshelf"; + "Bravo" = dontDistribute super."Bravo"; + "BufferedSocket" = dontDistribute super."BufferedSocket"; + "Buster" = dontDistribute super."Buster"; + "CBOR" = dontDistribute super."CBOR"; + "CC-delcont" = dontDistribute super."CC-delcont"; + "CC-delcont-alt" = dontDistribute super."CC-delcont-alt"; + "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe"; + "CC-delcont-exc" = dontDistribute super."CC-delcont-exc"; + "CC-delcont-ref" = dontDistribute super."CC-delcont-ref"; + "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf"; + "CCA" = dontDistribute super."CCA"; + "CHXHtml" = dontDistribute super."CHXHtml"; + "CLASE" = dontDistribute super."CLASE"; + "CLI" = dontDistribute super."CLI"; + "CMCompare" = dontDistribute super."CMCompare"; + "CMQ" = dontDistribute super."CMQ"; + "COrdering" = dontDistribute super."COrdering"; + "CPBrainfuck" = dontDistribute super."CPBrainfuck"; + "CPL" = dontDistribute super."CPL"; + "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage"; + "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules"; + "CSPM-Frontend" = dontDistribute super."CSPM-Frontend"; + "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter"; + "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog"; + "CSPM-cspm" = dontDistribute super."CSPM-cspm"; + "CTRex" = dontDistribute super."CTRex"; + "CV" = dontDistribute super."CV"; + "CabalSearch" = dontDistribute super."CabalSearch"; + "Capabilities" = dontDistribute super."Capabilities"; + "Cardinality" = dontDistribute super."Cardinality"; + "CarneadesDSL" = dontDistribute super."CarneadesDSL"; + "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; + "Cascade" = dontDistribute super."Cascade"; + "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = dontDistribute super."Chart-diagrams"; + "Chart-gtk" = dontDistribute super."Chart-gtk"; + "Chart-simple" = dontDistribute super."Chart-simple"; + "CheatSheet" = dontDistribute super."CheatSheet"; + "Checked" = dontDistribute super."Checked"; + "Chitra" = dontDistribute super."Chitra"; + "ChristmasTree" = dontDistribute super."ChristmasTree"; + "CirruParser" = dontDistribute super."CirruParser"; + "ClassLaws" = dontDistribute super."ClassLaws"; + "ClassyPrelude" = dontDistribute super."ClassyPrelude"; + "Clean" = dontDistribute super."Clean"; + "Clipboard" = dontDistribute super."Clipboard"; + "Coadjute" = dontDistribute super."Coadjute"; + "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; + "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; + "Combinatorrent" = dontDistribute super."Combinatorrent"; + "Command" = dontDistribute super."Command"; + "Commando" = dontDistribute super."Commando"; + "ComonadSheet" = dontDistribute super."ComonadSheet"; + "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; + "Concurrential" = dontDistribute super."Concurrential"; + "Condor" = dontDistribute super."Condor"; + "ConfigFileTH" = dontDistribute super."ConfigFileTH"; + "Configger" = dontDistribute super."Configger"; + "Configurable" = dontDistribute super."Configurable"; + "ConsStream" = dontDistribute super."ConsStream"; + "Conscript" = dontDistribute super."Conscript"; + "ConstraintKinds" = dontDistribute super."ConstraintKinds"; + "Consumer" = dontDistribute super."Consumer"; + "ContArrow" = dontDistribute super."ContArrow"; + "ContextAlgebra" = dontDistribute super."ContextAlgebra"; + "Contract" = dontDistribute super."Contract"; + "Control-Engine" = dontDistribute super."Control-Engine"; + "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass"; + "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2"; + "CoreDump" = dontDistribute super."CoreDump"; + "CoreErlang" = dontDistribute super."CoreErlang"; + "CoreFoundation" = dontDistribute super."CoreFoundation"; + "Coroutine" = dontDistribute super."Coroutine"; + "CouchDB" = dontDistribute super."CouchDB"; + "Craft3e" = dontDistribute super."Craft3e"; + "Crypto" = dontDistribute super."Crypto"; + "CurryDB" = dontDistribute super."CurryDB"; + "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DBlimited" = dontDistribute super."DBlimited"; + "DBus" = dontDistribute super."DBus"; + "DCFL" = dontDistribute super."DCFL"; + "DMuCheck" = dontDistribute super."DMuCheck"; + "DOM" = dontDistribute super."DOM"; + "DP" = dontDistribute super."DP"; + "DPM" = dontDistribute super."DPM"; + "DSA" = dontDistribute super."DSA"; + "DSH" = dontDistribute super."DSH"; + "DSTM" = dontDistribute super."DSTM"; + "DTC" = dontDistribute super."DTC"; + "Dangerous" = dontDistribute super."Dangerous"; + "Dao" = dontDistribute super."Dao"; + "DarcsHelpers" = dontDistribute super."DarcsHelpers"; + "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent"; + "Data-Rope" = dontDistribute super."Data-Rope"; + "DataTreeView" = dontDistribute super."DataTreeView"; + "Deadpan-DDP" = dontDistribute super."Deadpan-DDP"; + "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers"; + "DecisionTree" = dontDistribute super."DecisionTree"; + "DeepArrow" = dontDistribute super."DeepArrow"; + "DefendTheKing" = dontDistribute super."DefendTheKing"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "DifferenceLogic" = dontDistribute super."DifferenceLogic"; + "DifferentialEvolution" = dontDistribute super."DifferentialEvolution"; + "Digit" = dontDistribute super."Digit"; + "DigitalOcean" = dontDistribute super."DigitalOcean"; + "DimensionalHash" = dontDistribute super."DimensionalHash"; + "DirectSound" = dontDistribute super."DirectSound"; + "DisTract" = dontDistribute super."DisTract"; + "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem"; + "Dish" = dontDistribute super."Dish"; + "Dist" = dontDistribute super."Dist"; + "DistanceTransform" = dontDistribute super."DistanceTransform"; + "DistanceUnits" = dontDistribute super."DistanceUnits"; + "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment"; + "DocTest" = dontDistribute super."DocTest"; + "Docs" = dontDistribute super."Docs"; + "DrHylo" = dontDistribute super."DrHylo"; + "DrIFT" = dontDistribute super."DrIFT"; + "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized"; + "Dung" = dontDistribute super."Dung"; + "Dust" = dontDistribute super."Dust"; + "Dust-crypto" = dontDistribute super."Dust-crypto"; + "Dust-tools" = dontDistribute super."Dust-tools"; + "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap"; + "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp"; + "DysFRP" = dontDistribute super."DysFRP"; + "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; + "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; + "EEConfig" = dontDistribute super."EEConfig"; + "EdisonAPI" = dontDistribute super."EdisonAPI"; + "EdisonCore" = dontDistribute super."EdisonCore"; + "EditTimeReport" = dontDistribute super."EditTimeReport"; + "EitherT" = dontDistribute super."EitherT"; + "Elm" = dontDistribute super."Elm"; + "Emping" = dontDistribute super."Emping"; + "Encode" = dontDistribute super."Encode"; + "EnumContainers" = dontDistribute super."EnumContainers"; + "EnumMap" = dontDistribute super."EnumMap"; + "Eq" = dontDistribute super."Eq"; + "EqualitySolver" = dontDistribute super."EqualitySolver"; + "EsounD" = dontDistribute super."EsounD"; + "EstProgress" = dontDistribute super."EstProgress"; + "EtaMOO" = dontDistribute super."EtaMOO"; + "Etage" = dontDistribute super."Etage"; + "Etage-Graph" = dontDistribute super."Etage-Graph"; + "Eternal10Seconds" = dontDistribute super."Eternal10Seconds"; + "Etherbunny" = dontDistribute super."Etherbunny"; + "EuroIT" = dontDistribute super."EuroIT"; + "Euterpea" = dontDistribute super."Euterpea"; + "EventSocket" = dontDistribute super."EventSocket"; + "Extra" = dontDistribute super."Extra"; + "FComp" = dontDistribute super."FComp"; + "FM-SBLEX" = dontDistribute super."FM-SBLEX"; + "FModExRaw" = dontDistribute super."FModExRaw"; + "FPretty" = dontDistribute super."FPretty"; + "FTGL" = dontDistribute super."FTGL"; + "FTGL-bytestring" = dontDistribute super."FTGL-bytestring"; + "FTPLine" = dontDistribute super."FTPLine"; + "Facts" = dontDistribute super."Facts"; + "FailureT" = dontDistribute super."FailureT"; + "FastxPipe" = dontDistribute super."FastxPipe"; + "FermatsLastMargin" = dontDistribute super."FermatsLastMargin"; + "FerryCore" = dontDistribute super."FerryCore"; + "Feval" = dontDistribute super."Feval"; + "FieldTrip" = dontDistribute super."FieldTrip"; + "FileManip" = dontDistribute super."FileManip"; + "FileManipCompat" = dontDistribute super."FileManipCompat"; + "FilePather" = dontDistribute super."FilePather"; + "FileSystem" = dontDistribute super."FileSystem"; + "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo"; + "Finance-Treasury" = dontDistribute super."Finance-Treasury"; + "FiniteMap" = dontDistribute super."FiniteMap"; + "FirstOrderTheory" = dontDistribute super."FirstOrderTheory"; + "FixedPoint-simple" = dontDistribute super."FixedPoint-simple"; + "Flippi" = dontDistribute super."Flippi"; + "Focus" = dontDistribute super."Focus"; + "Folly" = dontDistribute super."Folly"; + "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; + "ForkableT" = dontDistribute super."ForkableT"; + "FormalGrammars" = dontDistribute super."FormalGrammars"; + "Foster" = dontDistribute super."Foster"; + "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; + "Fractaler" = dontDistribute super."Fractaler"; + "Frank" = dontDistribute super."Frank"; + "FreeTypeGL" = dontDistribute super."FreeTypeGL"; + "FunGEn" = dontDistribute super."FunGEn"; + "Fungi" = dontDistribute super."Fungi"; + "GA" = dontDistribute super."GA"; + "GGg" = dontDistribute super."GGg"; + "GHood" = dontDistribute super."GHood"; + "GLFW" = dontDistribute super."GLFW"; + "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; + "GLFW-task" = dontDistribute super."GLFW-task"; + "GLHUI" = dontDistribute super."GLHUI"; + "GLM" = dontDistribute super."GLM"; + "GLMatrix" = dontDistribute super."GLMatrix"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad"; + "GTALib" = dontDistribute super."GTALib"; + "Gamgine" = dontDistribute super."Gamgine"; + "Ganymede" = dontDistribute super."Ganymede"; + "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration"; + "GeBoP" = dontDistribute super."GeBoP"; + "GenI" = dontDistribute super."GenI"; + "GenSmsPdu" = dontDistribute super."GenSmsPdu"; + "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe"; + "GenussFold" = dontDistribute super."GenussFold"; + "GeoIp" = dontDistribute super."GeoIp"; + "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage"; + "Geodetic" = dontDistribute super."Geodetic"; + "GeomPredicates" = dontDistribute super."GeomPredicates"; + "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE"; + "GiST" = dontDistribute super."GiST"; + "Gifcurry" = dontDistribute super."Gifcurry"; + "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "GlomeTrace" = dontDistribute super."GlomeTrace"; + "GlomeVec" = dontDistribute super."GlomeVec"; + "GlomeView" = dontDistribute super."GlomeView"; + "GoogleChart" = dontDistribute super."GoogleChart"; + "GoogleDirections" = dontDistribute super."GoogleDirections"; + "GoogleSB" = dontDistribute super."GoogleSB"; + "GoogleSuggest" = dontDistribute super."GoogleSuggest"; + "GoogleTranslate" = dontDistribute super."GoogleTranslate"; + "GotoT-transformers" = dontDistribute super."GotoT-transformers"; + "GrammarProducts" = dontDistribute super."GrammarProducts"; + "Graph500" = dontDistribute super."Graph500"; + "GraphHammer" = dontDistribute super."GraphHammer"; + "GraphHammer-examples" = dontDistribute super."GraphHammer-examples"; + "Graphalyze" = dontDistribute super."Graphalyze"; + "Grempa" = dontDistribute super."Grempa"; + "GroteTrap" = dontDistribute super."GroteTrap"; + "Grow" = dontDistribute super."Grow"; + "GrowlNotify" = dontDistribute super."GrowlNotify"; + "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics"; + "GtkGLTV" = dontDistribute super."GtkGLTV"; + "GtkTV" = dontDistribute super."GtkTV"; + "GuiHaskell" = dontDistribute super."GuiHaskell"; + "GuiTV" = dontDistribute super."GuiTV"; + "HARM" = dontDistribute super."HARM"; + "HAppS-Data" = dontDistribute super."HAppS-Data"; + "HAppS-IxSet" = dontDistribute super."HAppS-IxSet"; + "HAppS-Server" = dontDistribute super."HAppS-Server"; + "HAppS-State" = dontDistribute super."HAppS-State"; + "HAppS-Util" = dontDistribute super."HAppS-Util"; + "HAppSHelpers" = dontDistribute super."HAppSHelpers"; + "HCL" = dontDistribute super."HCL"; + "HCard" = dontDistribute super."HCard"; + "HDBC-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDBC-session" = dontDistribute super."HDBC-session"; + "HDRUtils" = dontDistribute super."HDRUtils"; + "HERA" = dontDistribute super."HERA"; + "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; + "HFuse" = dontDistribute super."HFuse"; + "HGL" = dontDistribute super."HGL"; + "HGamer3D" = dontDistribute super."HGamer3D"; + "HGamer3D-API" = dontDistribute super."HGamer3D-API"; + "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio"; + "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding"; + "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding"; + "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding"; + "HGamer3D-Common" = dontDistribute super."HGamer3D-Common"; + "HGamer3D-Data" = dontDistribute super."HGamer3D-Data"; + "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding"; + "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI"; + "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D"; + "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem"; + "HGamer3D-Network" = dontDistribute super."HGamer3D-Network"; + "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding"; + "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding"; + "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding"; + "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding"; + "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent"; + "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire"; + "HGraphStorage" = dontDistribute super."HGraphStorage"; + "HHDL" = dontDistribute super."HHDL"; + "HJScript" = dontDistribute super."HJScript"; + "HJVM" = dontDistribute super."HJVM"; + "HJavaScript" = dontDistribute super."HJavaScript"; + "HLearn-algebra" = dontDistribute super."HLearn-algebra"; + "HLearn-approximation" = dontDistribute super."HLearn-approximation"; + "HLearn-classification" = dontDistribute super."HLearn-classification"; + "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; + "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HListPP" = dontDistribute super."HListPP"; + "HLogger" = dontDistribute super."HLogger"; + "HMM" = dontDistribute super."HMM"; + "HMap" = dontDistribute super."HMap"; + "HNM" = dontDistribute super."HNM"; + "HODE" = dontDistribute super."HODE"; + "HOpenCV" = dontDistribute super."HOpenCV"; + "HPath" = dontDistribute super."HPath"; + "HPi" = dontDistribute super."HPi"; + "HPlot" = dontDistribute super."HPlot"; + "HPong" = dontDistribute super."HPong"; + "HROOT" = dontDistribute super."HROOT"; + "HROOT-core" = dontDistribute super."HROOT-core"; + "HROOT-graf" = dontDistribute super."HROOT-graf"; + "HROOT-hist" = dontDistribute super."HROOT-hist"; + "HROOT-io" = dontDistribute super."HROOT-io"; + "HROOT-math" = dontDistribute super."HROOT-math"; + "HRay" = dontDistribute super."HRay"; + "HSFFIG" = dontDistribute super."HSFFIG"; + "HSGEP" = dontDistribute super."HSGEP"; + "HSH" = dontDistribute super."HSH"; + "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSlippyMap" = dontDistribute super."HSlippyMap"; + "HSmarty" = dontDistribute super."HSmarty"; + "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; + "HSvm" = dontDistribute super."HSvm"; + "HTTP-Simple" = dontDistribute super."HTTP-Simple"; + "HTab" = dontDistribute super."HTab"; + "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit-Diff" = dontDistribute super."HUnit-Diff"; + "HUnit-Plus" = dontDistribute super."HUnit-Plus"; + "HUnit-approx" = dontDistribute super."HUnit-approx"; + "HXMPP" = dontDistribute super."HXMPP"; + "HXQ" = dontDistribute super."HXQ"; + "HaLeX" = dontDistribute super."HaLeX"; + "HaMinitel" = dontDistribute super."HaMinitel"; + "HaPy" = dontDistribute super."HaPy"; + "HaTeX-meta" = dontDistribute super."HaTeX-meta"; + "HaTeX-qq" = dontDistribute super."HaTeX-qq"; + "HaVSA" = dontDistribute super."HaVSA"; + "Hach" = dontDistribute super."Hach"; + "HackMail" = dontDistribute super."HackMail"; + "Haggressive" = dontDistribute super."Haggressive"; + "HandlerSocketClient" = dontDistribute super."HandlerSocketClient"; + "Hangman" = dontDistribute super."Hangman"; + "HarmTrace" = dontDistribute super."HarmTrace"; + "HarmTrace-Base" = dontDistribute super."HarmTrace-Base"; + "HasGP" = dontDistribute super."HasGP"; + "Haschoo" = dontDistribute super."Haschoo"; + "Hashell" = dontDistribute super."Hashell"; + "HaskRel" = dontDistribute super."HaskRel"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; + "Hawk" = dontDistribute super."Hawk"; + "Hayoo" = dontDistribute super."Hayoo"; + "Hclip" = dontDistribute super."Hclip"; + "Hedi" = dontDistribute super."Hedi"; + "HerbiePlugin" = dontDistribute super."HerbiePlugin"; + "Hermes" = dontDistribute super."Hermes"; + "Hieroglyph" = dontDistribute super."Hieroglyph"; + "HiggsSet" = dontDistribute super."HiggsSet"; + "Hipmunk" = dontDistribute super."Hipmunk"; + "HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; + "Hish" = dontDistribute super."Hish"; + "Histogram" = dontDistribute super."Histogram"; + "Hmpf" = dontDistribute super."Hmpf"; + "Hoed" = dontDistribute super."Hoed"; + "HoleyMonoid" = dontDistribute super."HoleyMonoid"; + "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution"; + "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce"; + "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine"; + "Holumbus-Storage" = dontDistribute super."Holumbus-Storage"; + "Homology" = dontDistribute super."Homology"; + "HongoDB" = dontDistribute super."HongoDB"; + "HostAndPort" = dontDistribute super."HostAndPort"; + "Hricket" = dontDistribute super."Hricket"; + "Hs2lib" = dontDistribute super."Hs2lib"; + "HsASA" = dontDistribute super."HsASA"; + "HsHaruPDF" = dontDistribute super."HsHaruPDF"; + "HsHyperEstraier" = dontDistribute super."HsHyperEstraier"; + "HsJudy" = dontDistribute super."HsJudy"; + "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system"; + "HsParrot" = dontDistribute super."HsParrot"; + "HsPerl5" = dontDistribute super."HsPerl5"; + "HsSVN" = dontDistribute super."HsSVN"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "HulkImport" = dontDistribute super."HulkImport"; + "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres"; + "IDynamic" = dontDistribute super."IDynamic"; + "IFS" = dontDistribute super."IFS"; + "INblobs" = dontDistribute super."INblobs"; + "IOR" = dontDistribute super."IOR"; + "IORefCAS" = dontDistribute super."IORefCAS"; + "IOSpec" = dontDistribute super."IOSpec"; + "IcoGrid" = dontDistribute super."IcoGrid"; + "Imlib" = dontDistribute super."Imlib"; + "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; + "IndentParser" = dontDistribute super."IndentParser"; + "IndexedList" = dontDistribute super."IndexedList"; + "InfixApplicative" = dontDistribute super."InfixApplicative"; + "Interpolation" = dontDistribute super."Interpolation"; + "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JunkDB" = dontDistribute super."JunkDB"; + "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; + "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables"; + "JustParse" = dontDistribute super."JustParse"; + "KMP" = dontDistribute super."KMP"; + "KSP" = dontDistribute super."KSP"; + "Kalman" = dontDistribute super."Kalman"; + "KdTree" = dontDistribute super."KdTree"; + "Ketchup" = dontDistribute super."Ketchup"; + "KiCS" = dontDistribute super."KiCS"; + "KiCS-debugger" = dontDistribute super."KiCS-debugger"; + "KiCS-prophecy" = dontDistribute super."KiCS-prophecy"; + "Kleislify" = dontDistribute super."Kleislify"; + "Konf" = dontDistribute super."Konf"; + "Kriens" = dontDistribute super."Kriens"; + "KyotoCabinet" = dontDistribute super."KyotoCabinet"; + "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; + "LDAP" = dontDistribute super."LDAP"; + "LRU" = dontDistribute super."LRU"; + "LTree" = dontDistribute super."LTree"; + "LambdaCalculator" = dontDistribute super."LambdaCalculator"; + "LambdaHack" = dontDistribute super."LambdaHack"; + "LambdaINet" = dontDistribute super."LambdaINet"; + "LambdaNet" = dontDistribute super."LambdaNet"; + "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; + "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdajudge" = dontDistribute super."Lambdajudge"; + "Lambdaya" = dontDistribute super."Lambdaya"; + "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; + "Lastik" = dontDistribute super."Lastik"; + "Lattices" = dontDistribute super."Lattices"; + "Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2"; + "LazyVault" = dontDistribute super."LazyVault"; + "Level0" = dontDistribute super."Level0"; + "LibClang" = dontDistribute super."LibClang"; + "Limit" = dontDistribute super."Limit"; + "LinearSplit" = dontDistribute super."LinearSplit"; + "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; + "LinkChecker" = dontDistribute super."LinkChecker"; + "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; + "ListZipper" = dontDistribute super."ListZipper"; + "Logic" = dontDistribute super."Logic"; + "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; + "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI"; + "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network"; + "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes"; + "LslPlus" = dontDistribute super."LslPlus"; + "Lucu" = dontDistribute super."Lucu"; + "MASMGen" = dontDistribute super."MASMGen"; + "MC-Fold-DP" = dontDistribute super."MC-Fold-DP"; + "MHask" = dontDistribute super."MHask"; + "MSQueue" = dontDistribute super."MSQueue"; + "MTGBuilder" = dontDistribute super."MTGBuilder"; + "MagicHaskeller" = dontDistribute super."MagicHaskeller"; + "MailchimpSimple" = dontDistribute super."MailchimpSimple"; + "MaybeT" = dontDistribute super."MaybeT"; + "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf"; + "MaybeT-transformers" = dontDistribute super."MaybeT-transformers"; + "MazesOfMonad" = dontDistribute super."MazesOfMonad"; + "MeanShift" = dontDistribute super."MeanShift"; + "Measure" = dontDistribute super."Measure"; + "MetaHDBC" = dontDistribute super."MetaHDBC"; + "MetaObject" = dontDistribute super."MetaObject"; + "Metrics" = dontDistribute super."Metrics"; + "Mhailist" = dontDistribute super."Mhailist"; + "Michelangelo" = dontDistribute super."Michelangelo"; + "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator"; + "MiniAgda" = dontDistribute super."MiniAgda"; + "MissingK" = dontDistribute super."MissingK"; + "MissingM" = dontDistribute super."MissingM"; + "MissingPy" = dontDistribute super."MissingPy"; + "Modulo" = dontDistribute super."Modulo"; + "Moe" = dontDistribute super."Moe"; + "MoeDict" = dontDistribute super."MoeDict"; + "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl"; + "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign"; + "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; + "MonadCompose" = dontDistribute super."MonadCompose"; + "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; + "MonadStack" = dontDistribute super."MonadStack"; + "Monadius" = dontDistribute super."Monadius"; + "Monaris" = dontDistribute super."Monaris"; + "Monatron" = dontDistribute super."Monatron"; + "Monatron-IO" = dontDistribute super."Monatron-IO"; + "Monocle" = dontDistribute super."Monocle"; + "MorseCode" = dontDistribute super."MorseCode"; + "MuCheck" = dontDistribute super."MuCheck"; + "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit"; + "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec"; + "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck"; + "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck"; + "Munkres" = dontDistribute super."Munkres"; + "Munkres-simple" = dontDistribute super."Munkres-simple"; + "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid"; + "MyPrimes" = dontDistribute super."MyPrimes"; + "NGrams" = dontDistribute super."NGrams"; + "NTRU" = dontDistribute super."NTRU"; + "NXT" = dontDistribute super."NXT"; + "NXTDSL" = dontDistribute super."NXTDSL"; + "NanoProlog" = dontDistribute super."NanoProlog"; + "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets"; + "NaturalSort" = dontDistribute super."NaturalSort"; + "NearContextAlgebra" = dontDistribute super."NearContextAlgebra"; + "Neks" = dontDistribute super."Neks"; + "NestedFunctor" = dontDistribute super."NestedFunctor"; + "NestedSampling" = dontDistribute super."NestedSampling"; + "NetSNMP" = dontDistribute super."NetSNMP"; + "NewBinary" = dontDistribute super."NewBinary"; + "Ninjas" = dontDistribute super."Ninjas"; + "NoSlow" = dontDistribute super."NoSlow"; + "NoTrace" = dontDistribute super."NoTrace"; + "Noise" = dontDistribute super."Noise"; + "Nomyx" = dontDistribute super."Nomyx"; + "Nomyx-Core" = dontDistribute super."Nomyx-Core"; + "Nomyx-Language" = dontDistribute super."Nomyx-Language"; + "Nomyx-Rules" = dontDistribute super."Nomyx-Rules"; + "Nomyx-Web" = dontDistribute super."Nomyx-Web"; + "NonEmpty" = dontDistribute super."NonEmpty"; + "NonEmptyList" = dontDistribute super."NonEmptyList"; + "NumLazyByteString" = dontDistribute super."NumLazyByteString"; + "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; + "Numbers" = dontDistribute super."Numbers"; + "Nussinov78" = dontDistribute super."Nussinov78"; + "Nutri" = dontDistribute super."Nutri"; + "OGL" = dontDistribute super."OGL"; + "OSM" = dontDistribute super."OSM"; + "OTP" = dontDistribute super."OTP"; + "Object" = dontDistribute super."Object"; + "ObjectIO" = dontDistribute super."ObjectIO"; + "Obsidian" = dontDistribute super."Obsidian"; + "OddWord" = dontDistribute super."OddWord"; + "Omega" = dontDistribute super."Omega"; + "OneTuple" = dontDistribute super."OneTuple"; + "OpenAFP" = dontDistribute super."OpenAFP"; + "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils"; + "OpenAL" = dontDistribute super."OpenAL"; + "OpenCL" = dontDistribute super."OpenCL"; + "OpenCLRaw" = dontDistribute super."OpenCLRaw"; + "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; + "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; + "OpenSCAD" = dontDistribute super."OpenSCAD"; + "OpenVG" = dontDistribute super."OpenVG"; + "OpenVGRaw" = dontDistribute super."OpenVGRaw"; + "Operads" = dontDistribute super."Operads"; + "OptDir" = dontDistribute super."OptDir"; + "OrPatterns" = dontDistribute super."OrPatterns"; + "OrchestrateDB" = dontDistribute super."OrchestrateDB"; + "OrderedBits" = dontDistribute super."OrderedBits"; + "Ordinals" = dontDistribute super."Ordinals"; + "PArrows" = dontDistribute super."PArrows"; + "PBKDF2" = dontDistribute super."PBKDF2"; + "PCLT" = dontDistribute super."PCLT"; + "PCLT-DB" = dontDistribute super."PCLT-DB"; + "PDBtools" = dontDistribute super."PDBtools"; + "PTQ" = dontDistribute super."PTQ"; + "PUH-Project" = dontDistribute super."PUH-Project"; + "PageIO" = dontDistribute super."PageIO"; + "Paillier" = dontDistribute super."Paillier"; + "PandocAgda" = dontDistribute super."PandocAgda"; + "Paraiso" = dontDistribute super."Paraiso"; + "Parry" = dontDistribute super."Parry"; + "ParsecTools" = dontDistribute super."ParsecTools"; + "ParserFunction" = dontDistribute super."ParserFunction"; + "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; + "PasswordGenerator" = dontDistribute super."PasswordGenerator"; + "PastePipe" = dontDistribute super."PastePipe"; + "Pathfinder" = dontDistribute super."Pathfinder"; + "Peano" = dontDistribute super."Peano"; + "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; + "PerfectHash" = dontDistribute super."PerfectHash"; + "PermuteEffects" = dontDistribute super."PermuteEffects"; + "Phsu" = dontDistribute super."Phsu"; + "Pipe" = dontDistribute super."Pipe"; + "Piso" = dontDistribute super."Piso"; + "PlayHangmanGame" = dontDistribute super."PlayHangmanGame"; + "PlayingCards" = dontDistribute super."PlayingCards"; + "Plot-ho-matic" = dontDistribute super."Plot-ho-matic"; + "PlslTools" = dontDistribute super."PlslTools"; + "Plural" = dontDistribute super."Plural"; + "Pollutocracy" = dontDistribute super."Pollutocracy"; + "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = dontDistribute super."PortMidi"; + "PostgreSQL" = dontDistribute super."PostgreSQL"; + "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; + "Printf-TH" = dontDistribute super."Printf-TH"; + "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; + "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; + "PropLogic" = dontDistribute super."PropLogic"; + "Proper" = dontDistribute super."Proper"; + "ProxN" = dontDistribute super."ProxN"; + "Pugs" = dontDistribute super."Pugs"; + "Pup-Events" = dontDistribute super."Pup-Events"; + "Pup-Events-Client" = dontDistribute super."Pup-Events-Client"; + "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo"; + "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; + "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; + "QIO" = dontDistribute super."QIO"; + "QuadEdge" = dontDistribute super."QuadEdge"; + "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; + "QuickAnnotate" = dontDistribute super."QuickAnnotate"; + "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; + "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; + "QuickCheck-safe" = dontDistribute super."QuickCheck-safe"; + "QuickPlot" = dontDistribute super."QuickPlot"; + "Quickson" = dontDistribute super."Quickson"; + "R-pandoc" = dontDistribute super."R-pandoc"; + "RANSAC" = dontDistribute super."RANSAC"; + "RBTree" = dontDistribute super."RBTree"; + "RESTng" = dontDistribute super."RESTng"; + "RFC1751" = dontDistribute super."RFC1751"; + "RJson" = dontDistribute super."RJson"; + "RMP" = dontDistribute super."RMP"; + "RNAFold" = dontDistribute super."RNAFold"; + "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; + "RNAdesign" = dontDistribute super."RNAdesign"; + "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = doDistribute super."RNAlien_1_0_0"; + "RNAwolf" = dontDistribute super."RNAwolf"; + "Raincat" = dontDistribute super."Raincat"; + "Random123" = dontDistribute super."Random123"; + "RandomDotOrg" = dontDistribute super."RandomDotOrg"; + "Randometer" = dontDistribute super."Randometer"; + "Range" = dontDistribute super."Range"; + "Ranged-sets" = dontDistribute super."Ranged-sets"; + "Ranka" = dontDistribute super."Ranka"; + "Rasenschach" = dontDistribute super."Rasenschach"; + "Redmine" = dontDistribute super."Redmine"; + "Ref" = dontDistribute super."Ref"; + "Referees" = dontDistribute super."Referees"; + "RepLib" = dontDistribute super."RepLib"; + "ReplicateEffects" = dontDistribute super."ReplicateEffects"; + "ReviewBoard" = dontDistribute super."ReviewBoard"; + "RichConditional" = dontDistribute super."RichConditional"; + "RollingDirectory" = dontDistribute super."RollingDirectory"; + "RoyalMonad" = dontDistribute super."RoyalMonad"; + "RxHaskell" = dontDistribute super."RxHaskell"; + "SBench" = dontDistribute super."SBench"; + "SConfig" = dontDistribute super."SConfig"; + "SDL" = dontDistribute super."SDL"; + "SDL-gfx" = dontDistribute super."SDL-gfx"; + "SDL-image" = dontDistribute super."SDL-image"; + "SDL-mixer" = dontDistribute super."SDL-mixer"; + "SDL-mpeg" = dontDistribute super."SDL-mpeg"; + "SDL-ttf" = dontDistribute super."SDL-ttf"; + "SDL2-ttf" = dontDistribute super."SDL2-ttf"; + "SFML" = dontDistribute super."SFML"; + "SFML-control" = dontDistribute super."SFML-control"; + "SFont" = dontDistribute super."SFont"; + "SG" = dontDistribute super."SG"; + "SGdemo" = dontDistribute super."SGdemo"; + "SHA2" = dontDistribute super."SHA2"; + "SMTPClient" = dontDistribute super."SMTPClient"; + "SNet" = dontDistribute super."SNet"; + "SQLDeps" = dontDistribute super."SQLDeps"; + "STL" = dontDistribute super."STL"; + "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = dontDistribute super."SVGFonts"; + "SVGPath" = dontDistribute super."SVGPath"; + "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; + "SableCC2Hs" = dontDistribute super."SableCC2Hs"; + "Safe" = dontDistribute super."Safe"; + "Salsa" = dontDistribute super."Salsa"; + "Saturnin" = dontDistribute super."Saturnin"; + "SciFlow" = dontDistribute super."SciFlow"; + "ScratchFs" = dontDistribute super."ScratchFs"; + "Scurry" = dontDistribute super."Scurry"; + "Semantique" = dontDistribute super."Semantique"; + "Semigroup" = dontDistribute super."Semigroup"; + "SeqAlign" = dontDistribute super."SeqAlign"; + "SessionLogger" = dontDistribute super."SessionLogger"; + "ShellCheck" = dontDistribute super."ShellCheck"; + "Shellac" = dontDistribute super."Shellac"; + "Shellac-compatline" = dontDistribute super."Shellac-compatline"; + "Shellac-editline" = dontDistribute super."Shellac-editline"; + "Shellac-haskeline" = dontDistribute super."Shellac-haskeline"; + "Shellac-readline" = dontDistribute super."Shellac-readline"; + "ShowF" = dontDistribute super."ShowF"; + "Shrub" = dontDistribute super."Shrub"; + "Shu-thing" = dontDistribute super."Shu-thing"; + "SimpleAES" = dontDistribute super."SimpleAES"; + "SimpleEA" = dontDistribute super."SimpleEA"; + "SimpleGL" = dontDistribute super."SimpleGL"; + "SimpleH" = dontDistribute super."SimpleH"; + "SimpleLog" = dontDistribute super."SimpleLog"; + "SimpleServer" = dontDistribute super."SimpleServer"; + "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; + "Smooth" = dontDistribute super."Smooth"; + "SmtLib" = dontDistribute super."SmtLib"; + "Snusmumrik" = dontDistribute super."Snusmumrik"; + "SoOSiM" = dontDistribute super."SoOSiM"; + "SoccerFun" = dontDistribute super."SoccerFun"; + "SoccerFunGL" = dontDistribute super."SoccerFunGL"; + "Sonnex" = dontDistribute super."Sonnex"; + "SourceGraph" = dontDistribute super."SourceGraph"; + "Southpaw" = dontDistribute super."Southpaw"; + "SpaceInvaders" = dontDistribute super."SpaceInvaders"; + "SpacePrivateers" = dontDistribute super."SpacePrivateers"; + "SpinCounter" = dontDistribute super."SpinCounter"; + "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; + "SpreadsheetML" = dontDistribute super."SpreadsheetML"; + "Sprig" = dontDistribute super."Sprig"; + "Stasis" = dontDistribute super."Stasis"; + "StateVar-transformer" = dontDistribute super."StateVar-transformer"; + "StatisticalMethods" = dontDistribute super."StatisticalMethods"; + "Stomp" = dontDistribute super."Stomp"; + "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; + "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "StrappedTemplates" = dontDistribute super."StrappedTemplates"; + "StrategyLib" = dontDistribute super."StrategyLib"; + "Stream" = dontDistribute super."Stream"; + "StrictBench" = dontDistribute super."StrictBench"; + "SuffixStructures" = dontDistribute super."SuffixStructures"; + "SybWidget" = dontDistribute super."SybWidget"; + "SyntaxMacros" = dontDistribute super."SyntaxMacros"; + "Sysmon" = dontDistribute super."Sysmon"; + "TBC" = dontDistribute super."TBC"; + "TBit" = dontDistribute super."TBit"; + "THEff" = dontDistribute super."THEff"; + "TTTAS" = dontDistribute super."TTTAS"; + "TV" = dontDistribute super."TV"; + "TYB" = dontDistribute super."TYB"; + "TableAlgebra" = dontDistribute super."TableAlgebra"; + "Tables" = dontDistribute super."Tables"; + "Tablify" = dontDistribute super."Tablify"; + "Tainted" = dontDistribute super."Tainted"; + "Takusen" = dontDistribute super."Takusen"; + "Tape" = dontDistribute super."Tape"; + "TeaHS" = dontDistribute super."TeaHS"; + "Tensor" = dontDistribute super."Tensor"; + "TernaryTrees" = dontDistribute super."TernaryTrees"; + "TestExplode" = dontDistribute super."TestExplode"; + "Theora" = dontDistribute super."Theora"; + "Thingie" = dontDistribute super."Thingie"; + "ThreadObjects" = dontDistribute super."ThreadObjects"; + "Thrift" = dontDistribute super."Thrift"; + "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe"; + "TicTacToe" = dontDistribute super."TicTacToe"; + "TigerHash" = dontDistribute super."TigerHash"; + "TimePiece" = dontDistribute super."TimePiece"; + "TinyLaunchbury" = dontDistribute super."TinyLaunchbury"; + "TinyURL" = dontDistribute super."TinyURL"; + "Titim" = dontDistribute super."Titim"; + "Top" = dontDistribute super."Top"; + "Tournament" = dontDistribute super."Tournament"; + "TraceUtils" = dontDistribute super."TraceUtils"; + "TransformersStepByStep" = dontDistribute super."TransformersStepByStep"; + "Transhare" = dontDistribute super."Transhare"; + "TreeCounter" = dontDistribute super."TreeCounter"; + "TreeStructures" = dontDistribute super."TreeStructures"; + "TreeT" = dontDistribute super."TreeT"; + "Treiber" = dontDistribute super."Treiber"; + "TrendGraph" = dontDistribute super."TrendGraph"; + "TrieMap" = dontDistribute super."TrieMap"; + "Twofish" = dontDistribute super."Twofish"; + "TypeClass" = dontDistribute super."TypeClass"; + "TypeCompose" = dontDistribute super."TypeCompose"; + "TypeIlluminator" = dontDistribute super."TypeIlluminator"; + "TypeNat" = dontDistribute super."TypeNat"; + "TypingTester" = dontDistribute super."TypingTester"; + "UISF" = dontDistribute super."UISF"; + "UMM" = dontDistribute super."UMM"; + "URLT" = dontDistribute super."URLT"; + "URLb" = dontDistribute super."URLb"; + "UTFTConverter" = dontDistribute super."UTFTConverter"; + "Unique" = dontDistribute super."Unique"; + "Unixutils-shadow" = dontDistribute super."Unixutils-shadow"; + "Updater" = dontDistribute super."Updater"; + "UrlDisp" = dontDistribute super."UrlDisp"; + "Useful" = dontDistribute super."Useful"; + "UtilityTM" = dontDistribute super."UtilityTM"; + "VKHS" = dontDistribute super."VKHS"; + "Validation" = dontDistribute super."Validation"; + "Vec" = dontDistribute super."Vec"; + "Vec-Boolean" = dontDistribute super."Vec-Boolean"; + "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw"; + "Vec-Transform" = dontDistribute super."Vec-Transform"; + "VecN" = dontDistribute super."VecN"; + "Verba" = dontDistribute super."Verba"; + "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "Vulkan" = dontDistribute super."Vulkan"; + "WAVE" = dontDistribute super."WAVE"; + "WL500gPControl" = dontDistribute super."WL500gPControl"; + "WL500gPLib" = dontDistribute super."WL500gPLib"; + "WMSigner" = dontDistribute super."WMSigner"; + "WURFL" = dontDistribute super."WURFL"; + "WXDiffCtrl" = dontDistribute super."WXDiffCtrl"; + "WashNGo" = dontDistribute super."WashNGo"; + "WaveFront" = dontDistribute super."WaveFront"; + "Weather" = dontDistribute super."Weather"; + "WebBits" = dontDistribute super."WebBits"; + "WebBits-Html" = dontDistribute super."WebBits-Html"; + "WebBits-multiplate" = dontDistribute super."WebBits-multiplate"; + "WebCont" = dontDistribute super."WebCont"; + "WeberLogic" = dontDistribute super."WeberLogic"; + "Webrexp" = dontDistribute super."Webrexp"; + "Wheb" = dontDistribute super."Wheb"; + "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; + "Win32-errors" = dontDistribute super."Win32-errors"; + "Win32-junction-point" = dontDistribute super."Win32-junction-point"; + "Win32-security" = dontDistribute super."Win32-security"; + "Win32-services" = dontDistribute super."Win32-services"; + "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper"; + "Wired" = dontDistribute super."Wired"; + "WordAlignment" = dontDistribute super."WordAlignment"; + "WordNet" = dontDistribute super."WordNet"; + "WordNet-ghc74" = dontDistribute super."WordNet-ghc74"; + "Wordlint" = dontDistribute super."Wordlint"; + "WxGeneric" = dontDistribute super."WxGeneric"; + "X11-extras" = dontDistribute super."X11-extras"; + "X11-rm" = dontDistribute super."X11-rm"; + "X11-xdamage" = dontDistribute super."X11-xdamage"; + "X11-xfixes" = dontDistribute super."X11-xfixes"; + "X11-xft" = dontDistribute super."X11-xft"; + "X11-xshape" = dontDistribute super."X11-xshape"; + "XAttr" = dontDistribute super."XAttr"; + "XInput" = dontDistribute super."XInput"; + "XMMS" = dontDistribute super."XMMS"; + "XMPP" = dontDistribute super."XMPP"; + "XSaiga" = dontDistribute super."XSaiga"; + "Xec" = dontDistribute super."Xec"; + "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter"; + "Xorshift128Plus" = dontDistribute super."Xorshift128Plus"; + "YACPong" = dontDistribute super."YACPong"; + "YFrob" = dontDistribute super."YFrob"; + "Yablog" = dontDistribute super."Yablog"; + "YamlReference" = dontDistribute super."YamlReference"; + "Yampa-core" = dontDistribute super."Yampa-core"; + "Yocto" = dontDistribute super."Yocto"; + "Yogurt" = dontDistribute super."Yogurt"; + "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone"; + "ZEBEDDE" = dontDistribute super."ZEBEDDE"; + "ZFS" = dontDistribute super."ZFS"; + "ZMachine" = dontDistribute super."ZMachine"; + "ZipFold" = dontDistribute super."ZipFold"; + "ZipperAG" = dontDistribute super."ZipperAG"; + "Zora" = dontDistribute super."Zora"; + "Zwaluw" = dontDistribute super."Zwaluw"; + "a50" = dontDistribute super."a50"; + "abacate" = dontDistribute super."abacate"; + "abc-puzzle" = dontDistribute super."abc-puzzle"; + "abcBridge" = dontDistribute super."abcBridge"; + "abcnotation" = dontDistribute super."abcnotation"; + "abeson" = dontDistribute super."abeson"; + "abstract-deque-tests" = dontDistribute super."abstract-deque-tests"; + "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate"; + "abt" = dontDistribute super."abt"; + "ac-machine" = dontDistribute super."ac-machine"; + "ac-machine-conduit" = dontDistribute super."ac-machine-conduit"; + "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic"; + "accelerate-cublas" = dontDistribute super."accelerate-cublas"; + "accelerate-cuda" = dontDistribute super."accelerate-cuda"; + "accelerate-cufft" = dontDistribute super."accelerate-cufft"; + "accelerate-examples" = dontDistribute super."accelerate-examples"; + "accelerate-fft" = dontDistribute super."accelerate-fft"; + "accelerate-fftw" = dontDistribute super."accelerate-fftw"; + "accelerate-fourier" = dontDistribute super."accelerate-fourier"; + "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; + "accelerate-io" = dontDistribute super."accelerate-io"; + "accelerate-random" = dontDistribute super."accelerate-random"; + "accelerate-utility" = dontDistribute super."accelerate-utility"; + "accentuateus" = dontDistribute super."accentuateus"; + "access-time" = dontDistribute super."access-time"; + "acid-state-dist" = dontDistribute super."acid-state-dist"; + "acid-state-tls" = dontDistribute super."acid-state-tls"; + "acl2" = dontDistribute super."acl2"; + "acme-all-monad" = dontDistribute super."acme-all-monad"; + "acme-box" = dontDistribute super."acme-box"; + "acme-cadre" = dontDistribute super."acme-cadre"; + "acme-cofunctor" = dontDistribute super."acme-cofunctor"; + "acme-colosson" = dontDistribute super."acme-colosson"; + "acme-comonad" = dontDistribute super."acme-comonad"; + "acme-cutegirl" = dontDistribute super."acme-cutegirl"; + "acme-dont" = dontDistribute super."acme-dont"; + "acme-flipping-tables" = dontDistribute super."acme-flipping-tables"; + "acme-grawlix" = dontDistribute super."acme-grawlix"; + "acme-hq9plus" = dontDistribute super."acme-hq9plus"; + "acme-http" = dontDistribute super."acme-http"; + "acme-inator" = dontDistribute super."acme-inator"; + "acme-io" = dontDistribute super."acme-io"; + "acme-lolcat" = dontDistribute super."acme-lolcat"; + "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; + "acme-memorandom" = dontDistribute super."acme-memorandom"; + "acme-microwave" = dontDistribute super."acme-microwave"; + "acme-miscorder" = dontDistribute super."acme-miscorder"; + "acme-missiles" = dontDistribute super."acme-missiles"; + "acme-now" = dontDistribute super."acme-now"; + "acme-numbersystem" = dontDistribute super."acme-numbersystem"; + "acme-omitted" = dontDistribute super."acme-omitted"; + "acme-one" = dontDistribute super."acme-one"; + "acme-operators" = dontDistribute super."acme-operators"; + "acme-php" = dontDistribute super."acme-php"; + "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers"; + "acme-realworld" = dontDistribute super."acme-realworld"; + "acme-safe" = dontDistribute super."acme-safe"; + "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel"; + "acme-strfry" = dontDistribute super."acme-strfry"; + "acme-stringly-typed" = dontDistribute super."acme-stringly-typed"; + "acme-strtok" = dontDistribute super."acme-strtok"; + "acme-timemachine" = dontDistribute super."acme-timemachine"; + "acme-year" = dontDistribute super."acme-year"; + "acme-zero" = dontDistribute super."acme-zero"; + "activehs" = dontDistribute super."activehs"; + "activehs-base" = dontDistribute super."activehs-base"; + "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; + "actor" = dontDistribute super."actor"; + "adaptive-containers" = dontDistribute super."adaptive-containers"; + "adaptive-tuple" = dontDistribute super."adaptive-tuple"; + "adb" = dontDistribute super."adb"; + "adblock2privoxy" = dontDistribute super."adblock2privoxy"; + "addLicenseInfo" = dontDistribute super."addLicenseInfo"; + "adhoc-network" = dontDistribute super."adhoc-network"; + "adict" = dontDistribute super."adict"; + "adler32" = dontDistribute super."adler32"; + "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; + "adp-multi" = dontDistribute super."adp-multi"; + "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; + "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-lens" = dontDistribute super."aeson-lens"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-schema" = dontDistribute super."aeson-schema"; + "aeson-serialize" = dontDistribute super."aeson-serialize"; + "aeson-smart" = dontDistribute super."aeson-smart"; + "aeson-streams" = dontDistribute super."aeson-streams"; + "aeson-t" = dontDistribute super."aeson-t"; + "aeson-toolkit" = dontDistribute super."aeson-toolkit"; + "aeson-value-parser" = dontDistribute super."aeson-value-parser"; + "aeson-yak" = dontDistribute super."aeson-yak"; + "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc"; + "afis" = dontDistribute super."afis"; + "afv" = dontDistribute super."afv"; + "ag-pictgen" = dontDistribute super."ag-pictgen"; + "agda-server" = dontDistribute super."agda-server"; + "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; + "agum" = dontDistribute super."agum"; + "aig" = dontDistribute super."aig"; + "air" = dontDistribute super."air"; + "air-extra" = dontDistribute super."air-extra"; + "air-spec" = dontDistribute super."air-spec"; + "air-th" = dontDistribute super."air-th"; + "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; + "aivika" = dontDistribute super."aivika"; + "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-experiment" = dontDistribute super."aivika-experiment"; + "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; + "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; + "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams"; + "aivika-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "alea" = dontDistribute super."alea"; + "alex-meta" = dontDistribute super."alex-meta"; + "alfred" = dontDistribute super."alfred"; + "alga" = dontDistribute super."alga"; + "algebra" = dontDistribute super."algebra"; + "algebra-dag" = dontDistribute super."algebra-dag"; + "algebra-sql" = dontDistribute super."algebra-sql"; + "algebraic" = dontDistribute super."algebraic"; + "algebraic-classes" = dontDistribute super."algebraic-classes"; + "align" = dontDistribute super."align"; + "align-text" = dontDistribute super."align-text"; + "aligned-foreignptr" = dontDistribute super."aligned-foreignptr"; + "allocated-processor" = dontDistribute super."allocated-processor"; + "alloy" = dontDistribute super."alloy"; + "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd"; + "almost-fix" = dontDistribute super."almost-fix"; + "alms" = dontDistribute super."alms"; + "alpha" = dontDistribute super."alpha"; + "alpino-tools" = dontDistribute super."alpino-tools"; + "alsa" = dontDistribute super."alsa"; + "alsa-core" = dontDistribute super."alsa-core"; + "alsa-gui" = dontDistribute super."alsa-gui"; + "alsa-midi" = dontDistribute super."alsa-midi"; + "alsa-mixer" = dontDistribute super."alsa-mixer"; + "alsa-pcm" = dontDistribute super."alsa-pcm"; + "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests"; + "alsa-seq" = dontDistribute super."alsa-seq"; + "alsa-seq-tests" = dontDistribute super."alsa-seq-tests"; + "altcomposition" = dontDistribute super."altcomposition"; + "alternative-io" = dontDistribute super."alternative-io"; + "altfloat" = dontDistribute super."altfloat"; + "alure" = dontDistribute super."alure"; + "amazon-emailer" = dontDistribute super."amazon-emailer"; + "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; + "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; + "ampersand" = dontDistribute super."ampersand"; + "amqp-conduit" = dontDistribute super."amqp-conduit"; + "amrun" = dontDistribute super."amrun"; + "analyze-client" = dontDistribute super."analyze-client"; + "anansi" = dontDistribute super."anansi"; + "anansi-hscolour" = dontDistribute super."anansi-hscolour"; + "anansi-pandoc" = dontDistribute super."anansi-pandoc"; + "anatomy" = dontDistribute super."anatomy"; + "android" = dontDistribute super."android"; + "android-lint-summary" = dontDistribute super."android-lint-summary"; + "animalcase" = dontDistribute super."animalcase"; + "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; + "ansi-pretty" = dontDistribute super."ansi-pretty"; + "ansigraph" = dontDistribute super."ansigraph"; + "antagonist" = dontDistribute super."antagonist"; + "antfarm" = dontDistribute super."antfarm"; + "anticiv" = dontDistribute super."anticiv"; + "antigate" = dontDistribute super."antigate"; + "antimirov" = dontDistribute super."antimirov"; + "antiquoter" = dontDistribute super."antiquoter"; + "antisplice" = dontDistribute super."antisplice"; + "antlrc" = dontDistribute super."antlrc"; + "anydbm" = dontDistribute super."anydbm"; + "aosd" = dontDistribute super."aosd"; + "ap-reflect" = dontDistribute super."ap-reflect"; + "apache-md5" = dontDistribute super."apache-md5"; + "apelsin" = dontDistribute super."apelsin"; + "api-builder" = dontDistribute super."api-builder"; + "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; + "api-tools" = dontDistribute super."api-tools"; + "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; + "apiary-purescript" = dontDistribute super."apiary-purescript"; + "apis" = dontDistribute super."apis"; + "apotiki" = dontDistribute super."apotiki"; + "app-lens" = dontDistribute super."app-lens"; + "appc" = dontDistribute super."appc"; + "applicative-extras" = dontDistribute super."applicative-extras"; + "applicative-fail" = dontDistribute super."applicative-fail"; + "applicative-numbers" = dontDistribute super."applicative-numbers"; + "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-quoters" = dontDistribute super."applicative-quoters"; + "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; + "apportionment" = dontDistribute super."apportionment"; + "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate-equality" = dontDistribute super."approximate-equality"; + "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; + "arb-fft" = dontDistribute super."arb-fft"; + "arbb-vm" = dontDistribute super."arbb-vm"; + "archive" = dontDistribute super."archive"; + "archiver" = dontDistribute super."archiver"; + "archlinux" = dontDistribute super."archlinux"; + "archlinux-web" = dontDistribute super."archlinux-web"; + "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; + "arff" = dontDistribute super."arff"; + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon2" = dontDistribute super."argon2"; + "argparser" = dontDistribute super."argparser"; + "arguedit" = dontDistribute super."arguedit"; + "ariadne" = dontDistribute super."ariadne"; + "arion" = dontDistribute super."arion"; + "arith-encode" = dontDistribute super."arith-encode"; + "arithmatic" = dontDistribute super."arithmatic"; + "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = dontDistribute super."arithmoi"; + "armada" = dontDistribute super."armada"; + "arpa" = dontDistribute super."arpa"; + "array-forth" = dontDistribute super."array-forth"; + "array-memoize" = dontDistribute super."array-memoize"; + "array-primops" = dontDistribute super."array-primops"; + "array-utils" = dontDistribute super."array-utils"; + "arrow-improve" = dontDistribute super."arrow-improve"; + "arrowapply-utils" = dontDistribute super."arrowapply-utils"; + "arrowp" = dontDistribute super."arrowp"; + "arrows" = dontDistribute super."arrows"; + "artery" = dontDistribute super."artery"; + "arx" = dontDistribute super."arx"; + "arxiv" = dontDistribute super."arxiv"; + "ascetic" = dontDistribute super."ascetic"; + "ascii" = dontDistribute super."ascii"; + "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; + "asic" = dontDistribute super."asic"; + "asil" = dontDistribute super."asil"; + "asn1-data" = dontDistribute super."asn1-data"; + "asn1dump" = dontDistribute super."asn1dump"; + "assembler" = dontDistribute super."assembler"; + "assert" = dontDistribute super."assert"; + "assert-failure" = dontDistribute super."assert-failure"; + "assertions" = dontDistribute super."assertions"; + "assimp" = dontDistribute super."assimp"; + "astar" = dontDistribute super."astar"; + "astrds" = dontDistribute super."astrds"; + "astview" = dontDistribute super."astview"; + "astview-utils" = dontDistribute super."astview-utils"; + "async-extras" = dontDistribute super."async-extras"; + "async-manager" = dontDistribute super."async-manager"; + "async-pool" = dontDistribute super."async-pool"; + "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions"; + "aterm" = dontDistribute super."aterm"; + "aterm-utils" = dontDistribute super."aterm-utils"; + "atl" = dontDistribute super."atl"; + "atlassian-connect-core" = dontDistribute super."atlassian-connect-core"; + "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor"; + "atmos" = dontDistribute super."atmos"; + "atmos-dimensional" = dontDistribute super."atmos-dimensional"; + "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atom" = dontDistribute super."atom"; + "atom-basic" = dontDistribute super."atom-basic"; + "atom-conduit" = dontDistribute super."atom-conduit"; + "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; + "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; + "atomic-write" = dontDistribute super."atomic-write"; + "atomo" = dontDistribute super."atomo"; + "atp-haskell" = dontDistribute super."atp-haskell"; + "atrans" = dontDistribute super."atrans"; + "attempt" = dontDistribute super."attempt"; + "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec-arff" = dontDistribute super."attoparsec-arff"; + "attoparsec-binary" = dontDistribute super."attoparsec-binary"; + "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; + "attoparsec-csv" = dontDistribute super."attoparsec-csv"; + "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee"; + "attoparsec-parsec" = dontDistribute super."attoparsec-parsec"; + "attoparsec-text" = dontDistribute super."attoparsec-text"; + "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator"; + "attosplit" = dontDistribute super."attosplit"; + "atuin" = dontDistribute super."atuin"; + "audacity" = dontDistribute super."audacity"; + "audiovisual" = dontDistribute super."audiovisual"; + "augeas" = dontDistribute super."augeas"; + "augur" = dontDistribute super."augur"; + "aur" = dontDistribute super."aur"; + "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; + "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authinfo-hs" = dontDistribute super."authinfo-hs"; + "authoring" = dontDistribute super."authoring"; + "autoexporter" = dontDistribute super."autoexporter"; + "autonix-deps" = dontDistribute super."autonix-deps"; + "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; + "autoproc" = dontDistribute super."autoproc"; + "avahi" = dontDistribute super."avahi"; + "avatar-generator" = dontDistribute super."avatar-generator"; + "average" = dontDistribute super."average"; + "avl-static" = dontDistribute super."avl-static"; + "avr-shake" = dontDistribute super."avr-shake"; + "awesome-prelude" = dontDistribute super."awesome-prelude"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; + "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; + "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; + "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams"; + "aws-ec2" = dontDistribute super."aws-ec2"; + "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder"; + "aws-general" = dontDistribute super."aws-general"; + "aws-kinesis" = dontDistribute super."aws-kinesis"; + "aws-kinesis-client" = dontDistribute super."aws-kinesis-client"; + "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard"; + "aws-lambda" = dontDistribute super."aws-lambda"; + "aws-performance-tests" = dontDistribute super."aws-performance-tests"; + "aws-route53" = dontDistribute super."aws-route53"; + "aws-sdk" = dontDistribute super."aws-sdk"; + "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter"; + "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered"; + "aws-sign4" = dontDistribute super."aws-sign4"; + "aws-sns" = dontDistribute super."aws-sns"; + "azure-acs" = dontDistribute super."azure-acs"; + "azure-service-api" = dontDistribute super."azure-service-api"; + "azure-servicebus" = dontDistribute super."azure-servicebus"; + "azurify" = dontDistribute super."azurify"; + "b-tree" = dontDistribute super."b-tree"; + "babylon" = dontDistribute super."babylon"; + "backdropper" = dontDistribute super."backdropper"; + "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; + "backward-state" = dontDistribute super."backward-state"; + "bacteria" = dontDistribute super."bacteria"; + "bag" = dontDistribute super."bag"; + "bamboo" = dontDistribute super."bamboo"; + "bamboo-launcher" = dontDistribute super."bamboo-launcher"; + "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight"; + "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo"; + "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint"; + "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5"; + "bamse" = dontDistribute super."bamse"; + "bamstats" = dontDistribute super."bamstats"; + "bank-holiday-usa" = dontDistribute super."bank-holiday-usa"; + "banwords" = dontDistribute super."banwords"; + "barchart" = dontDistribute super."barchart"; + "barcodes-code128" = dontDistribute super."barcodes-code128"; + "barecheck" = dontDistribute super."barecheck"; + "barley" = dontDistribute super."barley"; + "barrie" = dontDistribute super."barrie"; + "barrier-monad" = dontDistribute super."barrier-monad"; + "base-generics" = dontDistribute super."base-generics"; + "base-io-access" = dontDistribute super."base-io-access"; + "base-prelude" = doDistribute super."base-prelude_0_1_21"; + "base32-bytestring" = dontDistribute super."base32-bytestring"; + "base58-bytestring" = dontDistribute super."base58-bytestring"; + "base58address" = dontDistribute super."base58address"; + "base64-conduit" = dontDistribute super."base64-conduit"; + "base91" = dontDistribute super."base91"; + "basex-client" = dontDistribute super."basex-client"; + "bash" = dontDistribute super."bash"; + "basic-lens" = dontDistribute super."basic-lens"; + "basic-sop" = dontDistribute super."basic-sop"; + "baskell" = dontDistribute super."baskell"; + "battlenet" = dontDistribute super."battlenet"; + "battlenet-yesod" = dontDistribute super."battlenet-yesod"; + "battleships" = dontDistribute super."battleships"; + "bayes-stack" = dontDistribute super."bayes-stack"; + "bbdb" = dontDistribute super."bbdb"; + "bbi" = dontDistribute super."bbi"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; + "beamable" = dontDistribute super."beamable"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; + "benchmark-function" = dontDistribute super."benchmark-function"; + "bencoding" = dontDistribute super."bencoding"; + "berkeleydb" = dontDistribute super."berkeleydb"; + "berp" = dontDistribute super."berp"; + "bert" = dontDistribute super."bert"; + "besout" = dontDistribute super."besout"; + "bet" = dontDistribute super."bet"; + "betacode" = dontDistribute super."betacode"; + "between" = dontDistribute super."between"; + "bf-cata" = dontDistribute super."bf-cata"; + "bff" = dontDistribute super."bff"; + "bff-mono" = dontDistribute super."bff-mono"; + "bgmax" = dontDistribute super."bgmax"; + "bgzf" = dontDistribute super."bgzf"; + "bibtex" = dontDistribute super."bibtex"; + "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; + "bidispec" = dontDistribute super."bidispec"; + "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; + "billboard-parser" = dontDistribute super."billboard-parser"; + "billeksah-forms" = dontDistribute super."billeksah-forms"; + "billeksah-main" = dontDistribute super."billeksah-main"; + "billeksah-main-static" = dontDistribute super."billeksah-main-static"; + "billeksah-pane" = dontDistribute super."billeksah-pane"; + "billeksah-services" = dontDistribute super."billeksah-services"; + "bimaps" = dontDistribute super."bimaps"; + "binary-bits" = dontDistribute super."binary-bits"; + "binary-communicator" = dontDistribute super."binary-communicator"; + "binary-derive" = dontDistribute super."binary-derive"; + "binary-enum" = dontDistribute super."binary-enum"; + "binary-file" = dontDistribute super."binary-file"; + "binary-generic" = dontDistribute super."binary-generic"; + "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-protocol" = dontDistribute super."binary-protocol"; + "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; + "binary-shared" = dontDistribute super."binary-shared"; + "binary-state" = dontDistribute super."binary-state"; + "binary-store" = dontDistribute super."binary-store"; + "binary-streams" = dontDistribute super."binary-streams"; + "binary-strict" = dontDistribute super."binary-strict"; + "binarydefer" = dontDistribute super."binarydefer"; + "bind-marshal" = dontDistribute super."bind-marshal"; + "binding-core" = dontDistribute super."binding-core"; + "binding-gtk" = dontDistribute super."binding-gtk"; + "binding-wx" = dontDistribute super."binding-wx"; + "bindings" = dontDistribute super."bindings"; + "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-K8055" = dontDistribute super."bindings-K8055"; + "bindings-apr" = dontDistribute super."bindings-apr"; + "bindings-apr-util" = dontDistribute super."bindings-apr-util"; + "bindings-audiofile" = dontDistribute super."bindings-audiofile"; + "bindings-bfd" = dontDistribute super."bindings-bfd"; + "bindings-cctools" = dontDistribute super."bindings-cctools"; + "bindings-codec2" = dontDistribute super."bindings-codec2"; + "bindings-common" = dontDistribute super."bindings-common"; + "bindings-dc1394" = dontDistribute super."bindings-dc1394"; + "bindings-directfb" = dontDistribute super."bindings-directfb"; + "bindings-eskit" = dontDistribute super."bindings-eskit"; + "bindings-fann" = dontDistribute super."bindings-fann"; + "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth"; + "bindings-friso" = dontDistribute super."bindings-friso"; + "bindings-glib" = dontDistribute super."bindings-glib"; + "bindings-gobject" = dontDistribute super."bindings-gobject"; + "bindings-gpgme" = dontDistribute super."bindings-gpgme"; + "bindings-gsl" = dontDistribute super."bindings-gsl"; + "bindings-gts" = dontDistribute super."bindings-gts"; + "bindings-hamlib" = dontDistribute super."bindings-hamlib"; + "bindings-hdf5" = dontDistribute super."bindings-hdf5"; + "bindings-levmar" = dontDistribute super."bindings-levmar"; + "bindings-libcddb" = dontDistribute super."bindings-libcddb"; + "bindings-libffi" = dontDistribute super."bindings-libffi"; + "bindings-libftdi" = dontDistribute super."bindings-libftdi"; + "bindings-librrd" = dontDistribute super."bindings-librrd"; + "bindings-libstemmer" = dontDistribute super."bindings-libstemmer"; + "bindings-libusb" = dontDistribute super."bindings-libusb"; + "bindings-libv4l2" = dontDistribute super."bindings-libv4l2"; + "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2"; + "bindings-lxc" = dontDistribute super."bindings-lxc"; + "bindings-mmap" = dontDistribute super."bindings-mmap"; + "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal"; + "bindings-nettle" = dontDistribute super."bindings-nettle"; + "bindings-parport" = dontDistribute super."bindings-parport"; + "bindings-portaudio" = dontDistribute super."bindings-portaudio"; + "bindings-potrace" = dontDistribute super."bindings-potrace"; + "bindings-ppdev" = dontDistribute super."bindings-ppdev"; + "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd"; + "bindings-sane" = dontDistribute super."bindings-sane"; + "bindings-sc3" = dontDistribute super."bindings-sc3"; + "bindings-sipc" = dontDistribute super."bindings-sipc"; + "bindings-sophia" = dontDistribute super."bindings-sophia"; + "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; + "bindings-svm" = dontDistribute super."bindings-svm"; + "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; + "binembed" = dontDistribute super."binembed"; + "binembed-example" = dontDistribute super."binembed-example"; + "bini" = dontDistribute super."bini"; + "bio" = dontDistribute super."bio"; + "biohazard" = dontDistribute super."biohazard"; + "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit"; + "biosff" = dontDistribute super."biosff"; + "biostockholm" = dontDistribute super."biostockholm"; + "bird" = dontDistribute super."bird"; + "bit-array" = dontDistribute super."bit-array"; + "bit-vector" = dontDistribute super."bit-vector"; + "bitarray" = dontDistribute super."bitarray"; + "bitcoin-rpc" = dontDistribute super."bitcoin-rpc"; + "bitly-cli" = dontDistribute super."bitly-cli"; + "bitmap" = dontDistribute super."bitmap"; + "bitmap-opengl" = dontDistribute super."bitmap-opengl"; + "bitmaps" = dontDistribute super."bitmaps"; + "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-conduit" = dontDistribute super."bits-conduit"; + "bits-extras" = dontDistribute super."bits-extras"; + "bitset" = dontDistribute super."bitset"; + "bitspeak" = dontDistribute super."bitspeak"; + "bitstream" = dontDistribute super."bitstream"; + "bitstring" = dontDistribute super."bitstring"; + "bittorrent" = dontDistribute super."bittorrent"; + "bitvec" = dontDistribute super."bitvec"; + "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; + "bk-tree" = dontDistribute super."bk-tree"; + "bkr" = dontDistribute super."bkr"; + "bktrees" = dontDistribute super."bktrees"; + "bla" = dontDistribute super."bla"; + "black-jewel" = dontDistribute super."black-jewel"; + "blacktip" = dontDistribute super."blacktip"; + "blakesum" = dontDistribute super."blakesum"; + "blakesum-demo" = dontDistribute super."blakesum-demo"; + "blas" = dontDistribute super."blas"; + "blas-hs" = dontDistribute super."blas-hs"; + "blatex" = dontDistribute super."blatex"; + "blaze" = dontDistribute super."blaze"; + "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; + "blaze-from-html" = dontDistribute super."blaze-from-html"; + "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; + "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat"; + "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; + "blaze-json" = dontDistribute super."blaze-json"; + "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-textual-native" = dontDistribute super."blaze-textual-native"; + "blazeMarker" = dontDistribute super."blazeMarker"; + "blink1" = dontDistribute super."blink1"; + "blip" = dontDistribute super."blip"; + "bliplib" = dontDistribute super."bliplib"; + "blocking-transactions" = dontDistribute super."blocking-transactions"; + "blogination" = dontDistribute super."blogination"; + "bloodhound" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloxorz" = dontDistribute super."bloxorz"; + "blubber" = dontDistribute super."blubber"; + "blubber-server" = dontDistribute super."blubber-server"; + "bluetile" = dontDistribute super."bluetile"; + "bluetileutils" = dontDistribute super."bluetileutils"; + "blunt" = dontDistribute super."blunt"; + "board-games" = dontDistribute super."board-games"; + "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; + "boolean-list" = dontDistribute super."boolean-list"; + "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; + "boolexpr" = dontDistribute super."boolexpr"; + "bools" = dontDistribute super."bools"; + "boolsimplifier" = dontDistribute super."boolsimplifier"; + "boomange" = dontDistribute super."boomange"; + "boombox" = dontDistribute super."boombox"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "bot" = dontDistribute super."bot"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; + "bowntz" = dontDistribute super."bowntz"; + "bpann" = dontDistribute super."bpann"; + "braid" = dontDistribute super."braid"; + "brainfuck" = dontDistribute super."brainfuck"; + "brainfuck-monad" = dontDistribute super."brainfuck-monad"; + "brainfuck-tut" = dontDistribute super."brainfuck-tut"; + "break" = dontDistribute super."break"; + "breakout" = dontDistribute super."breakout"; + "breve" = dontDistribute super."breve"; + "brians-brain" = dontDistribute super."brians-brain"; + "brillig" = dontDistribute super."brillig"; + "broccoli" = dontDistribute super."broccoli"; + "broker-haskell" = dontDistribute super."broker-haskell"; + "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson-generic" = dontDistribute super."bson-generic"; + "bson-generics" = dontDistribute super."bson-generics"; + "bson-mapping" = dontDistribute super."bson-mapping"; + "bspack" = dontDistribute super."bspack"; + "bsparse" = dontDistribute super."bsparse"; + "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; + "buffer-pipe" = dontDistribute super."buffer-pipe"; + "buffon" = dontDistribute super."buffon"; + "bugzilla" = dontDistribute super."bugzilla"; + "buildable" = dontDistribute super."buildable"; + "buildbox" = dontDistribute super."buildbox"; + "buildbox-tools" = dontDistribute super."buildbox-tools"; + "buildwrapper" = dontDistribute super."buildwrapper"; + "bullet" = dontDistribute super."bullet"; + "burst-detection" = dontDistribute super."burst-detection"; + "bus-pirate" = dontDistribute super."bus-pirate"; + "buster" = dontDistribute super."buster"; + "buster-gtk" = dontDistribute super."buster-gtk"; + "buster-network" = dontDistribute super."buster-network"; + "butterflies" = dontDistribute super."butterflies"; + "bv" = dontDistribute super."bv"; + "byline" = dontDistribute super."byline"; + "bytable" = dontDistribute super."bytable"; + "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-class" = dontDistribute super."bytestring-class"; + "bytestring-csv" = dontDistribute super."bytestring-csv"; + "bytestring-delta" = dontDistribute super."bytestring-delta"; + "bytestring-from" = dontDistribute super."bytestring-from"; + "bytestring-nums" = dontDistribute super."bytestring-nums"; + "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-rematch" = dontDistribute super."bytestring-rematch"; + "bytestring-short" = dontDistribute super."bytestring-short"; + "bytestring-show" = dontDistribute super."bytestring-show"; + "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder"; + "bytestringparser" = dontDistribute super."bytestringparser"; + "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary"; + "bytestringreadp" = dontDistribute super."bytestringreadp"; + "c-dsl" = dontDistribute super."c-dsl"; + "c-io" = dontDistribute super."c-io"; + "c-storable-deriving" = dontDistribute super."c-storable-deriving"; + "c0check" = dontDistribute super."c0check"; + "c0parser" = dontDistribute super."c0parser"; + "c10k" = dontDistribute super."c10k"; + "c2hsc" = dontDistribute super."c2hsc"; + "cab" = dontDistribute super."cab"; + "cabal-audit" = dontDistribute super."cabal-audit"; + "cabal-bounds" = dontDistribute super."cabal-bounds"; + "cabal-cargs" = dontDistribute super."cabal-cargs"; + "cabal-constraints" = dontDistribute super."cabal-constraints"; + "cabal-db" = dontDistribute super."cabal-db"; + "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; + "cabal-dev" = dontDistribute super."cabal-dev"; + "cabal-dir" = dontDistribute super."cabal-dir"; + "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags"; + "cabal-ghci" = dontDistribute super."cabal-ghci"; + "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; + "cabal-info" = dontDistribute super."cabal-info"; + "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; + "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; + "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; + "cabal-lenses" = dontDistribute super."cabal-lenses"; + "cabal-macosx" = dontDistribute super."cabal-macosx"; + "cabal-meta" = dontDistribute super."cabal-meta"; + "cabal-mon" = dontDistribute super."cabal-mon"; + "cabal-nirvana" = dontDistribute super."cabal-nirvana"; + "cabal-progdeps" = dontDistribute super."cabal-progdeps"; + "cabal-query" = dontDistribute super."cabal-query"; + "cabal-scripts" = dontDistribute super."cabal-scripts"; + "cabal-setup" = dontDistribute super."cabal-setup"; + "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-test" = dontDistribute super."cabal-test"; + "cabal-test-bin" = dontDistribute super."cabal-test-bin"; + "cabal-test-compat" = dontDistribute super."cabal-test-compat"; + "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck"; + "cabal-uninstall" = dontDistribute super."cabal-uninstall"; + "cabal-upload" = dontDistribute super."cabal-upload"; + "cabal2arch" = dontDistribute super."cabal2arch"; + "cabal2doap" = dontDistribute super."cabal2doap"; + "cabal2ebuild" = dontDistribute super."cabal2ebuild"; + "cabal2ghci" = dontDistribute super."cabal2ghci"; + "cabal2nix" = dontDistribute super."cabal2nix"; + "cabal2spec" = dontDistribute super."cabal2spec"; + "cabalQuery" = dontDistribute super."cabalQuery"; + "cabalg" = dontDistribute super."cabalg"; + "cabalgraph" = dontDistribute super."cabalgraph"; + "cabalmdvrpm" = dontDistribute super."cabalmdvrpm"; + "cabalrpmdeps" = dontDistribute super."cabalrpmdeps"; + "cabalvchk" = dontDistribute super."cabalvchk"; + "cabin" = dontDistribute super."cabin"; + "cabocha" = dontDistribute super."cabocha"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = doDistribute super."cacophony_0_4_0"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "cairo-appbase" = dontDistribute super."cairo-appbase"; + "cake" = dontDistribute super."cake"; + "cake3" = dontDistribute super."cake3"; + "cakyrespa" = dontDistribute super."cakyrespa"; + "cal3d" = dontDistribute super."cal3d"; + "cal3d-examples" = dontDistribute super."cal3d-examples"; + "cal3d-opengl" = dontDistribute super."cal3d-opengl"; + "calc" = dontDistribute super."calc"; + "caldims" = dontDistribute super."caldims"; + "caledon" = dontDistribute super."caledon"; + "call" = dontDistribute super."call"; + "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; + "camh" = dontDistribute super."camh"; + "campfire" = dontDistribute super."campfire"; + "canonical-filepath" = dontDistribute super."canonical-filepath"; + "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; + "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; + "cantor" = dontDistribute super."cantor"; + "cao" = dontDistribute super."cao"; + "cap" = dontDistribute super."cap"; + "capped-list" = dontDistribute super."capped-list"; + "capri" = dontDistribute super."capri"; + "car-pool" = dontDistribute super."car-pool"; + "caramia" = dontDistribute super."caramia"; + "carboncopy" = dontDistribute super."carboncopy"; + "carettah" = dontDistribute super."carettah"; + "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; + "casadi-bindings" = dontDistribute super."casadi-bindings"; + "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; + "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; + "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal"; + "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface"; + "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; + "cascading" = dontDistribute super."cascading"; + "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "casr-logbook" = dontDistribute super."casr-logbook"; + "cassandra-cql" = dontDistribute super."cassandra-cql"; + "cassandra-thrift" = dontDistribute super."cassandra-thrift"; + "cassava-conduit" = dontDistribute super."cassava-conduit"; + "cassava-streams" = dontDistribute super."cassava-streams"; + "cassette" = dontDistribute super."cassette"; + "cassy" = dontDistribute super."cassy"; + "castle" = dontDistribute super."castle"; + "casui" = dontDistribute super."casui"; + "catamorphism" = dontDistribute super."catamorphism"; + "catch-fd" = dontDistribute super."catch-fd"; + "categorical-algebra" = dontDistribute super."categorical-algebra"; + "categories" = dontDistribute super."categories"; + "category-extras" = dontDistribute super."category-extras"; + "category-traced" = dontDistribute super."category-traced"; + "cayley-dickson" = dontDistribute super."cayley-dickson"; + "cblrepo" = dontDistribute super."cblrepo"; + "cci" = dontDistribute super."cci"; + "ccnx" = dontDistribute super."ccnx"; + "cctools-workqueue" = dontDistribute super."cctools-workqueue"; + "cedict" = dontDistribute super."cedict"; + "cef" = dontDistribute super."cef"; + "ceilometer-common" = dontDistribute super."ceilometer-common"; + "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; + "cereal-derive" = dontDistribute super."cereal-derive"; + "cereal-enumerator" = dontDistribute super."cereal-enumerator"; + "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi" = doDistribute super."cgi_3001_2_2_3"; + "cgi-undecidable" = dontDistribute super."cgi-undecidable"; + "cgi-utils" = dontDistribute super."cgi-utils"; + "cgrep" = dontDistribute super."cgrep"; + "chain-codes" = dontDistribute super."chain-codes"; + "chalk" = dontDistribute super."chalk"; + "chalkboard" = dontDistribute super."chalkboard"; + "chalkboard-viewer" = dontDistribute super."chalkboard-viewer"; + "chalmers-lava2000" = dontDistribute super."chalmers-lava2000"; + "chan-split" = dontDistribute super."chan-split"; + "change-monger" = dontDistribute super."change-monger"; + "charade" = dontDistribute super."charade"; + "charsetdetect" = dontDistribute super."charsetdetect"; + "chart-histogram" = dontDistribute super."chart-histogram"; + "chaselev-deque" = dontDistribute super."chaselev-deque"; + "chatter" = dontDistribute super."chatter"; + "chatty" = dontDistribute super."chatty"; + "chatty-text" = dontDistribute super."chatty-text"; + "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; + "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; + "check-pvp" = dontDistribute super."check-pvp"; + "checked" = dontDistribute super."checked"; + "chell-hunit" = dontDistribute super."chell-hunit"; + "chesshs" = dontDistribute super."chesshs"; + "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; + "chp" = dontDistribute super."chp"; + "chp-mtl" = dontDistribute super."chp-mtl"; + "chp-plus" = dontDistribute super."chp-plus"; + "chp-spec" = dontDistribute super."chp-spec"; + "chp-transformers" = dontDistribute super."chp-transformers"; + "chronograph" = dontDistribute super."chronograph"; + "chu2" = dontDistribute super."chu2"; + "chuchu" = dontDistribute super."chuchu"; + "chunks" = dontDistribute super."chunks"; + "chunky" = dontDistribute super."chunky"; + "church-list" = dontDistribute super."church-list"; + "cil" = dontDistribute super."cil"; + "cinvoke" = dontDistribute super."cinvoke"; + "cio" = dontDistribute super."cio"; + "cipher-rc5" = dontDistribute super."cipher-rc5"; + "ciphersaber2" = dontDistribute super."ciphersaber2"; + "circ" = dontDistribute super."circ"; + "cirru-parser" = dontDistribute super."cirru-parser"; + "citation-resolve" = dontDistribute super."citation-resolve"; + "citeproc-hs" = dontDistribute super."citeproc-hs"; + "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter"; + "cityhash" = dontDistribute super."cityhash"; + "cjk" = dontDistribute super."cjk"; + "clac" = dontDistribute super."clac"; + "clafer" = dontDistribute super."clafer"; + "claferIG" = dontDistribute super."claferIG"; + "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; + "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; + "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_6_10"; + "clash-lib" = doDistribute super."clash-lib_0_6_10"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_5"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_5"; + "clash-vhdl" = doDistribute super."clash-vhdl_0_6_7"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; + "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; + "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "clocked" = dontDistribute super."clocked"; + "clogparse" = dontDistribute super."clogparse"; + "clone-all" = dontDistribute super."clone-all"; + "closure" = dontDistribute super."closure"; + "cloud-haskell" = dontDistribute super."cloud-haskell"; + "cloudfront-signer" = dontDistribute super."cloudfront-signer"; + "cloudyfs" = dontDistribute super."cloudyfs"; + "cltw" = dontDistribute super."cltw"; + "clua" = dontDistribute super."clua"; + "clumpiness" = dontDistribute super."clumpiness"; + "cluss" = dontDistribute super."cluss"; + "clustertools" = dontDistribute super."clustertools"; + "clutterhs" = dontDistribute super."clutterhs"; + "cmaes" = dontDistribute super."cmaes"; + "cmath" = dontDistribute super."cmath"; + "cmathml3" = dontDistribute super."cmathml3"; + "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs-browser" = dontDistribute super."cmdargs-browser"; + "cmdlib" = dontDistribute super."cmdlib"; + "cmdtheline" = dontDistribute super."cmdtheline"; + "cml" = dontDistribute super."cml"; + "cmonad" = dontDistribute super."cmonad"; + "cmu" = dontDistribute super."cmu"; + "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; + "cndict" = dontDistribute super."cndict"; + "codec" = dontDistribute super."codec"; + "codec-libevent" = dontDistribute super."codec-libevent"; + "codec-mbox" = dontDistribute super."codec-mbox"; + "codecov-haskell" = dontDistribute super."codecov-haskell"; + "codemonitor" = dontDistribute super."codemonitor"; + "codepad" = dontDistribute super."codepad"; + "codo-notation" = dontDistribute super."codo-notation"; + "cofunctor" = dontDistribute super."cofunctor"; + "cognimeta-utils" = dontDistribute super."cognimeta-utils"; + "coinbase-exchange" = dontDistribute super."coinbase-exchange"; + "colada" = dontDistribute super."colada"; + "colchis" = dontDistribute super."colchis"; + "collada-output" = dontDistribute super."collada-output"; + "collada-types" = dontDistribute super."collada-types"; + "collapse-util" = dontDistribute super."collapse-util"; + "collection-json" = dontDistribute super."collection-json"; + "collections" = dontDistribute super."collections"; + "collections-api" = dontDistribute super."collections-api"; + "collections-base-instances" = dontDistribute super."collections-base-instances"; + "colock" = dontDistribute super."colock"; + "colorize-haskell" = dontDistribute super."colorize-haskell"; + "colors" = dontDistribute super."colors"; + "coltrane" = dontDistribute super."coltrane"; + "com" = dontDistribute super."com"; + "combinat" = dontDistribute super."combinat"; + "combinat-diagrams" = dontDistribute super."combinat-diagrams"; + "combinator-interactive" = dontDistribute super."combinator-interactive"; + "combinatorial-problems" = dontDistribute super."combinatorial-problems"; + "combinatorics" = dontDistribute super."combinatorics"; + "combobuffer" = dontDistribute super."combobuffer"; + "comfort-graph" = dontDistribute super."comfort-graph"; + "command" = dontDistribute super."command"; + "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; + "commodities" = dontDistribute super."commodities"; + "commsec" = dontDistribute super."commsec"; + "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; + "comonad-extras" = dontDistribute super."comonad-extras"; + "comonad-random" = dontDistribute super."comonad-random"; + "compact-map" = dontDistribute super."compact-map"; + "compact-socket" = dontDistribute super."compact-socket"; + "compact-string" = dontDistribute super."compact-string"; + "compact-string-fix" = dontDistribute super."compact-string-fix"; + "compare-type" = dontDistribute super."compare-type"; + "compdata-automata" = dontDistribute super."compdata-automata"; + "compdata-dags" = dontDistribute super."compdata-dags"; + "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = dontDistribute super."compensated"; + "competition" = dontDistribute super."competition"; + "compilation" = dontDistribute super."compilation"; + "complex-generic" = dontDistribute super."complex-generic"; + "complex-integrate" = dontDistribute super."complex-integrate"; + "complexity" = dontDistribute super."complexity"; + "compose-ltr" = dontDistribute super."compose-ltr"; + "compose-trans" = dontDistribute super."compose-trans"; + "compression" = dontDistribute super."compression"; + "compstrat" = dontDistribute super."compstrat"; + "comptrans" = dontDistribute super."comptrans"; + "computational-algebra" = dontDistribute super."computational-algebra"; + "computations" = dontDistribute super."computations"; + "conceit" = dontDistribute super."conceit"; + "concorde" = dontDistribute super."concorde"; + "concraft" = dontDistribute super."concraft"; + "concraft-hr" = dontDistribute super."concraft-hr"; + "concraft-pl" = dontDistribute super."concraft-pl"; + "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser"; + "concrete-typerep" = dontDistribute super."concrete-typerep"; + "concurrent-barrier" = dontDistribute super."concurrent-barrier"; + "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = dontDistribute super."concurrent-extra"; + "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; + "concurrent-sa" = dontDistribute super."concurrent-sa"; + "concurrent-split" = dontDistribute super."concurrent-split"; + "concurrent-state" = dontDistribute super."concurrent-state"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; + "concurrentoutput" = dontDistribute super."concurrentoutput"; + "cond" = dontDistribute super."cond"; + "condor" = dontDistribute super."condor"; + "condorcet" = dontDistribute super."condorcet"; + "conductive-base" = dontDistribute super."conductive-base"; + "conductive-clock" = dontDistribute super."conductive-clock"; + "conductive-hsc3" = dontDistribute super."conductive-hsc3"; + "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_3"; + "conduit-audio" = dontDistribute super."conduit-audio"; + "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; + "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; + "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; + "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; + "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; + "config-select" = dontDistribute super."config-select"; + "config-value" = dontDistribute super."config-value"; + "configifier" = dontDistribute super."configifier"; + "configuration" = dontDistribute super."configuration"; + "configuration-tools" = dontDistribute super."configuration-tools"; + "confsolve" = dontDistribute super."confsolve"; + "congruence-relation" = dontDistribute super."congruence-relation"; + "conjugateGradient" = dontDistribute super."conjugateGradient"; + "conjure" = dontDistribute super."conjure"; + "conlogger" = dontDistribute super."conlogger"; + "connection-pool" = dontDistribute super."connection-pool"; + "consistent" = dontDistribute super."consistent"; + "console-program" = dontDistribute super."console-program"; + "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; + "constrained-categories" = dontDistribute super."constrained-categories"; + "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; + "constructible" = dontDistribute super."constructible"; + "constructive-algebra" = dontDistribute super."constructive-algebra"; + "consumers" = dontDistribute super."consumers"; + "container" = dontDistribute super."container"; + "container-classes" = dontDistribute super."container-classes"; + "containers-benchmark" = dontDistribute super."containers-benchmark"; + "containers-deepseq" = dontDistribute super."containers-deepseq"; + "context-free-grammar" = dontDistribute super."context-free-grammar"; + "context-stack" = dontDistribute super."context-stack"; + "continue" = dontDistribute super."continue"; + "continued-fractions" = dontDistribute super."continued-fractions"; + "continuum" = dontDistribute super."continuum"; + "continuum-client" = dontDistribute super."continuum-client"; + "control-event" = dontDistribute super."control-event"; + "control-monad-attempt" = dontDistribute super."control-monad-attempt"; + "control-monad-exception" = dontDistribute super."control-monad-exception"; + "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd"; + "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf"; + "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl"; + "control-monad-failure" = dontDistribute super."control-monad-failure"; + "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl"; + "control-monad-omega" = dontDistribute super."control-monad-omega"; + "control-monad-queue" = dontDistribute super."control-monad-queue"; + "control-timeout" = dontDistribute super."control-timeout"; + "contstuff" = dontDistribute super."contstuff"; + "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf"; + "contstuff-transformers" = dontDistribute super."contstuff-transformers"; + "converge" = dontDistribute super."converge"; + "conversion" = dontDistribute super."conversion"; + "conversion-bytestring" = dontDistribute super."conversion-bytestring"; + "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive"; + "conversion-text" = dontDistribute super."conversion-text"; + "convert" = dontDistribute super."convert"; + "convertible-ascii" = dontDistribute super."convertible-ascii"; + "convertible-text" = dontDistribute super."convertible-text"; + "cookbook" = dontDistribute super."cookbook"; + "coordinate" = dontDistribute super."coordinate"; + "copilot" = dontDistribute super."copilot"; + "copilot-c99" = dontDistribute super."copilot-c99"; + "copilot-cbmc" = dontDistribute super."copilot-cbmc"; + "copilot-core" = dontDistribute super."copilot-core"; + "copilot-language" = dontDistribute super."copilot-language"; + "copilot-libraries" = dontDistribute super."copilot-libraries"; + "copilot-sbv" = dontDistribute super."copilot-sbv"; + "copilot-theorem" = dontDistribute super."copilot-theorem"; + "copr" = dontDistribute super."copr"; + "core" = dontDistribute super."core"; + "core-haskell" = dontDistribute super."core-haskell"; + "corebot-bliki" = dontDistribute super."corebot-bliki"; + "coroutine-enumerator" = dontDistribute super."coroutine-enumerator"; + "coroutine-iteratee" = dontDistribute super."coroutine-iteratee"; + "coroutine-object" = dontDistribute super."coroutine-object"; + "couch-hs" = dontDistribute super."couch-hs"; + "couch-simple" = dontDistribute super."couch-simple"; + "couchdb-conduit" = dontDistribute super."couchdb-conduit"; + "couchdb-enumerator" = dontDistribute super."couchdb-enumerator"; + "count" = dontDistribute super."count"; + "countable" = dontDistribute super."countable"; + "counter" = dontDistribute super."counter"; + "court" = dontDistribute super."court"; + "coverage" = dontDistribute super."coverage"; + "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; + "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; + "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; + "cpsa" = dontDistribute super."cpsa"; + "cpuid" = dontDistribute super."cpuid"; + "cpuperf" = dontDistribute super."cpuperf"; + "cpython" = dontDistribute super."cpython"; + "cqrs" = dontDistribute super."cqrs"; + "cqrs-core" = dontDistribute super."cqrs-core"; + "cqrs-example" = dontDistribute super."cqrs-example"; + "cqrs-memory" = dontDistribute super."cqrs-memory"; + "cqrs-postgresql" = dontDistribute super."cqrs-postgresql"; + "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3"; + "cqrs-test" = dontDistribute super."cqrs-test"; + "cqrs-testkit" = dontDistribute super."cqrs-testkit"; + "cqrs-types" = dontDistribute super."cqrs-types"; + "cr" = dontDistribute super."cr"; + "crack" = dontDistribute super."crack"; + "craftwerk" = dontDistribute super."craftwerk"; + "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; + "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "crc16" = dontDistribute super."crc16"; + "crc16-table" = dontDistribute super."crc16-table"; + "creatur" = dontDistribute super."creatur"; + "crf-chain1" = dontDistribute super."crf-chain1"; + "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained"; + "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; + "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; + "critbit" = dontDistribute super."critbit"; + "criterion-plus" = dontDistribute super."criterion-plus"; + "criterion-to-html" = dontDistribute super."criterion-to-html"; + "crockford" = dontDistribute super."crockford"; + "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; + "cron-compat" = dontDistribute super."cron-compat"; + "cruncher-types" = dontDistribute super."cruncher-types"; + "crunghc" = dontDistribute super."crunghc"; + "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks"; + "crypto-classical" = dontDistribute super."crypto-classical"; + "crypto-conduit" = dontDistribute super."crypto-conduit"; + "crypto-enigma" = dontDistribute super."crypto-enigma"; + "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; + "crypto-random-effect" = dontDistribute super."crypto-random-effect"; + "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; + "cryptsy-api" = dontDistribute super."cryptsy-api"; + "crystalfontz" = dontDistribute super."crystalfontz"; + "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; + "csound-catalog" = dontDistribute super."csound-catalog"; + "csound-expression" = dontDistribute super."csound-expression"; + "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic"; + "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes"; + "csound-expression-typed" = dontDistribute super."csound-expression-typed"; + "csound-sampler" = dontDistribute super."csound-sampler"; + "csp" = dontDistribute super."csp"; + "cspmchecker" = dontDistribute super."cspmchecker"; + "css" = dontDistribute super."css"; + "csv-enumerator" = dontDistribute super."csv-enumerator"; + "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-to-qif" = dontDistribute super."csv-to-qif"; + "ctemplate" = dontDistribute super."ctemplate"; + "ctkl" = dontDistribute super."ctkl"; + "ctpl" = dontDistribute super."ctpl"; + "cube" = dontDistribute super."cube"; + "cubical" = dontDistribute super."cubical"; + "cubicbezier" = dontDistribute super."cubicbezier"; + "cublas" = dontDistribute super."cublas"; + "cuboid" = dontDistribute super."cuboid"; + "cuda" = dontDistribute super."cuda"; + "cudd" = dontDistribute super."cudd"; + "cufft" = dontDistribute super."cufft"; + "curl-aeson" = dontDistribute super."curl-aeson"; + "curlhs" = dontDistribute super."curlhs"; + "currency" = dontDistribute super."currency"; + "current-locale" = dontDistribute super."current-locale"; + "curry-base" = dontDistribute super."curry-base"; + "curry-frontend" = dontDistribute super."curry-frontend"; + "cursedcsv" = dontDistribute super."cursedcsv"; + "curve25519" = dontDistribute super."curve25519"; + "curves" = dontDistribute super."curves"; + "custom-prelude" = dontDistribute super."custom-prelude"; + "cv-combinators" = dontDistribute super."cv-combinators"; + "cyclotomic" = dontDistribute super."cyclotomic"; + "cypher" = dontDistribute super."cypher"; + "d-bus" = dontDistribute super."d-bus"; + "d3js" = dontDistribute super."d3js"; + "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; + "daemons" = dontDistribute super."daemons"; + "dag" = dontDistribute super."dag"; + "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; + "dao" = dontDistribute super."dao"; + "dapi" = dontDistribute super."dapi"; + "darcs-benchmark" = dontDistribute super."darcs-benchmark"; + "darcs-beta" = dontDistribute super."darcs-beta"; + "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; + "darcs-cabalized" = dontDistribute super."darcs-cabalized"; + "darcs-fastconvert" = dontDistribute super."darcs-fastconvert"; + "darcs-graph" = dontDistribute super."darcs-graph"; + "darcs-monitor" = dontDistribute super."darcs-monitor"; + "darcs-scripts" = dontDistribute super."darcs-scripts"; + "darcs2dot" = dontDistribute super."darcs2dot"; + "darcsden" = dontDistribute super."darcsden"; + "darcswatch" = dontDistribute super."darcswatch"; + "darkplaces-demo" = dontDistribute super."darkplaces-demo"; + "darkplaces-rcon" = dontDistribute super."darkplaces-rcon"; + "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util"; + "darkplaces-text" = dontDistribute super."darkplaces-text"; + "dash-haskell" = dontDistribute super."dash-haskell"; + "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib"; + "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd"; + "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf"; + "data-accessor-template" = dontDistribute super."data-accessor-template"; + "data-accessor-transformers" = dontDistribute super."data-accessor-transformers"; + "data-aviary" = dontDistribute super."data-aviary"; + "data-base" = dontDistribute super."data-base"; + "data-bword" = dontDistribute super."data-bword"; + "data-carousel" = dontDistribute super."data-carousel"; + "data-category" = dontDistribute super."data-category"; + "data-cell" = dontDistribute super."data-cell"; + "data-checked" = dontDistribute super."data-checked"; + "data-clist" = dontDistribute super."data-clist"; + "data-concurrent-queue" = dontDistribute super."data-concurrent-queue"; + "data-construction" = dontDistribute super."data-construction"; + "data-cycle" = dontDistribute super."data-cycle"; + "data-default-extra" = dontDistribute super."data-default-extra"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; + "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; + "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; + "data-default-instances-text" = dontDistribute super."data-default-instances-text"; + "data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers"; + "data-default-instances-vector" = dontDistribute super."data-default-instances-vector"; + "data-dispersal" = dontDistribute super."data-dispersal"; + "data-dword" = dontDistribute super."data-dword"; + "data-easy" = dontDistribute super."data-easy"; + "data-embed" = dontDistribute super."data-embed"; + "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-interval" = dontDistribute super."data-interval"; + "data-ivar" = dontDistribute super."data-ivar"; + "data-json-token" = dontDistribute super."data-json-token"; + "data-kiln" = dontDistribute super."data-kiln"; + "data-layer" = dontDistribute super."data-layer"; + "data-layout" = dontDistribute super."data-layout"; + "data-lens" = dontDistribute super."data-lens"; + "data-lens-fd" = dontDistribute super."data-lens-fd"; + "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-template" = dontDistribute super."data-lens-template"; + "data-list-sequences" = dontDistribute super."data-list-sequences"; + "data-map-multikey" = dontDistribute super."data-map-multikey"; + "data-named" = dontDistribute super."data-named"; + "data-nat" = dontDistribute super."data-nat"; + "data-object" = dontDistribute super."data-object"; + "data-object-json" = dontDistribute super."data-object-json"; + "data-object-yaml" = dontDistribute super."data-object-yaml"; + "data-or" = dontDistribute super."data-or"; + "data-partition" = dontDistribute super."data-partition"; + "data-pprint" = dontDistribute super."data-pprint"; + "data-quotientref" = dontDistribute super."data-quotientref"; + "data-r-tree" = dontDistribute super."data-r-tree"; + "data-ref" = dontDistribute super."data-ref"; + "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; + "data-result" = dontDistribute super."data-result"; + "data-rev" = dontDistribute super."data-rev"; + "data-rope" = dontDistribute super."data-rope"; + "data-rtuple" = dontDistribute super."data-rtuple"; + "data-size" = dontDistribute super."data-size"; + "data-spacepart" = dontDistribute super."data-spacepart"; + "data-store" = dontDistribute super."data-store"; + "data-stringmap" = dontDistribute super."data-stringmap"; + "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-tensor" = dontDistribute super."data-tensor"; + "data-textual" = dontDistribute super."data-textual"; + "data-timeout" = dontDistribute super."data-timeout"; + "data-transform" = dontDistribute super."data-transform"; + "data-treify" = dontDistribute super."data-treify"; + "data-type" = dontDistribute super."data-type"; + "data-util" = dontDistribute super."data-util"; + "data-variant" = dontDistribute super."data-variant"; + "database-migrate" = dontDistribute super."database-migrate"; + "database-study" = dontDistribute super."database-study"; + "dataenc" = dontDistribute super."dataenc"; + "dataflow" = dontDistribute super."dataflow"; + "datalog" = dontDistribute super."datalog"; + "datapacker" = dontDistribute super."datapacker"; + "dataurl" = dontDistribute super."dataurl"; + "date-cache" = dontDistribute super."date-cache"; + "dates" = dontDistribute super."dates"; + "datetime" = dontDistribute super."datetime"; + "datetime-sb" = dontDistribute super."datetime-sb"; + "dawdle" = dontDistribute super."dawdle"; + "dawg" = dontDistribute super."dawg"; + "dbcleaner" = dontDistribute super."dbcleaner"; + "dbf" = dontDistribute super."dbf"; + "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = doDistribute super."dbmigrations_1_0"; + "dbus-client" = dontDistribute super."dbus-client"; + "dbus-core" = dontDistribute super."dbus-core"; + "dbus-qq" = dontDistribute super."dbus-qq"; + "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; + "dclabel" = dontDistribute super."dclabel"; + "dclabel-eci11" = dontDistribute super."dclabel-eci11"; + "ddc-base" = dontDistribute super."ddc-base"; + "ddc-build" = dontDistribute super."ddc-build"; + "ddc-code" = dontDistribute super."ddc-code"; + "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-eval" = dontDistribute super."ddc-core-eval"; + "ddc-core-flow" = dontDistribute super."ddc-core-flow"; + "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; + "ddc-core-salt" = dontDistribute super."ddc-core-salt"; + "ddc-core-simpl" = dontDistribute super."ddc-core-simpl"; + "ddc-core-tetra" = dontDistribute super."ddc-core-tetra"; + "ddc-driver" = dontDistribute super."ddc-driver"; + "ddc-interface" = dontDistribute super."ddc-interface"; + "ddc-source-tetra" = dontDistribute super."ddc-source-tetra"; + "ddc-tools" = dontDistribute super."ddc-tools"; + "ddc-war" = dontDistribute super."ddc-war"; + "ddci-core" = dontDistribute super."ddci-core"; + "dead-code-detection" = dontDistribute super."dead-code-detection"; + "dead-simple-json" = dontDistribute super."dead-simple-json"; + "debian-binary" = dontDistribute super."debian-binary"; + "debian-build" = dontDistribute super."debian-build"; + "debug-diff" = dontDistribute super."debug-diff"; + "debug-time" = dontDistribute super."debug-time"; + "decepticons" = dontDistribute super."decepticons"; + "decode-utf8" = dontDistribute super."decode-utf8"; + "decoder-conduit" = dontDistribute super."decoder-conduit"; + "dedukti" = dontDistribute super."dedukti"; + "deepcontrol" = dontDistribute super."deepcontrol"; + "deeplearning-hs" = dontDistribute super."deeplearning-hs"; + "deepseq-bounded" = dontDistribute super."deepseq-bounded"; + "deepseq-magic" = dontDistribute super."deepseq-magic"; + "deepseq-th" = dontDistribute super."deepseq-th"; + "deepzoom" = dontDistribute super."deepzoom"; + "defargs" = dontDistribute super."defargs"; + "definitive-base" = dontDistribute super."definitive-base"; + "definitive-filesystem" = dontDistribute super."definitive-filesystem"; + "definitive-graphics" = dontDistribute super."definitive-graphics"; + "definitive-parser" = dontDistribute super."definitive-parser"; + "definitive-reactive" = dontDistribute super."definitive-reactive"; + "definitive-sound" = dontDistribute super."definitive-sound"; + "deiko-config" = dontDistribute super."deiko-config"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delimiter-separated" = dontDistribute super."delimiter-separated"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "dependent-state" = dontDistribute super."dependent-state"; + "depends" = dontDistribute super."depends"; + "dephd" = dontDistribute super."dephd"; + "dequeue" = dontDistribute super."dequeue"; + "derangement" = dontDistribute super."derangement"; + "derivation-trees" = dontDistribute super."derivation-trees"; + "derive-IG" = dontDistribute super."derive-IG"; + "derive-enumerable" = dontDistribute super."derive-enumerable"; + "derive-gadt" = dontDistribute super."derive-gadt"; + "derive-monoid" = dontDistribute super."derive-monoid"; + "derive-topdown" = dontDistribute super."derive-topdown"; + "derive-trie" = dontDistribute super."derive-trie"; + "deriving-compat" = dontDistribute super."deriving-compat"; + "derp" = dontDistribute super."derp"; + "derp-lib" = dontDistribute super."derp-lib"; + "descrilo" = dontDistribute super."descrilo"; + "despair" = dontDistribute super."despair"; + "deterministic-game-engine" = dontDistribute super."deterministic-game-engine"; + "detrospector" = dontDistribute super."detrospector"; + "deunicode" = dontDistribute super."deunicode"; + "devil" = dontDistribute super."devil"; + "dewdrop" = dontDistribute super."dewdrop"; + "dfrac" = dontDistribute super."dfrac"; + "dfsbuild" = dontDistribute super."dfsbuild"; + "dgim" = dontDistribute super."dgim"; + "dgs" = dontDistribute super."dgs"; + "dia-base" = dontDistribute super."dia-base"; + "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; + "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; + "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; + "diagrams-pdf" = dontDistribute super."diagrams-pdf"; + "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; + "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; + "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; + "dicom" = dontDistribute super."dicom"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; + "diff-parse" = dontDistribute super."diff-parse"; + "diffarray" = dontDistribute super."diffarray"; + "diffcabal" = dontDistribute super."diffcabal"; + "diffdump" = dontDistribute super."diffdump"; + "digamma" = dontDistribute super."digamma"; + "digest-pure" = dontDistribute super."digest-pure"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; + "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; + "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp"; + "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty"; + "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; + "digit" = dontDistribute super."digit"; + "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "dimensional-codata" = dontDistribute super."dimensional-codata"; + "dimensional-tf" = dontDistribute super."dimensional-tf"; + "dingo-core" = dontDistribute super."dingo-core"; + "dingo-example" = dontDistribute super."dingo-example"; + "dingo-widgets" = dontDistribute super."dingo-widgets"; + "diophantine" = dontDistribute super."diophantine"; + "diplomacy" = dontDistribute super."diplomacy"; + "diplomacy-server" = dontDistribute super."diplomacy-server"; + "direct-binary-files" = dontDistribute super."direct-binary-files"; + "direct-daemonize" = dontDistribute super."direct-daemonize"; + "direct-fastcgi" = dontDistribute super."direct-fastcgi"; + "direct-http" = dontDistribute super."direct-http"; + "direct-murmur-hash" = dontDistribute super."direct-murmur-hash"; + "direct-plugins" = dontDistribute super."direct-plugins"; + "directed-cubical" = dontDistribute super."directed-cubical"; + "directory-layout" = dontDistribute super."directory-layout"; + "directory-listing-webpage-parser" = dontDistribute super."directory-listing-webpage-parser"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discordian-calendar" = dontDistribute super."discordian-calendar"; + "discount" = dontDistribute super."discount"; + "discrete-space-map" = dontDistribute super."discrete-space-map"; + "discrimination" = dontDistribute super."discrimination"; + "disjoint-set" = dontDistribute super."disjoint-set"; + "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; + "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = doDistribute super."distributed-process_0_5_5_1"; + "distributed-process-async" = dontDistribute super."distributed-process-async"; + "distributed-process-azure" = dontDistribute super."distributed-process-azure"; + "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; + "distributed-process-ekg" = dontDistribute super."distributed-process-ekg"; + "distributed-process-execution" = dontDistribute super."distributed-process-execution"; + "distributed-process-extras" = dontDistribute super."distributed-process-extras"; + "distributed-process-lifted" = dontDistribute super."distributed-process-lifted"; + "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control"; + "distributed-process-p2p" = dontDistribute super."distributed-process-p2p"; + "distributed-process-platform" = dontDistribute super."distributed-process-platform"; + "distributed-process-registry" = dontDistribute super."distributed-process-registry"; + "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet"; + "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor"; + "distributed-process-task" = dontDistribute super."distributed-process-task"; + "distributed-process-tests" = dontDistribute super."distributed-process-tests"; + "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distribution" = dontDistribute super."distribution"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "djembe" = dontDistribute super."djembe"; + "djinn" = dontDistribute super."djinn"; + "djinn-th" = dontDistribute super."djinn-th"; + "dnscache" = dontDistribute super."dnscache"; + "dnsrbl" = dontDistribute super."dnsrbl"; + "dnssd" = dontDistribute super."dnssd"; + "doc-review" = dontDistribute super."doc-review"; + "doccheck" = dontDistribute super."doccheck"; + "docidx" = dontDistribute super."docidx"; + "docker" = dontDistribute super."docker"; + "dockercook" = dontDistribute super."dockercook"; + "doctest-discover" = dontDistribute super."doctest-discover"; + "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; + "doctest-prop" = dontDistribute super."doctest-prop"; + "dom-lt" = dontDistribute super."dom-lt"; + "dom-parser" = dontDistribute super."dom-parser"; + "dom-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download" = dontDistribute super."download"; + "download-curl" = dontDistribute super."download-curl"; + "download-media-content" = dontDistribute super."download-media-content"; + "dozenal" = dontDistribute super."dozenal"; + "dozens" = dontDistribute super."dozens"; + "dph-base" = dontDistribute super."dph-base"; + "dph-examples" = dontDistribute super."dph-examples"; + "dph-lifted-base" = dontDistribute super."dph-lifted-base"; + "dph-lifted-copy" = dontDistribute super."dph-lifted-copy"; + "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg"; + "dph-par" = dontDistribute super."dph-par"; + "dph-prim-interface" = dontDistribute super."dph-prim-interface"; + "dph-prim-par" = dontDistribute super."dph-prim-par"; + "dph-prim-seq" = dontDistribute super."dph-prim-seq"; + "dph-seq" = dontDistribute super."dph-seq"; + "dpkg" = dontDistribute super."dpkg"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; + "dropbox-sdk" = dontDistribute super."dropbox-sdk"; + "dropsolve" = dontDistribute super."dropsolve"; + "ds-kanren" = dontDistribute super."ds-kanren"; + "dsh-sql" = dontDistribute super."dsh-sql"; + "dsmc" = dontDistribute super."dsmc"; + "dsmc-tools" = dontDistribute super."dsmc-tools"; + "dson" = dontDistribute super."dson"; + "dson-parsec" = dontDistribute super."dson-parsec"; + "dsp" = dontDistribute super."dsp"; + "dstring" = dontDistribute super."dstring"; + "dtab" = dontDistribute super."dtab"; + "dtd" = dontDistribute super."dtd"; + "dtd-text" = dontDistribute super."dtd-text"; + "dtd-types" = dontDistribute super."dtd-types"; + "dtrace" = dontDistribute super."dtrace"; + "dtw" = dontDistribute super."dtw"; + "dump" = dontDistribute super."dump"; + "duplo" = dontDistribute super."duplo"; + "dvda" = dontDistribute super."dvda"; + "dvdread" = dontDistribute super."dvdread"; + "dvi-processing" = dontDistribute super."dvi-processing"; + "dvorak" = dontDistribute super."dvorak"; + "dwarf" = dontDistribute super."dwarf"; + "dwarf-el" = dontDistribute super."dwarf-el"; + "dwarfadt" = dontDistribute super."dwarfadt"; + "dx9base" = dontDistribute super."dx9base"; + "dx9d3d" = dontDistribute super."dx9d3d"; + "dx9d3dx" = dontDistribute super."dx9d3dx"; + "dynamic-cabal" = dontDistribute super."dynamic-cabal"; + "dynamic-graph" = dontDistribute super."dynamic-graph"; + "dynamic-linker-template" = dontDistribute super."dynamic-linker-template"; + "dynamic-loader" = dontDistribute super."dynamic-loader"; + "dynamic-mvector" = dontDistribute super."dynamic-mvector"; + "dynamic-object" = dontDistribute super."dynamic-object"; + "dynamic-plot" = dontDistribute super."dynamic-plot"; + "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynobud" = dontDistribute super."dynobud"; + "dywapitchtrack" = dontDistribute super."dywapitchtrack"; + "dzen-utils" = dontDistribute super."dzen-utils"; + "eager-sockets" = dontDistribute super."eager-sockets"; + "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; + "easyjson" = dontDistribute super."easyjson"; + "easyplot" = dontDistribute super."easyplot"; + "easyrender" = dontDistribute super."easyrender"; + "ebeats" = dontDistribute super."ebeats"; + "ebnf-bff" = dontDistribute super."ebnf-bff"; + "ec2-signature" = dontDistribute super."ec2-signature"; + "ecdsa" = dontDistribute super."ecdsa"; + "ecma262" = dontDistribute super."ecma262"; + "ecu" = dontDistribute super."ecu"; + "ed25519" = dontDistribute super."ed25519"; + "ed25519-donna" = dontDistribute super."ed25519-donna"; + "eddie" = dontDistribute super."eddie"; + "edenmodules" = dontDistribute super."edenmodules"; + "edenskel" = dontDistribute super."edenskel"; + "edentv" = dontDistribute super."edentv"; + "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "eithers" = dontDistribute super."eithers"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-log" = dontDistribute super."ekg-log"; + "ekg-push" = dontDistribute super."ekg-push"; + "ekg-rrd" = dontDistribute super."ekg-rrd"; + "ekg-statsd" = dontDistribute super."ekg-statsd"; + "electrum-mnemonic" = dontDistribute super."electrum-mnemonic"; + "elerea" = dontDistribute super."elerea"; + "elerea-examples" = dontDistribute super."elerea-examples"; + "elerea-sdl" = dontDistribute super."elerea-sdl"; + "elevator" = dontDistribute super."elevator"; + "elf" = dontDistribute super."elf"; + "elision" = dontDistribute super."elision"; + "elm-build-lib" = dontDistribute super."elm-build-lib"; + "elm-compiler" = dontDistribute super."elm-compiler"; + "elm-get" = dontDistribute super."elm-get"; + "elm-init" = dontDistribute super."elm-init"; + "elm-make" = dontDistribute super."elm-make"; + "elm-package" = dontDistribute super."elm-package"; + "elm-reactor" = dontDistribute super."elm-reactor"; + "elm-repl" = dontDistribute super."elm-repl"; + "elm-server" = dontDistribute super."elm-server"; + "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; + "elocrypt" = dontDistribute super."elocrypt"; + "emacs-keys" = dontDistribute super."emacs-keys"; + "email" = dontDistribute super."email"; + "email-header" = dontDistribute super."email-header"; + "email-postmark" = dontDistribute super."email-postmark"; + "email-validator" = dontDistribute super."email-validator"; + "embeddock" = dontDistribute super."embeddock"; + "embeddock-example" = dontDistribute super."embeddock-example"; + "embroidery" = dontDistribute super."embroidery"; + "emgm" = dontDistribute super."emgm"; + "empty" = dontDistribute super."empty"; + "encoding" = dontDistribute super."encoding"; + "endo" = dontDistribute super."endo"; + "engine-io-growler" = dontDistribute super."engine-io-growler"; + "engine-io-snap" = dontDistribute super."engine-io-snap"; + "engineering-units" = dontDistribute super."engineering-units"; + "enumerable" = dontDistribute super."enumerable"; + "enumerate" = dontDistribute super."enumerate"; + "enumeration" = dontDistribute super."enumeration"; + "enumerator-fd" = dontDistribute super."enumerator-fd"; + "enumerator-tf" = dontDistribute super."enumerator-tf"; + "enumfun" = dontDistribute super."enumfun"; + "enummapmap" = dontDistribute super."enummapmap"; + "enummapset" = dontDistribute super."enummapset"; + "enummapset-th" = dontDistribute super."enummapset-th"; + "enumset" = dontDistribute super."enumset"; + "env-parser" = dontDistribute super."env-parser"; + "envparse" = dontDistribute super."envparse"; + "epanet-haskell" = dontDistribute super."epanet-haskell"; + "epass" = dontDistribute super."epass"; + "epic" = dontDistribute super."epic"; + "epoll" = dontDistribute super."epoll"; + "eprocess" = dontDistribute super."eprocess"; + "epub" = dontDistribute super."epub"; + "epub-metadata" = dontDistribute super."epub-metadata"; + "epub-tools" = dontDistribute super."epub-tools"; + "epubname" = dontDistribute super."epubname"; + "equal-files" = dontDistribute super."equal-files"; + "equational-reasoning" = dontDistribute super."equational-reasoning"; + "erd" = dontDistribute super."erd"; + "erf-native" = dontDistribute super."erf-native"; + "erlang" = dontDistribute super."erlang"; + "eros" = dontDistribute super."eros"; + "eros-client" = dontDistribute super."eros-client"; + "eros-http" = dontDistribute super."eros-http"; + "errno" = dontDistribute super."errno"; + "error-analyze" = dontDistribute super."error-analyze"; + "error-continuations" = dontDistribute super."error-continuations"; + "error-list" = dontDistribute super."error-list"; + "error-loc" = dontDistribute super."error-loc"; + "error-location" = dontDistribute super."error-location"; + "error-message" = dontDistribute super."error-message"; + "error-util" = dontDistribute super."error-util"; + "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; + "ersatz" = dontDistribute super."ersatz"; + "ersatz-toysat" = dontDistribute super."ersatz-toysat"; + "ert" = dontDistribute super."ert"; + "esotericbot" = dontDistribute super."esotericbot"; + "ess" = dontDistribute super."ess"; + "estimator" = dontDistribute super."estimator"; + "estimators" = dontDistribute super."estimators"; + "estreps" = dontDistribute super."estreps"; + "eternal" = dontDistribute super."eternal"; + "ether" = doDistribute super."ether_0_3_1_1"; + "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; + "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; + "ethereum-rlp" = dontDistribute super."ethereum-rlp"; + "ety" = dontDistribute super."ety"; + "euler" = dontDistribute super."euler"; + "euphoria" = dontDistribute super."euphoria"; + "eurofxref" = dontDistribute super."eurofxref"; + "event-driven" = dontDistribute super."event-driven"; + "event-handlers" = dontDistribute super."event-handlers"; + "event-list" = dontDistribute super."event-list"; + "event-monad" = dontDistribute super."event-monad"; + "eventloop" = dontDistribute super."eventloop"; + "eventstore" = doDistribute super."eventstore_0_10_0_2"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exception-hierarchy" = dontDistribute super."exception-hierarchy"; + "exception-mailer" = dontDistribute super."exception-mailer"; + "exception-monads-fd" = dontDistribute super."exception-monads-fd"; + "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exception-mtl" = dontDistribute super."exception-mtl"; + "exherbo-cabal" = dontDistribute super."exherbo-cabal"; + "exif" = dontDistribute super."exif"; + "exinst" = dontDistribute super."exinst"; + "exinst-aeson" = dontDistribute super."exinst-aeson"; + "exinst-bytes" = dontDistribute super."exinst-bytes"; + "exinst-deepseq" = dontDistribute super."exinst-deepseq"; + "exinst-hashable" = dontDistribute super."exinst-hashable"; + "existential" = dontDistribute super."existential"; + "exists" = dontDistribute super."exists"; + "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; + "exp-pairs" = dontDistribute super."exp-pairs"; + "expand" = dontDistribute super."expand"; + "expat-enumerator" = dontDistribute super."expat-enumerator"; + "expiring-mvar" = dontDistribute super."expiring-mvar"; + "explain" = dontDistribute super."explain"; + "explicit-determinant" = dontDistribute super."explicit-determinant"; + "explicit-iomodes" = dontDistribute super."explicit-iomodes"; + "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring"; + "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text"; + "explicit-sharing" = dontDistribute super."explicit-sharing"; + "explore" = dontDistribute super."explore"; + "exposed-containers" = dontDistribute super."exposed-containers"; + "expression-parser" = dontDistribute super."expression-parser"; + "extcore" = dontDistribute super."extcore"; + "extemp" = dontDistribute super."extemp"; + "extended-categories" = dontDistribute super."extended-categories"; + "extended-reals" = dontDistribute super."extended-reals"; + "extensible" = dontDistribute super."extensible"; + "extensible-data" = dontDistribute super."extensible-data"; + "external-sort" = dontDistribute super."external-sort"; + "extractelf" = dontDistribute super."extractelf"; + "ez-couch" = dontDistribute super."ez-couch"; + "faceted" = dontDistribute super."faceted"; + "factory" = dontDistribute super."factory"; + "factual-api" = dontDistribute super."factual-api"; + "fad" = dontDistribute super."fad"; + "failable-list" = dontDistribute super."failable-list"; + "failure" = dontDistribute super."failure"; + "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; + "faker" = dontDistribute super."faker"; + "falling-turnip" = dontDistribute super."falling-turnip"; + "fallingblocks" = dontDistribute super."fallingblocks"; + "family-tree" = dontDistribute super."family-tree"; + "fast-digits" = dontDistribute super."fast-digits"; + "fast-math" = dontDistribute super."fast-math"; + "fast-tags" = dontDistribute super."fast-tags"; + "fast-tagsoup" = dontDistribute super."fast-tagsoup"; + "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fastbayes" = dontDistribute super."fastbayes"; + "fastcgi" = dontDistribute super."fastcgi"; + "fastedit" = dontDistribute super."fastedit"; + "fastirc" = dontDistribute super."fastirc"; + "fault-tree" = dontDistribute super."fault-tree"; + "fay-geoposition" = dontDistribute super."fay-geoposition"; + "fay-hsx" = dontDistribute super."fay-hsx"; + "fay-ref" = dontDistribute super."fay-ref"; + "fca" = dontDistribute super."fca"; + "fcache" = dontDistribute super."fcache"; + "fcd" = dontDistribute super."fcd"; + "fckeditor" = dontDistribute super."fckeditor"; + "fclabels-monadlib" = dontDistribute super."fclabels-monadlib"; + "fdo-trash" = dontDistribute super."fdo-trash"; + "fec" = dontDistribute super."fec"; + "fedora-packages" = dontDistribute super."fedora-packages"; + "feed-cli" = dontDistribute super."feed-cli"; + "feed-collect" = dontDistribute super."feed-collect"; + "feed-crawl" = dontDistribute super."feed-crawl"; + "feed-translator" = dontDistribute super."feed-translator"; + "feed2lj" = dontDistribute super."feed2lj"; + "feed2twitter" = dontDistribute super."feed2twitter"; + "feldspar-compiler" = dontDistribute super."feldspar-compiler"; + "feldspar-language" = dontDistribute super."feldspar-language"; + "feldspar-signal" = dontDistribute super."feldspar-signal"; + "fen2s" = dontDistribute super."fen2s"; + "fences" = dontDistribute super."fences"; + "fenfire" = dontDistribute super."fenfire"; + "fez-conf" = dontDistribute super."fez-conf"; + "ffeed" = dontDistribute super."ffeed"; + "fficxx" = dontDistribute super."fficxx"; + "fficxx-runtime" = dontDistribute super."fficxx-runtime"; + "ffmpeg-light" = dontDistribute super."ffmpeg-light"; + "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; + "fgl-visualize" = dontDistribute super."fgl-visualize"; + "fibon" = dontDistribute super."fibon"; + "fibonacci" = dontDistribute super."fibonacci"; + "fields" = dontDistribute super."fields"; + "fields-json" = dontDistribute super."fields-json"; + "fieldwise" = dontDistribute super."fieldwise"; + "fig" = dontDistribute super."fig"; + "file-collection" = dontDistribute super."file-collection"; + "file-command-qq" = dontDistribute super."file-command-qq"; + "filediff" = dontDistribute super."filediff"; + "filepath-io-access" = dontDistribute super."filepath-io-access"; + "filepather" = dontDistribute super."filepather"; + "filestore" = dontDistribute super."filestore"; + "filesystem-conduit" = dontDistribute super."filesystem-conduit"; + "filesystem-enumerator" = dontDistribute super."filesystem-enumerator"; + "filesystem-trees" = dontDistribute super."filesystem-trees"; + "filtrable" = dontDistribute super."filtrable"; + "final" = dontDistribute super."final"; + "find-clumpiness" = dontDistribute super."find-clumpiness"; + "find-conduit" = dontDistribute super."find-conduit"; + "fingertree-tf" = dontDistribute super."fingertree-tf"; + "finite-field" = dontDistribute super."finite-field"; + "finite-typelits" = dontDistribute super."finite-typelits"; + "first-and-last" = dontDistribute super."first-and-last"; + "first-class-patterns" = dontDistribute super."first-class-patterns"; + "firstify" = dontDistribute super."firstify"; + "fishfood" = dontDistribute super."fishfood"; + "fit" = dontDistribute super."fit"; + "fitsio" = dontDistribute super."fitsio"; + "fix-imports" = dontDistribute super."fix-imports"; + "fix-parser-simple" = dontDistribute super."fix-parser-simple"; + "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit"; + "fixed-length" = dontDistribute super."fixed-length"; + "fixed-point" = dontDistribute super."fixed-point"; + "fixed-point-vector" = dontDistribute super."fixed-point-vector"; + "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space"; + "fixed-precision" = dontDistribute super."fixed-precision"; + "fixed-storable-array" = dontDistribute super."fixed-storable-array"; + "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; + "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixedprec" = dontDistribute super."fixedprec"; + "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; + "fixfile" = dontDistribute super."fixfile"; + "fixhs" = dontDistribute super."fixhs"; + "fixplate" = dontDistribute super."fixplate"; + "fixpoint" = dontDistribute super."fixpoint"; + "fixtime" = dontDistribute super."fixtime"; + "fizz-buzz" = dontDistribute super."fizz-buzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "flat-mcmc" = dontDistribute super."flat-mcmc"; + "flat-tex" = dontDistribute super."flat-tex"; + "flexible-time" = dontDistribute super."flexible-time"; + "flexible-unlit" = dontDistribute super."flexible-unlit"; + "flexiwrap" = dontDistribute super."flexiwrap"; + "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck"; + "flickr" = dontDistribute super."flickr"; + "flippers" = dontDistribute super."flippers"; + "flite" = dontDistribute super."flite"; + "flo" = dontDistribute super."flo"; + "float-binstring" = dontDistribute super."float-binstring"; + "floating-bits" = dontDistribute super."floating-bits"; + "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; + "flow2dot" = dontDistribute super."flow2dot"; + "flowdock-api" = dontDistribute super."flowdock-api"; + "flowdock-rest" = dontDistribute super."flowdock-rest"; + "flower" = dontDistribute super."flower"; + "flowlocks-framework" = dontDistribute super."flowlocks-framework"; + "flowsim" = dontDistribute super."flowsim"; + "fltkhs" = dontDistribute super."fltkhs"; + "fltkhs-demos" = dontDistribute super."fltkhs-demos"; + "fltkhs-fluid-demos" = dontDistribute super."fltkhs-fluid-demos"; + "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples"; + "fltkhs-hello-world" = dontDistribute super."fltkhs-hello-world"; + "fluent-logger" = dontDistribute super."fluent-logger"; + "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; + "fluidsynth" = dontDistribute super."fluidsynth"; + "fmark" = dontDistribute super."fmark"; + "fn" = doDistribute super."fn_0_2_0_2"; + "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; + "fold-debounce" = dontDistribute super."fold-debounce"; + "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl" = doDistribute super."foldl_1_1_5"; + "foldl-incremental" = dontDistribute super."foldl-incremental"; + "foldl-transduce" = dontDistribute super."foldl-transduce"; + "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; + "folds" = dontDistribute super."folds"; + "folds-common" = dontDistribute super."folds-common"; + "follower" = dontDistribute super."follower"; + "foma" = dontDistribute super."foma"; + "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6"; + "foo" = dontDistribute super."foo"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "fordo" = dontDistribute super."fordo"; + "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; + "foreign-var" = dontDistribute super."foreign-var"; + "forger" = dontDistribute super."forger"; + "forkable-monad" = dontDistribute super."forkable-monad"; + "formal" = dontDistribute super."formal"; + "format" = dontDistribute super."format"; + "format-status" = dontDistribute super."format-status"; + "formattable" = dontDistribute super."formattable"; + "forml" = dontDistribute super."forml"; + "formlets" = dontDistribute super."formlets"; + "formlets-hsp" = dontDistribute super."formlets-hsp"; + "formura" = dontDistribute super."formura"; + "forth-hll" = dontDistribute super."forth-hll"; + "foscam-directory" = dontDistribute super."foscam-directory"; + "foscam-filename" = dontDistribute super."foscam-filename"; + "foscam-sort" = dontDistribute super."foscam-sort"; + "fountain" = dontDistribute super."fountain"; + "fpco-api" = dontDistribute super."fpco-api"; + "fpipe" = dontDistribute super."fpipe"; + "fpnla" = dontDistribute super."fpnla"; + "fpnla-examples" = dontDistribute super."fpnla-examples"; + "fptest" = dontDistribute super."fptest"; + "fquery" = dontDistribute super."fquery"; + "fractal" = dontDistribute super."fractal"; + "fractals" = dontDistribute super."fractals"; + "fraction" = dontDistribute super."fraction"; + "frag" = dontDistribute super."frag"; + "frame" = dontDistribute super."frame"; + "frame-markdown" = dontDistribute super."frame-markdown"; + "franchise" = dontDistribute super."franchise"; + "free-concurrent" = dontDistribute super."free-concurrent"; + "free-functors" = dontDistribute super."free-functors"; + "free-game" = dontDistribute super."free-game"; + "free-http" = dontDistribute super."free-http"; + "free-operational" = dontDistribute super."free-operational"; + "free-theorems" = dontDistribute super."free-theorems"; + "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples"; + "free-theorems-seq" = dontDistribute super."free-theorems-seq"; + "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui"; + "free-theorems-webui" = dontDistribute super."free-theorems-webui"; + "free-vl" = dontDistribute super."free-vl"; + "freekick2" = dontDistribute super."freekick2"; + "freer" = dontDistribute super."freer"; + "freesect" = dontDistribute super."freesect"; + "freesound" = dontDistribute super."freesound"; + "freetype-simple" = dontDistribute super."freetype-simple"; + "freetype2" = dontDistribute super."freetype2"; + "fresh" = dontDistribute super."fresh"; + "friday" = dontDistribute super."friday"; + "friday-devil" = dontDistribute super."friday-devil"; + "friday-juicypixels" = dontDistribute super."friday-juicypixels"; + "friday-scale-dct" = dontDistribute super."friday-scale-dct"; + "friendly-time" = dontDistribute super."friendly-time"; + "frown" = dontDistribute super."frown"; + "frp-arduino" = dontDistribute super."frp-arduino"; + "frpnow" = dontDistribute super."frpnow"; + "frpnow-gloss" = dontDistribute super."frpnow-gloss"; + "frpnow-gtk" = dontDistribute super."frpnow-gtk"; + "frquotes" = dontDistribute super."frquotes"; + "fs-events" = dontDistribute super."fs-events"; + "fsharp" = dontDistribute super."fsharp"; + "fsmActions" = dontDistribute super."fsmActions"; + "fst" = dontDistribute super."fst"; + "fsutils" = dontDistribute super."fsutils"; + "fswatcher" = dontDistribute super."fswatcher"; + "ftdi" = dontDistribute super."ftdi"; + "ftp-conduit" = dontDistribute super."ftp-conduit"; + "ftphs" = dontDistribute super."ftphs"; + "ftree" = dontDistribute super."ftree"; + "ftshell" = dontDistribute super."ftshell"; + "fugue" = dontDistribute super."fugue"; + "full-sessions" = dontDistribute super."full-sessions"; + "full-text-search" = dontDistribute super."full-text-search"; + "fullstop" = dontDistribute super."fullstop"; + "funbot" = dontDistribute super."funbot"; + "funbot-client" = dontDistribute super."funbot-client"; + "funbot-ext-events" = dontDistribute super."funbot-ext-events"; + "funbot-git-hook" = dontDistribute super."funbot-git-hook"; + "funcons-tools" = dontDistribute super."funcons-tools"; + "function-combine" = dontDistribute super."function-combine"; + "function-instances-algebra" = dontDistribute super."function-instances-algebra"; + "functional-arrow" = dontDistribute super."functional-arrow"; + "functional-kmp" = dontDistribute super."functional-kmp"; + "functor-apply" = dontDistribute super."functor-apply"; + "functor-combo" = dontDistribute super."functor-combo"; + "functor-infix" = dontDistribute super."functor-infix"; + "functor-monadic" = dontDistribute super."functor-monadic"; + "functor-utils" = dontDistribute super."functor-utils"; + "functorm" = dontDistribute super."functorm"; + "functors" = dontDistribute super."functors"; + "funion" = dontDistribute super."funion"; + "funpat" = dontDistribute super."funpat"; + "funsat" = dontDistribute super."funsat"; + "fusion" = dontDistribute super."fusion"; + "futun" = dontDistribute super."futun"; + "future" = dontDistribute super."future"; + "future-resource" = dontDistribute super."future-resource"; + "fuzzy" = dontDistribute super."fuzzy"; + "fuzzy-timings" = dontDistribute super."fuzzy-timings"; + "fuzzytime" = dontDistribute super."fuzzytime"; + "fwgl" = dontDistribute super."fwgl"; + "fwgl-glfw" = dontDistribute super."fwgl-glfw"; + "fwgl-javascript" = dontDistribute super."fwgl-javascript"; + "g-npm" = dontDistribute super."g-npm"; + "gact" = dontDistribute super."gact"; + "game-of-life" = dontDistribute super."game-of-life"; + "game-probability" = dontDistribute super."game-probability"; + "game-tree" = dontDistribute super."game-tree"; + "gameclock" = dontDistribute super."gameclock"; + "gamma" = dontDistribute super."gamma"; + "gang-of-threads" = dontDistribute super."gang-of-threads"; + "garepinoh" = dontDistribute super."garepinoh"; + "garsia-wachs" = dontDistribute super."garsia-wachs"; + "gbu" = dontDistribute super."gbu"; + "gc" = dontDistribute super."gc"; + "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai"; + "gconf" = dontDistribute super."gconf"; + "gdiff" = dontDistribute super."gdiff"; + "gdiff-ig" = dontDistribute super."gdiff-ig"; + "gdiff-th" = dontDistribute super."gdiff-th"; + "gdo" = dontDistribute super."gdo"; + "gearbox" = dontDistribute super."gearbox"; + "geek" = dontDistribute super."geek"; + "geek-server" = dontDistribute super."geek-server"; + "gelatin" = dontDistribute super."gelatin"; + "gemstone" = dontDistribute super."gemstone"; + "gencheck" = dontDistribute super."gencheck"; + "gender" = dontDistribute super."gender"; + "genders" = dontDistribute super."genders"; + "general-prelude" = dontDistribute super."general-prelude"; + "generator" = dontDistribute super."generator"; + "generators" = dontDistribute super."generators"; + "generic-accessors" = dontDistribute super."generic-accessors"; + "generic-binary" = dontDistribute super."generic-binary"; + "generic-church" = dontDistribute super."generic-church"; + "generic-deepseq" = dontDistribute super."generic-deepseq"; + "generic-deriving" = doDistribute super."generic-deriving_1_9_0"; + "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "generic-server" = dontDistribute super."generic-server"; + "generic-storable" = dontDistribute super."generic-storable"; + "generic-tree" = dontDistribute super."generic-tree"; + "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; + "genericserialize" = dontDistribute super."genericserialize"; + "genetics" = dontDistribute super."genetics"; + "geni-gui" = dontDistribute super."geni-gui"; + "geni-util" = dontDistribute super."geni-util"; + "geniconvert" = dontDistribute super."geniconvert"; + "genifunctors" = dontDistribute super."genifunctors"; + "geniplate" = dontDistribute super."geniplate"; + "geniserver" = dontDistribute super."geniserver"; + "genprog" = dontDistribute super."genprog"; + "gentlemark" = dontDistribute super."gentlemark"; + "geo-resolver" = dontDistribute super."geo-resolver"; + "geo-uk" = dontDistribute super."geo-uk"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geom2d" = dontDistribute super."geom2d"; + "getemx" = dontDistribute super."getemx"; + "getflag" = dontDistribute super."getflag"; + "getopt-simple" = dontDistribute super."getopt-simple"; + "gf" = dontDistribute super."gf"; + "ggtsTC" = dontDistribute super."ggtsTC"; + "ghc-core" = dontDistribute super."ghc-core"; + "ghc-core-html" = dontDistribute super."ghc-core-html"; + "ghc-datasize" = dontDistribute super."ghc-datasize"; + "ghc-dump-tree" = dontDistribute super."ghc-dump-tree"; + "ghc-dup" = dontDistribute super."ghc-dup"; + "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; + "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; + "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-imported-from" = dontDistribute super."ghc-imported-from"; + "ghc-make" = dontDistribute super."ghc-make"; + "ghc-man-completion" = dontDistribute super."ghc-man-completion"; + "ghc-options" = dontDistribute super."ghc-options"; + "ghc-parmake" = dontDistribute super."ghc-parmake"; + "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; + "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; + "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; + "ghc-server" = dontDistribute super."ghc-server"; + "ghc-simple" = dontDistribute super."ghc-simple"; + "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; + "ghc-syb" = dontDistribute super."ghc-syb"; + "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-vis" = dontDistribute super."ghc-vis"; + "ghci-diagrams" = dontDistribute super."ghci-diagrams"; + "ghci-haskeline" = dontDistribute super."ghci-haskeline"; + "ghci-lib" = dontDistribute super."ghci-lib"; + "ghci-ng" = dontDistribute super."ghci-ng"; + "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; + "ghcjs-dom" = dontDistribute super."ghcjs-dom"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gi-atk" = dontDistribute super."gi-atk"; + "gi-cairo" = dontDistribute super."gi-cairo"; + "gi-gdk" = dontDistribute super."gi-gdk"; + "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf"; + "gi-gio" = dontDistribute super."gi-gio"; + "gi-girepository" = dontDistribute super."gi-girepository"; + "gi-glib" = dontDistribute super."gi-glib"; + "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gtk" = dontDistribute super."gi-gtk"; + "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; + "gi-notify" = dontDistribute super."gi-notify"; + "gi-pango" = dontDistribute super."gi-pango"; + "gi-poppler" = dontDistribute super."gi-poppler"; + "gi-soup" = dontDistribute super."gi-soup"; + "gi-vte" = dontDistribute super."gi-vte"; + "gi-webkit" = dontDistribute super."gi-webkit"; + "gi-webkit2" = dontDistribute super."gi-webkit2"; + "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "gimlh" = dontDistribute super."gimlh"; + "ginger" = dontDistribute super."ginger"; + "ginsu" = dontDistribute super."ginsu"; + "giphy-api" = dontDistribute super."giphy-api"; + "gist" = dontDistribute super."gist"; + "git-all" = dontDistribute super."git-all"; + "git-annex" = doDistribute super."git-annex_6_20160114"; + "git-checklist" = dontDistribute super."git-checklist"; + "git-date" = dontDistribute super."git-date"; + "git-embed" = dontDistribute super."git-embed"; + "git-freq" = dontDistribute super."git-freq"; + "git-gpush" = dontDistribute super."git-gpush"; + "git-jump" = dontDistribute super."git-jump"; + "git-monitor" = dontDistribute super."git-monitor"; + "git-object" = dontDistribute super."git-object"; + "git-repair" = dontDistribute super."git-repair"; + "git-sanity" = dontDistribute super."git-sanity"; + "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; + "gitcache" = dontDistribute super."gitcache"; + "gitdo" = dontDistribute super."gitdo"; + "github-backup" = dontDistribute super."github-backup"; + "github-post-receive" = dontDistribute super."github-post-receive"; + "github-utils" = dontDistribute super."github-utils"; + "gitignore" = dontDistribute super."gitignore"; + "gitit" = dontDistribute super."gitit"; + "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; + "gitlib-cross" = dontDistribute super."gitlib-cross"; + "gitlib-s3" = dontDistribute super."gitlib-s3"; + "gitlib-sample" = dontDistribute super."gitlib-sample"; + "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; + "gl-capture" = dontDistribute super."gl-capture"; + "glade" = dontDistribute super."glade"; + "gladexml-accessor" = dontDistribute super."gladexml-accessor"; + "glambda" = dontDistribute super."glambda"; + "glapp" = dontDistribute super."glapp"; + "glasso" = dontDistribute super."glasso"; + "glicko" = dontDistribute super."glicko"; + "glider-nlp" = dontDistribute super."glider-nlp"; + "glintcollider" = dontDistribute super."glintcollider"; + "gll" = dontDistribute super."gll"; + "global" = dontDistribute super."global"; + "global-config" = dontDistribute super."global-config"; + "global-lock" = dontDistribute super."global-lock"; + "global-variables" = dontDistribute super."global-variables"; + "glome-hs" = dontDistribute super."glome-hs"; + "gloss" = dontDistribute super."gloss"; + "gloss-accelerate" = dontDistribute super."gloss-accelerate"; + "gloss-algorithms" = dontDistribute super."gloss-algorithms"; + "gloss-banana" = dontDistribute super."gloss-banana"; + "gloss-devil" = dontDistribute super."gloss-devil"; + "gloss-examples" = dontDistribute super."gloss-examples"; + "gloss-game" = dontDistribute super."gloss-game"; + "gloss-juicy" = dontDistribute super."gloss-juicy"; + "gloss-raster" = dontDistribute super."gloss-raster"; + "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate"; + "gloss-rendering" = dontDistribute super."gloss-rendering"; + "gloss-sodium" = dontDistribute super."gloss-sodium"; + "glpk-hs" = dontDistribute super."glpk-hs"; + "glue" = dontDistribute super."glue"; + "glue-common" = dontDistribute super."glue-common"; + "glue-core" = dontDistribute super."glue-core"; + "glue-ekg" = dontDistribute super."glue-ekg"; + "glue-example" = dontDistribute super."glue-example"; + "gluturtle" = dontDistribute super."gluturtle"; + "gmap" = dontDistribute super."gmap"; + "gmndl" = dontDistribute super."gmndl"; + "gnome-desktop" = dontDistribute super."gnome-desktop"; + "gnome-keyring" = dontDistribute super."gnome-keyring"; + "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gogol" = dontDistribute super."gogol"; + "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer"; + "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller"; + "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer"; + "gogol-admin-directory" = dontDistribute super."gogol-admin-directory"; + "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration"; + "gogol-admin-reports" = dontDistribute super."gogol-admin-reports"; + "gogol-adsense" = dontDistribute super."gogol-adsense"; + "gogol-adsense-host" = dontDistribute super."gogol-adsense-host"; + "gogol-affiliates" = dontDistribute super."gogol-affiliates"; + "gogol-analytics" = dontDistribute super."gogol-analytics"; + "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise"; + "gogol-android-publisher" = dontDistribute super."gogol-android-publisher"; + "gogol-appengine" = dontDistribute super."gogol-appengine"; + "gogol-apps-activity" = dontDistribute super."gogol-apps-activity"; + "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar"; + "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing"; + "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller"; + "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks"; + "gogol-appstate" = dontDistribute super."gogol-appstate"; + "gogol-autoscaler" = dontDistribute super."gogol-autoscaler"; + "gogol-bigquery" = dontDistribute super."gogol-bigquery"; + "gogol-billing" = dontDistribute super."gogol-billing"; + "gogol-blogger" = dontDistribute super."gogol-blogger"; + "gogol-books" = dontDistribute super."gogol-books"; + "gogol-civicinfo" = dontDistribute super."gogol-civicinfo"; + "gogol-classroom" = dontDistribute super."gogol-classroom"; + "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-dictionary" = dontDistribute super."google-dictionary"; + "google-drive" = dontDistribute super."google-drive"; + "google-html5-slide" = dontDistribute super."google-html5-slide"; + "google-mail-filters" = dontDistribute super."google-mail-filters"; + "google-oauth2" = dontDistribute super."google-oauth2"; + "google-search" = dontDistribute super."google-search"; + "googleplus" = dontDistribute super."googleplus"; + "googlepolyline" = dontDistribute super."googlepolyline"; + "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; + "gpah" = dontDistribute super."gpah"; + "gpcsets" = dontDistribute super."gpcsets"; + "gpolyline" = dontDistribute super."gpolyline"; + "gps" = dontDistribute super."gps"; + "gps2htmlReport" = dontDistribute super."gps2htmlReport"; + "gpx-conduit" = dontDistribute super."gpx-conduit"; + "graceful" = dontDistribute super."graceful"; + "grammar-combinators" = dontDistribute super."grammar-combinators"; + "grapefruit-examples" = dontDistribute super."grapefruit-examples"; + "grapefruit-frp" = dontDistribute super."grapefruit-frp"; + "grapefruit-records" = dontDistribute super."grapefruit-records"; + "grapefruit-ui" = dontDistribute super."grapefruit-ui"; + "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk"; + "graph-core" = doDistribute super."graph-core_0_2_2_0"; + "graph-generators" = dontDistribute super."graph-generators"; + "graph-matchings" = dontDistribute super."graph-matchings"; + "graph-rewriting" = dontDistribute super."graph-rewriting"; + "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl"; + "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl"; + "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope"; + "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout"; + "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski"; + "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies"; + "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs"; + "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww"; + "graph-serialize" = dontDistribute super."graph-serialize"; + "graph-utils" = dontDistribute super."graph-utils"; + "graph-visit" = dontDistribute super."graph-visit"; + "graphbuilder" = dontDistribute super."graphbuilder"; + "graphene" = dontDistribute super."graphene"; + "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators"; + "graphics-formats-collada" = dontDistribute super."graphics-formats-collada"; + "graphicsFormats" = dontDistribute super."graphicsFormats"; + "graphicstools" = dontDistribute super."graphicstools"; + "graphmod" = dontDistribute super."graphmod"; + "graphql" = dontDistribute super."graphql"; + "graphtype" = dontDistribute super."graphtype"; + "grasp" = dontDistribute super."grasp"; + "gray-code" = dontDistribute super."gray-code"; + "gray-extended" = dontDistribute super."gray-extended"; + "graylog" = dontDistribute super."graylog"; + "greencard" = dontDistribute super."greencard"; + "greencard-lib" = dontDistribute super."greencard-lib"; + "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; + "greplicate" = dontDistribute super."greplicate"; + "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; + "gridland" = dontDistribute super."gridland"; + "grm" = dontDistribute super."grm"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; + "groundhog-inspector" = dontDistribute super."groundhog-inspector"; + "group-with" = dontDistribute super."group-with"; + "groupoid" = dontDistribute super."groupoid"; + "gruff" = dontDistribute super."gruff"; + "gruff-examples" = dontDistribute super."gruff-examples"; + "gsc-weighting" = dontDistribute super."gsc-weighting"; + "gsl-random" = dontDistribute super."gsl-random"; + "gsl-random-fu" = dontDistribute super."gsl-random-fu"; + "gsmenu" = dontDistribute super."gsmenu"; + "gstreamer" = dontDistribute super."gstreamer"; + "gt-tools" = dontDistribute super."gt-tools"; + "gtfs" = dontDistribute super."gtfs"; + "gtk-helpers" = dontDistribute super."gtk-helpers"; + "gtk-jsinput" = dontDistribute super."gtk-jsinput"; + "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; + "gtk-mac-integration" = dontDistribute super."gtk-mac-integration"; + "gtk-serialized-event" = dontDistribute super."gtk-serialized-event"; + "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view"; + "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list"; + "gtk-toy" = dontDistribute super."gtk-toy"; + "gtk-traymanager" = dontDistribute super."gtk-traymanager"; + "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade"; + "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib"; + "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs"; + "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk"; + "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext"; + "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2"; + "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; + "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; + "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; + "gtkglext" = dontDistribute super."gtkglext"; + "gtkimageview" = dontDistribute super."gtkimageview"; + "gtkrsync" = dontDistribute super."gtkrsync"; + "gtksourceview2" = dontDistribute super."gtksourceview2"; + "gtksourceview3" = dontDistribute super."gtksourceview3"; + "guarded-rewriting" = dontDistribute super."guarded-rewriting"; + "guess-combinator" = dontDistribute super."guess-combinator"; + "gulcii" = dontDistribute super."gulcii"; + "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis"; + "gyah-bin" = dontDistribute super."gyah-bin"; + "h-booru" = dontDistribute super."h-booru"; + "h-gpgme" = dontDistribute super."h-gpgme"; + "h2048" = dontDistribute super."h2048"; + "hArduino" = dontDistribute super."hArduino"; + "hBDD" = dontDistribute super."hBDD"; + "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD"; + "hBDD-CUDD" = dontDistribute super."hBDD-CUDD"; + "hCsound" = dontDistribute super."hCsound"; + "hDFA" = dontDistribute super."hDFA"; + "hF2" = dontDistribute super."hF2"; + "hGelf" = dontDistribute super."hGelf"; + "hLLVM" = dontDistribute super."hLLVM"; + "hMollom" = dontDistribute super."hMollom"; + "hPDB-examples" = dontDistribute super."hPDB-examples"; + "hPushover" = dontDistribute super."hPushover"; + "hR" = dontDistribute super."hR"; + "hRESP" = dontDistribute super."hRESP"; + "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; + "hSimpleDB" = dontDistribute super."hSimpleDB"; + "hTalos" = dontDistribute super."hTalos"; + "hTensor" = dontDistribute super."hTensor"; + "hVOIDP" = dontDistribute super."hVOIDP"; + "hXmixer" = dontDistribute super."hXmixer"; + "haar" = dontDistribute super."haar"; + "hacanon-light" = dontDistribute super."hacanon-light"; + "hack" = dontDistribute super."hack"; + "hack-contrib" = dontDistribute super."hack-contrib"; + "hack-contrib-press" = dontDistribute super."hack-contrib-press"; + "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack"; + "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi"; + "hack-handler-cgi" = dontDistribute super."hack-handler-cgi"; + "hack-handler-epoll" = dontDistribute super."hack-handler-epoll"; + "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp"; + "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi"; + "hack-handler-happstack" = dontDistribute super."hack-handler-happstack"; + "hack-handler-hyena" = dontDistribute super."hack-handler-hyena"; + "hack-handler-kibro" = dontDistribute super."hack-handler-kibro"; + "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver"; + "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath"; + "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession"; + "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip"; + "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp"; + "hack2" = dontDistribute super."hack2"; + "hack2-contrib" = dontDistribute super."hack2-contrib"; + "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra"; + "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server"; + "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http"; + "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server"; + "hack2-handler-warp" = dontDistribute super."hack2-handler-warp"; + "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; + "hackage-diff" = dontDistribute super."hackage-diff"; + "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-proxy" = dontDistribute super."hackage-proxy"; + "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; + "hackage-security" = dontDistribute super."hackage-security"; + "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; + "hackage-server" = dontDistribute super."hackage-server"; + "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage2hwn" = dontDistribute super."hackage2hwn"; + "hackage2twitter" = dontDistribute super."hackage2twitter"; + "hackager" = dontDistribute super."hackager"; + "hackernews" = dontDistribute super."hackernews"; + "hackertyper" = dontDistribute super."hackertyper"; + "hackport" = dontDistribute super."hackport"; + "hactor" = dontDistribute super."hactor"; + "hactors" = dontDistribute super."hactors"; + "haddock" = dontDistribute super."haddock"; + "haddock-leksah" = dontDistribute super."haddock-leksah"; + "hadoop-formats" = dontDistribute super."hadoop-formats"; + "hadoop-rpc" = dontDistribute super."hadoop-rpc"; + "hadoop-tools" = dontDistribute super."hadoop-tools"; + "haeredes" = dontDistribute super."haeredes"; + "haggis" = dontDistribute super."haggis"; + "haha" = dontDistribute super."haha"; + "hahp" = dontDistribute super."hahp"; + "haiji" = dontDistribute super."haiji"; + "hailgun" = dontDistribute super."hailgun"; + "hailgun-send" = dontDistribute super."hailgun-send"; + "hails" = dontDistribute super."hails"; + "hails-bin" = dontDistribute super."hails-bin"; + "hairy" = dontDistribute super."hairy"; + "hakaru" = dontDistribute super."hakaru"; + "hake" = dontDistribute super."hake"; + "hakismet" = dontDistribute super."hakismet"; + "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; + "hakyll-R" = dontDistribute super."hakyll-R"; + "hakyll-agda" = dontDistribute super."hakyll-agda"; + "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; + "hakyll-contrib" = dontDistribute super."hakyll-contrib"; + "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation"; + "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; + "hakyll-convert" = dontDistribute super."hakyll-convert"; + "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; + "hakyll-sass" = dontDistribute super."hakyll-sass"; + "halberd" = dontDistribute super."halberd"; + "halfs" = dontDistribute super."halfs"; + "halipeto" = dontDistribute super."halipeto"; + "halive" = dontDistribute super."halive"; + "halma" = dontDistribute super."halma"; + "haltavista" = dontDistribute super."haltavista"; + "hamid" = dontDistribute super."hamid"; + "hampp" = dontDistribute super."hampp"; + "hamtmap" = dontDistribute super."hamtmap"; + "hamusic" = dontDistribute super."hamusic"; + "handa-gdata" = dontDistribute super."handa-gdata"; + "handa-geodata" = dontDistribute super."handa-geodata"; + "handa-opengl" = dontDistribute super."handa-opengl"; + "handle-like" = dontDistribute super."handle-like"; + "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; + "hangman" = dontDistribute super."hangman"; + "hannahci" = dontDistribute super."hannahci"; + "hans" = dontDistribute super."hans"; + "hans-pcap" = dontDistribute super."hans-pcap"; + "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; + "happindicator" = dontDistribute super."happindicator"; + "happindicator3" = dontDistribute super."happindicator3"; + "happraise" = dontDistribute super."happraise"; + "happs-hsp" = dontDistribute super."happs-hsp"; + "happs-hsp-template" = dontDistribute super."happs-hsp-template"; + "happs-tutorial" = dontDistribute super."happs-tutorial"; + "happstack" = dontDistribute super."happstack"; + "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = doDistribute super."happstack-authenticate_2_3_4"; + "happstack-contrib" = dontDistribute super."happstack-contrib"; + "happstack-data" = dontDistribute super."happstack-data"; + "happstack-dlg" = dontDistribute super."happstack-dlg"; + "happstack-facebook" = dontDistribute super."happstack-facebook"; + "happstack-fastcgi" = dontDistribute super."happstack-fastcgi"; + "happstack-fay" = dontDistribute super."happstack-fay"; + "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax"; + "happstack-foundation" = dontDistribute super."happstack-foundation"; + "happstack-hamlet" = dontDistribute super."happstack-hamlet"; + "happstack-heist" = dontDistribute super."happstack-heist"; + "happstack-helpers" = dontDistribute super."happstack-helpers"; + "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate"; + "happstack-ixset" = dontDistribute super."happstack-ixset"; + "happstack-lite" = dontDistribute super."happstack-lite"; + "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; + "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; + "happstack-state" = dontDistribute super."happstack-state"; + "happstack-static-routing" = dontDistribute super."happstack-static-routing"; + "happstack-util" = dontDistribute super."happstack-util"; + "happstack-yui" = dontDistribute super."happstack-yui"; + "happy-meta" = dontDistribute super."happy-meta"; + "happybara" = dontDistribute super."happybara"; + "happybara-webkit" = dontDistribute super."happybara-webkit"; + "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "har" = dontDistribute super."har"; + "harchive" = dontDistribute super."harchive"; + "hardware-edsl" = dontDistribute super."hardware-edsl"; + "hark" = dontDistribute super."hark"; + "harmony" = dontDistribute super."harmony"; + "haroonga" = dontDistribute super."haroonga"; + "haroonga-httpd" = dontDistribute super."haroonga-httpd"; + "harpy" = dontDistribute super."harpy"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "hascat" = dontDistribute super."hascat"; + "hascat-lib" = dontDistribute super."hascat-lib"; + "hascat-setup" = dontDistribute super."hascat-setup"; + "hascat-system" = dontDistribute super."hascat-system"; + "hash" = dontDistribute super."hash"; + "hashable-generics" = dontDistribute super."hashable-generics"; + "hashabler" = dontDistribute super."hashabler"; + "hashed-storage" = dontDistribute super."hashed-storage"; + "hashids" = dontDistribute super."hashids"; + "hashring" = dontDistribute super."hashring"; + "hashtables-plus" = dontDistribute super."hashtables-plus"; + "hasim" = dontDistribute super."hasim"; + "hask" = dontDistribute super."hask"; + "hask-home" = dontDistribute super."hask-home"; + "haskades" = dontDistribute super."haskades"; + "haskakafka" = dontDistribute super."haskakafka"; + "haskanoid" = dontDistribute super."haskanoid"; + "haskarrow" = dontDistribute super."haskarrow"; + "haskbot-core" = dontDistribute super."haskbot-core"; + "haskdeep" = dontDistribute super."haskdeep"; + "haskdogs" = dontDistribute super."haskdogs"; + "haskeem" = dontDistribute super."haskeem"; + "haskeline" = doDistribute super."haskeline_0_7_2_2"; + "haskeline-class" = dontDistribute super."haskeline-class"; + "haskell-aliyun" = dontDistribute super."haskell-aliyun"; + "haskell-awk" = dontDistribute super."haskell-awk"; + "haskell-bcrypt" = dontDistribute super."haskell-bcrypt"; + "haskell-brainfuck" = dontDistribute super."haskell-brainfuck"; + "haskell-cnc" = dontDistribute super."haskell-cnc"; + "haskell-coffee" = dontDistribute super."haskell-coffee"; + "haskell-compression" = dontDistribute super."haskell-compression"; + "haskell-course-preludes" = dontDistribute super."haskell-course-preludes"; + "haskell-docs" = dontDistribute super."haskell-docs"; + "haskell-exp-parser" = dontDistribute super."haskell-exp-parser"; + "haskell-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-gi" = dontDistribute super."haskell-gi"; + "haskell-gi-base" = dontDistribute super."haskell-gi-base"; + "haskell-import-graph" = dontDistribute super."haskell-import-graph"; + "haskell-in-space" = dontDistribute super."haskell-in-space"; + "haskell-kubernetes" = dontDistribute super."haskell-kubernetes"; + "haskell-modbus" = dontDistribute super."haskell-modbus"; + "haskell-mpfr" = dontDistribute super."haskell-mpfr"; + "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = dontDistribute super."haskell-names"; + "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; + "haskell-platform-test" = dontDistribute super."haskell-platform-test"; + "haskell-plot" = dontDistribute super."haskell-plot"; + "haskell-qrencode" = dontDistribute super."haskell-qrencode"; + "haskell-read-editor" = dontDistribute super."haskell-read-editor"; + "haskell-reflect" = dontDistribute super."haskell-reflect"; + "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; + "haskell-token-utils" = dontDistribute super."haskell-token-utils"; + "haskell-tor" = dontDistribute super."haskell-tor"; + "haskell-type-exts" = dontDistribute super."haskell-type-exts"; + "haskell-typescript" = dontDistribute super."haskell-typescript"; + "haskell-tyrant" = dontDistribute super."haskell-tyrant"; + "haskell-updater" = dontDistribute super."haskell-updater"; + "haskell-xmpp" = dontDistribute super."haskell-xmpp"; + "haskell2010" = dontDistribute super."haskell2010"; + "haskell98" = dontDistribute super."haskell98"; + "haskell98libraries" = dontDistribute super."haskell98libraries"; + "haskelldb" = dontDistribute super."haskelldb"; + "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc"; + "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl"; + "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf"; + "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers"; + "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted"; + "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic"; + "haskelldb-flat" = dontDistribute super."haskelldb-flat"; + "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc"; + "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql"; + "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc"; + "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql"; + "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3"; + "haskelldb-hsql" = dontDistribute super."haskelldb-hsql"; + "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql"; + "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc"; + "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle"; + "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql"; + "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite"; + "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3"; + "haskelldb-th" = dontDistribute super."haskelldb-th"; + "haskelldb-wx" = dontDistribute super."haskelldb-wx"; + "haskellscrabble" = dontDistribute super."haskellscrabble"; + "haskellscript" = dontDistribute super."haskellscript"; + "haskelm" = dontDistribute super."haskelm"; + "haskgame" = dontDistribute super."haskgame"; + "haskheap" = dontDistribute super."haskheap"; + "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_6_0_0"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-core" = dontDistribute super."haskoin-core"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-node" = dontDistribute super."haskoin-node"; + "haskoin-protocol" = dontDistribute super."haskoin-protocol"; + "haskoin-script" = dontDistribute super."haskoin-script"; + "haskoin-util" = dontDistribute super."haskoin-util"; + "haskoin-wallet" = dontDistribute super."haskoin-wallet"; + "haskoon" = dontDistribute super."haskoon"; + "haskoon-httpspec" = dontDistribute super."haskoon-httpspec"; + "haskoon-salvia" = dontDistribute super."haskoon-salvia"; + "haskore" = dontDistribute super."haskore"; + "haskore-realtime" = dontDistribute super."haskore-realtime"; + "haskore-supercollider" = dontDistribute super."haskore-supercollider"; + "haskore-synthesizer" = dontDistribute super."haskore-synthesizer"; + "haskore-vintage" = dontDistribute super."haskore-vintage"; + "hasktags" = dontDistribute super."hasktags"; + "haslo" = dontDistribute super."haslo"; + "hasloGUI" = dontDistribute super."hasloGUI"; + "hasparql-client" = dontDistribute super."hasparql-client"; + "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_19_6"; + "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative"; + "hasql-pool" = dontDistribute super."hasql-pool"; + "hasql-postgres" = dontDistribute super."hasql-postgres"; + "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; + "hasql-th" = dontDistribute super."hasql-th"; + "hasql-transaction" = dontDistribute super."hasql-transaction"; + "hastache-aeson" = dontDistribute super."hastache-aeson"; + "haste" = dontDistribute super."haste"; + "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-markup" = dontDistribute super."haste-markup"; + "haste-perch" = dontDistribute super."haste-perch"; + "hastily" = dontDistribute super."hastily"; + "hat" = dontDistribute super."hat"; + "hatex-guide" = dontDistribute super."hatex-guide"; + "hath" = dontDistribute super."hath"; + "hatt" = dontDistribute super."hatt"; + "haverer" = dontDistribute super."haverer"; + "hawitter" = dontDistribute super."hawitter"; + "haxl-amazonka" = dontDistribute super."haxl-amazonka"; + "haxl-facebook" = dontDistribute super."haxl-facebook"; + "haxparse" = dontDistribute super."haxparse"; + "haxr" = doDistribute super."haxr_3000_11_1_3"; + "haxr-th" = dontDistribute super."haxr-th"; + "haxy" = dontDistribute super."haxy"; + "hayland" = dontDistribute super."hayland"; + "hayoo-cli" = dontDistribute super."hayoo-cli"; + "hback" = dontDistribute super."hback"; + "hbayes" = dontDistribute super."hbayes"; + "hbb" = dontDistribute super."hbb"; + "hbcd" = dontDistribute super."hbcd"; + "hbeat" = dontDistribute super."hbeat"; + "hblas" = dontDistribute super."hblas"; + "hblock" = dontDistribute super."hblock"; + "hbro" = dontDistribute super."hbro"; + "hbro-contrib" = dontDistribute super."hbro-contrib"; + "hburg" = dontDistribute super."hburg"; + "hcc" = dontDistribute super."hcc"; + "hcg-minus" = dontDistribute super."hcg-minus"; + "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo"; + "hcheat" = dontDistribute super."hcheat"; + "hchesslib" = dontDistribute super."hchesslib"; + "hcltest" = dontDistribute super."hcltest"; + "hcoap" = dontDistribute super."hcoap"; + "hcron" = dontDistribute super."hcron"; + "hcube" = dontDistribute super."hcube"; + "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; + "hdbc-aeson" = dontDistribute super."hdbc-aeson"; + "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; + "hdbc-tuple" = dontDistribute super."hdbc-tuple"; + "hdbi" = dontDistribute super."hdbi"; + "hdbi-conduit" = dontDistribute super."hdbi-conduit"; + "hdbi-postgresql" = dontDistribute super."hdbi-postgresql"; + "hdbi-sqlite" = dontDistribute super."hdbi-sqlite"; + "hdbi-tests" = dontDistribute super."hdbi-tests"; + "hdf" = dontDistribute super."hdf"; + "hdigest" = dontDistribute super."hdigest"; + "hdirect" = dontDistribute super."hdirect"; + "hdis86" = dontDistribute super."hdis86"; + "hdiscount" = dontDistribute super."hdiscount"; + "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; + "hdph" = dontDistribute super."hdph"; + "hdph-closure" = dontDistribute super."hdph-closure"; + "hdr-histogram" = dontDistribute super."hdr-histogram"; + "headergen" = dontDistribute super."headergen"; + "heapsort" = dontDistribute super."heapsort"; + "hecc" = dontDistribute super."hecc"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-pile" = dontDistribute super."hedis-pile"; + "hedis-simple" = dontDistribute super."hedis-simple"; + "hedis-tags" = dontDistribute super."hedis-tags"; + "hedn" = dontDistribute super."hedn"; + "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; + "heist-aeson" = dontDistribute super."heist-aeson"; + "heist-async" = dontDistribute super."heist-async"; + "helics" = dontDistribute super."helics"; + "helics-wai" = dontDistribute super."helics-wai"; + "helisp" = dontDistribute super."helisp"; + "helium" = dontDistribute super."helium"; + "helix" = dontDistribute super."helix"; + "hell" = dontDistribute super."hell"; + "hellage" = dontDistribute super."hellage"; + "hellnet" = dontDistribute super."hellnet"; + "hello" = dontDistribute super."hello"; + "helm" = dontDistribute super."helm"; + "help-esb" = dontDistribute super."help-esb"; + "hemkay" = dontDistribute super."hemkay"; + "hemkay-core" = dontDistribute super."hemkay-core"; + "hemokit" = dontDistribute super."hemokit"; + "hen" = dontDistribute super."hen"; + "henet" = dontDistribute super."henet"; + "hepevt" = dontDistribute super."hepevt"; + "her-lexer" = dontDistribute super."her-lexer"; + "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; + "herbalizer" = dontDistribute super."herbalizer"; + "herf-time" = dontDistribute super."herf-time"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets"; + "heroku" = dontDistribute super."heroku"; + "heroku-persistent" = dontDistribute super."heroku-persistent"; + "herringbone" = dontDistribute super."herringbone"; + "herringbone-embed" = dontDistribute super."herringbone-embed"; + "herringbone-wai" = dontDistribute super."herringbone-wai"; + "hesh" = dontDistribute super."hesh"; + "hesql" = dontDistribute super."hesql"; + "hetero-map" = dontDistribute super."hetero-map"; + "hetris" = dontDistribute super."hetris"; + "heukarya" = dontDistribute super."heukarya"; + "hevolisa" = dontDistribute super."hevolisa"; + "hevolisa-dph" = dontDistribute super."hevolisa-dph"; + "hexdump" = dontDistribute super."hexdump"; + "hexif" = dontDistribute super."hexif"; + "hexpat-iteratee" = dontDistribute super."hexpat-iteratee"; + "hexpat-lens" = dontDistribute super."hexpat-lens"; + "hexpat-pickle" = dontDistribute super."hexpat-pickle"; + "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic"; + "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup"; + "hexpr" = dontDistribute super."hexpr"; + "hexquote" = dontDistribute super."hexquote"; + "heyefi" = dontDistribute super."heyefi"; + "hfann" = dontDistribute super."hfann"; + "hfd" = dontDistribute super."hfd"; + "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; + "hfmt" = dontDistribute super."hfmt"; + "hfoil" = dontDistribute super."hfoil"; + "hformat" = dontDistribute super."hformat"; + "hfov" = dontDistribute super."hfov"; + "hfractal" = dontDistribute super."hfractal"; + "hfusion" = dontDistribute super."hfusion"; + "hg-buildpackage" = dontDistribute super."hg-buildpackage"; + "hgal" = dontDistribute super."hgal"; + "hgalib" = dontDistribute super."hgalib"; + "hgdbmi" = dontDistribute super."hgdbmi"; + "hgearman" = dontDistribute super."hgearman"; + "hgen" = dontDistribute super."hgen"; + "hgeometric" = dontDistribute super."hgeometric"; + "hgeometry" = dontDistribute super."hgeometry"; + "hgithub" = dontDistribute super."hgithub"; + "hgl-example" = dontDistribute super."hgl-example"; + "hgom" = dontDistribute super."hgom"; + "hgopher" = dontDistribute super."hgopher"; + "hgrev" = dontDistribute super."hgrev"; + "hgrib" = dontDistribute super."hgrib"; + "hharp" = dontDistribute super."hharp"; + "hi" = dontDistribute super."hi"; + "hi3status" = dontDistribute super."hi3status"; + "hiccup" = dontDistribute super."hiccup"; + "hichi" = dontDistribute super."hichi"; + "hieraclus" = dontDistribute super."hieraclus"; + "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; + "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions"; + "hierarchy" = dontDistribute super."hierarchy"; + "hiernotify" = dontDistribute super."hiernotify"; + "highWaterMark" = dontDistribute super."highWaterMark"; + "higher-leveldb" = dontDistribute super."higher-leveldb"; + "higherorder" = dontDistribute super."higherorder"; + "highlight-versions" = dontDistribute super."highlight-versions"; + "highlighter" = dontDistribute super."highlighter"; + "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; + "hills" = dontDistribute super."hills"; + "himerge" = dontDistribute super."himerge"; + "himg" = dontDistribute super."himg"; + "himpy" = dontDistribute super."himpy"; + "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; + "hinduce-classifier" = dontDistribute super."hinduce-classifier"; + "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; + "hinduce-examples" = dontDistribute super."hinduce-examples"; + "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinquire" = dontDistribute super."hinquire"; + "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; + "hint-server" = dontDistribute super."hint-server"; + "hinvaders" = dontDistribute super."hinvaders"; + "hinze-streams" = dontDistribute super."hinze-streams"; + "hip" = dontDistribute super."hip"; + "hipbot" = dontDistribute super."hipbot"; + "hipchat-hs" = dontDistribute super."hipchat-hs"; + "hipe" = dontDistribute super."hipe"; + "hips" = dontDistribute super."hips"; + "hircules" = dontDistribute super."hircules"; + "hirt" = dontDistribute super."hirt"; + "hissmetrics" = dontDistribute super."hissmetrics"; + "hist-pl" = dontDistribute super."hist-pl"; + "hist-pl-dawg" = dontDistribute super."hist-pl-dawg"; + "hist-pl-fusion" = dontDistribute super."hist-pl-fusion"; + "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon"; + "hist-pl-lmf" = dontDistribute super."hist-pl-lmf"; + "hist-pl-transliter" = dontDistribute super."hist-pl-transliter"; + "hist-pl-types" = dontDistribute super."hist-pl-types"; + "histogram-fill-binary" = dontDistribute super."histogram-fill-binary"; + "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal"; + "historian" = dontDistribute super."historian"; + "hjcase" = dontDistribute super."hjcase"; + "hjpath" = dontDistribute super."hjpath"; + "hjs" = dontDistribute super."hjs"; + "hjson" = dontDistribute super."hjson"; + "hjson-query" = dontDistribute super."hjson-query"; + "hjsonpointer" = dontDistribute super."hjsonpointer"; + "hjsonschema" = dontDistribute super."hjsonschema"; + "hkdf" = dontDistribute super."hkdf"; + "hlatex" = dontDistribute super."hlatex"; + "hlbfgsb" = dontDistribute super."hlbfgsb"; + "hlcm" = dontDistribute super."hlcm"; + "hleap" = dontDistribute super."hleap"; + "hledger-chart" = dontDistribute super."hledger-chart"; + "hledger-diff" = dontDistribute super."hledger-diff"; + "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlogger" = dontDistribute super."hlogger"; + "hlongurl" = dontDistribute super."hlongurl"; + "hls" = dontDistribute super."hls"; + "hlwm" = dontDistribute super."hlwm"; + "hly" = dontDistribute super."hly"; + "hmark" = dontDistribute super."hmark"; + "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-repa" = dontDistribute super."hmatrix-repa"; + "hmatrix-special" = dontDistribute super."hmatrix-special"; + "hmatrix-static" = dontDistribute super."hmatrix-static"; + "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc"; + "hmatrix-syntax" = dontDistribute super."hmatrix-syntax"; + "hmatrix-tests" = dontDistribute super."hmatrix-tests"; + "hmeap" = dontDistribute super."hmeap"; + "hmeap-utils" = dontDistribute super."hmeap-utils"; + "hmemdb" = dontDistribute super."hmemdb"; + "hmenu" = dontDistribute super."hmenu"; + "hmidi" = dontDistribute super."hmidi"; + "hmk" = dontDistribute super."hmk"; + "hmm" = dontDistribute super."hmm"; + "hmm-hmatrix" = dontDistribute super."hmm-hmatrix"; + "hmp3" = dontDistribute super."hmp3"; + "hmpfr" = dontDistribute super."hmpfr"; + "hmt" = dontDistribute super."hmt"; + "hmt-diagrams" = dontDistribute super."hmt-diagrams"; + "hmumps" = dontDistribute super."hmumps"; + "hnetcdf" = dontDistribute super."hnetcdf"; + "hnix" = dontDistribute super."hnix"; + "hnn" = dontDistribute super."hnn"; + "hnop" = dontDistribute super."hnop"; + "ho-rewriting" = dontDistribute super."ho-rewriting"; + "hoauth" = dontDistribute super."hoauth"; + "hob" = dontDistribute super."hob"; + "hobbes" = dontDistribute super."hobbes"; + "hobbits" = dontDistribute super."hobbits"; + "hoe" = dontDistribute super."hoe"; + "hofix-mtl" = dontDistribute super."hofix-mtl"; + "hog" = dontDistribute super."hog"; + "hogg" = dontDistribute super."hogg"; + "hogre" = dontDistribute super."hogre"; + "hogre-examples" = dontDistribute super."hogre-examples"; + "hois" = dontDistribute super."hois"; + "hoist-error" = dontDistribute super."hoist-error"; + "hold-em" = dontDistribute super."hold-em"; + "hole" = dontDistribute super."hole"; + "holey-format" = dontDistribute super."holey-format"; + "homeomorphic" = dontDistribute super."homeomorphic"; + "hommage" = dontDistribute super."hommage"; + "hommage-ds" = dontDistribute super."hommage-ds"; + "homplexity" = dontDistribute super."homplexity"; + "honi" = dontDistribute super."honi"; + "honk" = dontDistribute super."honk"; + "hoobuddy" = dontDistribute super."hoobuddy"; + "hood" = dontDistribute super."hood"; + "hood-off" = dontDistribute super."hood-off"; + "hood2" = dontDistribute super."hood2"; + "hoodie" = dontDistribute super."hoodie"; + "hoodle" = dontDistribute super."hoodle"; + "hoodle-builder" = dontDistribute super."hoodle-builder"; + "hoodle-core" = dontDistribute super."hoodle-core"; + "hoodle-extra" = dontDistribute super."hoodle-extra"; + "hoodle-parser" = dontDistribute super."hoodle-parser"; + "hoodle-publish" = dontDistribute super."hoodle-publish"; + "hoodle-render" = dontDistribute super."hoodle-render"; + "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle-index" = dontDistribute super."hoogle-index"; + "hooks-dir" = dontDistribute super."hooks-dir"; + "hoovie" = dontDistribute super."hoovie"; + "hopencc" = dontDistribute super."hopencc"; + "hopencl" = dontDistribute super."hopencl"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "hoppy-generator" = dontDistribute super."hoppy-generator"; + "hoppy-runtime" = dontDistribute super."hoppy-runtime"; + "hoppy-std" = dontDistribute super."hoppy-std"; + "hops" = dontDistribute super."hops"; + "hoq" = dontDistribute super."hoq"; + "horizon" = dontDistribute super."horizon"; + "hosc" = dontDistribute super."hosc"; + "hosc-json" = dontDistribute super."hosc-json"; + "hosc-utils" = dontDistribute super."hosc-utils"; + "hosts-server" = dontDistribute super."hosts-server"; + "hothasktags" = dontDistribute super."hothasktags"; + "hotswap" = dontDistribute super."hotswap"; + "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "hp2any-core" = dontDistribute super."hp2any-core"; + "hp2any-graph" = dontDistribute super."hp2any-graph"; + "hp2any-manager" = dontDistribute super."hp2any-manager"; + "hp2html" = dontDistribute super."hp2html"; + "hp2pretty" = dontDistribute super."hp2pretty"; + "hpack" = dontDistribute super."hpack"; + "hpaco" = dontDistribute super."hpaco"; + "hpaco-lib" = dontDistribute super."hpaco-lib"; + "hpage" = dontDistribute super."hpage"; + "hpapi" = dontDistribute super."hpapi"; + "hpaste" = dontDistribute super."hpaste"; + "hpasteit" = dontDistribute super."hpasteit"; + "hpc-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; + "hplayground" = dontDistribute super."hplayground"; + "hplaylist" = dontDistribute super."hplaylist"; + "hpodder" = dontDistribute super."hpodder"; + "hpp" = dontDistribute super."hpp"; + "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; + "hprotoc-fork" = dontDistribute super."hprotoc-fork"; + "hps" = dontDistribute super."hps"; + "hps-cairo" = dontDistribute super."hps-cairo"; + "hps-kmeans" = dontDistribute super."hps-kmeans"; + "hpuz" = dontDistribute super."hpuz"; + "hpygments" = dontDistribute super."hpygments"; + "hpylos" = dontDistribute super."hpylos"; + "hpyrg" = dontDistribute super."hpyrg"; + "hquantlib" = dontDistribute super."hquantlib"; + "hquery" = dontDistribute super."hquery"; + "hranker" = dontDistribute super."hranker"; + "hreader" = dontDistribute super."hreader"; + "hricket" = dontDistribute super."hricket"; + "hruby" = dontDistribute super."hruby"; + "hs-GeoIP" = dontDistribute super."hs-GeoIP"; + "hs-blake2" = dontDistribute super."hs-blake2"; + "hs-captcha" = dontDistribute super."hs-captcha"; + "hs-carbon" = dontDistribute super."hs-carbon"; + "hs-carbon-examples" = dontDistribute super."hs-carbon-examples"; + "hs-cdb" = dontDistribute super."hs-cdb"; + "hs-dotnet" = dontDistribute super."hs-dotnet"; + "hs-duktape" = dontDistribute super."hs-duktape"; + "hs-excelx" = dontDistribute super."hs-excelx"; + "hs-ffmpeg" = dontDistribute super."hs-ffmpeg"; + "hs-fltk" = dontDistribute super."hs-fltk"; + "hs-gchart" = dontDistribute super."hs-gchart"; + "hs-gen-iface" = dontDistribute super."hs-gen-iface"; + "hs-gizapp" = dontDistribute super."hs-gizapp"; + "hs-inspector" = dontDistribute super."hs-inspector"; + "hs-java" = dontDistribute super."hs-java"; + "hs-json-rpc" = dontDistribute super."hs-json-rpc"; + "hs-logo" = dontDistribute super."hs-logo"; + "hs-mesos" = dontDistribute super."hs-mesos"; + "hs-nombre-generator" = dontDistribute super."hs-nombre-generator"; + "hs-pgms" = dontDistribute super."hs-pgms"; + "hs-php-session" = dontDistribute super."hs-php-session"; + "hs-pkg-config" = dontDistribute super."hs-pkg-config"; + "hs-pkpass" = dontDistribute super."hs-pkpass"; + "hs-re" = dontDistribute super."hs-re"; + "hs-scrape" = dontDistribute super."hs-scrape"; + "hs-twitter" = dontDistribute super."hs-twitter"; + "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver"; + "hs-vcard" = dontDistribute super."hs-vcard"; + "hs2048" = dontDistribute super."hs2048"; + "hs2bf" = dontDistribute super."hs2bf"; + "hs2dot" = dontDistribute super."hs2dot"; + "hsConfigure" = dontDistribute super."hsConfigure"; + "hsSqlite3" = dontDistribute super."hsSqlite3"; + "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsay" = dontDistribute super."hsay"; + "hsb2hs" = dontDistribute super."hsb2hs"; + "hsbackup" = dontDistribute super."hsbackup"; + "hsbencher" = dontDistribute super."hsbencher"; + "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed"; + "hsbencher-fusion" = dontDistribute super."hsbencher-fusion"; + "hsc2hs" = dontDistribute super."hsc2hs"; + "hsc3" = dontDistribute super."hsc3"; + "hsc3-auditor" = dontDistribute super."hsc3-auditor"; + "hsc3-cairo" = dontDistribute super."hsc3-cairo"; + "hsc3-data" = dontDistribute super."hsc3-data"; + "hsc3-db" = dontDistribute super."hsc3-db"; + "hsc3-dot" = dontDistribute super."hsc3-dot"; + "hsc3-forth" = dontDistribute super."hsc3-forth"; + "hsc3-graphs" = dontDistribute super."hsc3-graphs"; + "hsc3-lang" = dontDistribute super."hsc3-lang"; + "hsc3-lisp" = dontDistribute super."hsc3-lisp"; + "hsc3-plot" = dontDistribute super."hsc3-plot"; + "hsc3-process" = dontDistribute super."hsc3-process"; + "hsc3-rec" = dontDistribute super."hsc3-rec"; + "hsc3-rw" = dontDistribute super."hsc3-rw"; + "hsc3-server" = dontDistribute super."hsc3-server"; + "hsc3-sf" = dontDistribute super."hsc3-sf"; + "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile"; + "hsc3-unsafe" = dontDistribute super."hsc3-unsafe"; + "hsc3-utils" = dontDistribute super."hsc3-utils"; + "hscamwire" = dontDistribute super."hscamwire"; + "hscassandra" = dontDistribute super."hscassandra"; + "hscd" = dontDistribute super."hscd"; + "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; + "hscope" = dontDistribute super."hscope"; + "hscrtmpl" = dontDistribute super."hscrtmpl"; + "hscuid" = dontDistribute super."hscuid"; + "hscurses" = dontDistribute super."hscurses"; + "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex"; + "hsdev" = dontDistribute super."hsdev"; + "hsdif" = dontDistribute super."hsdif"; + "hsdip" = dontDistribute super."hsdip"; + "hsdns" = dontDistribute super."hsdns"; + "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsemail-ns" = dontDistribute super."hsemail-ns"; + "hsenv" = dontDistribute super."hsenv"; + "hserv" = dontDistribute super."hserv"; + "hset" = dontDistribute super."hset"; + "hsexif" = doDistribute super."hsexif_0_6_0_7"; + "hsfacter" = dontDistribute super."hsfacter"; + "hsfcsh" = dontDistribute super."hsfcsh"; + "hsfilt" = dontDistribute super."hsfilt"; + "hsgnutls" = dontDistribute super."hsgnutls"; + "hsgnutls-yj" = dontDistribute super."hsgnutls-yj"; + "hsgsom" = dontDistribute super."hsgsom"; + "hsgtd" = dontDistribute super."hsgtd"; + "hsharc" = dontDistribute super."hsharc"; + "hsilop" = dontDistribute super."hsilop"; + "hsimport" = dontDistribute super."hsimport"; + "hsini" = dontDistribute super."hsini"; + "hskeleton" = dontDistribute super."hskeleton"; + "hslackbuilder" = dontDistribute super."hslackbuilder"; + "hslibsvm" = dontDistribute super."hslibsvm"; + "hslinks" = dontDistribute super."hslinks"; + "hslogger-reader" = dontDistribute super."hslogger-reader"; + "hslogger-template" = dontDistribute super."hslogger-template"; + "hslogger4j" = dontDistribute super."hslogger4j"; + "hslogstash" = dontDistribute super."hslogstash"; + "hsmagick" = dontDistribute super."hsmagick"; + "hsmisc" = dontDistribute super."hsmisc"; + "hsmtpclient" = dontDistribute super."hsmtpclient"; + "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector"; + "hsnock" = dontDistribute super."hsnock"; + "hsnoise" = dontDistribute super."hsnoise"; + "hsns" = dontDistribute super."hsns"; + "hsnsq" = dontDistribute super."hsnsq"; + "hsntp" = dontDistribute super."hsntp"; + "hsoptions" = dontDistribute super."hsoptions"; + "hsp-cgi" = dontDistribute super."hsp-cgi"; + "hsparklines" = dontDistribute super."hsparklines"; + "hsparql" = dontDistribute super."hsparql"; + "hspear" = dontDistribute super."hspear"; + "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; + "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; + "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-experimental" = dontDistribute super."hspec-experimental"; + "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-monad-control" = dontDistribute super."hspec-monad-control"; + "hspec-server" = dontDistribute super."hspec-server"; + "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; + "hspec-test-framework" = dontDistribute super."hspec-test-framework"; + "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; + "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; + "hspec2" = dontDistribute super."hspec2"; + "hspr-sh" = dontDistribute super."hspr-sh"; + "hspread" = dontDistribute super."hspread"; + "hspresent" = dontDistribute super."hspresent"; + "hsprocess" = dontDistribute super."hsprocess"; + "hsql" = dontDistribute super."hsql"; + "hsql-mysql" = dontDistribute super."hsql-mysql"; + "hsql-odbc" = dontDistribute super."hsql-odbc"; + "hsql-postgresql" = dontDistribute super."hsql-postgresql"; + "hsql-sqlite3" = dontDistribute super."hsql-sqlite3"; + "hsqml" = dontDistribute super."hsqml"; + "hsqml-datamodel" = dontDistribute super."hsqml-datamodel"; + "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl"; + "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris"; + "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes"; + "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; + "hsqml-morris" = dontDistribute super."hsqml-morris"; + "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; + "hsshellscript" = dontDistribute super."hsshellscript"; + "hssourceinfo" = dontDistribute super."hssourceinfo"; + "hssqlppp" = dontDistribute super."hssqlppp"; + "hstats" = dontDistribute super."hstats"; + "hstest" = dontDistribute super."hstest"; + "hstidy" = dontDistribute super."hstidy"; + "hstorchat" = dontDistribute super."hstorchat"; + "hstradeking" = dontDistribute super."hstradeking"; + "hstyle" = dontDistribute super."hstyle"; + "hstzaar" = dontDistribute super."hstzaar"; + "hsubconvert" = dontDistribute super."hsubconvert"; + "hsverilog" = dontDistribute super."hsverilog"; + "hswip" = dontDistribute super."hswip"; + "hsx" = dontDistribute super."hsx"; + "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsyscall" = dontDistribute super."hsyscall"; + "hszephyr" = dontDistribute super."hszephyr"; + "htags" = dontDistribute super."htags"; + "htar" = dontDistribute super."htar"; + "htiled" = dontDistribute super."htiled"; + "htime" = dontDistribute super."htime"; + "html-email-validate" = dontDistribute super."html-email-validate"; + "html-entities" = dontDistribute super."html-entities"; + "html-kure" = dontDistribute super."html-kure"; + "html-minimalist" = dontDistribute super."html-minimalist"; + "html-rules" = dontDistribute super."html-rules"; + "html-tokenizer" = dontDistribute super."html-tokenizer"; + "html-truncate" = dontDistribute super."html-truncate"; + "html2hamlet" = dontDistribute super."html2hamlet"; + "html5-entity" = dontDistribute super."html5-entity"; + "htodo" = dontDistribute super."htodo"; + "htoml" = dontDistribute super."htoml"; + "htrace" = dontDistribute super."htrace"; + "hts" = dontDistribute super."hts"; + "htsn" = dontDistribute super."htsn"; + "htsn-common" = dontDistribute super."htsn-common"; + "htsn-import" = dontDistribute super."htsn-import"; + "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client-auth" = dontDistribute super."http-client-auth"; + "http-client-conduit" = dontDistribute super."http-client-conduit"; + "http-client-lens" = dontDistribute super."http-client-lens"; + "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; + "http-client-streams" = dontDistribute super."http-client-streams"; + "http-conduit-browser" = dontDistribute super."http-conduit-browser"; + "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-encodings" = dontDistribute super."http-encodings"; + "http-enumerator" = dontDistribute super."http-enumerator"; + "http-kinder" = dontDistribute super."http-kinder"; + "http-kit" = dontDistribute super."http-kit"; + "http-listen" = dontDistribute super."http-listen"; + "http-monad" = dontDistribute super."http-monad"; + "http-proxy" = dontDistribute super."http-proxy"; + "http-querystring" = dontDistribute super."http-querystring"; + "http-server" = dontDistribute super."http-server"; + "http-shed" = dontDistribute super."http-shed"; + "http-test" = dontDistribute super."http-test"; + "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_4_5"; + "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; + "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; + "httpspec" = dontDistribute super."httpspec"; + "htune" = dontDistribute super."htune"; + "htzaar" = dontDistribute super."htzaar"; + "hub" = dontDistribute super."hub"; + "hubigraph" = dontDistribute super."hubigraph"; + "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; + "huffman" = dontDistribute super."huffman"; + "hugs2yc" = dontDistribute super."hugs2yc"; + "hulk" = dontDistribute super."hulk"; + "hums" = dontDistribute super."hums"; + "hunch" = dontDistribute super."hunch"; + "hunit-gui" = dontDistribute super."hunit-gui"; + "hunit-parsec" = dontDistribute super."hunit-parsec"; + "hunit-rematch" = dontDistribute super."hunit-rematch"; + "hunp" = dontDistribute super."hunp"; + "hunt-searchengine" = dontDistribute super."hunt-searchengine"; + "hunt-server" = dontDistribute super."hunt-server"; + "hunt-server-cli" = dontDistribute super."hunt-server-cli"; + "hurdle" = dontDistribute super."hurdle"; + "husk-scheme" = dontDistribute super."husk-scheme"; + "husk-scheme-libs" = dontDistribute super."husk-scheme-libs"; + "husky" = dontDistribute super."husky"; + "hutton" = dontDistribute super."hutton"; + "huttons-razor" = dontDistribute super."huttons-razor"; + "huzzy" = dontDistribute super."huzzy"; + "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hws" = dontDistribute super."hws"; + "hwsl2" = dontDistribute super."hwsl2"; + "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; + "hwsl2-reducers" = dontDistribute super."hwsl2-reducers"; + "hx" = dontDistribute super."hx"; + "hxmppc" = dontDistribute super."hxmppc"; + "hxournal" = dontDistribute super."hxournal"; + "hxt-binary" = dontDistribute super."hxt-binary"; + "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-extras" = dontDistribute super."hxt-extras"; + "hxt-filter" = dontDistribute super."hxt-filter"; + "hxt-xpath" = dontDistribute super."hxt-xpath"; + "hxt-xslt" = dontDistribute super."hxt-xslt"; + "hxthelper" = dontDistribute super."hxthelper"; + "hxweb" = dontDistribute super."hxweb"; + "hyahtzee" = dontDistribute super."hyahtzee"; + "hyakko" = dontDistribute super."hyakko"; + "hybrid" = dontDistribute super."hybrid"; + "hydra-hs" = dontDistribute super."hydra-hs"; + "hydra-print" = dontDistribute super."hydra-print"; + "hydrogen" = dontDistribute super."hydrogen"; + "hydrogen-cli" = dontDistribute super."hydrogen-cli"; + "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args"; + "hydrogen-data" = dontDistribute super."hydrogen-data"; + "hydrogen-multimap" = dontDistribute super."hydrogen-multimap"; + "hydrogen-parsing" = dontDistribute super."hydrogen-parsing"; + "hydrogen-prelude" = dontDistribute super."hydrogen-prelude"; + "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec"; + "hydrogen-syntax" = dontDistribute super."hydrogen-syntax"; + "hydrogen-util" = dontDistribute super."hydrogen-util"; + "hydrogen-version" = dontDistribute super."hydrogen-version"; + "hyena" = dontDistribute super."hyena"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; + "hzk" = dontDistribute super."hzk"; + "i18n" = dontDistribute super."i18n"; + "iCalendar" = dontDistribute super."iCalendar"; + "iException" = dontDistribute super."iException"; + "iap-verifier" = dontDistribute super."iap-verifier"; + "ib-api" = dontDistribute super."ib-api"; + "iban" = dontDistribute super."iban"; + "ibus-hs" = dontDistribute super."ibus-hs"; + "ideas" = dontDistribute super."ideas"; + "ideas-math" = dontDistribute super."ideas-math"; + "idempotent" = dontDistribute super."idempotent"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "idris" = dontDistribute super."idris"; + "ieee" = dontDistribute super."ieee"; + "ieee-utils" = dontDistribute super."ieee-utils"; + "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix"; + "ieee754-parser" = dontDistribute super."ieee754-parser"; + "ifcxt" = dontDistribute super."ifcxt"; + "iff" = dontDistribute super."iff"; + "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_8_3_0"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "illuminate" = dontDistribute super."illuminate"; + "image-type" = dontDistribute super."image-type"; + "imagefilters" = dontDistribute super."imagefilters"; + "imagemagick" = dontDistribute super."imagemagick"; + "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; + "imapget" = dontDistribute super."imapget"; + "imbib" = dontDistribute super."imbib"; + "imgurder" = dontDistribute super."imgurder"; + "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; + "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; + "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; + "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; + "implicit-params" = dontDistribute super."implicit-params"; + "imports" = dontDistribute super."imports"; + "impossible" = dontDistribute super."impossible"; + "improve" = dontDistribute super."improve"; + "inc-ref" = dontDistribute super."inc-ref"; + "inch" = dontDistribute super."inch"; + "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-sat-solver" = dontDistribute super."incremental-sat-solver"; + "increments" = dontDistribute super."increments"; + "indentation" = dontDistribute super."indentation"; + "indentparser" = dontDistribute super."indentparser"; + "index-core" = dontDistribute super."index-core"; + "indexed" = dontDistribute super."indexed"; + "indexed-do-notation" = dontDistribute super."indexed-do-notation"; + "indexed-extras" = dontDistribute super."indexed-extras"; + "indexed-free" = dontDistribute super."indexed-free"; + "indian-language-font-converter" = dontDistribute super."indian-language-font-converter"; + "indices" = dontDistribute super."indices"; + "indieweb-algorithms" = dontDistribute super."indieweb-algorithms"; + "inf-interval" = dontDistribute super."inf-interval"; + "infer-upstream" = dontDistribute super."infer-upstream"; + "infernu" = dontDistribute super."infernu"; + "infinite-search" = dontDistribute super."infinite-search"; + "infinity" = dontDistribute super."infinity"; + "infix" = dontDistribute super."infix"; + "inflist" = dontDistribute super."inflist"; + "influxdb" = dontDistribute super."influxdb"; + "informative" = dontDistribute super."informative"; + "inilist" = dontDistribute super."inilist"; + "inject" = dontDistribute super."inject"; + "inject-function" = dontDistribute super."inject-function"; + "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; + "inserts" = dontDistribute super."inserts"; + "inspection-proxy" = dontDistribute super."inspection-proxy"; + "instant-aeson" = dontDistribute super."instant-aeson"; + "instant-bytes" = dontDistribute super."instant-bytes"; + "instant-deepseq" = dontDistribute super."instant-deepseq"; + "instant-generics" = dontDistribute super."instant-generics"; + "instant-hashable" = dontDistribute super."instant-hashable"; + "instant-zipper" = dontDistribute super."instant-zipper"; + "instinct" = dontDistribute super."instinct"; + "instrument-chord" = dontDistribute super."instrument-chord"; + "int-cast" = dontDistribute super."int-cast"; + "integer-pure" = dontDistribute super."integer-pure"; + "intel-aes" = dontDistribute super."intel-aes"; + "interchangeable" = dontDistribute super."interchangeable"; + "interleavableGen" = dontDistribute super."interleavableGen"; + "interleavableIO" = dontDistribute super."interleavableIO"; + "interleave" = dontDistribute super."interleave"; + "interlude" = dontDistribute super."interlude"; + "intern" = dontDistribute super."intern"; + "internetmarke" = dontDistribute super."internetmarke"; + "interpol" = dontDistribute super."interpol"; + "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; + "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; + "interpolation" = dontDistribute super."interpolation"; + "intricacy" = dontDistribute super."intricacy"; + "intset" = dontDistribute super."intset"; + "invertible-syntax" = dontDistribute super."invertible-syntax"; + "io-capture" = dontDistribute super."io-capture"; + "io-reactive" = dontDistribute super."io-reactive"; + "io-streams-http" = dontDistribute super."io-streams-http"; + "io-throttle" = dontDistribute super."io-throttle"; + "ioctl" = dontDistribute super."ioctl"; + "ioref-stable" = dontDistribute super."ioref-stable"; + "iothread" = dontDistribute super."iothread"; + "iotransaction" = dontDistribute super."iotransaction"; + "ip-quoter" = dontDistribute super."ip-quoter"; + "ipatch" = dontDistribute super."ipatch"; + "ipc" = dontDistribute super."ipc"; + "ipcvar" = dontDistribute super."ipcvar"; + "ipopt-hs" = dontDistribute super."ipopt-hs"; + "ipprint" = dontDistribute super."ipprint"; + "iptables-helpers" = dontDistribute super."iptables-helpers"; + "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; + "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-core" = dontDistribute super."irc-core"; + "irc-dcc" = dontDistribute super."irc-dcc"; + "irc-fun-bot" = dontDistribute super."irc-fun-bot"; + "irc-fun-client" = dontDistribute super."irc-fun-client"; + "irc-fun-color" = dontDistribute super."irc-fun-color"; + "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; + "ircbot" = dontDistribute super."ircbot"; + "ircbouncer" = dontDistribute super."ircbouncer"; + "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; + "iron-mq" = dontDistribute super."iron-mq"; + "ironforge" = dontDistribute super."ironforge"; + "is" = dontDistribute super."is"; + "isdicom" = dontDistribute super."isdicom"; + "isevaluated" = dontDistribute super."isevaluated"; + "isiz" = dontDistribute super."isiz"; + "ismtp" = dontDistribute super."ismtp"; + "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; + "isohunt" = dontDistribute super."isohunt"; + "itanium-abi" = dontDistribute super."itanium-abi"; + "iter-stats" = dontDistribute super."iter-stats"; + "iterIO" = dontDistribute super."iterIO"; + "iteratee" = dontDistribute super."iteratee"; + "iteratee-compress" = dontDistribute super."iteratee-compress"; + "iteratee-mtl" = dontDistribute super."iteratee-mtl"; + "iteratee-parsec" = dontDistribute super."iteratee-parsec"; + "iteratee-stm" = dontDistribute super."iteratee-stm"; + "iterio-server" = dontDistribute super."iterio-server"; + "ivar-simple" = dontDistribute super."ivar-simple"; + "ivor" = dontDistribute super."ivor"; + "ivory" = dontDistribute super."ivory"; + "ivory-backend-c" = dontDistribute super."ivory-backend-c"; + "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-examples" = dontDistribute super."ivory-examples"; + "ivory-hw" = dontDistribute super."ivory-hw"; + "ivory-opts" = dontDistribute super."ivory-opts"; + "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-stdlib" = dontDistribute super."ivory-stdlib"; + "ivy-web" = dontDistribute super."ivy-web"; + "ixdopp" = dontDistribute super."ixdopp"; + "ixmonad" = dontDistribute super."ixmonad"; + "iyql" = dontDistribute super."iyql"; + "j2hs" = dontDistribute super."j2hs"; + "ja-base-extra" = dontDistribute super."ja-base-extra"; + "jack" = dontDistribute super."jack"; + "jack-bindings" = dontDistribute super."jack-bindings"; + "jackminimix" = dontDistribute super."jackminimix"; + "jacobi-roots" = dontDistribute super."jacobi-roots"; + "jail" = dontDistribute super."jail"; + "jailbreak-cabal" = dontDistribute super."jailbreak-cabal"; + "jalaali" = dontDistribute super."jalaali"; + "jalla" = dontDistribute super."jalla"; + "jammittools" = dontDistribute super."jammittools"; + "jarfind" = dontDistribute super."jarfind"; + "java-bridge" = dontDistribute super."java-bridge"; + "java-bridge-extras" = dontDistribute super."java-bridge-extras"; + "java-character" = dontDistribute super."java-character"; + "java-poker" = dontDistribute super."java-poker"; + "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; + "javasf" = dontDistribute super."javasf"; + "javav" = dontDistribute super."javav"; + "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; + "jdi" = dontDistribute super."jdi"; + "jespresso" = dontDistribute super."jespresso"; + "jobqueue" = dontDistribute super."jobqueue"; + "join" = dontDistribute super."join"; + "joinlist" = dontDistribute super."joinlist"; + "jonathanscard" = dontDistribute super."jonathanscard"; + "jort" = dontDistribute super."jort"; + "jose" = dontDistribute super."jose"; + "jpeg" = dontDistribute super."jpeg"; + "js-good-parts" = dontDistribute super."js-good-parts"; + "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-hello" = dontDistribute super."jsaddle-hello"; + "jsc" = dontDistribute super."jsc"; + "jsmw" = dontDistribute super."jsmw"; + "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; + "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_11"; + "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; + "json-enumerator" = dontDistribute super."json-enumerator"; + "json-extra" = dontDistribute super."json-extra"; + "json-fu" = dontDistribute super."json-fu"; + "json-litobj" = dontDistribute super."json-litobj"; + "json-pointer" = dontDistribute super."json-pointer"; + "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; + "json-python" = dontDistribute super."json-python"; + "json-qq" = dontDistribute super."json-qq"; + "json-rpc" = dontDistribute super."json-rpc"; + "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-sop" = dontDistribute super."json-sop"; + "json-state" = dontDistribute super."json-state"; + "json-stream" = dontDistribute super."json-stream"; + "json-togo" = dontDistribute super."json-togo"; + "json-tools" = dontDistribute super."json-tools"; + "json-types" = dontDistribute super."json-types"; + "json2" = dontDistribute super."json2"; + "json2-hdbc" = dontDistribute super."json2-hdbc"; + "json2-types" = dontDistribute super."json2-types"; + "json2yaml" = dontDistribute super."json2yaml"; + "jsonresume" = dontDistribute super."jsonresume"; + "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit"; + "jsonschema-gen" = dontDistribute super."jsonschema-gen"; + "jsonsql" = dontDistribute super."jsonsql"; + "jsontsv" = dontDistribute super."jsontsv"; + "jspath" = dontDistribute super."jspath"; + "judy" = dontDistribute super."judy"; + "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; + "jumpthefive" = dontDistribute super."jumpthefive"; + "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; + "kademlia" = dontDistribute super."kademlia"; + "kafka-client" = dontDistribute super."kafka-client"; + "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; + "kansas-lava" = dontDistribute super."kansas-lava"; + "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; + "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; + "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; + "karakuri" = dontDistribute super."karakuri"; + "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; + "katt" = dontDistribute super."katt"; + "kazura-queue" = dontDistribute super."kazura-queue"; + "kbq-gu" = dontDistribute super."kbq-gu"; + "kd-tree" = dontDistribute super."kd-tree"; + "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; + "keera-callbacks" = dontDistribute super."keera-callbacks"; + "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; + "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; + "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk"; + "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel"; + "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel"; + "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config"; + "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk"; + "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view"; + "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk"; + "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs"; + "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk"; + "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network"; + "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling"; + "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx"; + "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa"; + "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses"; + "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "krpc" = dontDistribute super."krpc"; + "ks-test" = dontDistribute super."ks-test"; + "ktx" = dontDistribute super."ktx"; + "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate"; + "kyotocabinet" = dontDistribute super."kyotocabinet"; + "l-bfgs-b" = dontDistribute super."l-bfgs-b"; + "labeled-graph" = dontDistribute super."labeled-graph"; + "labeled-tree" = dontDistribute super."labeled-tree"; + "laborantin-hs" = dontDistribute super."laborantin-hs"; + "labyrinth" = dontDistribute super."labyrinth"; + "labyrinth-server" = dontDistribute super."labyrinth-server"; + "lackey" = dontDistribute super."lackey"; + "lagrangian" = dontDistribute super."lagrangian"; + "laika" = dontDistribute super."laika"; + "lambda-ast" = dontDistribute super."lambda-ast"; + "lambda-bridge" = dontDistribute super."lambda-bridge"; + "lambda-canvas" = dontDistribute super."lambda-canvas"; + "lambda-devs" = dontDistribute super."lambda-devs"; + "lambda-options" = dontDistribute super."lambda-options"; + "lambda-placeholders" = dontDistribute super."lambda-placeholders"; + "lambda-toolbox" = dontDistribute super."lambda-toolbox"; + "lambda2js" = dontDistribute super."lambda2js"; + "lambdaBase" = dontDistribute super."lambdaBase"; + "lambdaFeed" = dontDistribute super."lambdaFeed"; + "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = dontDistribute super."lambdabot"; + "lambdabot-core" = dontDistribute super."lambdabot-core"; + "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins"; + "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins"; + "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins"; + "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins"; + "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins"; + "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins"; + "lambdabot-trusted" = dontDistribute super."lambdabot-trusted"; + "lambdabot-utils" = dontDistribute super."lambdabot-utils"; + "lambdacat" = dontDistribute super."lambdacat"; + "lambdacms-core" = dontDistribute super."lambdacms-core"; + "lambdacms-media" = dontDistribute super."lambdacms-media"; + "lambdacube" = dontDistribute super."lambdacube"; + "lambdacube-bullet" = dontDistribute super."lambdacube-bullet"; + "lambdacube-compiler" = dontDistribute super."lambdacube-compiler"; + "lambdacube-core" = dontDistribute super."lambdacube-core"; + "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; + "lambdacube-engine" = dontDistribute super."lambdacube-engine"; + "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = dontDistribute super."lambdacube-gl"; + "lambdacube-ir" = dontDistribute super."lambdacube-ir"; + "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; + "lambdatwit" = dontDistribute super."lambdatwit"; + "lambdiff" = dontDistribute super."lambdiff"; + "lame-tester" = dontDistribute super."lame-tester"; + "language-asn1" = dontDistribute super."language-asn1"; + "language-bash" = dontDistribute super."language-bash"; + "language-boogie" = dontDistribute super."language-boogie"; + "language-c-comments" = dontDistribute super."language-c-comments"; + "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = dontDistribute super."language-c-quote"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "language-dot" = dontDistribute super."language-dot"; + "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; + "language-eiffel" = dontDistribute super."language-eiffel"; + "language-fortran" = dontDistribute super."language-fortran"; + "language-gcl" = dontDistribute super."language-gcl"; + "language-go" = dontDistribute super."language-go"; + "language-guess" = dontDistribute super."language-guess"; + "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; + "language-kort" = dontDistribute super."language-kort"; + "language-lua" = dontDistribute super."language-lua"; + "language-lua-qq" = dontDistribute super."language-lua-qq"; + "language-mixal" = dontDistribute super."language-mixal"; + "language-objc" = dontDistribute super."language-objc"; + "language-openscad" = dontDistribute super."language-openscad"; + "language-pig" = dontDistribute super."language-pig"; + "language-puppet" = dontDistribute super."language-puppet"; + "language-python" = dontDistribute super."language-python"; + "language-python-colour" = dontDistribute super."language-python-colour"; + "language-python-test" = dontDistribute super."language-python-test"; + "language-qux" = dontDistribute super."language-qux"; + "language-sh" = dontDistribute super."language-sh"; + "language-slice" = dontDistribute super."language-slice"; + "language-spelling" = dontDistribute super."language-spelling"; + "language-sqlite" = dontDistribute super."language-sqlite"; + "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; + "language-typescript" = dontDistribute super."language-typescript"; + "language-vhdl" = dontDistribute super."language-vhdl"; + "lat" = dontDistribute super."lat"; + "latest-npm-version" = dontDistribute super."latest-npm-version"; + "latex" = dontDistribute super."latex"; + "launchpad-control" = dontDistribute super."launchpad-control"; + "lax" = dontDistribute super."lax"; + "layers" = dontDistribute super."layers"; + "layers-game" = dontDistribute super."layers-game"; + "layout" = dontDistribute super."layout"; + "layout-bootstrap" = dontDistribute super."layout-bootstrap"; + "lazy-io" = dontDistribute super."lazy-io"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysmallcheck" = dontDistribute super."lazysmallcheck"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "leksah" = dontDistribute super."leksah"; + "leksah-server" = dontDistribute super."leksah-server"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; + "lens-properties" = dontDistribute super."lens-properties"; + "lens-sop" = dontDistribute super."lens-sop"; + "lens-text-encoding" = dontDistribute super."lens-text-encoding"; + "lens-time" = dontDistribute super."lens-time"; + "lens-tutorial" = dontDistribute super."lens-tutorial"; + "lens-utils" = dontDistribute super."lens-utils"; + "lenses" = dontDistribute super."lenses"; + "lensref" = dontDistribute super."lensref"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; + "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; + "levmar" = dontDistribute super."levmar"; + "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; + "lgtk" = dontDistribute super."lgtk"; + "lha" = dontDistribute super."lha"; + "lhae" = dontDistribute super."lhae"; + "lhc" = dontDistribute super."lhc"; + "lhe" = dontDistribute super."lhe"; + "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl"; + "lhs2html" = dontDistribute super."lhs2html"; + "lhslatex" = dontDistribute super."lhslatex"; + "libGenI" = dontDistribute super."libGenI"; + "libarchive-conduit" = dontDistribute super."libarchive-conduit"; + "libconfig" = dontDistribute super."libconfig"; + "libcspm" = dontDistribute super."libcspm"; + "libexpect" = dontDistribute super."libexpect"; + "libffi" = dontDistribute super."libffi"; + "libgraph" = dontDistribute super."libgraph"; + "libhbb" = dontDistribute super."libhbb"; + "libjenkins" = dontDistribute super."libjenkins"; + "liblastfm" = dontDistribute super."liblastfm"; + "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; + "libltdl" = dontDistribute super."libltdl"; + "libmpd" = dontDistribute super."libmpd"; + "libnvvm" = dontDistribute super."libnvvm"; + "liboleg" = dontDistribute super."liboleg"; + "libpafe" = dontDistribute super."libpafe"; + "libpq" = dontDistribute super."libpq"; + "librandomorg" = dontDistribute super."librandomorg"; + "libravatar" = dontDistribute super."libravatar"; + "libssh2" = dontDistribute super."libssh2"; + "libssh2-conduit" = dontDistribute super."libssh2-conduit"; + "libstackexchange" = dontDistribute super."libstackexchange"; + "libsystemd-daemon" = dontDistribute super."libsystemd-daemon"; + "libtagc" = dontDistribute super."libtagc"; + "libvirt-hs" = dontDistribute super."libvirt-hs"; + "libvorbis" = dontDistribute super."libvorbis"; + "libxls" = dontDistribute super."libxls"; + "libxml" = dontDistribute super."libxml"; + "libxml-enumerator" = dontDistribute super."libxml-enumerator"; + "libxslt" = dontDistribute super."libxslt"; + "life" = dontDistribute super."life"; + "lift-generics" = dontDistribute super."lift-generics"; + "lifted-threads" = dontDistribute super."lifted-threads"; + "lifter" = dontDistribute super."lifter"; + "ligature" = dontDistribute super."ligature"; + "ligd" = dontDistribute super."ligd"; + "lighttpd-conf" = dontDistribute super."lighttpd-conf"; + "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq"; + "lilypond" = dontDistribute super."lilypond"; + "limp" = dontDistribute super."limp"; + "limp-cbc" = dontDistribute super."limp-cbc"; + "lin-alg" = dontDistribute super."lin-alg"; + "linda" = dontDistribute super."linda"; + "lindenmayer" = dontDistribute super."lindenmayer"; + "line-break" = dontDistribute super."line-break"; + "line2pdf" = dontDistribute super."line2pdf"; + "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; + "linear-circuit" = dontDistribute super."linear-circuit"; + "linear-grammar" = dontDistribute super."linear-grammar"; + "linear-maps" = dontDistribute super."linear-maps"; + "linear-opengl" = dontDistribute super."linear-opengl"; + "linear-vect" = dontDistribute super."linear-vect"; + "linearEqSolver" = dontDistribute super."linearEqSolver"; + "linearscan" = dontDistribute super."linearscan"; + "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; + "linebreak" = dontDistribute super."linebreak"; + "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; + "linkchk" = dontDistribute super."linkchk"; + "linkcore" = dontDistribute super."linkcore"; + "linkedhashmap" = dontDistribute super."linkedhashmap"; + "linklater" = dontDistribute super."linklater"; + "linode" = dontDistribute super."linode"; + "linux-blkid" = dontDistribute super."linux-blkid"; + "linux-cgroup" = dontDistribute super."linux-cgroup"; + "linux-evdev" = dontDistribute super."linux-evdev"; + "linux-inotify" = dontDistribute super."linux-inotify"; + "linux-kmod" = dontDistribute super."linux-kmod"; + "linux-mount" = dontDistribute super."linux-mount"; + "linux-perf" = dontDistribute super."linux-perf"; + "linux-ptrace" = dontDistribute super."linux-ptrace"; + "linux-xattr" = dontDistribute super."linux-xattr"; + "linx-gateway" = dontDistribute super."linx-gateway"; + "lio" = dontDistribute super."lio"; + "lio-eci11" = dontDistribute super."lio-eci11"; + "lio-fs" = dontDistribute super."lio-fs"; + "lio-simple" = dontDistribute super."lio-simple"; + "lipsum-gen" = dontDistribute super."lipsum-gen"; + "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; + "liquidhaskell" = dontDistribute super."liquidhaskell"; + "lispparser" = dontDistribute super."lispparser"; + "list-extras" = dontDistribute super."list-extras"; + "list-grouping" = dontDistribute super."list-grouping"; + "list-mux" = dontDistribute super."list-mux"; + "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; + "list-t-html-parser" = dontDistribute super."list-t-html-parser"; + "list-t-http-client" = dontDistribute super."list-t-http-client"; + "list-t-libcurl" = dontDistribute super."list-t-libcurl"; + "list-t-text" = dontDistribute super."list-t-text"; + "list-tries" = dontDistribute super."list-tries"; + "list-zip-def" = dontDistribute super."list-zip-def"; + "listlike-instances" = dontDistribute super."listlike-instances"; + "lists" = dontDistribute super."lists"; + "listsafe" = dontDistribute super."listsafe"; + "lit" = dontDistribute super."lit"; + "literals" = dontDistribute super."literals"; + "live-sequencer" = dontDistribute super."live-sequencer"; + "ll-picosat" = dontDistribute super."ll-picosat"; + "llrbtree" = dontDistribute super."llrbtree"; + "llsd" = dontDistribute super."llsd"; + "llvm" = dontDistribute super."llvm"; + "llvm-analysis" = dontDistribute super."llvm-analysis"; + "llvm-base" = dontDistribute super."llvm-base"; + "llvm-base-types" = dontDistribute super."llvm-base-types"; + "llvm-base-util" = dontDistribute super."llvm-base-util"; + "llvm-data-interop" = dontDistribute super."llvm-data-interop"; + "llvm-extra" = dontDistribute super."llvm-extra"; + "llvm-ffi" = dontDistribute super."llvm-ffi"; + "llvm-general" = dontDistribute super."llvm-general"; + "llvm-general-pure" = dontDistribute super."llvm-general-pure"; + "llvm-general-quote" = dontDistribute super."llvm-general-quote"; + "llvm-ht" = dontDistribute super."llvm-ht"; + "llvm-pkg-config" = dontDistribute super."llvm-pkg-config"; + "llvm-pretty" = dontDistribute super."llvm-pretty"; + "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser"; + "llvm-tf" = dontDistribute super."llvm-tf"; + "llvm-tools" = dontDistribute super."llvm-tools"; + "lmdb" = dontDistribute super."lmdb"; + "lmonad" = dontDistribute super."lmonad"; + "lmonad-yesod" = dontDistribute super."lmonad-yesod"; + "loadavg" = dontDistribute super."loadavg"; + "local-address" = dontDistribute super."local-address"; + "local-search" = dontDistribute super."local-search"; + "located-base" = dontDistribute super."located-base"; + "locators" = dontDistribute super."locators"; + "loch" = dontDistribute super."loch"; + "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; + "lockfree-queue" = dontDistribute super."lockfree-queue"; + "log" = dontDistribute super."log"; + "log-effect" = dontDistribute super."log-effect"; + "log2json" = dontDistribute super."log2json"; + "logfloat" = dontDistribute super."logfloat"; + "logger" = dontDistribute super."logger"; + "logging" = dontDistribute super."logging"; + "logging-effect" = dontDistribute super."logging-effect"; + "logging-facade-journald" = dontDistribute super."logging-facade-journald"; + "logic-TPTP" = dontDistribute super."logic-TPTP"; + "logic-classes" = dontDistribute super."logic-classes"; + "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; + "logplex-parse" = dontDistribute super."logplex-parse"; + "logsink" = dontDistribute super."logsink"; + "lojban" = dontDistribute super."lojban"; + "lojbanParser" = dontDistribute super."lojbanParser"; + "lojbanXiragan" = dontDistribute super."lojbanXiragan"; + "lojysamban" = dontDistribute super."lojysamban"; + "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; + "loli" = dontDistribute super."loli"; + "lookup-tables" = dontDistribute super."lookup-tables"; + "loop-effin" = dontDistribute super."loop-effin"; + "loop-while" = dontDistribute super."loop-while"; + "loops" = dontDistribute super."loops"; + "loopy" = dontDistribute super."loopy"; + "lord" = dontDistribute super."lord"; + "lorem" = dontDistribute super."lorem"; + "loris" = dontDistribute super."loris"; + "loshadka" = dontDistribute super."loshadka"; + "lostcities" = dontDistribute super."lostcities"; + "lowgl" = dontDistribute super."lowgl"; + "lp-diagrams" = dontDistribute super."lp-diagrams"; + "lp-diagrams-svg" = dontDistribute super."lp-diagrams-svg"; + "ls-usb" = dontDistribute super."ls-usb"; + "lscabal" = dontDistribute super."lscabal"; + "lss" = dontDistribute super."lss"; + "lsystem" = dontDistribute super."lsystem"; + "ltk" = dontDistribute super."ltk"; + "ltl" = dontDistribute super."ltl"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luka" = dontDistribute super."luka"; + "luminance" = doDistribute super."luminance_0_9_1_2"; + "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; + "lushtags" = dontDistribute super."lushtags"; + "luthor" = dontDistribute super."luthor"; + "lvish" = dontDistribute super."lvish"; + "lvmlib" = dontDistribute super."lvmlib"; + "lvmrun" = dontDistribute super."lvmrun"; + "lxc" = dontDistribute super."lxc"; + "lye" = dontDistribute super."lye"; + "lz4" = dontDistribute super."lz4"; + "lzma" = dontDistribute super."lzma"; + "lzma-clib" = dontDistribute super."lzma-clib"; + "lzma-enumerator" = dontDistribute super."lzma-enumerator"; + "lzma-streams" = dontDistribute super."lzma-streams"; + "maam" = dontDistribute super."maam"; + "mac" = dontDistribute super."mac"; + "maccatcher" = dontDistribute super."maccatcher"; + "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; + "machines-zlib" = dontDistribute super."machines-zlib"; + "macho" = dontDistribute super."macho"; + "maclight" = dontDistribute super."maclight"; + "macosx-make-standalone" = dontDistribute super."macosx-make-standalone"; + "mage" = dontDistribute super."mage"; + "magico" = dontDistribute super."magico"; + "magma" = dontDistribute super."magma"; + "mahoro" = dontDistribute super."mahoro"; + "maid" = dontDistribute super."maid"; + "mailbox-count" = dontDistribute super."mailbox-count"; + "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; + "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = dontDistribute super."mainland-pretty"; + "majordomo" = dontDistribute super."majordomo"; + "majority" = dontDistribute super."majority"; + "make-hard-links" = dontDistribute super."make-hard-links"; + "make-package" = dontDistribute super."make-package"; + "makedo" = dontDistribute super."makedo"; + "manatee" = dontDistribute super."manatee"; + "manatee-all" = dontDistribute super."manatee-all"; + "manatee-anything" = dontDistribute super."manatee-anything"; + "manatee-browser" = dontDistribute super."manatee-browser"; + "manatee-core" = dontDistribute super."manatee-core"; + "manatee-curl" = dontDistribute super."manatee-curl"; + "manatee-editor" = dontDistribute super."manatee-editor"; + "manatee-filemanager" = dontDistribute super."manatee-filemanager"; + "manatee-imageviewer" = dontDistribute super."manatee-imageviewer"; + "manatee-ircclient" = dontDistribute super."manatee-ircclient"; + "manatee-mplayer" = dontDistribute super."manatee-mplayer"; + "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer"; + "manatee-processmanager" = dontDistribute super."manatee-processmanager"; + "manatee-reader" = dontDistribute super."manatee-reader"; + "manatee-template" = dontDistribute super."manatee-template"; + "manatee-terminal" = dontDistribute super."manatee-terminal"; + "manatee-welcome" = dontDistribute super."manatee-welcome"; + "mancala" = dontDistribute super."mancala"; + "mandulia" = dontDistribute super."mandulia"; + "manifold-random" = dontDistribute super."manifold-random"; + "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; + "marionetta" = dontDistribute super."marionetta"; + "markdown-kate" = dontDistribute super."markdown-kate"; + "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown2svg" = dontDistribute super."markdown2svg"; + "marked-pretty" = dontDistribute super."marked-pretty"; + "markov" = dontDistribute super."markov"; + "markov-chain" = dontDistribute super."markov-chain"; + "markov-processes" = dontDistribute super."markov-processes"; + "markup-preview" = dontDistribute super."markup-preview"; + "marmalade-upload" = dontDistribute super."marmalade-upload"; + "marquise" = dontDistribute super."marquise"; + "marxup" = dontDistribute super."marxup"; + "masakazu-bot" = dontDistribute super."masakazu-bot"; + "mastermind" = dontDistribute super."mastermind"; + "matchers" = dontDistribute super."matchers"; + "mathblog" = dontDistribute super."mathblog"; + "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; + "mathlink" = dontDistribute super."mathlink"; + "matlab" = dontDistribute super."matlab"; + "matrix-market" = dontDistribute super."matrix-market"; + "matrix-market-pure" = dontDistribute super."matrix-market-pure"; + "matsuri" = dontDistribute super."matsuri"; + "maude" = dontDistribute super."maude"; + "maxent" = dontDistribute super."maxent"; + "maxsharing" = dontDistribute super."maxsharing"; + "maybe-justify" = dontDistribute super."maybe-justify"; + "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; + "mbox-tools" = dontDistribute super."mbox-tools"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcpi" = dontDistribute super."mcpi"; + "mdapi" = dontDistribute super."mdapi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mdp" = dontDistribute super."mdp"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_3_0"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "melody" = dontDistribute super."melody"; + "memcache" = dontDistribute super."memcache"; + "memcache-conduit" = dontDistribute super."memcache-conduit"; + "memcache-haskell" = dontDistribute super."memcache-haskell"; + "memcached" = dontDistribute super."memcached"; + "memexml" = dontDistribute super."memexml"; + "memo-ptr" = dontDistribute super."memo-ptr"; + "memo-sqlite" = dontDistribute super."memo-sqlite"; + "memscript" = dontDistribute super."memscript"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; + "messente" = dontDistribute super."messente"; + "meta-misc" = dontDistribute super."meta-misc"; + "meta-par" = dontDistribute super."meta-par"; + "meta-par-accelerate" = dontDistribute super."meta-par-accelerate"; + "metadata" = dontDistribute super."metadata"; + "metamorphic" = dontDistribute super."metamorphic"; + "metaplug" = dontDistribute super."metaplug"; + "metric" = dontDistribute super."metric"; + "metricsd-client" = dontDistribute super."metricsd-client"; + "metronome" = dontDistribute super."metronome"; + "mezzolens" = dontDistribute super."mezzolens"; + "mfsolve" = dontDistribute super."mfsolve"; + "mgeneric" = dontDistribute super."mgeneric"; + "mi" = dontDistribute super."mi"; + "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = doDistribute super."microformats2-parser_1_0_1_3"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens-each" = dontDistribute super."microlens-each"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minilens" = dontDistribute super."minilens"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; + "modbus-tcp" = dontDistribute super."modbus-tcp"; + "modelicaparser" = dontDistribute super."modelicaparser"; + "modsplit" = dontDistribute super."modsplit"; + "modular-arithmetic" = dontDistribute super."modular-arithmetic"; + "modular-prelude" = dontDistribute super."modular-prelude"; + "modular-prelude-classy" = dontDistribute super."modular-prelude-classy"; + "module-management" = dontDistribute super."module-management"; + "modulespection" = dontDistribute super."modulespection"; + "modulo" = dontDistribute super."modulo"; + "moe" = dontDistribute super."moe"; + "mohws" = dontDistribute super."mohws"; + "monad-abort-fd" = dontDistribute super."monad-abort-fd"; + "monad-atom" = dontDistribute super."monad-atom"; + "monad-atom-simple" = dontDistribute super."monad-atom-simple"; + "monad-bool" = dontDistribute super."monad-bool"; + "monad-classes" = dontDistribute super."monad-classes"; + "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; + "monad-exception" = dontDistribute super."monad-exception"; + "monad-fork" = dontDistribute super."monad-fork"; + "monad-gen" = dontDistribute super."monad-gen"; + "monad-interleave" = dontDistribute super."monad-interleave"; + "monad-levels" = dontDistribute super."monad-levels"; + "monad-loops-stm" = dontDistribute super."monad-loops-stm"; + "monad-lrs" = dontDistribute super."monad-lrs"; + "monad-memo" = dontDistribute super."monad-memo"; + "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; + "monad-open" = dontDistribute super."monad-open"; + "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; + "monad-param" = dontDistribute super."monad-param"; + "monad-ran" = dontDistribute super."monad-ran"; + "monad-resumption" = dontDistribute super."monad-resumption"; + "monad-state" = dontDistribute super."monad-state"; + "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-stlike-io" = dontDistribute super."monad-stlike-io"; + "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; + "monad-supply" = dontDistribute super."monad-supply"; + "monad-task" = dontDistribute super."monad-task"; + "monad-tx" = dontDistribute super."monad-tx"; + "monad-unify" = dontDistribute super."monad-unify"; + "monad-wrap" = dontDistribute super."monad-wrap"; + "monadIO" = dontDistribute super."monadIO"; + "monadLib-compose" = dontDistribute super."monadLib-compose"; + "monadacme" = dontDistribute super."monadacme"; + "monadbi" = dontDistribute super."monadbi"; + "monadfibre" = dontDistribute super."monadfibre"; + "monadiccp" = dontDistribute super."monadiccp"; + "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; + "monadio-unwrappable" = dontDistribute super."monadio-unwrappable"; + "monadlist" = dontDistribute super."monadlist"; + "monadloc-pp" = dontDistribute super."monadloc-pp"; + "monadplus" = dontDistribute super."monadplus"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-owns" = dontDistribute super."monoid-owns"; + "monoid-record" = dontDistribute super."monoid-record"; + "monoid-statistics" = dontDistribute super."monoid-statistics"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidplus" = dontDistribute super."monoidplus"; + "monoids" = dontDistribute super."monoids"; + "monomorphic" = dontDistribute super."monomorphic"; + "montage" = dontDistribute super."montage"; + "montage-client" = dontDistribute super."montage-client"; + "monte-carlo" = dontDistribute super."monte-carlo"; + "moo" = dontDistribute super."moo"; + "moonshine" = dontDistribute super."moonshine"; + "morfette" = dontDistribute super."morfette"; + "morfeusz" = dontDistribute super."morfeusz"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; + "ms" = dontDistribute super."ms"; + "msgpack" = dontDistribute super."msgpack"; + "msgpack-aeson" = dontDistribute super."msgpack-aeson"; + "msgpack-idl" = dontDistribute super."msgpack-idl"; + "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; + "msu" = dontDistribute super."msu"; + "mtgoxapi" = dontDistribute super."mtgoxapi"; + "mtl-c" = dontDistribute super."mtl-c"; + "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-tf" = dontDistribute super."mtl-tf"; + "mtl-unleashed" = dontDistribute super."mtl-unleashed"; + "mtlparse" = dontDistribute super."mtlparse"; + "mtlx" = dontDistribute super."mtlx"; + "mtp" = dontDistribute super."mtp"; + "mtree" = dontDistribute super."mtree"; + "mucipher" = dontDistribute super."mucipher"; + "mudbath" = dontDistribute super."mudbath"; + "muesli" = dontDistribute super."muesli"; + "mueval" = dontDistribute super."mueval"; + "mulang" = dontDistribute super."mulang"; + "multext-east-msd" = dontDistribute super."multext-east-msd"; + "multi-cabal" = dontDistribute super."multi-cabal"; + "multiaddr" = dontDistribute super."multiaddr"; + "multifocal" = dontDistribute super."multifocal"; + "multihash" = dontDistribute super."multihash"; + "multipart-names" = dontDistribute super."multipart-names"; + "multipass" = dontDistribute super."multipass"; + "multiplate-simplified" = dontDistribute super."multiplate-simplified"; + "multiplicity" = dontDistribute super."multiplicity"; + "multirec" = dontDistribute super."multirec"; + "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; + "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset-comb" = dontDistribute super."multiset-comb"; + "multisetrewrite" = dontDistribute super."multisetrewrite"; + "multistate" = dontDistribute super."multistate"; + "muon" = dontDistribute super."muon"; + "murder" = dontDistribute super."murder"; + "murmur3" = dontDistribute super."murmur3"; + "murmurhash3" = dontDistribute super."murmurhash3"; + "music-articulation" = dontDistribute super."music-articulation"; + "music-diatonic" = dontDistribute super."music-diatonic"; + "music-dynamics" = dontDistribute super."music-dynamics"; + "music-dynamics-literal" = dontDistribute super."music-dynamics-literal"; + "music-graphics" = dontDistribute super."music-graphics"; + "music-parts" = dontDistribute super."music-parts"; + "music-pitch" = dontDistribute super."music-pitch"; + "music-pitch-literal" = dontDistribute super."music-pitch-literal"; + "music-preludes" = dontDistribute super."music-preludes"; + "music-score" = dontDistribute super."music-score"; + "music-sibelius" = dontDistribute super."music-sibelius"; + "music-suite" = dontDistribute super."music-suite"; + "music-util" = dontDistribute super."music-util"; + "musicbrainz-email" = dontDistribute super."musicbrainz-email"; + "musicxml" = dontDistribute super."musicxml"; + "musicxml2" = dontDistribute super."musicxml2"; + "mustache-haskell" = dontDistribute super."mustache-haskell"; + "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-iter" = dontDistribute super."mutable-iter"; + "mute-unmute" = dontDistribute super."mute-unmute"; + "mvc" = dontDistribute super."mvc"; + "mvc-updates" = dontDistribute super."mvc-updates"; + "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = doDistribute super."mwc-probability_1_0_3"; + "mwc-random-monad" = dontDistribute super."mwc-random-monad"; + "myTestlll" = dontDistribute super."myTestlll"; + "mybitcoin-sci" = dontDistribute super."mybitcoin-sci"; + "myo" = dontDistribute super."myo"; + "mysnapsession" = dontDistribute super."mysnapsession"; + "mysnapsession-example" = dontDistribute super."mysnapsession-example"; + "mysql-effect" = dontDistribute super."mysql-effect"; + "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi"; + "mysql-simple-typed" = dontDistribute super."mysql-simple-typed"; + "mzv" = dontDistribute super."mzv"; + "n-m" = dontDistribute super."n-m"; + "nagios-perfdata" = dontDistribute super."nagios-perfdata"; + "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg"; + "named-formlet" = dontDistribute super."named-formlet"; + "named-lock" = dontDistribute super."named-lock"; + "named-records" = dontDistribute super."named-records"; + "namelist" = dontDistribute super."namelist"; + "names" = dontDistribute super."names"; + "names-th" = dontDistribute super."names-th"; + "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; + "nano-hmac" = dontDistribute super."nano-hmac"; + "nano-md5" = dontDistribute super."nano-md5"; + "nanoAgda" = dontDistribute super."nanoAgda"; + "nanocurses" = dontDistribute super."nanocurses"; + "nanomsg" = dontDistribute super."nanomsg"; + "nanomsg-haskell" = dontDistribute super."nanomsg-haskell"; + "nanoparsec" = dontDistribute super."nanoparsec"; + "nanq" = dontDistribute super."nanq"; + "narc" = dontDistribute super."narc"; + "nat" = dontDistribute super."nat"; + "nats-queue" = dontDistribute super."nats-queue"; + "natural-number" = dontDistribute super."natural-number"; + "natural-numbers" = dontDistribute super."natural-numbers"; + "natural-transformation" = dontDistribute super."natural-transformation"; + "naturalcomp" = dontDistribute super."naturalcomp"; + "naturals" = dontDistribute super."naturals"; + "naver-translate" = dontDistribute super."naver-translate"; + "nbt" = dontDistribute super."nbt"; + "nc-indicators" = dontDistribute super."nc-indicators"; + "ncurses" = dontDistribute super."ncurses"; + "neat" = dontDistribute super."neat"; + "needle" = dontDistribute super."needle"; + "neet" = dontDistribute super."neet"; + "nehe-tuts" = dontDistribute super."nehe-tuts"; + "neil" = dontDistribute super."neil"; + "neither" = dontDistribute super."neither"; + "nemesis" = dontDistribute super."nemesis"; + "nemesis-titan" = dontDistribute super."nemesis-titan"; + "nerf" = dontDistribute super."nerf"; + "nero" = dontDistribute super."nero"; + "nero-wai" = dontDistribute super."nero-wai"; + "nero-warp" = dontDistribute super."nero-warp"; + "nested-routes" = dontDistribute super."nested-routes"; + "nested-sets" = dontDistribute super."nested-sets"; + "nestedmap" = dontDistribute super."nestedmap"; + "net-concurrent" = dontDistribute super."net-concurrent"; + "netclock" = dontDistribute super."netclock"; + "netcore" = dontDistribute super."netcore"; + "netlines" = dontDistribute super."netlines"; + "netlink" = dontDistribute super."netlink"; + "netlist" = dontDistribute super."netlist"; + "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl"; + "netpbm" = dontDistribute super."netpbm"; + "netrc" = dontDistribute super."netrc"; + "netspec" = dontDistribute super."netspec"; + "netstring-enumerator" = dontDistribute super."netstring-enumerator"; + "nettle-frp" = dontDistribute super."nettle-frp"; + "nettle-netkit" = dontDistribute super."nettle-netkit"; + "nettle-openflow" = dontDistribute super."nettle-openflow"; + "netwire" = dontDistribute super."netwire"; + "netwire-input" = dontDistribute super."netwire-input"; + "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; + "network-address" = dontDistribute super."network-address"; + "network-api-support" = dontDistribute super."network-api-support"; + "network-bitcoin" = dontDistribute super."network-bitcoin"; + "network-builder" = dontDistribute super."network-builder"; + "network-bytestring" = dontDistribute super."network-bytestring"; + "network-conduit" = dontDistribute super."network-conduit"; + "network-connection" = dontDistribute super."network-connection"; + "network-data" = dontDistribute super."network-data"; + "network-dbus" = dontDistribute super."network-dbus"; + "network-dns" = dontDistribute super."network-dns"; + "network-enumerator" = dontDistribute super."network-enumerator"; + "network-fancy" = dontDistribute super."network-fancy"; + "network-interfacerequest" = dontDistribute super."network-interfacerequest"; + "network-ip" = dontDistribute super."network-ip"; + "network-metrics" = dontDistribute super."network-metrics"; + "network-minihttp" = dontDistribute super."network-minihttp"; + "network-msg" = dontDistribute super."network-msg"; + "network-netpacket" = dontDistribute super."network-netpacket"; + "network-pgi" = dontDistribute super."network-pgi"; + "network-rpca" = dontDistribute super."network-rpca"; + "network-server" = dontDistribute super."network-server"; + "network-service" = dontDistribute super."network-service"; + "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; + "network-simple-tls" = dontDistribute super."network-simple-tls"; + "network-socket-options" = dontDistribute super."network-socket-options"; + "network-stream" = dontDistribute super."network-stream"; + "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport-amqp" = dontDistribute super."network-transport-amqp"; + "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; + "network-uri-static" = dontDistribute super."network-uri-static"; + "network-wai-router" = dontDistribute super."network-wai-router"; + "network-websocket" = dontDistribute super."network-websocket"; + "networked-game" = dontDistribute super."networked-game"; + "newports" = dontDistribute super."newports"; + "newsynth" = dontDistribute super."newsynth"; + "newt" = dontDistribute super."newt"; + "newtype-deriving" = dontDistribute super."newtype-deriving"; + "newtype-th" = dontDistribute super."newtype-th"; + "newtyper" = dontDistribute super."newtyper"; + "nextstep-plist" = dontDistribute super."nextstep-plist"; + "nf" = dontDistribute super."nf"; + "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; + "nibblestring" = dontDistribute super."nibblestring"; + "nicify" = dontDistribute super."nicify"; + "nicify-lib" = dontDistribute super."nicify-lib"; + "nicovideo-translator" = dontDistribute super."nicovideo-translator"; + "nikepub" = dontDistribute super."nikepub"; + "nimber" = dontDistribute super."nimber"; + "nist-beacon" = dontDistribute super."nist-beacon"; + "nitro" = dontDistribute super."nitro"; + "nix-eval" = dontDistribute super."nix-eval"; + "nixfromnpm" = dontDistribute super."nixfromnpm"; + "nixos-types" = dontDistribute super."nixos-types"; + "nkjp" = dontDistribute super."nkjp"; + "nlp-scores" = dontDistribute super."nlp-scores"; + "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts"; + "nm" = dontDistribute super."nm"; + "nme" = dontDistribute super."nme"; + "nntp" = dontDistribute super."nntp"; + "no-buffering-workaround" = dontDistribute super."no-buffering-workaround"; + "no-role-annots" = dontDistribute super."no-role-annots"; + "nofib-analyse" = dontDistribute super."nofib-analyse"; + "nofib-analyze" = dontDistribute super."nofib-analyze"; + "noise" = dontDistribute super."noise"; + "non-empty" = dontDistribute super."non-empty"; + "non-negative" = dontDistribute super."non-negative"; + "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; + "nonfree" = dontDistribute super."nonfree"; + "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; + "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; + "noodle" = dontDistribute super."noodle"; + "normaldistribution" = dontDistribute super."normaldistribution"; + "not-gloss" = dontDistribute super."not-gloss"; + "not-gloss-examples" = dontDistribute super."not-gloss-examples"; + "not-in-base" = dontDistribute super."not-in-base"; + "notcpp" = dontDistribute super."notcpp"; + "notmuch-haskell" = dontDistribute super."notmuch-haskell"; + "notmuch-web" = dontDistribute super."notmuch-web"; + "notzero" = dontDistribute super."notzero"; + "np-extras" = dontDistribute super."np-extras"; + "np-linear" = dontDistribute super."np-linear"; + "nptools" = dontDistribute super."nptools"; + "nth-prime" = dontDistribute super."nth-prime"; + "nthable" = dontDistribute super."nthable"; + "ntp-control" = dontDistribute super."ntp-control"; + "null-canvas" = dontDistribute super."null-canvas"; + "nullary" = dontDistribute super."nullary"; + "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; + "numbering" = dontDistribute super."numbering"; + "numerals" = dontDistribute super."numerals"; + "numerals-base" = dontDistribute super."numerals-base"; + "numeric-limits" = dontDistribute super."numeric-limits"; + "numeric-prelude" = dontDistribute super."numeric-prelude"; + "numeric-qq" = dontDistribute super."numeric-qq"; + "numeric-quest" = dontDistribute super."numeric-quest"; + "numeric-ranges" = dontDistribute super."numeric-ranges"; + "numeric-tools" = dontDistribute super."numeric-tools"; + "numericpeano" = dontDistribute super."numericpeano"; + "nums" = dontDistribute super."nums"; + "numtype" = dontDistribute super."numtype"; + "numtype-tf" = dontDistribute super."numtype-tf"; + "nurbs" = dontDistribute super."nurbs"; + "nvim-hs" = dontDistribute super."nvim-hs"; + "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib"; + "nyan" = dontDistribute super."nyan"; + "nylas" = dontDistribute super."nylas"; + "nymphaea" = dontDistribute super."nymphaea"; + "oanda-rest-api" = dontDistribute super."oanda-rest-api"; + "oauthenticated" = dontDistribute super."oauthenticated"; + "obdd" = dontDistribute super."obdd"; + "oberon0" = dontDistribute super."oberon0"; + "obj" = dontDistribute super."obj"; + "objectid" = dontDistribute super."objectid"; + "objective" = doDistribute super."objective_1_0_5"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octane" = dontDistribute super."octane"; + "octohat" = dontDistribute super."octohat"; + "octopus" = dontDistribute super."octopus"; + "oculus" = dontDistribute super."oculus"; + "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = dontDistribute super."oeis"; + "off-simple" = dontDistribute super."off-simple"; + "ohloh-hs" = dontDistribute super."ohloh-hs"; + "oi" = dontDistribute super."oi"; + "oidc-client" = dontDistribute super."oidc-client"; + "ois-input-manager" = dontDistribute super."ois-input-manager"; + "old-version" = dontDistribute super."old-version"; + "olwrapper" = dontDistribute super."olwrapper"; + "omaketex" = dontDistribute super."omaketex"; + "omega" = dontDistribute super."omega"; + "omnicodec" = dontDistribute super."omnicodec"; + "on-a-horse" = dontDistribute super."on-a-horse"; + "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "one-liner" = dontDistribute super."one-liner"; + "one-time-password" = dontDistribute super."one-time-password"; + "oneOfN" = dontDistribute super."oneOfN"; + "oneormore" = dontDistribute super."oneormore"; + "only" = dontDistribute super."only"; + "onu-course" = dontDistribute super."onu-course"; + "opaleye-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = dontDistribute super."opaleye-trans"; + "open-haddock" = dontDistribute super."open-haddock"; + "open-pandoc" = dontDistribute super."open-pandoc"; + "open-symbology" = dontDistribute super."open-symbology"; + "open-typerep" = dontDistribute super."open-typerep"; + "open-union" = dontDistribute super."open-union"; + "open-witness" = dontDistribute super."open-witness"; + "opencog-atomspace" = dontDistribute super."opencog-atomspace"; + "opencv-raw" = dontDistribute super."opencv-raw"; + "opendatatable" = dontDistribute super."opendatatable"; + "openexchangerates" = dontDistribute super."openexchangerates"; + "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; + "opengl-spacenavigator" = dontDistribute super."opengl-spacenavigator"; + "opengles" = dontDistribute super."opengles"; + "openid" = dontDistribute super."openid"; + "openpgp" = dontDistribute super."openpgp"; + "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; + "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; + "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "openssh-github-keys" = dontDistribute super."openssh-github-keys"; + "openssl-createkey" = dontDistribute super."openssl-createkey"; + "opentheory" = dontDistribute super."opentheory"; + "opentheory-bits" = dontDistribute super."opentheory-bits"; + "opentheory-byte" = dontDistribute super."opentheory-byte"; + "opentheory-char" = dontDistribute super."opentheory-char"; + "opentheory-divides" = dontDistribute super."opentheory-divides"; + "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci"; + "opentheory-parser" = dontDistribute super."opentheory-parser"; + "opentheory-prime" = dontDistribute super."opentheory-prime"; + "opentheory-primitive" = dontDistribute super."opentheory-primitive"; + "opentheory-probability" = dontDistribute super."opentheory-probability"; + "opentheory-stream" = dontDistribute super."opentheory-stream"; + "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; + "operational-extra" = dontDistribute super."operational-extra"; + "opml" = dontDistribute super."opml"; + "opml-conduit" = doDistribute super."opml-conduit_0_4_0_1"; + "opn" = dontDistribute super."opn"; + "optimal-blocks" = dontDistribute super."optimal-blocks"; + "optimization" = dontDistribute super."optimization"; + "optimusprime" = dontDistribute super."optimusprime"; + "option" = dontDistribute super."option"; + "optional" = dontDistribute super."optional"; + "options-time" = dontDistribute super."options-time"; + "optparse-declarative" = dontDistribute super."optparse-declarative"; + "optparse-generic" = dontDistribute super."optparse-generic"; + "orc" = dontDistribute super."orc"; + "orchestrate" = dontDistribute super."orchestrate"; + "orchid" = dontDistribute super."orchid"; + "orchid-demo" = dontDistribute super."orchid-demo"; + "ord-adhoc" = dontDistribute super."ord-adhoc"; + "order-maintenance" = dontDistribute super."order-maintenance"; + "order-statistic-tree" = dontDistribute super."order-statistic-tree"; + "order-statistics" = dontDistribute super."order-statistics"; + "ordered" = dontDistribute super."ordered"; + "orders" = dontDistribute super."orders"; + "ordrea" = dontDistribute super."ordrea"; + "organize-imports" = dontDistribute super."organize-imports"; + "orgmode" = dontDistribute super."orgmode"; + "orgmode-parse" = dontDistribute super."orgmode-parse"; + "origami" = dontDistribute super."origami"; + "os-release" = dontDistribute super."os-release"; + "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; + "osm-download" = dontDistribute super."osm-download"; + "oso2pdf" = dontDistribute super."oso2pdf"; + "osx-ar" = dontDistribute super."osx-ar"; + "ot" = dontDistribute super."ot"; + "ottparse-pretty" = dontDistribute super."ottparse-pretty"; + "overloaded-records" = dontDistribute super."overloaded-records"; + "overture" = dontDistribute super."overture"; + "pack" = dontDistribute super."pack"; + "package-o-tron" = dontDistribute super."package-o-tron"; + "package-vt" = dontDistribute super."package-vt"; + "packdeps" = dontDistribute super."packdeps"; + "packed-dawg" = dontDistribute super."packed-dawg"; + "packedstring" = dontDistribute super."packedstring"; + "packer" = dontDistribute super."packer"; + "packman" = dontDistribute super."packman"; + "packunused" = dontDistribute super."packunused"; + "pacman-memcache" = dontDistribute super."pacman-memcache"; + "padKONTROL" = dontDistribute super."padKONTROL"; + "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_6"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_9"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-include" = dontDistribute super."pandoc-include"; + "pandoc-japanese-filters" = dontDistribute super."pandoc-japanese-filters"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "papillon" = dontDistribute super."papillon"; + "pappy" = dontDistribute super."pappy"; + "para" = dontDistribute super."para"; + "paragon" = dontDistribute super."paragon"; + "parallel-tasks" = dontDistribute super."parallel-tasks"; + "parallel-tree-search" = dontDistribute super."parallel-tree-search"; + "parameterized-data" = dontDistribute super."parameterized-data"; + "parco" = dontDistribute super."parco"; + "parco-attoparsec" = dontDistribute super."parco-attoparsec"; + "parco-parsec" = dontDistribute super."parco-parsec"; + "parcom-lib" = dontDistribute super."parcom-lib"; + "parconc-examples" = dontDistribute super."parconc-examples"; + "parport" = dontDistribute super."parport"; + "parse-dimacs" = dontDistribute super."parse-dimacs"; + "parse-help" = dontDistribute super."parse-help"; + "parsec-extra" = dontDistribute super."parsec-extra"; + "parsec-numbers" = dontDistribute super."parsec-numbers"; + "parsec-parsers" = dontDistribute super."parsec-parsers"; + "parsec-permutation" = dontDistribute super."parsec-permutation"; + "parsec-tagsoup" = dontDistribute super."parsec-tagsoup"; + "parsec-trace" = dontDistribute super."parsec-trace"; + "parsec-utils" = dontDistribute super."parsec-utils"; + "parsec1" = dontDistribute super."parsec1"; + "parsec2" = dontDistribute super."parsec2"; + "parsec3" = dontDistribute super."parsec3"; + "parsec3-numbers" = dontDistribute super."parsec3-numbers"; + "parsedate" = dontDistribute super."parsedate"; + "parsek" = dontDistribute super."parsek"; + "parsely" = dontDistribute super."parsely"; + "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; + "parsergen" = dontDistribute super."parsergen"; + "parsestar" = dontDistribute super."parsestar"; + "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; + "partial" = dontDistribute super."partial"; + "partial-lens" = dontDistribute super."partial-lens"; + "partial-uri" = dontDistribute super."partial-uri"; + "partly" = dontDistribute super."partly"; + "passage" = dontDistribute super."passage"; + "passwords" = dontDistribute super."passwords"; + "pastis" = dontDistribute super."pastis"; + "pasty" = dontDistribute super."pasty"; + "patch-combinators" = dontDistribute super."patch-combinators"; + "patch-image" = dontDistribute super."patch-image"; + "path-io" = doDistribute super."path-io_0_2_0"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "patronscraper" = dontDistribute super."patronscraper"; + "patterns" = dontDistribute super."patterns"; + "paymill" = dontDistribute super."paymill"; + "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops"; + "paypal-api" = dontDistribute super."paypal-api"; + "pb" = dontDistribute super."pb"; + "pbc4hs" = dontDistribute super."pbc4hs"; + "pbkdf" = dontDistribute super."pbkdf"; + "pcap-conduit" = dontDistribute super."pcap-conduit"; + "pcap-enumerator" = dontDistribute super."pcap-enumerator"; + "pcd-loader" = dontDistribute super."pcd-loader"; + "pcf" = dontDistribute super."pcf"; + "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; + "pcre-less" = dontDistribute super."pcre-less"; + "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; + "pdf2line" = dontDistribute super."pdf2line"; + "pdfsplit" = dontDistribute super."pdfsplit"; + "pdynload" = dontDistribute super."pdynload"; + "peakachu" = dontDistribute super."peakachu"; + "peano" = dontDistribute super."peano"; + "peano-inf" = dontDistribute super."peano-inf"; + "pec" = dontDistribute super."pec"; + "pecoff" = dontDistribute super."pecoff"; + "peg" = dontDistribute super."peg"; + "peggy" = dontDistribute super."peggy"; + "pell" = dontDistribute super."pell"; + "penn-treebank" = dontDistribute super."penn-treebank"; + "penny" = dontDistribute super."penny"; + "penny-bin" = dontDistribute super."penny-bin"; + "penny-lib" = dontDistribute super."penny-lib"; + "peparser" = dontDistribute super."peparser"; + "perceptron" = dontDistribute super."perceptron"; + "perdure" = dontDistribute super."perdure"; + "period" = dontDistribute super."period"; + "perm" = dontDistribute super."perm"; + "permutation" = dontDistribute super."permutation"; + "permute" = dontDistribute super."permute"; + "persist2er" = dontDistribute super."persist2er"; + "persistable-record" = dontDistribute super."persistable-record"; + "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; + "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-equivalence" = dontDistribute super."persistent-equivalence"; + "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; + "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; + "persistent-iproute" = dontDistribute super."persistent-iproute"; + "persistent-map" = dontDistribute super."persistent-map"; + "persistent-odbc" = dontDistribute super."persistent-odbc"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; + "persistent-template" = doDistribute super."persistent-template_2_1_5"; + "persistent-vector" = dontDistribute super."persistent-vector"; + "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; + "persona" = dontDistribute super."persona"; + "persona-idp" = dontDistribute super."persona-idp"; + "pesca" = dontDistribute super."pesca"; + "peyotls" = dontDistribute super."peyotls"; + "peyotls-codec" = dontDistribute super."peyotls-codec"; + "pez" = dontDistribute super."pez"; + "pg-harness" = dontDistribute super."pg-harness"; + "pg-harness-client" = dontDistribute super."pg-harness-client"; + "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pgdl" = dontDistribute super."pgdl"; + "pgm" = dontDistribute super."pgm"; + "pgsql-simple" = dontDistribute super."pgsql-simple"; + "pgstream" = dontDistribute super."pgstream"; + "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; + "phone-numbers" = dontDistribute super."phone-numbers"; + "phone-push" = dontDistribute super."phone-push"; + "phonetic-code" = dontDistribute super."phonetic-code"; + "phooey" = dontDistribute super."phooey"; + "photoname" = dontDistribute super."photoname"; + "phraskell" = dontDistribute super."phraskell"; + "phybin" = dontDistribute super."phybin"; + "pi-calculus" = dontDistribute super."pi-calculus"; + "pia-forward" = dontDistribute super."pia-forward"; + "pianola" = dontDistribute super."pianola"; + "picologic" = dontDistribute super."picologic"; + "picosat" = dontDistribute super."picosat"; + "piet" = dontDistribute super."piet"; + "piki" = dontDistribute super."piki"; + "pinboard" = dontDistribute super."pinboard"; + "pinchot" = doDistribute super."pinchot_0_6_0_0"; + "pipe-enumerator" = dontDistribute super."pipe-enumerator"; + "pipeclip" = dontDistribute super."pipeclip"; + "pipes-async" = dontDistribute super."pipes-async"; + "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-bzip" = dontDistribute super."pipes-bzip"; + "pipes-cacophony" = doDistribute super."pipes-cacophony_0_1_3"; + "pipes-cellular" = dontDistribute super."pipes-cellular"; + "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; + "pipes-cereal" = dontDistribute super."pipes-cereal"; + "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-conduit" = dontDistribute super."pipes-conduit"; + "pipes-core" = dontDistribute super."pipes-core"; + "pipes-courier" = dontDistribute super."pipes-courier"; + "pipes-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-network-tls" = dontDistribute super."pipes-network-tls"; + "pipes-p2p" = dontDistribute super."pipes-p2p"; + "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; + "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; + "pipes-vector" = dontDistribute super."pipes-vector"; + "pipes-websockets" = dontDistribute super."pipes-websockets"; + "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; + "pipes-zlib" = dontDistribute super."pipes-zlib"; + "pisigma" = dontDistribute super."pisigma"; + "pit" = dontDistribute super."pit"; + "pitchtrack" = dontDistribute super."pitchtrack"; + "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs7" = dontDistribute super."pkcs7"; + "pkggraph" = dontDistribute super."pkggraph"; + "pktree" = dontDistribute super."pktree"; + "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; + "planar-graph" = dontDistribute super."planar-graph"; + "plat" = dontDistribute super."plat"; + "playlists" = dontDistribute super."playlists"; + "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; + "plivo" = dontDistribute super."plivo"; + "plot-lab" = dontDistribute super."plot-lab"; + "plotfont" = dontDistribute super."plotfont"; + "plotserver-api" = dontDistribute super."plotserver-api"; + "plugins" = dontDistribute super."plugins"; + "plugins-auto" = dontDistribute super."plugins-auto"; + "plugins-multistage" = dontDistribute super."plugins-multistage"; + "plumbers" = dontDistribute super."plumbers"; + "ply-loader" = dontDistribute super."ply-loader"; + "png-file" = dontDistribute super."png-file"; + "pngload" = dontDistribute super."pngload"; + "pngload-fixed" = dontDistribute super."pngload-fixed"; + "pnm" = dontDistribute super."pnm"; + "pocket-dns" = dontDistribute super."pocket-dns"; + "pointfree" = dontDistribute super."pointfree"; + "pointful" = dontDistribute super."pointful"; + "pointless-fun" = dontDistribute super."pointless-fun"; + "pointless-haskell" = dontDistribute super."pointless-haskell"; + "pointless-lenses" = dontDistribute super."pointless-lenses"; + "pointless-rewrite" = dontDistribute super."pointless-rewrite"; + "poker-eval" = dontDistribute super."poker-eval"; + "pokitdok" = dontDistribute super."pokitdok"; + "polar" = dontDistribute super."polar"; + "polar-configfile" = dontDistribute super."polar-configfile"; + "polar-shader" = dontDistribute super."polar-shader"; + "polh-lexicon" = dontDistribute super."polh-lexicon"; + "polimorf" = dontDistribute super."polimorf"; + "poll" = dontDistribute super."poll"; + "poly-control" = dontDistribute super."poly-control"; + "polyToMonoid" = dontDistribute super."polyToMonoid"; + "polymap" = dontDistribute super."polymap"; + "polynom" = dontDistribute super."polynom"; + "polynomial" = dontDistribute super."polynomial"; + "polynomials-bernstein" = dontDistribute super."polynomials-bernstein"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "ponder" = dontDistribute super."ponder"; + "pong-server" = dontDistribute super."pong-server"; + "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver"; + "pontarius-xmpp" = dontDistribute super."pontarius-xmpp"; + "pontarius-xpmn" = dontDistribute super."pontarius-xpmn"; + "pony" = dontDistribute super."pony"; + "pool" = dontDistribute super."pool"; + "pool-conduit" = dontDistribute super."pool-conduit"; + "pooled-io" = dontDistribute super."pooled-io"; + "pop3-client" = dontDistribute super."pop3-client"; + "popenhs" = dontDistribute super."popenhs"; + "poppler" = dontDistribute super."poppler"; + "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache"; + "portable-lines" = dontDistribute super."portable-lines"; + "portaudio" = dontDistribute super."portaudio"; + "porte" = dontDistribute super."porte"; + "porter" = dontDistribute super."porter"; + "ports" = dontDistribute super."ports"; + "ports-tools" = dontDistribute super."ports-tools"; + "positive" = dontDistribute super."positive"; + "posix-acl" = dontDistribute super."posix-acl"; + "posix-escape" = dontDistribute super."posix-escape"; + "posix-filelock" = dontDistribute super."posix-filelock"; + "posix-paths" = dontDistribute super."posix-paths"; + "posix-pty" = dontDistribute super."posix-pty"; + "posix-timer" = dontDistribute super."posix-timer"; + "posix-waitpid" = dontDistribute super."posix-waitpid"; + "possible" = dontDistribute super."possible"; + "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9"; + "postgresql-config" = dontDistribute super."postgresql-config"; + "postgresql-connector" = dontDistribute super."postgresql-connector"; + "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; + "postgresql-cube" = dontDistribute super."postgresql-cube"; + "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; + "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; + "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; + "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; + "postgresql-typed" = dontDistribute super."postgresql-typed"; + "postgrest" = dontDistribute super."postgrest"; + "postie" = dontDistribute super."postie"; + "postmark" = dontDistribute super."postmark"; + "postmaster" = dontDistribute super."postmaster"; + "potato-tool" = dontDistribute super."potato-tool"; + "potrace" = dontDistribute super."potrace"; + "potrace-diagrams" = dontDistribute super."potrace-diagrams"; + "powermate" = dontDistribute super."powermate"; + "powerpc" = dontDistribute super."powerpc"; + "ppm" = dontDistribute super."ppm"; + "pqc" = dontDistribute super."pqc"; + "pqueue-mtl" = dontDistribute super."pqueue-mtl"; + "practice-room" = dontDistribute super."practice-room"; + "precis" = dontDistribute super."precis"; + "predicates" = dontDistribute super."predicates"; + "prednote-test" = dontDistribute super."prednote-test"; + "prefork" = dontDistribute super."prefork"; + "pregame" = dontDistribute super."pregame"; + "prelude-edsl" = dontDistribute super."prelude-edsl"; + "prelude-generalize" = dontDistribute super."prelude-generalize"; + "prelude-plus" = dontDistribute super."prelude-plus"; + "prelude-prime" = dontDistribute super."prelude-prime"; + "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = dontDistribute super."present"; + "press" = dontDistribute super."press"; + "presto-hdbc" = dontDistribute super."presto-hdbc"; + "prettify" = dontDistribute super."prettify"; + "pretty-compact" = dontDistribute super."pretty-compact"; + "pretty-error" = dontDistribute super."pretty-error"; + "pretty-hex" = dontDistribute super."pretty-hex"; + "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-sop" = dontDistribute super."pretty-sop"; + "pretty-tree" = dontDistribute super."pretty-tree"; + "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-uniq" = dontDistribute super."prim-uniq"; + "primitive-simd" = dontDistribute super."primitive-simd"; + "primula-board" = dontDistribute super."primula-board"; + "primula-bot" = dontDistribute super."primula-bot"; + "print-debugger" = dontDistribute super."print-debugger"; + "printf-mauke" = dontDistribute super."printf-mauke"; + "printxosd" = dontDistribute super."printxosd"; + "priority-queue" = dontDistribute super."priority-queue"; + "priority-sync" = dontDistribute super."priority-sync"; + "privileged-concurrency" = dontDistribute super."privileged-concurrency"; + "prizm" = dontDistribute super."prizm"; + "probability" = dontDistribute super."probability"; + "probable" = dontDistribute super."probable"; + "proc" = dontDistribute super."proc"; + "process-conduit" = dontDistribute super."process-conduit"; + "process-extras" = doDistribute super."process-extras_0_3_3_7"; + "process-iterio" = dontDistribute super."process-iterio"; + "process-leksah" = dontDistribute super."process-leksah"; + "process-listlike" = dontDistribute super."process-listlike"; + "process-progress" = dontDistribute super."process-progress"; + "process-qq" = dontDistribute super."process-qq"; + "process-streaming" = dontDistribute super."process-streaming"; + "processing" = dontDistribute super."processing"; + "processor-creative-kit" = dontDistribute super."processor-creative-kit"; + "procrastinating-structure" = dontDistribute super."procrastinating-structure"; + "procrastinating-variable" = dontDistribute super."procrastinating-variable"; + "procstat" = dontDistribute super."procstat"; + "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3_1"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "profiteur" = dontDistribute super."profiteur"; + "progress" = dontDistribute super."progress"; + "progressbar" = dontDistribute super."progressbar"; + "progression" = dontDistribute super."progression"; + "progressive" = dontDistribute super."progressive"; + "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; + "projection" = dontDistribute super."projection"; + "prolog" = dontDistribute super."prolog"; + "prolog-graph" = dontDistribute super."prolog-graph"; + "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; + "promise" = dontDistribute super."promise"; + "promises" = dontDistribute super."promises"; + "propane" = dontDistribute super."propane"; + "propellor" = dontDistribute super."propellor"; + "properties" = dontDistribute super."properties"; + "property-list" = dontDistribute super."property-list"; + "proplang" = dontDistribute super."proplang"; + "props" = dontDistribute super."props"; + "prosper" = dontDistribute super."prosper"; + "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; + "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; + "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "proton-haskell" = dontDistribute super."proton-haskell"; + "prototype" = dontDistribute super."prototype"; + "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = doDistribute super."psc-ide_0_5_0"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; + "publicsuffixlist" = dontDistribute super."publicsuffixlist"; + "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; + "pubnub" = dontDistribute super."pubnub"; + "pubsub" = dontDistribute super."pubsub"; + "puffytools" = dontDistribute super."puffytools"; + "pugixml" = dontDistribute super."pugixml"; + "pugs-DrIFT" = dontDistribute super."pugs-DrIFT"; + "pugs-HsSyck" = dontDistribute super."pugs-HsSyck"; + "pugs-compat" = dontDistribute super."pugs-compat"; + "pugs-hsregex" = dontDistribute super."pugs-hsregex"; + "pulse-simple" = dontDistribute super."pulse-simple"; + "punkt" = dontDistribute super."punkt"; + "punycode" = dontDistribute super."punycode"; + "puppetresources" = dontDistribute super."puppetresources"; + "pure-fft" = dontDistribute super."pure-fft"; + "pure-priority-queue" = dontDistribute super."pure-priority-queue"; + "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; + "pure-zlib" = dontDistribute super."pure-zlib"; + "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; + "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "push-notify" = dontDistribute super."push-notify"; + "push-notify-ccs" = dontDistribute super."push-notify-ccs"; + "push-notify-general" = dontDistribute super."push-notify-general"; + "pusher-haskell" = dontDistribute super."pusher-haskell"; + "pushme" = dontDistribute super."pushme"; + "putlenses" = dontDistribute super."putlenses"; + "puzzle-draw" = dontDistribute super."puzzle-draw"; + "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline"; + "pvd" = dontDistribute super."pvd"; + "pwstore-cli" = dontDistribute super."pwstore-cli"; + "pxsl-tools" = dontDistribute super."pxsl-tools"; + "pyffi" = dontDistribute super."pyffi"; + "pyfi" = dontDistribute super."pyfi"; + "python-pickle" = dontDistribute super."python-pickle"; + "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator"; + "qd" = dontDistribute super."qd"; + "qd-vec" = dontDistribute super."qd-vec"; + "qed" = dontDistribute super."qed"; + "qhull-simple" = dontDistribute super."qhull-simple"; + "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "qudb" = dontDistribute super."qudb"; + "quenya-verb" = dontDistribute super."quenya-verb"; + "querystring-pickle" = dontDistribute super."querystring-pickle"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quick-schema" = dontDistribute super."quick-schema"; + "quickcheck-poly" = dontDistribute super."quickcheck-poly"; + "quickcheck-properties" = dontDistribute super."quickcheck-properties"; + "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; + "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad"; + "quickcheck-regex" = dontDistribute super."quickcheck-regex"; + "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng"; + "quickcheck-rematch" = dontDistribute super."quickcheck-rematch"; + "quickcheck-script" = dontDistribute super."quickcheck-script"; + "quickcheck-simple" = dontDistribute super."quickcheck-simple"; + "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "quicktest" = dontDistribute super."quicktest"; + "quickwebapp" = dontDistribute super."quickwebapp"; + "quiver" = dontDistribute super."quiver"; + "quiver-bytestring" = dontDistribute super."quiver-bytestring"; + "quiver-cell" = dontDistribute super."quiver-cell"; + "quiver-csv" = dontDistribute super."quiver-csv"; + "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-http" = dontDistribute super."quiver-http"; + "quoridor-hs" = dontDistribute super."quoridor-hs"; + "qux" = dontDistribute super."qux"; + "rabocsv2qif" = dontDistribute super."rabocsv2qif"; + "rad" = dontDistribute super."rad"; + "radian" = dontDistribute super."radian"; + "radium" = dontDistribute super."radium"; + "radium-formula-parser" = dontDistribute super."radium-formula-parser"; + "radix" = dontDistribute super."radix"; + "rados-haskell" = dontDistribute super."rados-haskell"; + "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-tree" = dontDistribute super."random-tree"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratel" = dontDistribute super."ratel"; + "ratel-wai" = dontDistribute super."ratel-wai"; + "ratio-int" = dontDistribute super."ratio-int"; + "raven-haskell" = dontDistribute super."raven-haskell"; + "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "rawstring-qm" = dontDistribute super."rawstring-qm"; + "razom-text-util" = dontDistribute super."razom-text-util"; + "rbr" = dontDistribute super."rbr"; + "rclient" = dontDistribute super."rclient"; + "rcu" = dontDistribute super."rcu"; + "rdf4h" = dontDistribute super."rdf4h"; + "rdioh" = dontDistribute super."rdioh"; + "rdtsc" = dontDistribute super."rdtsc"; + "rdtsc-enolan" = dontDistribute super."rdtsc-enolan"; + "re2" = dontDistribute super."re2"; + "react-flux" = dontDistribute super."react-flux"; + "react-haskell" = dontDistribute super."react-haskell"; + "reaction-logic" = dontDistribute super."reaction-logic"; + "reactive" = dontDistribute super."reactive"; + "reactive-bacon" = dontDistribute super."reactive-bacon"; + "reactive-balsa" = dontDistribute super."reactive-balsa"; + "reactive-banana" = dontDistribute super."reactive-banana"; + "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl"; + "reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2"; + "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny"; + "reactive-banana-wx" = dontDistribute super."reactive-banana-wx"; + "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip"; + "reactive-glut" = dontDistribute super."reactive-glut"; + "reactive-haskell" = dontDistribute super."reactive-haskell"; + "reactive-io" = dontDistribute super."reactive-io"; + "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; + "reactor" = dontDistribute super."reactor"; + "read-bounded" = dontDistribute super."read-bounded"; + "readline-statevar" = dontDistribute super."readline-statevar"; + "readpyc" = dontDistribute super."readpyc"; + "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; + "reasonable-lens" = dontDistribute super."reasonable-lens"; + "reasonable-operational" = dontDistribute super."reasonable-operational"; + "rebase" = dontDistribute super."rebase"; + "recaptcha" = dontDistribute super."recaptcha"; + "record" = dontDistribute super."record"; + "record-aeson" = dontDistribute super."record-aeson"; + "record-gl" = dontDistribute super."record-gl"; + "record-preprocessor" = dontDistribute super."record-preprocessor"; + "record-syntax" = dontDistribute super."record-syntax"; + "records" = dontDistribute super."records"; + "records-th" = dontDistribute super."records-th"; + "recursive-line-count" = dontDistribute super."recursive-line-count"; + "redHandlers" = dontDistribute super."redHandlers"; + "reddit" = dontDistribute super."reddit"; + "redis" = dontDistribute super."redis"; + "redis-hs" = dontDistribute super."redis-hs"; + "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-simple" = dontDistribute super."redis-simple"; + "redo" = dontDistribute super."redo"; + "reedsolomon" = dontDistribute super."reedsolomon"; + "reenact" = dontDistribute super."reenact"; + "reexport-crypto-random" = dontDistribute super."reexport-crypto-random"; + "ref" = dontDistribute super."ref"; + "ref-mtl" = dontDistribute super."ref-mtl"; + "ref-tf" = dontDistribute super."ref-tf"; + "refcount" = dontDistribute super."refcount"; + "reference" = dontDistribute super."reference"; + "references" = dontDistribute super."references"; + "refh" = dontDistribute super."refh"; + "refined" = dontDistribute super."refined"; + "reflection-extras" = dontDistribute super."reflection-extras"; + "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; + "reflex" = dontDistribute super."reflex"; + "reflex-animation" = dontDistribute super."reflex-animation"; + "reflex-dom" = dontDistribute super."reflex-dom"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; + "regex-deriv" = dontDistribute super."regex-deriv"; + "regex-dfa" = dontDistribute super."regex-dfa"; + "regex-easy" = dontDistribute super."regex-easy"; + "regex-genex" = dontDistribute super."regex-genex"; + "regex-parsec" = dontDistribute super."regex-parsec"; + "regex-pderiv" = dontDistribute super."regex-pderiv"; + "regex-posix-unittest" = dontDistribute super."regex-posix-unittest"; + "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes"; + "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter"; + "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; + "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; + "regex-tre" = dontDistribute super."regex-tre"; + "regex-xmlschema" = dontDistribute super."regex-xmlschema"; + "regexchar" = dontDistribute super."regexchar"; + "regexdot" = dontDistribute super."regexdot"; + "regexp-tries" = dontDistribute super."regexp-tries"; + "regexpr" = dontDistribute super."regexpr"; + "regexpr-symbolic" = dontDistribute super."regexpr-symbolic"; + "regexqq" = dontDistribute super."regexqq"; + "regional-pointers" = dontDistribute super."regional-pointers"; + "regions" = dontDistribute super."regions"; + "regions-monadsfd" = dontDistribute super."regions-monadsfd"; + "regions-monadstf" = dontDistribute super."regions-monadstf"; + "regions-mtl" = dontDistribute super."regions-mtl"; + "regress" = dontDistribute super."regress"; + "regular" = dontDistribute super."regular"; + "regular-extras" = dontDistribute super."regular-extras"; + "regular-web" = dontDistribute super."regular-web"; + "regular-xmlpickler" = dontDistribute super."regular-xmlpickler"; + "reheat" = dontDistribute super."reheat"; + "rehoo" = dontDistribute super."rehoo"; + "rei" = dontDistribute super."rei"; + "reified-records" = dontDistribute super."reified-records"; + "reify" = dontDistribute super."reify"; + "relacion" = dontDistribute super."relacion"; + "relation" = dontDistribute super."relation"; + "relational-postgresql8" = dontDistribute super."relational-postgresql8"; + "relational-query" = dontDistribute super."relational-query"; + "relational-query-HDBC" = dontDistribute super."relational-query-HDBC"; + "relational-record" = dontDistribute super."relational-record"; + "relational-record-examples" = dontDistribute super."relational-record-examples"; + "relational-schemas" = dontDistribute super."relational-schemas"; + "relative-date" = dontDistribute super."relative-date"; + "relit" = dontDistribute super."relit"; + "rematch" = dontDistribute super."rematch"; + "rematch-text" = dontDistribute super."rematch-text"; + "remote" = dontDistribute super."remote"; + "remote-debugger" = dontDistribute super."remote-debugger"; + "remote-json" = dontDistribute super."remote-json"; + "remote-json-client" = dontDistribute super."remote-json-client"; + "remote-json-server" = dontDistribute super."remote-json-server"; + "remote-monad" = dontDistribute super."remote-monad"; + "remotion" = dontDistribute super."remotion"; + "renderable" = dontDistribute super."renderable"; + "reord" = dontDistribute super."reord"; + "reorderable" = dontDistribute super."reorderable"; + "repa-array" = dontDistribute super."repa-array"; + "repa-bytestring" = dontDistribute super."repa-bytestring"; + "repa-convert" = dontDistribute super."repa-convert"; + "repa-eval" = dontDistribute super."repa-eval"; + "repa-examples" = dontDistribute super."repa-examples"; + "repa-fftw" = dontDistribute super."repa-fftw"; + "repa-flow" = dontDistribute super."repa-flow"; + "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; + "repa-plugin" = dontDistribute super."repa-plugin"; + "repa-scalar" = dontDistribute super."repa-scalar"; + "repa-series" = dontDistribute super."repa-series"; + "repa-sndfile" = dontDistribute super."repa-sndfile"; + "repa-stream" = dontDistribute super."repa-stream"; + "repa-v4l2" = dontDistribute super."repa-v4l2"; + "repl" = dontDistribute super."repl"; + "repl-toolkit" = dontDistribute super."repl-toolkit"; + "repline" = dontDistribute super."repline"; + "repo-based-blog" = dontDistribute super."repo-based-blog"; + "repr" = dontDistribute super."repr"; + "repr-tree-syb" = dontDistribute super."repr-tree-syb"; + "representable-functors" = dontDistribute super."representable-functors"; + "representable-profunctors" = dontDistribute super."representable-profunctors"; + "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; + "request-monad" = dontDistribute super."request-monad"; + "reserve" = dontDistribute super."reserve"; + "resistor-cube" = dontDistribute super."resistor-cube"; + "resource-effect" = dontDistribute super."resource-effect"; + "resource-embed" = dontDistribute super."resource-embed"; + "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-pool-monad" = dontDistribute super."resource-pool-monad"; + "resource-simple" = dontDistribute super."resource-simple"; + "respond" = dontDistribute super."respond"; + "rest-core" = doDistribute super."rest-core_0_37"; + "rest-example" = dontDistribute super."rest-example"; + "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "restful-snap" = dontDistribute super."restful-snap"; + "restricted-workers" = dontDistribute super."restricted-workers"; + "restyle" = dontDistribute super."restyle"; + "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb-model" = dontDistribute super."rethinkdb-model"; + "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retryer" = dontDistribute super."retryer"; + "revdectime" = dontDistribute super."revdectime"; + "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-geocoding" = dontDistribute super."reverse-geocoding"; + "reversi" = dontDistribute super."reversi"; + "rewrite" = dontDistribute super."rewrite"; + "rewriting" = dontDistribute super."rewriting"; + "rex" = dontDistribute super."rex"; + "rezoom" = dontDistribute super."rezoom"; + "rfc3339" = dontDistribute super."rfc3339"; + "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; + "richreports" = dontDistribute super."richreports"; + "riemann" = dontDistribute super."riemann"; + "riff" = dontDistribute super."riff"; + "ring-buffer" = dontDistribute super."ring-buffer"; + "riot" = dontDistribute super."riot"; + "ripple" = dontDistribute super."ripple"; + "ripple-federation" = dontDistribute super."ripple-federation"; + "risc386" = dontDistribute super."risc386"; + "rivers" = dontDistribute super."rivers"; + "rivet" = dontDistribute super."rivet"; + "rivet-core" = dontDistribute super."rivet-core"; + "rivet-migration" = dontDistribute super."rivet-migration"; + "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; + "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; + "rmonad" = dontDistribute super."rmonad"; + "rncryptor" = dontDistribute super."rncryptor"; + "rng-utils" = dontDistribute super."rng-utils"; + "robin" = dontDistribute super."robin"; + "robot" = dontDistribute super."robot"; + "robots-txt" = dontDistribute super."robots-txt"; + "rocksdb-haskell" = dontDistribute super."rocksdb-haskell"; + "roguestar" = dontDistribute super."roguestar"; + "roguestar-engine" = dontDistribute super."roguestar-engine"; + "roguestar-gl" = dontDistribute super."roguestar-gl"; + "roguestar-glut" = dontDistribute super."roguestar-glut"; + "rollbar" = dontDistribute super."rollbar"; + "roller" = dontDistribute super."roller"; + "rolling-queue" = dontDistribute super."rolling-queue"; + "roman-numerals" = dontDistribute super."roman-numerals"; + "romkan" = dontDistribute super."romkan"; + "roots" = dontDistribute super."roots"; + "rope" = dontDistribute super."rope"; + "rosa" = dontDistribute super."rosa"; + "rose-trie" = dontDistribute super."rose-trie"; + "roshask" = dontDistribute super."roshask"; + "rosso" = dontDistribute super."rosso"; + "rot13" = dontDistribute super."rot13"; + "rotating-log" = dontDistribute super."rotating-log"; + "rounding" = dontDistribute super."rounding"; + "roundtrip" = dontDistribute super."roundtrip"; + "roundtrip-aeson" = dontDistribute super."roundtrip-aeson"; + "roundtrip-string" = dontDistribute super."roundtrip-string"; + "roundtrip-xml" = dontDistribute super."roundtrip-xml"; + "route-generator" = dontDistribute super."route-generator"; + "route-planning" = dontDistribute super."route-planning"; + "rowrecord" = dontDistribute super."rowrecord"; + "rpc" = dontDistribute super."rpc"; + "rpc-framework" = dontDistribute super."rpc-framework"; + "rpf" = dontDistribute super."rpf"; + "rpm" = dontDistribute super."rpm"; + "rsagl" = dontDistribute super."rsagl"; + "rsagl-frp" = dontDistribute super."rsagl-frp"; + "rsagl-math" = dontDistribute super."rsagl-math"; + "rspp" = dontDistribute super."rspp"; + "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; + "rss2irc" = dontDistribute super."rss2irc"; + "rtcm" = dontDistribute super."rtcm"; + "rtld" = dontDistribute super."rtld"; + "rtlsdr" = dontDistribute super."rtlsdr"; + "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; + "rtorrent-state" = dontDistribute super."rtorrent-state"; + "rubberband" = dontDistribute super."rubberband"; + "ruby-marshal" = dontDistribute super."ruby-marshal"; + "ruby-qq" = dontDistribute super."ruby-qq"; + "ruff" = dontDistribute super."ruff"; + "ruler" = dontDistribute super."ruler"; + "ruler-core" = dontDistribute super."ruler-core"; + "rungekutta" = dontDistribute super."rungekutta"; + "runghc" = dontDistribute super."runghc"; + "rwlock" = dontDistribute super."rwlock"; + "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; + "safe-access" = dontDistribute super."safe-access"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-length" = dontDistribute super."safe-length"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "sampling" = dontDistribute super."sampling"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandlib" = dontDistribute super."sandlib"; + "sarasvati" = dontDistribute super."sarasvati"; + "sasl" = dontDistribute super."sasl"; + "sat" = dontDistribute super."sat"; + "sat-micro-hs" = dontDistribute super."sat-micro-hs"; + "satchmo" = dontDistribute super."satchmo"; + "satchmo-backends" = dontDistribute super."satchmo-backends"; + "satchmo-examples" = dontDistribute super."satchmo-examples"; + "satchmo-funsat" = dontDistribute super."satchmo-funsat"; + "satchmo-minisat" = dontDistribute super."satchmo-minisat"; + "satchmo-toysat" = dontDistribute super."satchmo-toysat"; + "sbp" = dontDistribute super."sbp"; + "sbvPlugin" = dontDistribute super."sbvPlugin"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "scalpel" = doDistribute super."scalpel_0_2_1_1"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scat" = dontDistribute super."scat"; + "scc" = dontDistribute super."scc"; + "scenegraph" = dontDistribute super."scenegraph"; + "scgi" = dontDistribute super."scgi"; + "schedevr" = dontDistribute super."schedevr"; + "schedule-planner" = dontDistribute super."schedule-planner"; + "schedyield" = dontDistribute super."schedyield"; + "scholdoc" = dontDistribute super."scholdoc"; + "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc"; + "scholdoc-texmath" = dontDistribute super."scholdoc-texmath"; + "scholdoc-types" = dontDistribute super."scholdoc-types"; + "schonfinkeling" = dontDistribute super."schonfinkeling"; + "sci-ratio" = dontDistribute super."sci-ratio"; + "science-constants" = dontDistribute super."science-constants"; + "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_4_4"; + "scion" = dontDistribute super."scion"; + "scion-browser" = dontDistribute super."scion-browser"; + "scons2dot" = dontDistribute super."scons2dot"; + "scope" = dontDistribute super."scope"; + "scope-cairo" = dontDistribute super."scope-cairo"; + "scottish" = dontDistribute super."scottish"; + "scotty" = doDistribute super."scotty_0_10_2"; + "scotty-binding-play" = dontDistribute super."scotty-binding-play"; + "scotty-blaze" = dontDistribute super."scotty-blaze"; + "scotty-cookie" = dontDistribute super."scotty-cookie"; + "scotty-fay" = dontDistribute super."scotty-fay"; + "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-rest" = dontDistribute super."scotty-rest"; + "scotty-session" = dontDistribute super."scotty-session"; + "scotty-tls" = dontDistribute super."scotty-tls"; + "scp-streams" = dontDistribute super."scp-streams"; + "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrobble" = dontDistribute super."scrobble"; + "scroll" = dontDistribute super."scroll"; + "scrz" = dontDistribute super."scrz"; + "scyther-proof" = dontDistribute super."scyther-proof"; + "sde-solver" = dontDistribute super."sde-solver"; + "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; + "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; + "sdl2-compositor" = dontDistribute super."sdl2-compositor"; + "sdl2-image" = dontDistribute super."sdl2-image"; + "sdl2-ttf" = dontDistribute super."sdl2-ttf"; + "sdnv" = dontDistribute super."sdnv"; + "sdr" = dontDistribute super."sdr"; + "seacat" = dontDistribute super."seacat"; + "seal-module" = dontDistribute super."seal-module"; + "search" = dontDistribute super."search"; + "sec" = dontDistribute super."sec"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; + "secret-santa" = dontDistribute super."secret-santa"; + "secret-sharing" = dontDistribute super."secret-sharing"; + "secrm" = dontDistribute super."secrm"; + "secure-sockets" = dontDistribute super."secure-sockets"; + "sednaDBXML" = dontDistribute super."sednaDBXML"; + "select" = dontDistribute super."select"; + "selectors" = dontDistribute super."selectors"; + "selenium" = dontDistribute super."selenium"; + "selenium-server" = dontDistribute super."selenium-server"; + "selfrestart" = dontDistribute super."selfrestart"; + "selinux" = dontDistribute super."selinux"; + "semaphore-plus" = dontDistribute super."semaphore-plus"; + "semi-iso" = dontDistribute super."semi-iso"; + "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; + "semigroups-actions" = dontDistribute super."semigroups-actions"; + "semiring" = dontDistribute super."semiring"; + "semiring-simple" = dontDistribute super."semiring-simple"; + "semver-range" = dontDistribute super."semver-range"; + "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; + "sensenet" = dontDistribute super."sensenet"; + "sentry" = dontDistribute super."sentry"; + "senza" = dontDistribute super."senza"; + "separated" = dontDistribute super."separated"; + "seqaid" = dontDistribute super."seqaid"; + "seqid" = dontDistribute super."seqid"; + "seqid-streams" = dontDistribute super."seqid-streams"; + "seqloc-datafiles" = dontDistribute super."seqloc-datafiles"; + "sequence" = dontDistribute super."sequence"; + "sequent-core" = dontDistribute super."sequent-core"; + "sequential-index" = dontDistribute super."sequential-index"; + "sequor" = dontDistribute super."sequor"; + "serial" = dontDistribute super."serial"; + "serial-test-generators" = dontDistribute super."serial-test-generators"; + "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; + "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; + "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; + "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; + "servant-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pandoc" = dontDistribute super."servant-pandoc"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-response" = dontDistribute super."servant-response"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; + "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-extra" = doDistribute super."set-extra_1_3_2"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setgame" = dontDistribute super."setgame"; + "setops" = dontDistribute super."setops"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-grammar" = dontDistribute super."sexp-grammar"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shake-persist" = dontDistribute super."shake-persist"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-babel" = dontDistribute super."shakespeare-babel"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "sharc-timbre" = dontDistribute super."sharc-timbre"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "shivers-cfg" = dontDistribute super."shivers-cfg"; + "shoap" = dontDistribute super."shoap"; + "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; + "shorten-strings" = dontDistribute super."shorten-strings"; + "show" = dontDistribute super."show"; + "show-type" = dontDistribute super."show-type"; + "showdown" = dontDistribute super."showdown"; + "shpider" = dontDistribute super."shpider"; + "shplit" = dontDistribute super."shplit"; + "shqq" = dontDistribute super."shqq"; + "shuffle" = dontDistribute super."shuffle"; + "sieve" = dontDistribute super."sieve"; + "sifflet" = dontDistribute super."sifflet"; + "sifflet-lib" = dontDistribute super."sifflet-lib"; + "sign" = dontDistribute super."sign"; + "signals" = dontDistribute super."signals"; + "signed-multiset" = dontDistribute super."signed-multiset"; + "simd" = dontDistribute super."simd"; + "simgi" = dontDistribute super."simgi"; + "simple-actors" = dontDistribute super."simple-actors"; + "simple-atom" = dontDistribute super."simple-atom"; + "simple-bluetooth" = dontDistribute super."simple-bluetooth"; + "simple-c-value" = dontDistribute super."simple-c-value"; + "simple-conduit" = dontDistribute super."simple-conduit"; + "simple-config" = dontDistribute super."simple-config"; + "simple-css" = dontDistribute super."simple-css"; + "simple-eval" = dontDistribute super."simple-eval"; + "simple-firewire" = dontDistribute super."simple-firewire"; + "simple-form" = dontDistribute super."simple-form"; + "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm"; + "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr"; + "simple-get-opt" = dontDistribute super."simple-get-opt"; + "simple-index" = dontDistribute super."simple-index"; + "simple-log" = dontDistribute super."simple-log"; + "simple-log-syslog" = dontDistribute super."simple-log-syslog"; + "simple-neural-networks" = dontDistribute super."simple-neural-networks"; + "simple-nix" = dontDistribute super."simple-nix"; + "simple-observer" = dontDistribute super."simple-observer"; + "simple-pascal" = dontDistribute super."simple-pascal"; + "simple-pipe" = dontDistribute super."simple-pipe"; + "simple-rope" = dontDistribute super."simple-rope"; + "simple-server" = dontDistribute super."simple-server"; + "simple-sessions" = dontDistribute super."simple-sessions"; + "simple-sql-parser" = dontDistribute super."simple-sql-parser"; + "simple-stacked-vm" = dontDistribute super."simple-stacked-vm"; + "simple-tabular" = dontDistribute super."simple-tabular"; + "simple-vec3" = dontDistribute super."simple-vec3"; + "simpleargs" = dontDistribute super."simpleargs"; + "simpleirc" = dontDistribute super."simpleirc"; + "simpleirc-lens" = dontDistribute super."simpleirc-lens"; + "simplenote" = dontDistribute super."simplenote"; + "simpleprelude" = dontDistribute super."simpleprelude"; + "simplesmtpclient" = dontDistribute super."simplesmtpclient"; + "simplessh" = dontDistribute super."simplessh"; + "simplest-sqlite" = dontDistribute super."simplest-sqlite"; + "simplex" = dontDistribute super."simplex"; + "simplex-basic" = dontDistribute super."simplex-basic"; + "simseq" = dontDistribute super."simseq"; + "simtreelo" = dontDistribute super."simtreelo"; + "sindre" = dontDistribute super."sindre"; + "singleton-nats" = dontDistribute super."singleton-nats"; + "sink" = dontDistribute super."sink"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "sized" = dontDistribute super."sized"; + "sized-types" = dontDistribute super."sized-types"; + "sized-vector" = dontDistribute super."sized-vector"; + "sizes" = dontDistribute super."sizes"; + "sjsp" = dontDistribute super."sjsp"; + "skeleton" = dontDistribute super."skeleton"; + "skell" = dontDistribute super."skell"; + "skemmtun" = dontDistribute super."skemmtun"; + "skype4hs" = dontDistribute super."skype4hs"; + "skypelogexport" = dontDistribute super."skypelogexport"; + "slack" = dontDistribute super."slack"; + "slack-api" = dontDistribute super."slack-api"; + "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "sleep" = dontDistribute super."sleep"; + "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; + "slidemews" = dontDistribute super."slidemews"; + "sloane" = dontDistribute super."sloane"; + "slot-lambda" = dontDistribute super."slot-lambda"; + "sloth" = dontDistribute super."sloth"; + "smallarray" = dontDistribute super."smallarray"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "smt-lib" = dontDistribute super."smt-lib"; + "smtlib2" = dontDistribute super."smtlib2"; + "smtp-mail-ng" = dontDistribute super."smtp-mail-ng"; + "smtp2mta" = dontDistribute super."smtp2mta"; + "smtps-gmail" = dontDistribute super."smtps-gmail"; + "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; + "snap-accept" = dontDistribute super."snap-accept"; + "snap-app" = dontDistribute super."snap-app"; + "snap-auth-cli" = dontDistribute super."snap-auth-cli"; + "snap-blaze" = dontDistribute super."snap-blaze"; + "snap-blaze-clay" = dontDistribute super."snap-blaze-clay"; + "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities"; + "snap-cors" = dontDistribute super."snap-cors"; + "snap-elm" = dontDistribute super."snap-elm"; + "snap-error-collector" = dontDistribute super."snap-error-collector"; + "snap-extras" = dontDistribute super."snap-extras"; + "snap-language" = dontDistribute super."snap-language"; + "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic"; + "snap-loader-static" = dontDistribute super."snap-loader-static"; + "snap-predicates" = dontDistribute super."snap-predicates"; + "snap-testing" = dontDistribute super."snap-testing"; + "snap-utils" = dontDistribute super."snap-utils"; + "snap-web-routes" = dontDistribute super."snap-web-routes"; + "snaplet-acid-state" = dontDistribute super."snaplet-acid-state"; + "snaplet-actionlog" = dontDistribute super."snaplet-actionlog"; + "snaplet-amqp" = dontDistribute super."snaplet-amqp"; + "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid"; + "snaplet-coffee" = dontDistribute super."snaplet-coffee"; + "snaplet-css-min" = dontDistribute super."snaplet-css-min"; + "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; + "snaplet-hasql" = dontDistribute super."snaplet-hasql"; + "snaplet-haxl" = dontDistribute super."snaplet-haxl"; + "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; + "snaplet-hslogger" = dontDistribute super."snaplet-hslogger"; + "snaplet-i18n" = dontDistribute super."snaplet-i18n"; + "snaplet-influxdb" = dontDistribute super."snaplet-influxdb"; + "snaplet-lss" = dontDistribute super."snaplet-lss"; + "snaplet-mandrill" = dontDistribute super."snaplet-mandrill"; + "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB"; + "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic"; + "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple"; + "snaplet-oauth" = dontDistribute super."snaplet-oauth"; + "snaplet-persistent" = dontDistribute super."snaplet-persistent"; + "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple"; + "snaplet-postmark" = dontDistribute super."snaplet-postmark"; + "snaplet-purescript" = dontDistribute super."snaplet-purescript"; + "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha"; + "snaplet-redis" = dontDistribute super."snaplet-redis"; + "snaplet-redson" = dontDistribute super."snaplet-redson"; + "snaplet-rest" = dontDistribute super."snaplet-rest"; + "snaplet-riak" = dontDistribute super."snaplet-riak"; + "snaplet-sass" = dontDistribute super."snaplet-sass"; + "snaplet-sedna" = dontDistribute super."snaplet-sedna"; + "snaplet-ses-html" = dontDistribute super."snaplet-ses-html"; + "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple"; + "snaplet-stripe" = dontDistribute super."snaplet-stripe"; + "snaplet-tasks" = dontDistribute super."snaplet-tasks"; + "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions"; + "snaplet-wordpress" = dontDistribute super."snaplet-wordpress"; + "snappy" = dontDistribute super."snappy"; + "snappy-conduit" = dontDistribute super."snappy-conduit"; + "snappy-framing" = dontDistribute super."snappy-framing"; + "snappy-iteratee" = dontDistribute super."snappy-iteratee"; + "sndfile-enumerators" = dontDistribute super."sndfile-enumerators"; + "sneakyterm" = dontDistribute super."sneakyterm"; + "sneathlane-haste" = dontDistribute super."sneathlane-haste"; + "snippet-extractor" = dontDistribute super."snippet-extractor"; + "snm" = dontDistribute super."snm"; + "snow-white" = dontDistribute super."snow-white"; + "snowball" = dontDistribute super."snowball"; + "snowglobe" = dontDistribute super."snowglobe"; + "sock2stream" = dontDistribute super."sock2stream"; + "sockaddr" = dontDistribute super."sockaddr"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "socketson" = dontDistribute super."socketson"; + "soegtk" = dontDistribute super."soegtk"; + "sonic-visualiser" = dontDistribute super."sonic-visualiser"; + "sophia" = dontDistribute super."sophia"; + "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; + "sorted" = dontDistribute super."sorted"; + "sorting" = dontDistribute super."sorting"; + "sorty" = dontDistribute super."sorty"; + "sound-collage" = dontDistribute super."sound-collage"; + "sounddelay" = dontDistribute super."sounddelay"; + "source-code-server" = dontDistribute super."source-code-server"; + "sousit" = dontDistribute super."sousit"; + "sox" = dontDistribute super."sox"; + "soxlib" = dontDistribute super."soxlib"; + "soyuz" = dontDistribute super."soyuz"; + "spacefill" = dontDistribute super."spacefill"; + "spacepart" = dontDistribute super."spacepart"; + "spaceprobe" = dontDistribute super."spaceprobe"; + "spanout" = dontDistribute super."spanout"; + "sparse" = dontDistribute super."sparse"; + "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; + "sparsebit" = dontDistribute super."sparsebit"; + "sparsecheck" = dontDistribute super."sparsecheck"; + "sparser" = dontDistribute super."sparser"; + "spata" = dontDistribute super."spata"; + "spatial-math" = dontDistribute super."spatial-math"; + "spawn" = dontDistribute super."spawn"; + "spe" = dontDistribute super."spe"; + "special-functors" = dontDistribute super."special-functors"; + "special-keys" = dontDistribute super."special-keys"; + "specialize-th" = dontDistribute super."specialize-th"; + "species" = dontDistribute super."species"; + "speculation-transformers" = dontDistribute super."speculation-transformers"; + "spelling-suggest" = dontDistribute super."spelling-suggest"; + "sphero" = dontDistribute super."sphero"; + "sphinx-cli" = dontDistribute super."sphinx-cli"; + "spice" = dontDistribute super."spice"; + "spike" = dontDistribute super."spike"; + "spine" = dontDistribute super."spine"; + "spir-v" = dontDistribute super."spir-v"; + "splay" = dontDistribute super."splay"; + "splaytree" = dontDistribute super."splaytree"; + "spline3" = dontDistribute super."spline3"; + "splines" = dontDistribute super."splines"; + "split-channel" = dontDistribute super."split-channel"; + "split-record" = dontDistribute super."split-record"; + "split-tchan" = dontDistribute super."split-tchan"; + "splitter" = dontDistribute super."splitter"; + "splot" = dontDistribute super."splot"; + "spool" = dontDistribute super."spool"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "spsa" = dontDistribute super."spsa"; + "spy" = dontDistribute super."spy"; + "sql-simple" = dontDistribute super."sql-simple"; + "sql-simple-mysql" = dontDistribute super."sql-simple-mysql"; + "sql-simple-pool" = dontDistribute super."sql-simple-pool"; + "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql"; + "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite"; + "sql-words" = dontDistribute super."sql-words"; + "sqlite" = dontDistribute super."sqlite"; + "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed"; + "sqlvalue-list" = dontDistribute super."sqlvalue-list"; + "squeeze" = dontDistribute super."squeeze"; + "sr-extra" = dontDistribute super."sr-extra"; + "srcinst" = dontDistribute super."srcinst"; + "srec" = dontDistribute super."srec"; + "sscgi" = dontDistribute super."sscgi"; + "ssh" = dontDistribute super."ssh"; + "sshd-lint" = dontDistribute super."sshd-lint"; + "sshtun" = dontDistribute super."sshtun"; + "sssp" = dontDistribute super."sssp"; + "sstable" = dontDistribute super."sstable"; + "ssv" = dontDistribute super."ssv"; + "stable-heap" = dontDistribute super."stable-heap"; + "stable-maps" = dontDistribute super."stable-maps"; + "stable-marriage" = dontDistribute super."stable-marriage"; + "stable-memo" = dontDistribute super."stable-memo"; + "stable-tree" = dontDistribute super."stable-tree"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; + "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; + "standalone-haddock" = dontDistribute super."standalone-haddock"; + "star-to-star" = dontDistribute super."star-to-star"; + "star-to-star-contra" = dontDistribute super."star-to-star-contra"; + "starling" = dontDistribute super."starling"; + "starrover2" = dontDistribute super."starrover2"; + "stash" = dontDistribute super."stash"; + "state" = dontDistribute super."state"; + "state-record" = dontDistribute super."state-record"; + "statechart" = dontDistribute super."statechart"; + "stateful-mtl" = dontDistribute super."stateful-mtl"; + "statethread" = dontDistribute super."statethread"; + "statgrab" = dontDistribute super."statgrab"; + "static-hash" = dontDistribute super."static-hash"; + "static-resources" = dontDistribute super."static-resources"; + "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; + "statistics-fusion" = dontDistribute super."statistics-fusion"; + "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; + "stats" = dontDistribute super."stats"; + "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; + "statsd-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; + "stm-firehose" = dontDistribute super."stm-firehose"; + "stm-io-hooks" = dontDistribute super."stm-io-hooks"; + "stm-lifted" = dontDistribute super."stm-lifted"; + "stm-linkedlist" = dontDistribute super."stm-linkedlist"; + "stm-orelse-io" = dontDistribute super."stm-orelse-io"; + "stm-promise" = dontDistribute super."stm-promise"; + "stm-queue-extras" = dontDistribute super."stm-queue-extras"; + "stm-sbchan" = dontDistribute super."stm-sbchan"; + "stm-split" = dontDistribute super."stm-split"; + "stm-tlist" = dontDistribute super."stm-tlist"; + "stmcontrol" = dontDistribute super."stmcontrol"; + "stomp-conduit" = dontDistribute super."stomp-conduit"; + "stomp-patterns" = dontDistribute super."stomp-patterns"; + "stomp-queue" = dontDistribute super."stomp-queue"; + "stompl" = dontDistribute super."stompl"; + "stopwatch" = dontDistribute super."stopwatch"; + "storable" = dontDistribute super."storable"; + "storable-record" = dontDistribute super."storable-record"; + "storable-static-array" = dontDistribute super."storable-static-array"; + "storable-tuple" = dontDistribute super."storable-tuple"; + "storablevector" = dontDistribute super."storablevector"; + "storablevector-carray" = dontDistribute super."storablevector-carray"; + "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; + "str" = dontDistribute super."str"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "strict-base-types" = doDistribute super."strict-base-types_0_4_0"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin"; + "strict-identity" = dontDistribute super."strict-identity"; + "strict-io" = dontDistribute super."strict-io"; + "strictify" = dontDistribute super."strictify"; + "strictly" = dontDistribute super."strictly"; + "string" = dontDistribute super."string"; + "string-conv" = dontDistribute super."string-conv"; + "string-convert" = dontDistribute super."string-convert"; + "string-quote" = dontDistribute super."string-quote"; + "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; + "stringlike" = dontDistribute super."stringlike"; + "stringprep" = dontDistribute super."stringprep"; + "strings" = dontDistribute super."strings"; + "stringtable-atom" = dontDistribute super."stringtable-atom"; + "strio" = dontDistribute super."strio"; + "stripe" = dontDistribute super."stripe"; + "stripe-core" = doDistribute super."stripe-core_2_0_2"; + "stripe-haskell" = doDistribute super."stripe-haskell_2_0_2"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; + "strive" = dontDistribute super."strive"; + "strptime" = dontDistribute super."strptime"; + "structs" = dontDistribute super."structs"; + "structural-induction" = dontDistribute super."structural-induction"; + "structured-haskell-mode" = dontDistribute super."structured-haskell-mode"; + "structured-mongoDB" = dontDistribute super."structured-mongoDB"; + "structures" = dontDistribute super."structures"; + "stunclient" = dontDistribute super."stunclient"; + "stunts" = dontDistribute super."stunts"; + "stylized" = dontDistribute super."stylized"; + "sub-state" = dontDistribute super."sub-state"; + "subhask" = dontDistribute super."subhask"; + "subleq-toolchain" = dontDistribute super."subleq-toolchain"; + "subnet" = dontDistribute super."subnet"; + "subtitleParser" = dontDistribute super."subtitleParser"; + "subtitles" = dontDistribute super."subtitles"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sump" = dontDistribute super."sump"; + "sundown" = dontDistribute super."sundown"; + "sunlight" = dontDistribute super."sunlight"; + "sunroof-compiler" = dontDistribute super."sunroof-compiler"; + "sunroof-examples" = dontDistribute super."sunroof-examples"; + "sunroof-server" = dontDistribute super."sunroof-server"; + "super-user-spark" = dontDistribute super."super-user-spark"; + "supercollider-ht" = dontDistribute super."supercollider-ht"; + "supercollider-midi" = dontDistribute super."supercollider-midi"; + "superdoc" = dontDistribute super."superdoc"; + "supero" = dontDistribute super."supero"; + "supervisor" = dontDistribute super."supervisor"; + "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; + "svg2q" = dontDistribute super."svg2q"; + "svgcairo" = dontDistribute super."svgcairo"; + "svgutils" = dontDistribute super."svgutils"; + "svm" = dontDistribute super."svm"; + "svm-light-utils" = dontDistribute super."svm-light-utils"; + "svm-simple" = dontDistribute super."svm-simple"; + "svndump" = dontDistribute super."svndump"; + "swagger2" = doDistribute super."swagger2_1_2_1"; + "swapper" = dontDistribute super."swapper"; + "swearjure" = dontDistribute super."swearjure"; + "swf" = dontDistribute super."swf"; + "swift-lda" = dontDistribute super."swift-lda"; + "swish" = dontDistribute super."swish"; + "sws" = dontDistribute super."sws"; + "syb-extras" = dontDistribute super."syb-extras"; + "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; + "sylvia" = dontDistribute super."sylvia"; + "sym" = dontDistribute super."sym"; + "sym-plot" = dontDistribute super."sym-plot"; + "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; + "sync" = dontDistribute super."sync"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "t-regex" = dontDistribute super."t-regex"; + "ta" = dontDistribute super."ta"; + "table" = dontDistribute super."table"; + "table-tennis" = dontDistribute super."table-tennis"; + "tableaux" = dontDistribute super."tableaux"; + "tables" = dontDistribute super."tables"; + "tablestorage" = dontDistribute super."tablestorage"; + "tabloid" = dontDistribute super."tabloid"; + "taffybar" = dontDistribute super."taffybar"; + "tag-bits" = dontDistribute super."tag-bits"; + "tag-stream" = dontDistribute super."tag-stream"; + "tagchup" = dontDistribute super."tagchup"; + "tagged-exception-core" = dontDistribute super."tagged-exception-core"; + "tagged-list" = dontDistribute super."tagged-list"; + "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; + "tagged-transformer" = dontDistribute super."tagged-transformer"; + "tagging" = dontDistribute super."tagging"; + "taggy" = dontDistribute super."taggy"; + "taggy-lens" = dontDistribute super."taggy-lens"; + "taglib" = dontDistribute super."taglib"; + "taglib-api" = dontDistribute super."taglib-api"; + "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_8"; + "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "takahashi" = dontDistribute super."takahashi"; + "takusen-oracle" = dontDistribute super."takusen-oracle"; + "tamarin-prover" = dontDistribute super."tamarin-prover"; + "tamarin-prover-term" = dontDistribute super."tamarin-prover-term"; + "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; + "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; + "tamper" = dontDistribute super."tamper"; + "target" = dontDistribute super."target"; + "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; + "taskpool" = dontDistribute super."taskpool"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; + "tasty-integrate" = dontDistribute super."tasty-integrate"; + "tasty-laws" = dontDistribute super."tasty-laws"; + "tasty-lens" = dontDistribute super."tasty-lens"; + "tasty-program" = dontDistribute super."tasty-program"; + "tateti-tateti" = dontDistribute super."tateti-tateti"; + "tau" = dontDistribute super."tau"; + "tbox" = dontDistribute super."tbox"; + "tcache-AWS" = dontDistribute super."tcache-AWS"; + "tccli" = dontDistribute super."tccli"; + "tce-conf" = dontDistribute super."tce-conf"; + "tconfig" = dontDistribute super."tconfig"; + "tcp" = dontDistribute super."tcp"; + "tdd-util" = dontDistribute super."tdd-util"; + "tdoc" = dontDistribute super."tdoc"; + "teams" = dontDistribute super."teams"; + "teeth" = dontDistribute super."teeth"; + "telegram" = dontDistribute super."telegram"; + "telegram-api" = dontDistribute super."telegram-api"; + "teleport" = dontDistribute super."teleport"; + "template-default" = dontDistribute super."template-default"; + "template-haskell-util" = dontDistribute super."template-haskell-util"; + "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; + "templatepg" = dontDistribute super."templatepg"; + "templater" = dontDistribute super."templater"; + "tempodb" = dontDistribute super."tempodb"; + "temporal-csound" = dontDistribute super."temporal-csound"; + "temporal-media" = dontDistribute super."temporal-media"; + "temporal-music-notation" = dontDistribute super."temporal-music-notation"; + "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo"; + "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western"; + "temporary-resourcet" = dontDistribute super."temporary-resourcet"; + "tempus" = dontDistribute super."tempus"; + "tempus-fugit" = dontDistribute super."tempus-fugit"; + "tensor" = dontDistribute super."tensor"; + "term-rewriting" = dontDistribute super."term-rewriting"; + "termbox-bindings" = dontDistribute super."termbox-bindings"; + "termination-combinators" = dontDistribute super."termination-combinators"; + "terminfo" = doDistribute super."terminfo_0_4_0_2"; + "terminfo-hs" = dontDistribute super."terminfo-hs"; + "termplot" = dontDistribute super."termplot"; + "terntup" = dontDistribute super."terntup"; + "terrahs" = dontDistribute super."terrahs"; + "tersmu" = dontDistribute super."tersmu"; + "test-framework-doctest" = dontDistribute super."test-framework-doctest"; + "test-framework-golden" = dontDistribute super."test-framework-golden"; + "test-framework-program" = dontDistribute super."test-framework-program"; + "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck"; + "test-framework-sandbox" = dontDistribute super."test-framework-sandbox"; + "test-framework-skip" = dontDistribute super."test-framework-skip"; + "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat"; + "test-invariant" = dontDistribute super."test-invariant"; + "test-pkg" = dontDistribute super."test-pkg"; + "test-sandbox" = dontDistribute super."test-sandbox"; + "test-sandbox-compose" = dontDistribute super."test-sandbox-compose"; + "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit"; + "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; + "test-shouldbe" = dontDistribute super."test-shouldbe"; + "testPkg" = dontDistribute super."testPkg"; + "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; + "testloop" = dontDistribute super."testloop"; + "testpack" = dontDistribute super."testpack"; + "testpattern" = dontDistribute super."testpattern"; + "testrunner" = dontDistribute super."testrunner"; + "tetris" = dontDistribute super."tetris"; + "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4_2"; + "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; + "text-and-plots" = dontDistribute super."text-and-plots"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-ldap" = dontDistribute super."text-ldap"; + "text-locale-encoding" = dontDistribute super."text-locale-encoding"; + "text-normal" = dontDistribute super."text-normal"; + "text-position" = dontDistribute super."text-position"; + "text-postgresql" = dontDistribute super."text-postgresql"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-region" = dontDistribute super."text-region"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "text-show-instances" = dontDistribute super."text-show-instances"; + "text-stream-decode" = dontDistribute super."text-stream-decode"; + "text-utf7" = dontDistribute super."text-utf7"; + "text-xml-generic" = dontDistribute super."text-xml-generic"; + "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text1" = dontDistribute super."text1"; + "textPlot" = dontDistribute super."textPlot"; + "textmatetags" = dontDistribute super."textmatetags"; + "textocat-api" = dontDistribute super."textocat-api"; + "texts" = dontDistribute super."texts"; + "textual" = dontDistribute super."textual"; + "tfp" = dontDistribute super."tfp"; + "tfp-th" = dontDistribute super."tfp-th"; + "tftp" = dontDistribute super."tftp"; + "tga" = dontDistribute super."tga"; + "th-alpha" = dontDistribute super."th-alpha"; + "th-build" = dontDistribute super."th-build"; + "th-cas" = dontDistribute super."th-cas"; + "th-context" = dontDistribute super."th-context"; + "th-fold" = dontDistribute super."th-fold"; + "th-inline-io-action" = dontDistribute super."th-inline-io-action"; + "th-instance-reification" = dontDistribute super."th-instance-reification"; + "th-instances" = dontDistribute super."th-instances"; + "th-kinds" = dontDistribute super."th-kinds"; + "th-kinds-fork" = dontDistribute super."th-kinds-fork"; + "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-printf" = dontDistribute super."th-printf"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "thespian" = dontDistribute super."thespian"; + "theta-functions" = dontDistribute super."theta-functions"; + "thih" = dontDistribute super."thih"; + "thimk" = dontDistribute super."thimk"; + "thorn" = dontDistribute super."thorn"; + "thread-local-storage" = dontDistribute super."thread-local-storage"; + "threadPool" = dontDistribute super."threadPool"; + "threadmanager" = dontDistribute super."threadmanager"; + "threads-pool" = dontDistribute super."threads-pool"; + "threads-supervisor" = dontDistribute super."threads-supervisor"; + "threadscope" = dontDistribute super."threadscope"; + "threefish" = dontDistribute super."threefish"; + "threepenny-gui" = dontDistribute super."threepenny-gui"; + "thrift" = dontDistribute super."thrift"; + "thrist" = dontDistribute super."thrist"; + "throttle" = dontDistribute super."throttle"; + "thumbnail" = dontDistribute super."thumbnail"; + "tianbar" = dontDistribute super."tianbar"; + "tic-tac-toe" = dontDistribute super."tic-tac-toe"; + "tickle" = dontDistribute super."tickle"; + "tictactoe3d" = dontDistribute super."tictactoe3d"; + "tidal" = dontDistribute super."tidal"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "tidal-vis" = dontDistribute super."tidal-vis"; + "tie-knot" = dontDistribute super."tie-knot"; + "tiempo" = dontDistribute super."tiempo"; + "tiger" = dontDistribute super."tiger"; + "tight-apply" = dontDistribute super."tight-apply"; + "tightrope" = dontDistribute super."tightrope"; + "tighttp" = dontDistribute super."tighttp"; + "tilings" = dontDistribute super."tilings"; + "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; + "time-extras" = dontDistribute super."time-extras"; + "time-exts" = dontDistribute super."time-exts"; + "time-http" = dontDistribute super."time-http"; + "time-interval" = dontDistribute super."time-interval"; + "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; + "time-patterns" = dontDistribute super."time-patterns"; + "time-qq" = dontDistribute super."time-qq"; + "time-recurrence" = dontDistribute super."time-recurrence"; + "time-series" = dontDistribute super."time-series"; + "time-w3c" = dontDistribute super."time-w3c"; + "timecalc" = dontDistribute super."timecalc"; + "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; + "timemap" = dontDistribute super."timemap"; + "timeout" = dontDistribute super."timeout"; + "timeout-control" = dontDistribute super."timeout-control"; + "timeout-with-results" = dontDistribute super."timeout-with-results"; + "timeparsers" = dontDistribute super."timeparsers"; + "timeplot" = dontDistribute super."timeplot"; + "timers" = dontDistribute super."timers"; + "timers-updatable" = dontDistribute super."timers-updatable"; + "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; + "timestamper" = dontDistribute super."timestamper"; + "timezone-olson-th" = dontDistribute super."timezone-olson-th"; + "timing-convenience" = dontDistribute super."timing-convenience"; + "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; + "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; + "tip-lib" = dontDistribute super."tip-lib"; + "tiphys" = dontDistribute super."tiphys"; + "titlecase" = dontDistribute super."titlecase"; + "tkhs" = dontDistribute super."tkhs"; + "tkyprof" = dontDistribute super."tkyprof"; + "tld" = dontDistribute super."tld"; + "tls-extra" = dontDistribute super."tls-extra"; + "tmpl" = dontDistribute super."tmpl"; + "tn" = dontDistribute super."tn"; + "tnet" = dontDistribute super."tnet"; + "to-haskell" = dontDistribute super."to-haskell"; + "to-string-class" = dontDistribute super."to-string-class"; + "to-string-instances" = dontDistribute super."to-string-instances"; + "todos" = dontDistribute super."todos"; + "tofromxml" = dontDistribute super."tofromxml"; + "toilet" = dontDistribute super."toilet"; + "tokenify" = dontDistribute super."tokenify"; + "tokenize" = dontDistribute super."tokenize"; + "toktok" = dontDistribute super."toktok"; + "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell"; + "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell"; + "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal"; + "toml" = dontDistribute super."toml"; + "toolshed" = dontDistribute super."toolshed"; + "topkata" = dontDistribute super."topkata"; + "torch" = dontDistribute super."torch"; + "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; + "total-map" = dontDistribute super."total-map"; + "total-maps" = dontDistribute super."total-maps"; + "touched" = dontDistribute super."touched"; + "toysolver" = dontDistribute super."toysolver"; + "tpdb" = dontDistribute super."tpdb"; + "trace" = dontDistribute super."trace"; + "trace-call" = dontDistribute super."trace-call"; + "trace-function-call" = dontDistribute super."trace-function-call"; + "traced" = dontDistribute super."traced"; + "tracer" = dontDistribute super."tracer"; + "tracker" = dontDistribute super."tracker"; + "trajectory" = dontDistribute super."trajectory"; + "transactional-events" = dontDistribute super."transactional-events"; + "transf" = dontDistribute super."transf"; + "transformations" = dontDistribute super."transformations"; + "transformers-abort" = dontDistribute super."transformers-abort"; + "transformers-compose" = dontDistribute super."transformers-compose"; + "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-free" = dontDistribute super."transformers-free"; + "transformers-runnable" = dontDistribute super."transformers-runnable"; + "transformers-supply" = dontDistribute super."transformers-supply"; + "transient" = dontDistribute super."transient"; + "translatable-intset" = dontDistribute super."translatable-intset"; + "translate" = dontDistribute super."translate"; + "travis" = dontDistribute super."travis"; + "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; + "trawl" = dontDistribute super."trawl"; + "traypoweroff" = dontDistribute super."traypoweroff"; + "tree-fun" = dontDistribute super."tree-fun"; + "tree-monad" = dontDistribute super."tree-monad"; + "treemap-html" = dontDistribute super."treemap-html"; + "treemap-html-tools" = dontDistribute super."treemap-html-tools"; + "treersec" = dontDistribute super."treersec"; + "treeviz" = dontDistribute super."treeviz"; + "tremulous-query" = dontDistribute super."tremulous-query"; + "trhsx" = dontDistribute super."trhsx"; + "triangulation" = dontDistribute super."triangulation"; + "trimpolya" = dontDistribute super."trimpolya"; + "tripLL" = dontDistribute super."tripLL"; + "trivia" = dontDistribute super."trivia"; + "trivial-constraint" = dontDistribute super."trivial-constraint"; + "tropical" = dontDistribute super."tropical"; + "truelevel" = dontDistribute super."truelevel"; + "trurl" = dontDistribute super."trurl"; + "truthful" = dontDistribute super."truthful"; + "tsession" = dontDistribute super."tsession"; + "tsession-happstack" = dontDistribute super."tsession-happstack"; + "tskiplist" = dontDistribute super."tskiplist"; + "tslib" = dontDistribute super."tslib"; + "tslogger" = dontDistribute super."tslogger"; + "tsp-viz" = dontDistribute super."tsp-viz"; + "tsparse" = dontDistribute super."tsparse"; + "tst" = dontDistribute super."tst"; + "tsvsql" = dontDistribute super."tsvsql"; + "tttool" = doDistribute super."tttool_1_5_1"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple" = dontDistribute super."tuple"; + "tuple-gen" = dontDistribute super."tuple-gen"; + "tuple-generic" = dontDistribute super."tuple-generic"; + "tuple-hlist" = dontDistribute super."tuple-hlist"; + "tuple-lenses" = dontDistribute super."tuple-lenses"; + "tuple-morph" = dontDistribute super."tuple-morph"; + "tupleinstances" = dontDistribute super."tupleinstances"; + "turing" = dontDistribute super."turing"; + "turing-music" = dontDistribute super."turing-music"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "turtle-options" = dontDistribute super."turtle-options"; + "tweak" = dontDistribute super."tweak"; + "twee" = dontDistribute super."twee"; + "twentefp" = dontDistribute super."twentefp"; + "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; + "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees"; + "twentefp-graphs" = dontDistribute super."twentefp-graphs"; + "twentefp-number" = dontDistribute super."twentefp-number"; + "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; + "twentefp-trees" = dontDistribute super."twentefp-trees"; + "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; + "twhs" = dontDistribute super."twhs"; + "twidge" = dontDistribute super."twidge"; + "twilight-stm" = dontDistribute super."twilight-stm"; + "twilio" = dontDistribute super."twilio"; + "twill" = dontDistribute super."twill"; + "twiml" = dontDistribute super."twiml"; + "twine" = dontDistribute super."twine"; + "twisty" = dontDistribute super."twisty"; + "twitch" = dontDistribute super."twitch"; + "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = doDistribute super."twitter-conduit_0_1_1_1"; + "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-types" = doDistribute super."twitter-types_0_7_1_1"; + "twitter-types-lens" = doDistribute super."twitter-types-lens_0_7_1"; + "tx" = dontDistribute super."tx"; + "txt-sushi" = dontDistribute super."txt-sushi"; + "txt2rtf" = dontDistribute super."txt2rtf"; + "txtblk" = dontDistribute super."txtblk"; + "ty" = dontDistribute super."ty"; + "typalyze" = dontDistribute super."typalyze"; + "type-booleans" = dontDistribute super."type-booleans"; + "type-cache" = dontDistribute super."type-cache"; + "type-cereal" = dontDistribute super."type-cereal"; + "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; + "type-digits" = dontDistribute super."type-digits"; + "type-equality" = dontDistribute super."type-equality"; + "type-equality-check" = dontDistribute super."type-equality-check"; + "type-fun" = dontDistribute super."type-fun"; + "type-functions" = dontDistribute super."type-functions"; + "type-hint" = dontDistribute super."type-hint"; + "type-int" = dontDistribute super."type-int"; + "type-iso" = dontDistribute super."type-iso"; + "type-level" = dontDistribute super."type-level"; + "type-level-bst" = dontDistribute super."type-level-bst"; + "type-level-natural-number" = dontDistribute super."type-level-natural-number"; + "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction"; + "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; + "type-level-sets" = dontDistribute super."type-level-sets"; + "type-level-tf" = dontDistribute super."type-level-tf"; + "type-natural" = dontDistribute super."type-natural"; + "type-ord" = dontDistribute super."type-ord"; + "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; + "type-prelude" = dontDistribute super."type-prelude"; + "type-settheory" = dontDistribute super."type-settheory"; + "type-spine" = dontDistribute super."type-spine"; + "type-structure" = dontDistribute super."type-structure"; + "type-sub-th" = dontDistribute super."type-sub-th"; + "type-unary" = dontDistribute super."type-unary"; + "typeable-th" = dontDistribute super."typeable-th"; + "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; + "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; + "typedquery" = dontDistribute super."typedquery"; + "typehash" = dontDistribute super."typehash"; + "typelevel" = dontDistribute super."typelevel"; + "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typeof" = dontDistribute super."typeof"; + "typeparams" = dontDistribute super."typeparams"; + "typesafe-endian" = dontDistribute super."typesafe-endian"; + "typescript-docs" = dontDistribute super."typescript-docs"; + "typical" = dontDistribute super."typical"; + "typography-geometry" = dontDistribute super."typography-geometry"; + "uAgda" = dontDistribute super."uAgda"; + "ua-parser" = dontDistribute super."ua-parser"; + "uacpid" = dontDistribute super."uacpid"; + "uberlast" = dontDistribute super."uberlast"; + "uconv" = dontDistribute super."uconv"; + "udbus" = dontDistribute super."udbus"; + "udbus-model" = dontDistribute super."udbus-model"; + "udcode" = dontDistribute super."udcode"; + "udev" = dontDistribute super."udev"; + "uhc-light" = dontDistribute super."uhc-light"; + "uhc-util" = dontDistribute super."uhc-util"; + "uhexdump" = dontDistribute super."uhexdump"; + "uhttpc" = dontDistribute super."uhttpc"; + "ui-command" = dontDistribute super."ui-command"; + "uid" = dontDistribute super."uid"; + "una" = dontDistribute super."una"; + "unagi-chan" = dontDistribute super."unagi-chan"; + "unagi-streams" = dontDistribute super."unagi-streams"; + "unamb" = dontDistribute super."unamb"; + "unamb-custom" = dontDistribute super."unamb-custom"; + "unbound" = dontDistribute super."unbound"; + "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; + "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; + "unfoldable" = dontDistribute super."unfoldable"; + "ungadtagger" = dontDistribute super."ungadtagger"; + "uni-events" = dontDistribute super."uni-events"; + "uni-graphs" = dontDistribute super."uni-graphs"; + "uni-htk" = dontDistribute super."uni-htk"; + "uni-posixutil" = dontDistribute super."uni-posixutil"; + "uni-reactor" = dontDistribute super."uni-reactor"; + "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph"; + "uni-util" = dontDistribute super."uni-util"; + "unicode" = dontDistribute super."unicode"; + "unicode-names" = dontDistribute super."unicode-names"; + "unicode-normalization" = dontDistribute super."unicode-normalization"; + "unicode-prelude" = dontDistribute super."unicode-prelude"; + "unicode-properties" = dontDistribute super."unicode-properties"; + "unicode-show" = dontDistribute super."unicode-show"; + "unicode-symbols" = dontDistribute super."unicode-symbols"; + "unicoder" = dontDistribute super."unicoder"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; + "union-find-array" = dontDistribute super."union-find-array"; + "union-map" = dontDistribute super."union-map"; + "unique" = dontDistribute super."unique"; + "unique-logic" = dontDistribute super."unique-logic"; + "unique-logic-tf" = dontDistribute super."unique-logic-tf"; + "uniqueid" = dontDistribute super."uniqueid"; + "unit" = dontDistribute super."unit"; + "units" = dontDistribute super."units"; + "units-attoparsec" = dontDistribute super."units-attoparsec"; + "units-defs" = dontDistribute super."units-defs"; + "units-parser" = dontDistribute super."units-parser"; + "unittyped" = dontDistribute super."unittyped"; + "universal-binary" = dontDistribute super."universal-binary"; + "universe-th" = dontDistribute super."universe-th"; + "unix-fcntl" = dontDistribute super."unix-fcntl"; + "unix-handle" = dontDistribute super."unix-handle"; + "unix-io-extra" = dontDistribute super."unix-io-extra"; + "unix-memory" = dontDistribute super."unix-memory"; + "unix-process-conduit" = dontDistribute super."unix-process-conduit"; + "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = dontDistribute super."unlambda"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; + "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; + "unpack-funcs" = dontDistribute super."unpack-funcs"; + "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; + "unsafe" = dontDistribute super."unsafe"; + "unsafe-promises" = dontDistribute super."unsafe-promises"; + "unsafely" = dontDistribute super."unsafely"; + "unsafeperformst" = dontDistribute super."unsafeperformst"; + "unscramble" = dontDistribute super."unscramble"; + "unusable-pkg" = dontDistribute super."unusable-pkg"; + "uom-plugin" = dontDistribute super."uom-plugin"; + "up" = dontDistribute super."up"; + "up-grade" = dontDistribute super."up-grade"; + "uploadcare" = dontDistribute super."uploadcare"; + "upskirt" = dontDistribute super."upskirt"; + "ureader" = dontDistribute super."ureader"; + "urembed" = dontDistribute super."urembed"; + "uri" = dontDistribute super."uri"; + "uri-bytestring" = doDistribute super."uri-bytestring_0_1_9_2"; + "uri-conduit" = dontDistribute super."uri-conduit"; + "uri-enumerator" = dontDistribute super."uri-enumerator"; + "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; + "uri-template" = dontDistribute super."uri-template"; + "url-generic" = dontDistribute super."url-generic"; + "urlcheck" = dontDistribute super."urlcheck"; + "urldecode" = dontDistribute super."urldecode"; + "urldisp-happstack" = dontDistribute super."urldisp-happstack"; + "urlencoded" = dontDistribute super."urlencoded"; + "urn" = dontDistribute super."urn"; + "urxml" = dontDistribute super."urxml"; + "usb" = dontDistribute super."usb"; + "usb-enumerator" = dontDistribute super."usb-enumerator"; + "usb-hid" = dontDistribute super."usb-hid"; + "usb-id-database" = dontDistribute super."usb-id-database"; + "usb-iteratee" = dontDistribute super."usb-iteratee"; + "usb-safe" = dontDistribute super."usb-safe"; + "users" = doDistribute super."users_0_4_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; + "users-test" = doDistribute super."users-test_0_4_0_0"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uulib" = dontDistribute super."uulib"; + "uvector" = dontDistribute super."uvector"; + "uvector-algorithms" = dontDistribute super."uvector-algorithms"; + "uxadt" = dontDistribute super."uxadt"; + "uzbl-with-source" = dontDistribute super."uzbl-with-source"; + "v4l2" = dontDistribute super."v4l2"; + "v4l2-examples" = dontDistribute super."v4l2-examples"; + "vacuum" = dontDistribute super."vacuum"; + "vacuum-cairo" = dontDistribute super."vacuum-cairo"; + "vacuum-graphviz" = dontDistribute super."vacuum-graphviz"; + "vacuum-opengl" = dontDistribute super."vacuum-opengl"; + "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph"; + "vado" = dontDistribute super."vado"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validated-literals" = dontDistribute super."validated-literals"; + "validations" = dontDistribute super."validations"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vcsgui" = dontDistribute super."vcsgui"; + "vcswrapper" = dontDistribute super."vcswrapper"; + "vect" = dontDistribute super."vect"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector-binary" = dontDistribute super."vector-binary"; + "vector-binary-instances" = doDistribute super."vector-binary-instances_0_2_1_1"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "vector-functorlazy" = dontDistribute super."vector-functorlazy"; + "vector-heterogenous" = dontDistribute super."vector-heterogenous"; + "vector-instances-collections" = dontDistribute super."vector-instances-collections"; + "vector-mmap" = dontDistribute super."vector-mmap"; + "vector-random" = dontDistribute super."vector-random"; + "vector-read-instances" = dontDistribute super."vector-read-instances"; + "vector-sized" = dontDistribute super."vector-sized"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-space-points" = dontDistribute super."vector-space-points"; + "vector-static" = dontDistribute super."vector-static"; + "vector-strategies" = dontDistribute super."vector-strategies"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "versions" = dontDistribute super."versions"; + "vhdl" = dontDistribute super."vhdl"; + "views" = dontDistribute super."views"; + "vigilance" = dontDistribute super."vigilance"; + "vimeta" = dontDistribute super."vimeta"; + "vimus" = dontDistribute super."vimus"; + "vintage-basic" = dontDistribute super."vintage-basic"; + "vinyl-gl" = dontDistribute super."vinyl-gl"; + "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; + "vinyl-utils" = dontDistribute super."vinyl-utils"; + "vinyl-vectors" = dontDistribute super."vinyl-vectors"; + "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; + "vision" = dontDistribute super."vision"; + "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; + "visual-prof" = dontDistribute super."visual-prof"; + "vivid" = dontDistribute super."vivid"; + "vk-aws-route53" = dontDistribute super."vk-aws-route53"; + "vk-posix-pty" = dontDistribute super."vk-posix-pty"; + "vocabulary-kadma" = dontDistribute super."vocabulary-kadma"; + "vorbiscomment" = dontDistribute super."vorbiscomment"; + "vowpal-utils" = dontDistribute super."vowpal-utils"; + "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty-examples" = dontDistribute super."vty-examples"; + "vty-menu" = dontDistribute super."vty-menu"; + "vty-ui" = dontDistribute super."vty-ui"; + "vty-ui-extras" = dontDistribute super."vty-ui-extras"; + "vulkan" = dontDistribute super."vulkan"; + "wacom-daemon" = dontDistribute super."wacom-daemon"; + "waddle" = dontDistribute super."waddle"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_14_1"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; + "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; + "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; + "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; + "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; + "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; + "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-metrics" = doDistribute super."wai-middleware-metrics_0_2_2"; + "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; + "wai-middleware-route" = dontDistribute super."wai-middleware-route"; + "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-request-spec" = dontDistribute super."wai-request-spec"; + "wai-responsible" = dontDistribute super."wai-responsible"; + "wai-router" = dontDistribute super."wai-router"; + "wai-session-alt" = dontDistribute super."wai-session-alt"; + "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; + "wai-static-cache" = dontDistribute super."wai-static-cache"; + "wai-static-pages" = dontDistribute super."wai-static-pages"; + "wai-test" = dontDistribute super."wai-test"; + "wai-thrift" = dontDistribute super."wai-thrift"; + "wai-throttler" = dontDistribute super."wai-throttler"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_2_2"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "wavesurfer" = dontDistribute super."wavesurfer"; + "wavy" = dontDistribute super."wavy"; + "wcwidth" = dontDistribute super."wcwidth"; + "weather-api" = dontDistribute super."weather-api"; + "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell"; + "web-css" = dontDistribute super."web-css"; + "web-encodings" = dontDistribute super."web-encodings"; + "web-mongrel2" = dontDistribute super."web-mongrel2"; + "web-page" = dontDistribute super."web-page"; + "web-routes-mtl" = dontDistribute super."web-routes-mtl"; + "web-routes-quasi" = dontDistribute super."web-routes-quasi"; + "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-transformers" = dontDistribute super."web-routes-transformers"; + "webapi" = dontDistribute super."webapi"; + "webapp" = dontDistribute super."webapp"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_1"; + "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; + "webidl" = dontDistribute super."webidl"; + "webify" = dontDistribute super."webify"; + "webkit" = dontDistribute super."webkit"; + "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore"; + "webkitgtk3" = dontDistribute super."webkitgtk3"; + "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore"; + "webrtc-vad" = dontDistribute super."webrtc-vad"; + "webserver" = dontDistribute super."webserver"; + "websnap" = dontDistribute super."websnap"; + "webwire" = dontDistribute super."webwire"; + "wedding-announcement" = dontDistribute super."wedding-announcement"; + "wedged" = dontDistribute super."wedged"; + "weighted-regexp" = dontDistribute super."weighted-regexp"; + "weighted-search" = dontDistribute super."weighted-search"; + "welshy" = dontDistribute super."welshy"; + "werewolf" = dontDistribute super."werewolf"; + "wheb-mongo" = dontDistribute super."wheb-mongo"; + "wheb-redis" = dontDistribute super."wheb-redis"; + "wheb-strapped" = dontDistribute super."wheb-strapped"; + "while-lang-parser" = dontDistribute super."while-lang-parser"; + "whim" = dontDistribute super."whim"; + "whiskers" = dontDistribute super."whiskers"; + "whitespace" = dontDistribute super."whitespace"; + "whois" = dontDistribute super."whois"; + "why3" = dontDistribute super."why3"; + "wigner-symbols" = dontDistribute super."wigner-symbols"; + "wikipedia4epub" = dontDistribute super."wikipedia4epub"; + "win-hp-path" = dontDistribute super."win-hp-path"; + "windowslive" = dontDistribute super."windowslive"; + "winerror" = dontDistribute super."winerror"; + "winio" = dontDistribute super."winio"; + "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; + "witness" = dontDistribute super."witness"; + "witty" = dontDistribute super."witty"; + "wkt" = dontDistribute super."wkt"; + "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm"; + "wlc-hs" = dontDistribute super."wlc-hs"; + "wobsurv" = dontDistribute super."wobsurv"; + "woffex" = dontDistribute super."woffex"; + "wol" = dontDistribute super."wol"; + "wolf" = dontDistribute super."wolf"; + "woot" = dontDistribute super."woot"; + "word24" = dontDistribute super."word24"; + "wordcloud" = dontDistribute super."wordcloud"; + "wordexp" = dontDistribute super."wordexp"; + "words" = dontDistribute super."words"; + "wordsearch" = dontDistribute super."wordsearch"; + "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; + "wp-archivebot" = dontDistribute super."wp-archivebot"; + "wraparound" = dontDistribute super."wraparound"; + "wraxml" = dontDistribute super."wraxml"; + "wreq-sb" = dontDistribute super."wreq-sb"; + "wright" = dontDistribute super."wright"; + "wsdl" = dontDistribute super."wsdl"; + "wsedit" = dontDistribute super."wsedit"; + "wtk" = dontDistribute super."wtk"; + "wtk-gtk" = dontDistribute super."wtk-gtk"; + "wumpus-basic" = dontDistribute super."wumpus-basic"; + "wumpus-core" = dontDistribute super."wumpus-core"; + "wumpus-drawing" = dontDistribute super."wumpus-drawing"; + "wumpus-microprint" = dontDistribute super."wumpus-microprint"; + "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = dontDistribute super."wuss"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdg-userdirs" = dontDistribute super."xdg-userdirs"; + "xdot" = dontDistribute super."xdot"; + "xfconf" = dontDistribute super."xfconf"; + "xhaskell-library" = dontDistribute super."xhaskell-library"; + "xhb" = dontDistribute super."xhb"; + "xhb-atom-cache" = dontDistribute super."xhb-atom-cache"; + "xhb-ewmh" = dontDistribute super."xhb-ewmh"; + "xhtml" = doDistribute super."xhtml_3000_2_1"; + "xhtml-combinators" = dontDistribute super."xhtml-combinators"; + "xilinx-lava" = dontDistribute super."xilinx-lava"; + "xine" = dontDistribute super."xine"; + "xing-api" = dontDistribute super."xing-api"; + "xinput-conduit" = dontDistribute super."xinput-conduit"; + "xkbcommon" = dontDistribute super."xkbcommon"; + "xkcd" = dontDistribute super."xkcd"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-enumerator" = dontDistribute super."xml-enumerator"; + "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; + "xml-extractors" = dontDistribute super."xml-extractors"; + "xml-helpers" = dontDistribute super."xml-helpers"; + "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens"; + "xml-monad" = dontDistribute super."xml-monad"; + "xml-parsec" = dontDistribute super."xml-parsec"; + "xml-picklers" = dontDistribute super."xml-picklers"; + "xml-pipe" = dontDistribute super."xml-pipe"; + "xml-prettify" = dontDistribute super."xml-prettify"; + "xml-push" = dontDistribute super."xml-push"; + "xml-query" = dontDistribute super."xml-query"; + "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit"; + "xml-query-xml-types" = dontDistribute super."xml-query-xml-types"; + "xml2html" = dontDistribute super."xml2html"; + "xml2json" = dontDistribute super."xml2json"; + "xml2x" = dontDistribute super."xml2x"; + "xmltv" = dontDistribute super."xmltv"; + "xmms2-client" = dontDistribute super."xmms2-client"; + "xmms2-client-glib" = dontDistribute super."xmms2-client-glib"; + "xmobar" = dontDistribute super."xmobar"; + "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch"; + "xmonad-contrib" = dontDistribute super."xmonad-contrib"; + "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch"; + "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl"; + "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper"; + "xmonad-eval" = dontDistribute super."xmonad-eval"; + "xmonad-extras" = dontDistribute super."xmonad-extras"; + "xmonad-screenshot" = dontDistribute super."xmonad-screenshot"; + "xmonad-utils" = dontDistribute super."xmonad-utils"; + "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper"; + "xmonad-windownames" = dontDistribute super."xmonad-windownames"; + "xmpipe" = dontDistribute super."xmpipe"; + "xorshift" = dontDistribute super."xorshift"; + "xosd" = dontDistribute super."xosd"; + "xournal-builder" = dontDistribute super."xournal-builder"; + "xournal-convert" = dontDistribute super."xournal-convert"; + "xournal-parser" = dontDistribute super."xournal-parser"; + "xournal-render" = dontDistribute super."xournal-render"; + "xournal-types" = dontDistribute super."xournal-types"; + "xsact" = dontDistribute super."xsact"; + "xsd" = dontDistribute super."xsd"; + "xsha1" = dontDistribute super."xsha1"; + "xslt" = dontDistribute super."xslt"; + "xtc" = dontDistribute super."xtc"; + "xtest" = dontDistribute super."xtest"; + "xturtle" = dontDistribute super."xturtle"; + "xxhash" = dontDistribute super."xxhash"; + "y0l0bot" = dontDistribute super."y0l0bot"; + "yabi" = dontDistribute super."yabi"; + "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; + "yahoo-web-search" = dontDistribute super."yahoo-web-search"; + "yajl" = dontDistribute super."yajl"; + "yajl-enumerator" = dontDistribute super."yajl-enumerator"; + "yall" = dontDistribute super."yall"; + "yamemo" = dontDistribute super."yamemo"; + "yaml-config" = dontDistribute super."yaml-config"; + "yaml-light-lens" = dontDistribute super."yaml-light-lens"; + "yaml-rpc" = dontDistribute super."yaml-rpc"; + "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty"; + "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap"; + "yaml-union" = dontDistribute super."yaml-union"; + "yaml2owl" = dontDistribute super."yaml2owl"; + "yamlkeysdiff" = dontDistribute super."yamlkeysdiff"; + "yampa-canvas" = dontDistribute super."yampa-canvas"; + "yampa-glfw" = dontDistribute super."yampa-glfw"; + "yampa-glut" = dontDistribute super."yampa-glut"; + "yampa2048" = dontDistribute super."yampa2048"; + "yaop" = dontDistribute super."yaop"; + "yap" = dontDistribute super."yap"; + "yarr" = dontDistribute super."yarr"; + "yarr-image-io" = dontDistribute super."yarr-image-io"; + "yate" = dontDistribute super."yate"; + "yavie" = dontDistribute super."yavie"; + "ycextra" = dontDistribute super."ycextra"; + "yeganesh" = dontDistribute super."yeganesh"; + "yeller" = dontDistribute super."yeller"; + "yeshql" = dontDistribute super."yeshql"; + "yesod-angular" = dontDistribute super."yesod-angular"; + "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; + "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; + "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; + "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_1_7"; + "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; + "yesod-comments" = dontDistribute super."yesod-comments"; + "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; + "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-crud" = dontDistribute super."yesod-crud"; + "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; + "yesod-csp" = dontDistribute super."yesod-csp"; + "yesod-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-json" = dontDistribute super."yesod-json"; + "yesod-links" = dontDistribute super."yesod-links"; + "yesod-lucid" = dontDistribute super."yesod-lucid"; + "yesod-markdown" = dontDistribute super."yesod-markdown"; + "yesod-media-simple" = dontDistribute super."yesod-media-simple"; + "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5"; + "yesod-paginate" = dontDistribute super."yesod-paginate"; + "yesod-pagination" = dontDistribute super."yesod-pagination"; + "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-platform" = dontDistribute super."yesod-platform"; + "yesod-pnotify" = dontDistribute super."yesod-pnotify"; + "yesod-pure" = dontDistribute super."yesod-pure"; + "yesod-purescript" = dontDistribute super."yesod-purescript"; + "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; + "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; + "yesod-routes" = dontDistribute super."yesod-routes"; + "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; + "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript"; + "yesod-rst" = dontDistribute super."yesod-rst"; + "yesod-s3" = dontDistribute super."yesod-s3"; + "yesod-sass" = dontDistribute super."yesod-sass"; + "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test-json" = dontDistribute super."yesod-test-json"; + "yesod-tls" = dontDistribute super."yesod-tls"; + "yesod-transloadit" = dontDistribute super."yesod-transloadit"; + "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; + "yesod-worker" = dontDistribute super."yesod-worker"; + "yet-another-logger" = dontDistribute super."yet-another-logger"; + "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_3"; + "yi-contrib" = dontDistribute super."yi-contrib"; + "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; + "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-monokai" = dontDistribute super."yi-monokai"; + "yi-snippet" = dontDistribute super."yi-snippet"; + "yi-solarized" = dontDistribute super."yi-solarized"; + "yi-spolsky" = dontDistribute super."yi-spolsky"; + "yi-vty" = dontDistribute super."yi-vty"; + "yices" = dontDistribute super."yices"; + "yices-easy" = dontDistribute super."yices-easy"; + "yices-painless" = dontDistribute super."yices-painless"; + "yjftp" = dontDistribute super."yjftp"; + "yjftp-libs" = dontDistribute super."yjftp-libs"; + "yjsvg" = dontDistribute super."yjsvg"; + "yjtools" = dontDistribute super."yjtools"; + "yocto" = dontDistribute super."yocto"; + "yoctoparsec" = dontDistribute super."yoctoparsec"; + "yoko" = dontDistribute super."yoko"; + "york-lava" = dontDistribute super."york-lava"; + "youtube" = dontDistribute super."youtube"; + "yql" = dontDistribute super."yql"; + "yst" = dontDistribute super."yst"; + "yuiGrid" = dontDistribute super."yuiGrid"; + "yuuko" = dontDistribute super."yuuko"; + "yxdb-utils" = dontDistribute super."yxdb-utils"; + "z3" = dontDistribute super."z3"; + "zalgo" = dontDistribute super."zalgo"; + "zampolit" = dontDistribute super."zampolit"; + "zasni-gerna" = dontDistribute super."zasni-gerna"; + "zcache" = dontDistribute super."zcache"; + "zenc" = dontDistribute super."zenc"; + "zendesk-api" = dontDistribute super."zendesk-api"; + "zeno" = dontDistribute super."zeno"; + "zerobin" = dontDistribute super."zerobin"; + "zeromq-haskell" = dontDistribute super."zeromq-haskell"; + "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; + "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; + "zeroth" = dontDistribute super."zeroth"; + "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; + "zip" = dontDistribute super."zip"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipkin" = dontDistribute super."zipkin"; + "zipper" = dontDistribute super."zipper"; + "zippers" = dontDistribute super."zippers"; + "zippo" = dontDistribute super."zippo"; + "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zmcat" = dontDistribute super."zmcat"; + "zmidi-core" = dontDistribute super."zmidi-core"; + "zmidi-score" = dontDistribute super."zmidi-score"; + "zmqat" = dontDistribute super."zmqat"; + "zoneinfo" = dontDistribute super."zoneinfo"; + "zoom" = dontDistribute super."zoom"; + "zoom-cache" = dontDistribute super."zoom-cache"; + "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm"; + "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile"; + "zoom-refs" = dontDistribute super."zoom-refs"; + "zot" = dontDistribute super."zot"; + "zsh-battery" = dontDistribute super."zsh-battery"; + "ztail" = dontDistribute super."ztail"; + +} diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix new file mode 100644 index 00000000000..2bda8436a28 --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix @@ -0,0 +1,7950 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # core libraries provided by the compiler + Cabal = null; + array = null; + base = null; + bin-package-db = null; + binary = null; + bytestring = null; + containers = null; + deepseq = null; + directory = null; + filepath = null; + ghc-prim = null; + hoopl = null; + hpc = null; + integer-gmp = null; + pretty = null; + process = null; + rts = null; + template-haskell = null; + time = null; + transformers = null; + unix = null; + + # lts-5.7 packages + "3d-graphics-examples" = dontDistribute super."3d-graphics-examples"; + "3dmodels" = dontDistribute super."3dmodels"; + "4Blocks" = dontDistribute super."4Blocks"; + "AAI" = dontDistribute super."AAI"; + "ABList" = dontDistribute super."ABList"; + "AC-Angle" = dontDistribute super."AC-Angle"; + "AC-Boolean" = dontDistribute super."AC-Boolean"; + "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform"; + "AC-Colour" = dontDistribute super."AC-Colour"; + "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK"; + "AC-HalfInteger" = dontDistribute super."AC-HalfInteger"; + "AC-MiniTest" = dontDistribute super."AC-MiniTest"; + "AC-PPM" = dontDistribute super."AC-PPM"; + "AC-Random" = dontDistribute super."AC-Random"; + "AC-Terminal" = dontDistribute super."AC-Terminal"; + "AC-VanillaArray" = dontDistribute super."AC-VanillaArray"; + "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy"; + "ACME" = dontDistribute super."ACME"; + "ADPfusion" = dontDistribute super."ADPfusion"; + "AERN-Basics" = dontDistribute super."AERN-Basics"; + "AERN-Net" = dontDistribute super."AERN-Net"; + "AERN-Real" = dontDistribute super."AERN-Real"; + "AERN-Real-Double" = dontDistribute super."AERN-Real-Double"; + "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval"; + "AERN-RnToRm" = dontDistribute super."AERN-RnToRm"; + "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot"; + "AES" = dontDistribute super."AES"; + "AGI" = dontDistribute super."AGI"; + "ALUT" = dontDistribute super."ALUT"; + "AMI" = dontDistribute super."AMI"; + "ANum" = dontDistribute super."ANum"; + "ASN1" = dontDistribute super."ASN1"; + "AVar" = dontDistribute super."AVar"; + "AWin32Console" = dontDistribute super."AWin32Console"; + "AbortT-monadstf" = dontDistribute super."AbortT-monadstf"; + "AbortT-mtl" = dontDistribute super."AbortT-mtl"; + "AbortT-transformers" = dontDistribute super."AbortT-transformers"; + "ActionKid" = dontDistribute super."ActionKid"; + "Adaptive" = dontDistribute super."Adaptive"; + "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade"; + "Advgame" = dontDistribute super."Advgame"; + "AesonBson" = dontDistribute super."AesonBson"; + "Agata" = dontDistribute super."Agata"; + "Agda-executable" = dontDistribute super."Agda-executable"; + "AhoCorasick" = dontDistribute super."AhoCorasick"; + "AlgorithmW" = dontDistribute super."AlgorithmW"; + "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms"; + "Allure" = dontDistribute super."Allure"; + "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter"; + "Animas" = dontDistribute super."Animas"; + "Annotations" = dontDistribute super."Annotations"; + "Ansi2Html" = dontDistribute super."Ansi2Html"; + "ApplePush" = dontDistribute super."ApplePush"; + "AppleScript" = dontDistribute super."AppleScript"; + "ApproxFun-hs" = dontDistribute super."ApproxFun-hs"; + "ArrayRef" = dontDistribute super."ArrayRef"; + "ArrowVHDL" = dontDistribute super."ArrowVHDL"; + "AspectAG" = dontDistribute super."AspectAG"; + "AttoBencode" = dontDistribute super."AttoBencode"; + "AttoJson" = dontDistribute super."AttoJson"; + "Attrac" = dontDistribute super."Attrac"; + "Aurochs" = dontDistribute super."Aurochs"; + "AutoForms" = dontDistribute super."AutoForms"; + "AvlTree" = dontDistribute super."AvlTree"; + "BASIC" = dontDistribute super."BASIC"; + "BCMtools" = dontDistribute super."BCMtools"; + "BNFC" = dontDistribute super."BNFC"; + "BNFC-meta" = dontDistribute super."BNFC-meta"; + "Baggins" = dontDistribute super."Baggins"; + "Bang" = dontDistribute super."Bang"; + "Barracuda" = dontDistribute super."Barracuda"; + "Befunge93" = dontDistribute super."Befunge93"; + "BenchmarkHistory" = dontDistribute super."BenchmarkHistory"; + "BerkeleyDB" = dontDistribute super."BerkeleyDB"; + "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; + "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BigPixel" = dontDistribute super."BigPixel"; + "Binpack" = dontDistribute super."Binpack"; + "Biobase" = dontDistribute super."Biobase"; + "BiobaseBlast" = dontDistribute super."BiobaseBlast"; + "BiobaseDotP" = dontDistribute super."BiobaseDotP"; + "BiobaseFR3D" = dontDistribute super."BiobaseFR3D"; + "BiobaseFasta" = dontDistribute super."BiobaseFasta"; + "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; + "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; + "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; + "BiobaseTurner" = dontDistribute super."BiobaseTurner"; + "BiobaseTypes" = dontDistribute super."BiobaseTypes"; + "BiobaseVienna" = dontDistribute super."BiobaseVienna"; + "BiobaseXNA" = dontDistribute super."BiobaseXNA"; + "BirdPP" = dontDistribute super."BirdPP"; + "BitSyntax" = dontDistribute super."BitSyntax"; + "Bitly" = dontDistribute super."Bitly"; + "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; + "BluePrintCSS" = dontDistribute super."BluePrintCSS"; + "Blueprint" = dontDistribute super."Blueprint"; + "Bookshelf" = dontDistribute super."Bookshelf"; + "Bravo" = dontDistribute super."Bravo"; + "BufferedSocket" = dontDistribute super."BufferedSocket"; + "Buster" = dontDistribute super."Buster"; + "CBOR" = dontDistribute super."CBOR"; + "CC-delcont" = dontDistribute super."CC-delcont"; + "CC-delcont-alt" = dontDistribute super."CC-delcont-alt"; + "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe"; + "CC-delcont-exc" = dontDistribute super."CC-delcont-exc"; + "CC-delcont-ref" = dontDistribute super."CC-delcont-ref"; + "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf"; + "CCA" = dontDistribute super."CCA"; + "CHXHtml" = dontDistribute super."CHXHtml"; + "CLASE" = dontDistribute super."CLASE"; + "CLI" = dontDistribute super."CLI"; + "CMCompare" = dontDistribute super."CMCompare"; + "CMQ" = dontDistribute super."CMQ"; + "COrdering" = dontDistribute super."COrdering"; + "CPBrainfuck" = dontDistribute super."CPBrainfuck"; + "CPL" = dontDistribute super."CPL"; + "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage"; + "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules"; + "CSPM-Frontend" = dontDistribute super."CSPM-Frontend"; + "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter"; + "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog"; + "CSPM-cspm" = dontDistribute super."CSPM-cspm"; + "CTRex" = dontDistribute super."CTRex"; + "CV" = dontDistribute super."CV"; + "CabalSearch" = dontDistribute super."CabalSearch"; + "Capabilities" = dontDistribute super."Capabilities"; + "Cardinality" = dontDistribute super."Cardinality"; + "CarneadesDSL" = dontDistribute super."CarneadesDSL"; + "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; + "Cascade" = dontDistribute super."Cascade"; + "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = dontDistribute super."Chart-diagrams"; + "Chart-gtk" = dontDistribute super."Chart-gtk"; + "Chart-simple" = dontDistribute super."Chart-simple"; + "CheatSheet" = dontDistribute super."CheatSheet"; + "Checked" = dontDistribute super."Checked"; + "Chitra" = dontDistribute super."Chitra"; + "ChristmasTree" = dontDistribute super."ChristmasTree"; + "CirruParser" = dontDistribute super."CirruParser"; + "ClassLaws" = dontDistribute super."ClassLaws"; + "ClassyPrelude" = dontDistribute super."ClassyPrelude"; + "Clean" = dontDistribute super."Clean"; + "Clipboard" = dontDistribute super."Clipboard"; + "Coadjute" = dontDistribute super."Coadjute"; + "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; + "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; + "Combinatorrent" = dontDistribute super."Combinatorrent"; + "Command" = dontDistribute super."Command"; + "Commando" = dontDistribute super."Commando"; + "ComonadSheet" = dontDistribute super."ComonadSheet"; + "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; + "Concurrential" = dontDistribute super."Concurrential"; + "Condor" = dontDistribute super."Condor"; + "ConfigFileTH" = dontDistribute super."ConfigFileTH"; + "Configger" = dontDistribute super."Configger"; + "Configurable" = dontDistribute super."Configurable"; + "ConsStream" = dontDistribute super."ConsStream"; + "Conscript" = dontDistribute super."Conscript"; + "ConstraintKinds" = dontDistribute super."ConstraintKinds"; + "Consumer" = dontDistribute super."Consumer"; + "ContArrow" = dontDistribute super."ContArrow"; + "ContextAlgebra" = dontDistribute super."ContextAlgebra"; + "Contract" = dontDistribute super."Contract"; + "Control-Engine" = dontDistribute super."Control-Engine"; + "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass"; + "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2"; + "CoreDump" = dontDistribute super."CoreDump"; + "CoreErlang" = dontDistribute super."CoreErlang"; + "CoreFoundation" = dontDistribute super."CoreFoundation"; + "Coroutine" = dontDistribute super."Coroutine"; + "CouchDB" = dontDistribute super."CouchDB"; + "Craft3e" = dontDistribute super."Craft3e"; + "Crypto" = dontDistribute super."Crypto"; + "CurryDB" = dontDistribute super."CurryDB"; + "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DBlimited" = dontDistribute super."DBlimited"; + "DBus" = dontDistribute super."DBus"; + "DCFL" = dontDistribute super."DCFL"; + "DMuCheck" = dontDistribute super."DMuCheck"; + "DOM" = dontDistribute super."DOM"; + "DP" = dontDistribute super."DP"; + "DPM" = dontDistribute super."DPM"; + "DSA" = dontDistribute super."DSA"; + "DSH" = dontDistribute super."DSH"; + "DSTM" = dontDistribute super."DSTM"; + "DTC" = dontDistribute super."DTC"; + "Dangerous" = dontDistribute super."Dangerous"; + "Dao" = dontDistribute super."Dao"; + "DarcsHelpers" = dontDistribute super."DarcsHelpers"; + "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent"; + "Data-Rope" = dontDistribute super."Data-Rope"; + "DataTreeView" = dontDistribute super."DataTreeView"; + "Deadpan-DDP" = dontDistribute super."Deadpan-DDP"; + "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers"; + "DecisionTree" = dontDistribute super."DecisionTree"; + "DeepArrow" = dontDistribute super."DeepArrow"; + "DefendTheKing" = dontDistribute super."DefendTheKing"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "DifferenceLogic" = dontDistribute super."DifferenceLogic"; + "DifferentialEvolution" = dontDistribute super."DifferentialEvolution"; + "Digit" = dontDistribute super."Digit"; + "DigitalOcean" = dontDistribute super."DigitalOcean"; + "DimensionalHash" = dontDistribute super."DimensionalHash"; + "DirectSound" = dontDistribute super."DirectSound"; + "DisTract" = dontDistribute super."DisTract"; + "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem"; + "Dish" = dontDistribute super."Dish"; + "Dist" = dontDistribute super."Dist"; + "DistanceTransform" = dontDistribute super."DistanceTransform"; + "DistanceUnits" = dontDistribute super."DistanceUnits"; + "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment"; + "DocTest" = dontDistribute super."DocTest"; + "Docs" = dontDistribute super."Docs"; + "DrHylo" = dontDistribute super."DrHylo"; + "DrIFT" = dontDistribute super."DrIFT"; + "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized"; + "Dung" = dontDistribute super."Dung"; + "Dust" = dontDistribute super."Dust"; + "Dust-crypto" = dontDistribute super."Dust-crypto"; + "Dust-tools" = dontDistribute super."Dust-tools"; + "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap"; + "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp"; + "DysFRP" = dontDistribute super."DysFRP"; + "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; + "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; + "EEConfig" = dontDistribute super."EEConfig"; + "EdisonAPI" = dontDistribute super."EdisonAPI"; + "EdisonCore" = dontDistribute super."EdisonCore"; + "EditTimeReport" = dontDistribute super."EditTimeReport"; + "EitherT" = dontDistribute super."EitherT"; + "Elm" = dontDistribute super."Elm"; + "Emping" = dontDistribute super."Emping"; + "Encode" = dontDistribute super."Encode"; + "EnumContainers" = dontDistribute super."EnumContainers"; + "EnumMap" = dontDistribute super."EnumMap"; + "Eq" = dontDistribute super."Eq"; + "EqualitySolver" = dontDistribute super."EqualitySolver"; + "EsounD" = dontDistribute super."EsounD"; + "EstProgress" = dontDistribute super."EstProgress"; + "EtaMOO" = dontDistribute super."EtaMOO"; + "Etage" = dontDistribute super."Etage"; + "Etage-Graph" = dontDistribute super."Etage-Graph"; + "Eternal10Seconds" = dontDistribute super."Eternal10Seconds"; + "Etherbunny" = dontDistribute super."Etherbunny"; + "EuroIT" = dontDistribute super."EuroIT"; + "Euterpea" = dontDistribute super."Euterpea"; + "EventSocket" = dontDistribute super."EventSocket"; + "Extra" = dontDistribute super."Extra"; + "FComp" = dontDistribute super."FComp"; + "FM-SBLEX" = dontDistribute super."FM-SBLEX"; + "FModExRaw" = dontDistribute super."FModExRaw"; + "FPretty" = dontDistribute super."FPretty"; + "FTGL" = dontDistribute super."FTGL"; + "FTGL-bytestring" = dontDistribute super."FTGL-bytestring"; + "FTPLine" = dontDistribute super."FTPLine"; + "Facts" = dontDistribute super."Facts"; + "FailureT" = dontDistribute super."FailureT"; + "FastxPipe" = dontDistribute super."FastxPipe"; + "FermatsLastMargin" = dontDistribute super."FermatsLastMargin"; + "FerryCore" = dontDistribute super."FerryCore"; + "Feval" = dontDistribute super."Feval"; + "FieldTrip" = dontDistribute super."FieldTrip"; + "FileManip" = dontDistribute super."FileManip"; + "FileManipCompat" = dontDistribute super."FileManipCompat"; + "FilePather" = dontDistribute super."FilePather"; + "FileSystem" = dontDistribute super."FileSystem"; + "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo"; + "Finance-Treasury" = dontDistribute super."Finance-Treasury"; + "FiniteMap" = dontDistribute super."FiniteMap"; + "FirstOrderTheory" = dontDistribute super."FirstOrderTheory"; + "FixedPoint-simple" = dontDistribute super."FixedPoint-simple"; + "Flippi" = dontDistribute super."Flippi"; + "Focus" = dontDistribute super."Focus"; + "Folly" = dontDistribute super."Folly"; + "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; + "ForkableT" = dontDistribute super."ForkableT"; + "FormalGrammars" = dontDistribute super."FormalGrammars"; + "Foster" = dontDistribute super."Foster"; + "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; + "Fractaler" = dontDistribute super."Fractaler"; + "Frank" = dontDistribute super."Frank"; + "FreeTypeGL" = dontDistribute super."FreeTypeGL"; + "FunGEn" = dontDistribute super."FunGEn"; + "Fungi" = dontDistribute super."Fungi"; + "GA" = dontDistribute super."GA"; + "GGg" = dontDistribute super."GGg"; + "GHood" = dontDistribute super."GHood"; + "GLFW" = dontDistribute super."GLFW"; + "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; + "GLFW-task" = dontDistribute super."GLFW-task"; + "GLHUI" = dontDistribute super."GLHUI"; + "GLM" = dontDistribute super."GLM"; + "GLMatrix" = dontDistribute super."GLMatrix"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad"; + "GTALib" = dontDistribute super."GTALib"; + "Gamgine" = dontDistribute super."Gamgine"; + "Ganymede" = dontDistribute super."Ganymede"; + "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration"; + "GeBoP" = dontDistribute super."GeBoP"; + "GenI" = dontDistribute super."GenI"; + "GenSmsPdu" = dontDistribute super."GenSmsPdu"; + "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe"; + "GenussFold" = dontDistribute super."GenussFold"; + "GeoIp" = dontDistribute super."GeoIp"; + "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage"; + "Geodetic" = dontDistribute super."Geodetic"; + "GeomPredicates" = dontDistribute super."GeomPredicates"; + "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE"; + "GiST" = dontDistribute super."GiST"; + "Gifcurry" = dontDistribute super."Gifcurry"; + "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "GlomeTrace" = dontDistribute super."GlomeTrace"; + "GlomeVec" = dontDistribute super."GlomeVec"; + "GlomeView" = dontDistribute super."GlomeView"; + "GoogleChart" = dontDistribute super."GoogleChart"; + "GoogleDirections" = dontDistribute super."GoogleDirections"; + "GoogleSB" = dontDistribute super."GoogleSB"; + "GoogleSuggest" = dontDistribute super."GoogleSuggest"; + "GoogleTranslate" = dontDistribute super."GoogleTranslate"; + "GotoT-transformers" = dontDistribute super."GotoT-transformers"; + "GrammarProducts" = dontDistribute super."GrammarProducts"; + "Graph500" = dontDistribute super."Graph500"; + "GraphHammer" = dontDistribute super."GraphHammer"; + "GraphHammer-examples" = dontDistribute super."GraphHammer-examples"; + "Graphalyze" = dontDistribute super."Graphalyze"; + "Grempa" = dontDistribute super."Grempa"; + "GroteTrap" = dontDistribute super."GroteTrap"; + "Grow" = dontDistribute super."Grow"; + "GrowlNotify" = dontDistribute super."GrowlNotify"; + "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics"; + "GtkGLTV" = dontDistribute super."GtkGLTV"; + "GtkTV" = dontDistribute super."GtkTV"; + "GuiHaskell" = dontDistribute super."GuiHaskell"; + "GuiTV" = dontDistribute super."GuiTV"; + "HARM" = dontDistribute super."HARM"; + "HAppS-Data" = dontDistribute super."HAppS-Data"; + "HAppS-IxSet" = dontDistribute super."HAppS-IxSet"; + "HAppS-Server" = dontDistribute super."HAppS-Server"; + "HAppS-State" = dontDistribute super."HAppS-State"; + "HAppS-Util" = dontDistribute super."HAppS-Util"; + "HAppSHelpers" = dontDistribute super."HAppSHelpers"; + "HCL" = dontDistribute super."HCL"; + "HCard" = dontDistribute super."HCard"; + "HDBC-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDBC-session" = dontDistribute super."HDBC-session"; + "HDRUtils" = dontDistribute super."HDRUtils"; + "HERA" = dontDistribute super."HERA"; + "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; + "HFuse" = dontDistribute super."HFuse"; + "HGL" = dontDistribute super."HGL"; + "HGamer3D" = dontDistribute super."HGamer3D"; + "HGamer3D-API" = dontDistribute super."HGamer3D-API"; + "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio"; + "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding"; + "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding"; + "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding"; + "HGamer3D-Common" = dontDistribute super."HGamer3D-Common"; + "HGamer3D-Data" = dontDistribute super."HGamer3D-Data"; + "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding"; + "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI"; + "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D"; + "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem"; + "HGamer3D-Network" = dontDistribute super."HGamer3D-Network"; + "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding"; + "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding"; + "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding"; + "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding"; + "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent"; + "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire"; + "HGraphStorage" = dontDistribute super."HGraphStorage"; + "HHDL" = dontDistribute super."HHDL"; + "HJScript" = dontDistribute super."HJScript"; + "HJVM" = dontDistribute super."HJVM"; + "HJavaScript" = dontDistribute super."HJavaScript"; + "HLearn-algebra" = dontDistribute super."HLearn-algebra"; + "HLearn-approximation" = dontDistribute super."HLearn-approximation"; + "HLearn-classification" = dontDistribute super."HLearn-classification"; + "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; + "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HListPP" = dontDistribute super."HListPP"; + "HLogger" = dontDistribute super."HLogger"; + "HMM" = dontDistribute super."HMM"; + "HMap" = dontDistribute super."HMap"; + "HNM" = dontDistribute super."HNM"; + "HODE" = dontDistribute super."HODE"; + "HOpenCV" = dontDistribute super."HOpenCV"; + "HPath" = dontDistribute super."HPath"; + "HPi" = dontDistribute super."HPi"; + "HPlot" = dontDistribute super."HPlot"; + "HPong" = dontDistribute super."HPong"; + "HROOT" = dontDistribute super."HROOT"; + "HROOT-core" = dontDistribute super."HROOT-core"; + "HROOT-graf" = dontDistribute super."HROOT-graf"; + "HROOT-hist" = dontDistribute super."HROOT-hist"; + "HROOT-io" = dontDistribute super."HROOT-io"; + "HROOT-math" = dontDistribute super."HROOT-math"; + "HRay" = dontDistribute super."HRay"; + "HSFFIG" = dontDistribute super."HSFFIG"; + "HSGEP" = dontDistribute super."HSGEP"; + "HSH" = dontDistribute super."HSH"; + "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSlippyMap" = dontDistribute super."HSlippyMap"; + "HSmarty" = dontDistribute super."HSmarty"; + "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; + "HSvm" = dontDistribute super."HSvm"; + "HTTP-Simple" = dontDistribute super."HTTP-Simple"; + "HTab" = dontDistribute super."HTab"; + "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit-Diff" = dontDistribute super."HUnit-Diff"; + "HUnit-Plus" = dontDistribute super."HUnit-Plus"; + "HUnit-approx" = dontDistribute super."HUnit-approx"; + "HXMPP" = dontDistribute super."HXMPP"; + "HXQ" = dontDistribute super."HXQ"; + "HaLeX" = dontDistribute super."HaLeX"; + "HaMinitel" = dontDistribute super."HaMinitel"; + "HaPy" = dontDistribute super."HaPy"; + "HaTeX-meta" = dontDistribute super."HaTeX-meta"; + "HaTeX-qq" = dontDistribute super."HaTeX-qq"; + "HaVSA" = dontDistribute super."HaVSA"; + "Hach" = dontDistribute super."Hach"; + "HackMail" = dontDistribute super."HackMail"; + "Haggressive" = dontDistribute super."Haggressive"; + "HandlerSocketClient" = dontDistribute super."HandlerSocketClient"; + "Hangman" = dontDistribute super."Hangman"; + "HarmTrace" = dontDistribute super."HarmTrace"; + "HarmTrace-Base" = dontDistribute super."HarmTrace-Base"; + "HasGP" = dontDistribute super."HasGP"; + "Haschoo" = dontDistribute super."Haschoo"; + "Hashell" = dontDistribute super."Hashell"; + "HaskRel" = dontDistribute super."HaskRel"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; + "Hawk" = dontDistribute super."Hawk"; + "Hayoo" = dontDistribute super."Hayoo"; + "Hclip" = dontDistribute super."Hclip"; + "Hedi" = dontDistribute super."Hedi"; + "HerbiePlugin" = dontDistribute super."HerbiePlugin"; + "Hermes" = dontDistribute super."Hermes"; + "Hieroglyph" = dontDistribute super."Hieroglyph"; + "HiggsSet" = dontDistribute super."HiggsSet"; + "Hipmunk" = dontDistribute super."Hipmunk"; + "HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; + "Hish" = dontDistribute super."Hish"; + "Histogram" = dontDistribute super."Histogram"; + "Hmpf" = dontDistribute super."Hmpf"; + "Hoed" = dontDistribute super."Hoed"; + "HoleyMonoid" = dontDistribute super."HoleyMonoid"; + "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution"; + "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce"; + "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine"; + "Holumbus-Storage" = dontDistribute super."Holumbus-Storage"; + "Homology" = dontDistribute super."Homology"; + "HongoDB" = dontDistribute super."HongoDB"; + "HostAndPort" = dontDistribute super."HostAndPort"; + "Hricket" = dontDistribute super."Hricket"; + "Hs2lib" = dontDistribute super."Hs2lib"; + "HsASA" = dontDistribute super."HsASA"; + "HsHaruPDF" = dontDistribute super."HsHaruPDF"; + "HsHyperEstraier" = dontDistribute super."HsHyperEstraier"; + "HsJudy" = dontDistribute super."HsJudy"; + "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system"; + "HsParrot" = dontDistribute super."HsParrot"; + "HsPerl5" = dontDistribute super."HsPerl5"; + "HsSVN" = dontDistribute super."HsSVN"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "HulkImport" = dontDistribute super."HulkImport"; + "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres"; + "IDynamic" = dontDistribute super."IDynamic"; + "IFS" = dontDistribute super."IFS"; + "INblobs" = dontDistribute super."INblobs"; + "IOR" = dontDistribute super."IOR"; + "IORefCAS" = dontDistribute super."IORefCAS"; + "IOSpec" = dontDistribute super."IOSpec"; + "IcoGrid" = dontDistribute super."IcoGrid"; + "Imlib" = dontDistribute super."Imlib"; + "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; + "IndentParser" = dontDistribute super."IndentParser"; + "IndexedList" = dontDistribute super."IndexedList"; + "InfixApplicative" = dontDistribute super."InfixApplicative"; + "Interpolation" = dontDistribute super."Interpolation"; + "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JunkDB" = dontDistribute super."JunkDB"; + "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; + "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables"; + "JustParse" = dontDistribute super."JustParse"; + "KMP" = dontDistribute super."KMP"; + "KSP" = dontDistribute super."KSP"; + "Kalman" = dontDistribute super."Kalman"; + "KdTree" = dontDistribute super."KdTree"; + "Ketchup" = dontDistribute super."Ketchup"; + "KiCS" = dontDistribute super."KiCS"; + "KiCS-debugger" = dontDistribute super."KiCS-debugger"; + "KiCS-prophecy" = dontDistribute super."KiCS-prophecy"; + "Kleislify" = dontDistribute super."Kleislify"; + "Konf" = dontDistribute super."Konf"; + "Kriens" = dontDistribute super."Kriens"; + "KyotoCabinet" = dontDistribute super."KyotoCabinet"; + "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; + "LDAP" = dontDistribute super."LDAP"; + "LRU" = dontDistribute super."LRU"; + "LTree" = dontDistribute super."LTree"; + "LambdaCalculator" = dontDistribute super."LambdaCalculator"; + "LambdaHack" = dontDistribute super."LambdaHack"; + "LambdaINet" = dontDistribute super."LambdaINet"; + "LambdaNet" = dontDistribute super."LambdaNet"; + "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; + "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdajudge" = dontDistribute super."Lambdajudge"; + "Lambdaya" = dontDistribute super."Lambdaya"; + "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; + "Lastik" = dontDistribute super."Lastik"; + "Lattices" = dontDistribute super."Lattices"; + "Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2"; + "LazyVault" = dontDistribute super."LazyVault"; + "Level0" = dontDistribute super."Level0"; + "LibClang" = dontDistribute super."LibClang"; + "Limit" = dontDistribute super."Limit"; + "LinearSplit" = dontDistribute super."LinearSplit"; + "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; + "LinkChecker" = dontDistribute super."LinkChecker"; + "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; + "ListZipper" = dontDistribute super."ListZipper"; + "Logic" = dontDistribute super."Logic"; + "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; + "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI"; + "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network"; + "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes"; + "LslPlus" = dontDistribute super."LslPlus"; + "Lucu" = dontDistribute super."Lucu"; + "MASMGen" = dontDistribute super."MASMGen"; + "MC-Fold-DP" = dontDistribute super."MC-Fold-DP"; + "MHask" = dontDistribute super."MHask"; + "MSQueue" = dontDistribute super."MSQueue"; + "MTGBuilder" = dontDistribute super."MTGBuilder"; + "MagicHaskeller" = dontDistribute super."MagicHaskeller"; + "MailchimpSimple" = dontDistribute super."MailchimpSimple"; + "MaybeT" = dontDistribute super."MaybeT"; + "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf"; + "MaybeT-transformers" = dontDistribute super."MaybeT-transformers"; + "MazesOfMonad" = dontDistribute super."MazesOfMonad"; + "MeanShift" = dontDistribute super."MeanShift"; + "Measure" = dontDistribute super."Measure"; + "MetaHDBC" = dontDistribute super."MetaHDBC"; + "MetaObject" = dontDistribute super."MetaObject"; + "Metrics" = dontDistribute super."Metrics"; + "Mhailist" = dontDistribute super."Mhailist"; + "Michelangelo" = dontDistribute super."Michelangelo"; + "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator"; + "MiniAgda" = dontDistribute super."MiniAgda"; + "MissingK" = dontDistribute super."MissingK"; + "MissingM" = dontDistribute super."MissingM"; + "MissingPy" = dontDistribute super."MissingPy"; + "Modulo" = dontDistribute super."Modulo"; + "Moe" = dontDistribute super."Moe"; + "MoeDict" = dontDistribute super."MoeDict"; + "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl"; + "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign"; + "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; + "MonadCompose" = dontDistribute super."MonadCompose"; + "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; + "MonadStack" = dontDistribute super."MonadStack"; + "Monadius" = dontDistribute super."Monadius"; + "Monaris" = dontDistribute super."Monaris"; + "Monatron" = dontDistribute super."Monatron"; + "Monatron-IO" = dontDistribute super."Monatron-IO"; + "Monocle" = dontDistribute super."Monocle"; + "MorseCode" = dontDistribute super."MorseCode"; + "MuCheck" = dontDistribute super."MuCheck"; + "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit"; + "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec"; + "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck"; + "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck"; + "Munkres" = dontDistribute super."Munkres"; + "Munkres-simple" = dontDistribute super."Munkres-simple"; + "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid"; + "MyPrimes" = dontDistribute super."MyPrimes"; + "NGrams" = dontDistribute super."NGrams"; + "NTRU" = dontDistribute super."NTRU"; + "NXT" = dontDistribute super."NXT"; + "NXTDSL" = dontDistribute super."NXTDSL"; + "NanoProlog" = dontDistribute super."NanoProlog"; + "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets"; + "NaturalSort" = dontDistribute super."NaturalSort"; + "NearContextAlgebra" = dontDistribute super."NearContextAlgebra"; + "Neks" = dontDistribute super."Neks"; + "NestedFunctor" = dontDistribute super."NestedFunctor"; + "NestedSampling" = dontDistribute super."NestedSampling"; + "NetSNMP" = dontDistribute super."NetSNMP"; + "NewBinary" = dontDistribute super."NewBinary"; + "Ninjas" = dontDistribute super."Ninjas"; + "NoSlow" = dontDistribute super."NoSlow"; + "NoTrace" = dontDistribute super."NoTrace"; + "Noise" = dontDistribute super."Noise"; + "Nomyx" = dontDistribute super."Nomyx"; + "Nomyx-Core" = dontDistribute super."Nomyx-Core"; + "Nomyx-Language" = dontDistribute super."Nomyx-Language"; + "Nomyx-Rules" = dontDistribute super."Nomyx-Rules"; + "Nomyx-Web" = dontDistribute super."Nomyx-Web"; + "NonEmpty" = dontDistribute super."NonEmpty"; + "NonEmptyList" = dontDistribute super."NonEmptyList"; + "NumLazyByteString" = dontDistribute super."NumLazyByteString"; + "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; + "Numbers" = dontDistribute super."Numbers"; + "Nussinov78" = dontDistribute super."Nussinov78"; + "Nutri" = dontDistribute super."Nutri"; + "OGL" = dontDistribute super."OGL"; + "OSM" = dontDistribute super."OSM"; + "OTP" = dontDistribute super."OTP"; + "Object" = dontDistribute super."Object"; + "ObjectIO" = dontDistribute super."ObjectIO"; + "Obsidian" = dontDistribute super."Obsidian"; + "OddWord" = dontDistribute super."OddWord"; + "Omega" = dontDistribute super."Omega"; + "OneTuple" = dontDistribute super."OneTuple"; + "OpenAFP" = dontDistribute super."OpenAFP"; + "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils"; + "OpenAL" = dontDistribute super."OpenAL"; + "OpenCL" = dontDistribute super."OpenCL"; + "OpenCLRaw" = dontDistribute super."OpenCLRaw"; + "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; + "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; + "OpenSCAD" = dontDistribute super."OpenSCAD"; + "OpenVG" = dontDistribute super."OpenVG"; + "OpenVGRaw" = dontDistribute super."OpenVGRaw"; + "Operads" = dontDistribute super."Operads"; + "OptDir" = dontDistribute super."OptDir"; + "OrPatterns" = dontDistribute super."OrPatterns"; + "OrchestrateDB" = dontDistribute super."OrchestrateDB"; + "OrderedBits" = dontDistribute super."OrderedBits"; + "Ordinals" = dontDistribute super."Ordinals"; + "PArrows" = dontDistribute super."PArrows"; + "PBKDF2" = dontDistribute super."PBKDF2"; + "PCLT" = dontDistribute super."PCLT"; + "PCLT-DB" = dontDistribute super."PCLT-DB"; + "PDBtools" = dontDistribute super."PDBtools"; + "PTQ" = dontDistribute super."PTQ"; + "PUH-Project" = dontDistribute super."PUH-Project"; + "PageIO" = dontDistribute super."PageIO"; + "Paillier" = dontDistribute super."Paillier"; + "PandocAgda" = dontDistribute super."PandocAgda"; + "Paraiso" = dontDistribute super."Paraiso"; + "Parry" = dontDistribute super."Parry"; + "ParsecTools" = dontDistribute super."ParsecTools"; + "ParserFunction" = dontDistribute super."ParserFunction"; + "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; + "PasswordGenerator" = dontDistribute super."PasswordGenerator"; + "PastePipe" = dontDistribute super."PastePipe"; + "Pathfinder" = dontDistribute super."Pathfinder"; + "Peano" = dontDistribute super."Peano"; + "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; + "PerfectHash" = dontDistribute super."PerfectHash"; + "PermuteEffects" = dontDistribute super."PermuteEffects"; + "Phsu" = dontDistribute super."Phsu"; + "Pipe" = dontDistribute super."Pipe"; + "Piso" = dontDistribute super."Piso"; + "PlayHangmanGame" = dontDistribute super."PlayHangmanGame"; + "PlayingCards" = dontDistribute super."PlayingCards"; + "Plot-ho-matic" = dontDistribute super."Plot-ho-matic"; + "PlslTools" = dontDistribute super."PlslTools"; + "Plural" = dontDistribute super."Plural"; + "Pollutocracy" = dontDistribute super."Pollutocracy"; + "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = dontDistribute super."PortMidi"; + "PostgreSQL" = dontDistribute super."PostgreSQL"; + "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; + "Printf-TH" = dontDistribute super."Printf-TH"; + "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; + "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; + "PropLogic" = dontDistribute super."PropLogic"; + "Proper" = dontDistribute super."Proper"; + "ProxN" = dontDistribute super."ProxN"; + "Pugs" = dontDistribute super."Pugs"; + "Pup-Events" = dontDistribute super."Pup-Events"; + "Pup-Events-Client" = dontDistribute super."Pup-Events-Client"; + "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo"; + "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; + "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; + "QIO" = dontDistribute super."QIO"; + "QuadEdge" = dontDistribute super."QuadEdge"; + "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; + "QuickAnnotate" = dontDistribute super."QuickAnnotate"; + "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; + "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; + "QuickCheck-safe" = dontDistribute super."QuickCheck-safe"; + "QuickPlot" = dontDistribute super."QuickPlot"; + "Quickson" = dontDistribute super."Quickson"; + "R-pandoc" = dontDistribute super."R-pandoc"; + "RANSAC" = dontDistribute super."RANSAC"; + "RBTree" = dontDistribute super."RBTree"; + "RESTng" = dontDistribute super."RESTng"; + "RFC1751" = dontDistribute super."RFC1751"; + "RJson" = dontDistribute super."RJson"; + "RMP" = dontDistribute super."RMP"; + "RNAFold" = dontDistribute super."RNAFold"; + "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; + "RNAdesign" = dontDistribute super."RNAdesign"; + "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = doDistribute super."RNAlien_1_0_0"; + "RNAwolf" = dontDistribute super."RNAwolf"; + "Raincat" = dontDistribute super."Raincat"; + "Random123" = dontDistribute super."Random123"; + "RandomDotOrg" = dontDistribute super."RandomDotOrg"; + "Randometer" = dontDistribute super."Randometer"; + "Range" = dontDistribute super."Range"; + "Ranged-sets" = dontDistribute super."Ranged-sets"; + "Ranka" = dontDistribute super."Ranka"; + "Rasenschach" = dontDistribute super."Rasenschach"; + "Redmine" = dontDistribute super."Redmine"; + "Ref" = dontDistribute super."Ref"; + "Referees" = dontDistribute super."Referees"; + "RepLib" = dontDistribute super."RepLib"; + "ReplicateEffects" = dontDistribute super."ReplicateEffects"; + "ReviewBoard" = dontDistribute super."ReviewBoard"; + "RichConditional" = dontDistribute super."RichConditional"; + "RollingDirectory" = dontDistribute super."RollingDirectory"; + "RoyalMonad" = dontDistribute super."RoyalMonad"; + "RxHaskell" = dontDistribute super."RxHaskell"; + "SBench" = dontDistribute super."SBench"; + "SConfig" = dontDistribute super."SConfig"; + "SDL" = dontDistribute super."SDL"; + "SDL-gfx" = dontDistribute super."SDL-gfx"; + "SDL-image" = dontDistribute super."SDL-image"; + "SDL-mixer" = dontDistribute super."SDL-mixer"; + "SDL-mpeg" = dontDistribute super."SDL-mpeg"; + "SDL-ttf" = dontDistribute super."SDL-ttf"; + "SDL2-ttf" = dontDistribute super."SDL2-ttf"; + "SFML" = dontDistribute super."SFML"; + "SFML-control" = dontDistribute super."SFML-control"; + "SFont" = dontDistribute super."SFont"; + "SG" = dontDistribute super."SG"; + "SGdemo" = dontDistribute super."SGdemo"; + "SHA2" = dontDistribute super."SHA2"; + "SMTPClient" = dontDistribute super."SMTPClient"; + "SNet" = dontDistribute super."SNet"; + "SQLDeps" = dontDistribute super."SQLDeps"; + "STL" = dontDistribute super."STL"; + "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = dontDistribute super."SVGFonts"; + "SVGPath" = dontDistribute super."SVGPath"; + "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; + "SableCC2Hs" = dontDistribute super."SableCC2Hs"; + "Safe" = dontDistribute super."Safe"; + "Salsa" = dontDistribute super."Salsa"; + "Saturnin" = dontDistribute super."Saturnin"; + "SciFlow" = dontDistribute super."SciFlow"; + "ScratchFs" = dontDistribute super."ScratchFs"; + "Scurry" = dontDistribute super."Scurry"; + "Semantique" = dontDistribute super."Semantique"; + "Semigroup" = dontDistribute super."Semigroup"; + "SeqAlign" = dontDistribute super."SeqAlign"; + "SessionLogger" = dontDistribute super."SessionLogger"; + "ShellCheck" = dontDistribute super."ShellCheck"; + "Shellac" = dontDistribute super."Shellac"; + "Shellac-compatline" = dontDistribute super."Shellac-compatline"; + "Shellac-editline" = dontDistribute super."Shellac-editline"; + "Shellac-haskeline" = dontDistribute super."Shellac-haskeline"; + "Shellac-readline" = dontDistribute super."Shellac-readline"; + "ShowF" = dontDistribute super."ShowF"; + "Shrub" = dontDistribute super."Shrub"; + "Shu-thing" = dontDistribute super."Shu-thing"; + "SimpleAES" = dontDistribute super."SimpleAES"; + "SimpleEA" = dontDistribute super."SimpleEA"; + "SimpleGL" = dontDistribute super."SimpleGL"; + "SimpleH" = dontDistribute super."SimpleH"; + "SimpleLog" = dontDistribute super."SimpleLog"; + "SimpleServer" = dontDistribute super."SimpleServer"; + "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; + "Smooth" = dontDistribute super."Smooth"; + "SmtLib" = dontDistribute super."SmtLib"; + "Snusmumrik" = dontDistribute super."Snusmumrik"; + "SoOSiM" = dontDistribute super."SoOSiM"; + "SoccerFun" = dontDistribute super."SoccerFun"; + "SoccerFunGL" = dontDistribute super."SoccerFunGL"; + "Sonnex" = dontDistribute super."Sonnex"; + "SourceGraph" = dontDistribute super."SourceGraph"; + "Southpaw" = dontDistribute super."Southpaw"; + "SpaceInvaders" = dontDistribute super."SpaceInvaders"; + "SpacePrivateers" = dontDistribute super."SpacePrivateers"; + "SpinCounter" = dontDistribute super."SpinCounter"; + "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; + "SpreadsheetML" = dontDistribute super."SpreadsheetML"; + "Sprig" = dontDistribute super."Sprig"; + "Stasis" = dontDistribute super."Stasis"; + "StateVar-transformer" = dontDistribute super."StateVar-transformer"; + "StatisticalMethods" = dontDistribute super."StatisticalMethods"; + "Stomp" = dontDistribute super."Stomp"; + "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; + "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "StrappedTemplates" = dontDistribute super."StrappedTemplates"; + "StrategyLib" = dontDistribute super."StrategyLib"; + "Stream" = dontDistribute super."Stream"; + "StrictBench" = dontDistribute super."StrictBench"; + "SuffixStructures" = dontDistribute super."SuffixStructures"; + "SybWidget" = dontDistribute super."SybWidget"; + "SyntaxMacros" = dontDistribute super."SyntaxMacros"; + "Sysmon" = dontDistribute super."Sysmon"; + "TBC" = dontDistribute super."TBC"; + "TBit" = dontDistribute super."TBit"; + "THEff" = dontDistribute super."THEff"; + "TTTAS" = dontDistribute super."TTTAS"; + "TV" = dontDistribute super."TV"; + "TYB" = dontDistribute super."TYB"; + "TableAlgebra" = dontDistribute super."TableAlgebra"; + "Tables" = dontDistribute super."Tables"; + "Tablify" = dontDistribute super."Tablify"; + "Tainted" = dontDistribute super."Tainted"; + "Takusen" = dontDistribute super."Takusen"; + "Tape" = dontDistribute super."Tape"; + "TeaHS" = dontDistribute super."TeaHS"; + "Tensor" = dontDistribute super."Tensor"; + "TernaryTrees" = dontDistribute super."TernaryTrees"; + "TestExplode" = dontDistribute super."TestExplode"; + "Theora" = dontDistribute super."Theora"; + "Thingie" = dontDistribute super."Thingie"; + "ThreadObjects" = dontDistribute super."ThreadObjects"; + "Thrift" = dontDistribute super."Thrift"; + "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe"; + "TicTacToe" = dontDistribute super."TicTacToe"; + "TigerHash" = dontDistribute super."TigerHash"; + "TimePiece" = dontDistribute super."TimePiece"; + "TinyLaunchbury" = dontDistribute super."TinyLaunchbury"; + "TinyURL" = dontDistribute super."TinyURL"; + "Titim" = dontDistribute super."Titim"; + "Top" = dontDistribute super."Top"; + "Tournament" = dontDistribute super."Tournament"; + "TraceUtils" = dontDistribute super."TraceUtils"; + "TransformersStepByStep" = dontDistribute super."TransformersStepByStep"; + "Transhare" = dontDistribute super."Transhare"; + "TreeCounter" = dontDistribute super."TreeCounter"; + "TreeStructures" = dontDistribute super."TreeStructures"; + "TreeT" = dontDistribute super."TreeT"; + "Treiber" = dontDistribute super."Treiber"; + "TrendGraph" = dontDistribute super."TrendGraph"; + "TrieMap" = dontDistribute super."TrieMap"; + "Twofish" = dontDistribute super."Twofish"; + "TypeClass" = dontDistribute super."TypeClass"; + "TypeCompose" = dontDistribute super."TypeCompose"; + "TypeIlluminator" = dontDistribute super."TypeIlluminator"; + "TypeNat" = dontDistribute super."TypeNat"; + "TypingTester" = dontDistribute super."TypingTester"; + "UISF" = dontDistribute super."UISF"; + "UMM" = dontDistribute super."UMM"; + "URLT" = dontDistribute super."URLT"; + "URLb" = dontDistribute super."URLb"; + "UTFTConverter" = dontDistribute super."UTFTConverter"; + "Unique" = dontDistribute super."Unique"; + "Unixutils-shadow" = dontDistribute super."Unixutils-shadow"; + "Updater" = dontDistribute super."Updater"; + "UrlDisp" = dontDistribute super."UrlDisp"; + "Useful" = dontDistribute super."Useful"; + "UtilityTM" = dontDistribute super."UtilityTM"; + "VKHS" = dontDistribute super."VKHS"; + "Validation" = dontDistribute super."Validation"; + "Vec" = dontDistribute super."Vec"; + "Vec-Boolean" = dontDistribute super."Vec-Boolean"; + "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw"; + "Vec-Transform" = dontDistribute super."Vec-Transform"; + "VecN" = dontDistribute super."VecN"; + "Verba" = dontDistribute super."Verba"; + "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "Vulkan" = dontDistribute super."Vulkan"; + "WAVE" = dontDistribute super."WAVE"; + "WL500gPControl" = dontDistribute super."WL500gPControl"; + "WL500gPLib" = dontDistribute super."WL500gPLib"; + "WMSigner" = dontDistribute super."WMSigner"; + "WURFL" = dontDistribute super."WURFL"; + "WXDiffCtrl" = dontDistribute super."WXDiffCtrl"; + "WashNGo" = dontDistribute super."WashNGo"; + "WaveFront" = dontDistribute super."WaveFront"; + "Weather" = dontDistribute super."Weather"; + "WebBits" = dontDistribute super."WebBits"; + "WebBits-Html" = dontDistribute super."WebBits-Html"; + "WebBits-multiplate" = dontDistribute super."WebBits-multiplate"; + "WebCont" = dontDistribute super."WebCont"; + "WeberLogic" = dontDistribute super."WeberLogic"; + "Webrexp" = dontDistribute super."Webrexp"; + "Wheb" = dontDistribute super."Wheb"; + "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; + "Win32-errors" = dontDistribute super."Win32-errors"; + "Win32-junction-point" = dontDistribute super."Win32-junction-point"; + "Win32-security" = dontDistribute super."Win32-security"; + "Win32-services" = dontDistribute super."Win32-services"; + "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper"; + "Wired" = dontDistribute super."Wired"; + "WordAlignment" = dontDistribute super."WordAlignment"; + "WordNet" = dontDistribute super."WordNet"; + "WordNet-ghc74" = dontDistribute super."WordNet-ghc74"; + "Wordlint" = dontDistribute super."Wordlint"; + "WxGeneric" = dontDistribute super."WxGeneric"; + "X11-extras" = dontDistribute super."X11-extras"; + "X11-rm" = dontDistribute super."X11-rm"; + "X11-xdamage" = dontDistribute super."X11-xdamage"; + "X11-xfixes" = dontDistribute super."X11-xfixes"; + "X11-xft" = dontDistribute super."X11-xft"; + "X11-xshape" = dontDistribute super."X11-xshape"; + "XAttr" = dontDistribute super."XAttr"; + "XInput" = dontDistribute super."XInput"; + "XMMS" = dontDistribute super."XMMS"; + "XMPP" = dontDistribute super."XMPP"; + "XSaiga" = dontDistribute super."XSaiga"; + "Xec" = dontDistribute super."Xec"; + "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter"; + "Xorshift128Plus" = dontDistribute super."Xorshift128Plus"; + "YACPong" = dontDistribute super."YACPong"; + "YFrob" = dontDistribute super."YFrob"; + "Yablog" = dontDistribute super."Yablog"; + "YamlReference" = dontDistribute super."YamlReference"; + "Yampa-core" = dontDistribute super."Yampa-core"; + "Yocto" = dontDistribute super."Yocto"; + "Yogurt" = dontDistribute super."Yogurt"; + "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone"; + "ZEBEDDE" = dontDistribute super."ZEBEDDE"; + "ZFS" = dontDistribute super."ZFS"; + "ZMachine" = dontDistribute super."ZMachine"; + "ZipFold" = dontDistribute super."ZipFold"; + "ZipperAG" = dontDistribute super."ZipperAG"; + "Zora" = dontDistribute super."Zora"; + "Zwaluw" = dontDistribute super."Zwaluw"; + "a50" = dontDistribute super."a50"; + "abacate" = dontDistribute super."abacate"; + "abc-puzzle" = dontDistribute super."abc-puzzle"; + "abcBridge" = dontDistribute super."abcBridge"; + "abcnotation" = dontDistribute super."abcnotation"; + "abeson" = dontDistribute super."abeson"; + "abstract-deque-tests" = dontDistribute super."abstract-deque-tests"; + "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate"; + "abt" = dontDistribute super."abt"; + "ac-machine" = dontDistribute super."ac-machine"; + "ac-machine-conduit" = dontDistribute super."ac-machine-conduit"; + "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic"; + "accelerate-cublas" = dontDistribute super."accelerate-cublas"; + "accelerate-cuda" = dontDistribute super."accelerate-cuda"; + "accelerate-cufft" = dontDistribute super."accelerate-cufft"; + "accelerate-examples" = dontDistribute super."accelerate-examples"; + "accelerate-fft" = dontDistribute super."accelerate-fft"; + "accelerate-fftw" = dontDistribute super."accelerate-fftw"; + "accelerate-fourier" = dontDistribute super."accelerate-fourier"; + "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; + "accelerate-io" = dontDistribute super."accelerate-io"; + "accelerate-random" = dontDistribute super."accelerate-random"; + "accelerate-utility" = dontDistribute super."accelerate-utility"; + "accentuateus" = dontDistribute super."accentuateus"; + "access-time" = dontDistribute super."access-time"; + "acid-state-dist" = dontDistribute super."acid-state-dist"; + "acid-state-tls" = dontDistribute super."acid-state-tls"; + "acl2" = dontDistribute super."acl2"; + "acme-all-monad" = dontDistribute super."acme-all-monad"; + "acme-box" = dontDistribute super."acme-box"; + "acme-cadre" = dontDistribute super."acme-cadre"; + "acme-cofunctor" = dontDistribute super."acme-cofunctor"; + "acme-colosson" = dontDistribute super."acme-colosson"; + "acme-comonad" = dontDistribute super."acme-comonad"; + "acme-cutegirl" = dontDistribute super."acme-cutegirl"; + "acme-dont" = dontDistribute super."acme-dont"; + "acme-flipping-tables" = dontDistribute super."acme-flipping-tables"; + "acme-grawlix" = dontDistribute super."acme-grawlix"; + "acme-hq9plus" = dontDistribute super."acme-hq9plus"; + "acme-http" = dontDistribute super."acme-http"; + "acme-inator" = dontDistribute super."acme-inator"; + "acme-io" = dontDistribute super."acme-io"; + "acme-lolcat" = dontDistribute super."acme-lolcat"; + "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; + "acme-memorandom" = dontDistribute super."acme-memorandom"; + "acme-microwave" = dontDistribute super."acme-microwave"; + "acme-miscorder" = dontDistribute super."acme-miscorder"; + "acme-missiles" = dontDistribute super."acme-missiles"; + "acme-now" = dontDistribute super."acme-now"; + "acme-numbersystem" = dontDistribute super."acme-numbersystem"; + "acme-omitted" = dontDistribute super."acme-omitted"; + "acme-one" = dontDistribute super."acme-one"; + "acme-operators" = dontDistribute super."acme-operators"; + "acme-php" = dontDistribute super."acme-php"; + "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers"; + "acme-realworld" = dontDistribute super."acme-realworld"; + "acme-safe" = dontDistribute super."acme-safe"; + "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel"; + "acme-strfry" = dontDistribute super."acme-strfry"; + "acme-stringly-typed" = dontDistribute super."acme-stringly-typed"; + "acme-strtok" = dontDistribute super."acme-strtok"; + "acme-timemachine" = dontDistribute super."acme-timemachine"; + "acme-year" = dontDistribute super."acme-year"; + "acme-zero" = dontDistribute super."acme-zero"; + "activehs" = dontDistribute super."activehs"; + "activehs-base" = dontDistribute super."activehs-base"; + "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; + "actor" = dontDistribute super."actor"; + "adaptive-containers" = dontDistribute super."adaptive-containers"; + "adaptive-tuple" = dontDistribute super."adaptive-tuple"; + "adb" = dontDistribute super."adb"; + "adblock2privoxy" = dontDistribute super."adblock2privoxy"; + "addLicenseInfo" = dontDistribute super."addLicenseInfo"; + "adhoc-network" = dontDistribute super."adhoc-network"; + "adict" = dontDistribute super."adict"; + "adler32" = dontDistribute super."adler32"; + "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; + "adp-multi" = dontDistribute super."adp-multi"; + "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; + "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-lens" = dontDistribute super."aeson-lens"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-schema" = dontDistribute super."aeson-schema"; + "aeson-serialize" = dontDistribute super."aeson-serialize"; + "aeson-smart" = dontDistribute super."aeson-smart"; + "aeson-streams" = dontDistribute super."aeson-streams"; + "aeson-t" = dontDistribute super."aeson-t"; + "aeson-toolkit" = dontDistribute super."aeson-toolkit"; + "aeson-value-parser" = dontDistribute super."aeson-value-parser"; + "aeson-yak" = dontDistribute super."aeson-yak"; + "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc"; + "afis" = dontDistribute super."afis"; + "afv" = dontDistribute super."afv"; + "ag-pictgen" = dontDistribute super."ag-pictgen"; + "agda-server" = dontDistribute super."agda-server"; + "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; + "agum" = dontDistribute super."agum"; + "aig" = dontDistribute super."aig"; + "air" = dontDistribute super."air"; + "air-extra" = dontDistribute super."air-extra"; + "air-spec" = dontDistribute super."air-spec"; + "air-th" = dontDistribute super."air-th"; + "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; + "aivika" = dontDistribute super."aivika"; + "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-experiment" = dontDistribute super."aivika-experiment"; + "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; + "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; + "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams"; + "aivika-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "alea" = dontDistribute super."alea"; + "alex-meta" = dontDistribute super."alex-meta"; + "alfred" = dontDistribute super."alfred"; + "alga" = dontDistribute super."alga"; + "algebra" = dontDistribute super."algebra"; + "algebra-dag" = dontDistribute super."algebra-dag"; + "algebra-sql" = dontDistribute super."algebra-sql"; + "algebraic" = dontDistribute super."algebraic"; + "algebraic-classes" = dontDistribute super."algebraic-classes"; + "align" = dontDistribute super."align"; + "align-text" = dontDistribute super."align-text"; + "aligned-foreignptr" = dontDistribute super."aligned-foreignptr"; + "allocated-processor" = dontDistribute super."allocated-processor"; + "alloy" = dontDistribute super."alloy"; + "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd"; + "almost-fix" = dontDistribute super."almost-fix"; + "alms" = dontDistribute super."alms"; + "alpha" = dontDistribute super."alpha"; + "alpino-tools" = dontDistribute super."alpino-tools"; + "alsa" = dontDistribute super."alsa"; + "alsa-core" = dontDistribute super."alsa-core"; + "alsa-gui" = dontDistribute super."alsa-gui"; + "alsa-midi" = dontDistribute super."alsa-midi"; + "alsa-mixer" = dontDistribute super."alsa-mixer"; + "alsa-pcm" = dontDistribute super."alsa-pcm"; + "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests"; + "alsa-seq" = dontDistribute super."alsa-seq"; + "alsa-seq-tests" = dontDistribute super."alsa-seq-tests"; + "altcomposition" = dontDistribute super."altcomposition"; + "alternative-io" = dontDistribute super."alternative-io"; + "altfloat" = dontDistribute super."altfloat"; + "alure" = dontDistribute super."alure"; + "amazon-emailer" = dontDistribute super."amazon-emailer"; + "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; + "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; + "ampersand" = dontDistribute super."ampersand"; + "amqp-conduit" = dontDistribute super."amqp-conduit"; + "amrun" = dontDistribute super."amrun"; + "analyze-client" = dontDistribute super."analyze-client"; + "anansi" = dontDistribute super."anansi"; + "anansi-hscolour" = dontDistribute super."anansi-hscolour"; + "anansi-pandoc" = dontDistribute super."anansi-pandoc"; + "anatomy" = dontDistribute super."anatomy"; + "android" = dontDistribute super."android"; + "android-lint-summary" = dontDistribute super."android-lint-summary"; + "animalcase" = dontDistribute super."animalcase"; + "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; + "ansi-pretty" = dontDistribute super."ansi-pretty"; + "ansigraph" = dontDistribute super."ansigraph"; + "antagonist" = dontDistribute super."antagonist"; + "antfarm" = dontDistribute super."antfarm"; + "anticiv" = dontDistribute super."anticiv"; + "antigate" = dontDistribute super."antigate"; + "antimirov" = dontDistribute super."antimirov"; + "antiquoter" = dontDistribute super."antiquoter"; + "antisplice" = dontDistribute super."antisplice"; + "antlrc" = dontDistribute super."antlrc"; + "anydbm" = dontDistribute super."anydbm"; + "aosd" = dontDistribute super."aosd"; + "ap-reflect" = dontDistribute super."ap-reflect"; + "apache-md5" = dontDistribute super."apache-md5"; + "apelsin" = dontDistribute super."apelsin"; + "api-builder" = dontDistribute super."api-builder"; + "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; + "api-tools" = dontDistribute super."api-tools"; + "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; + "apiary-purescript" = dontDistribute super."apiary-purescript"; + "apis" = dontDistribute super."apis"; + "apotiki" = dontDistribute super."apotiki"; + "app-lens" = dontDistribute super."app-lens"; + "appc" = dontDistribute super."appc"; + "applicative-extras" = dontDistribute super."applicative-extras"; + "applicative-fail" = dontDistribute super."applicative-fail"; + "applicative-numbers" = dontDistribute super."applicative-numbers"; + "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-quoters" = dontDistribute super."applicative-quoters"; + "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; + "apportionment" = dontDistribute super."apportionment"; + "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate-equality" = dontDistribute super."approximate-equality"; + "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; + "arb-fft" = dontDistribute super."arb-fft"; + "arbb-vm" = dontDistribute super."arbb-vm"; + "archive" = dontDistribute super."archive"; + "archiver" = dontDistribute super."archiver"; + "archlinux" = dontDistribute super."archlinux"; + "archlinux-web" = dontDistribute super."archlinux-web"; + "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; + "arff" = dontDistribute super."arff"; + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon2" = dontDistribute super."argon2"; + "argparser" = dontDistribute super."argparser"; + "arguedit" = dontDistribute super."arguedit"; + "ariadne" = dontDistribute super."ariadne"; + "arion" = dontDistribute super."arion"; + "arith-encode" = dontDistribute super."arith-encode"; + "arithmatic" = dontDistribute super."arithmatic"; + "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = dontDistribute super."arithmoi"; + "armada" = dontDistribute super."armada"; + "arpa" = dontDistribute super."arpa"; + "array-forth" = dontDistribute super."array-forth"; + "array-memoize" = dontDistribute super."array-memoize"; + "array-primops" = dontDistribute super."array-primops"; + "array-utils" = dontDistribute super."array-utils"; + "arrow-improve" = dontDistribute super."arrow-improve"; + "arrowapply-utils" = dontDistribute super."arrowapply-utils"; + "arrowp" = dontDistribute super."arrowp"; + "arrows" = dontDistribute super."arrows"; + "artery" = dontDistribute super."artery"; + "arx" = dontDistribute super."arx"; + "arxiv" = dontDistribute super."arxiv"; + "ascetic" = dontDistribute super."ascetic"; + "ascii" = dontDistribute super."ascii"; + "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; + "asic" = dontDistribute super."asic"; + "asil" = dontDistribute super."asil"; + "asn1-data" = dontDistribute super."asn1-data"; + "asn1dump" = dontDistribute super."asn1dump"; + "assembler" = dontDistribute super."assembler"; + "assert" = dontDistribute super."assert"; + "assert-failure" = dontDistribute super."assert-failure"; + "assertions" = dontDistribute super."assertions"; + "assimp" = dontDistribute super."assimp"; + "astar" = dontDistribute super."astar"; + "astrds" = dontDistribute super."astrds"; + "astview" = dontDistribute super."astview"; + "astview-utils" = dontDistribute super."astview-utils"; + "async-extras" = dontDistribute super."async-extras"; + "async-manager" = dontDistribute super."async-manager"; + "async-pool" = dontDistribute super."async-pool"; + "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions"; + "aterm" = dontDistribute super."aterm"; + "aterm-utils" = dontDistribute super."aterm-utils"; + "atl" = dontDistribute super."atl"; + "atlassian-connect-core" = dontDistribute super."atlassian-connect-core"; + "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor"; + "atmos" = dontDistribute super."atmos"; + "atmos-dimensional" = dontDistribute super."atmos-dimensional"; + "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atom" = dontDistribute super."atom"; + "atom-basic" = dontDistribute super."atom-basic"; + "atom-conduit" = dontDistribute super."atom-conduit"; + "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; + "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; + "atomic-write" = dontDistribute super."atomic-write"; + "atomo" = dontDistribute super."atomo"; + "atp-haskell" = dontDistribute super."atp-haskell"; + "atrans" = dontDistribute super."atrans"; + "attempt" = dontDistribute super."attempt"; + "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec-arff" = dontDistribute super."attoparsec-arff"; + "attoparsec-binary" = dontDistribute super."attoparsec-binary"; + "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; + "attoparsec-csv" = dontDistribute super."attoparsec-csv"; + "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee"; + "attoparsec-parsec" = dontDistribute super."attoparsec-parsec"; + "attoparsec-text" = dontDistribute super."attoparsec-text"; + "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator"; + "attosplit" = dontDistribute super."attosplit"; + "atuin" = dontDistribute super."atuin"; + "audacity" = dontDistribute super."audacity"; + "audiovisual" = dontDistribute super."audiovisual"; + "augeas" = dontDistribute super."augeas"; + "augur" = dontDistribute super."augur"; + "aur" = dontDistribute super."aur"; + "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; + "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authinfo-hs" = dontDistribute super."authinfo-hs"; + "authoring" = dontDistribute super."authoring"; + "autoexporter" = dontDistribute super."autoexporter"; + "autonix-deps" = dontDistribute super."autonix-deps"; + "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; + "autoproc" = dontDistribute super."autoproc"; + "avahi" = dontDistribute super."avahi"; + "avatar-generator" = dontDistribute super."avatar-generator"; + "average" = dontDistribute super."average"; + "avl-static" = dontDistribute super."avl-static"; + "avr-shake" = dontDistribute super."avr-shake"; + "awesome-prelude" = dontDistribute super."awesome-prelude"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; + "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; + "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; + "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams"; + "aws-ec2" = dontDistribute super."aws-ec2"; + "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder"; + "aws-general" = dontDistribute super."aws-general"; + "aws-kinesis" = dontDistribute super."aws-kinesis"; + "aws-kinesis-client" = dontDistribute super."aws-kinesis-client"; + "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard"; + "aws-lambda" = dontDistribute super."aws-lambda"; + "aws-performance-tests" = dontDistribute super."aws-performance-tests"; + "aws-route53" = dontDistribute super."aws-route53"; + "aws-sdk" = dontDistribute super."aws-sdk"; + "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter"; + "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered"; + "aws-sign4" = dontDistribute super."aws-sign4"; + "aws-sns" = dontDistribute super."aws-sns"; + "azure-acs" = dontDistribute super."azure-acs"; + "azure-service-api" = dontDistribute super."azure-service-api"; + "azure-servicebus" = dontDistribute super."azure-servicebus"; + "azurify" = dontDistribute super."azurify"; + "b-tree" = dontDistribute super."b-tree"; + "babylon" = dontDistribute super."babylon"; + "backdropper" = dontDistribute super."backdropper"; + "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; + "backward-state" = dontDistribute super."backward-state"; + "bacteria" = dontDistribute super."bacteria"; + "bag" = dontDistribute super."bag"; + "bamboo" = dontDistribute super."bamboo"; + "bamboo-launcher" = dontDistribute super."bamboo-launcher"; + "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight"; + "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo"; + "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint"; + "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5"; + "bamse" = dontDistribute super."bamse"; + "bamstats" = dontDistribute super."bamstats"; + "bank-holiday-usa" = dontDistribute super."bank-holiday-usa"; + "banwords" = dontDistribute super."banwords"; + "barchart" = dontDistribute super."barchart"; + "barcodes-code128" = dontDistribute super."barcodes-code128"; + "barecheck" = dontDistribute super."barecheck"; + "barley" = dontDistribute super."barley"; + "barrie" = dontDistribute super."barrie"; + "barrier-monad" = dontDistribute super."barrier-monad"; + "base-generics" = dontDistribute super."base-generics"; + "base-io-access" = dontDistribute super."base-io-access"; + "base-prelude" = doDistribute super."base-prelude_0_1_21"; + "base32-bytestring" = dontDistribute super."base32-bytestring"; + "base58-bytestring" = dontDistribute super."base58-bytestring"; + "base58address" = dontDistribute super."base58address"; + "base64-conduit" = dontDistribute super."base64-conduit"; + "base91" = dontDistribute super."base91"; + "basex-client" = dontDistribute super."basex-client"; + "bash" = dontDistribute super."bash"; + "basic-lens" = dontDistribute super."basic-lens"; + "basic-sop" = dontDistribute super."basic-sop"; + "baskell" = dontDistribute super."baskell"; + "battlenet" = dontDistribute super."battlenet"; + "battlenet-yesod" = dontDistribute super."battlenet-yesod"; + "battleships" = dontDistribute super."battleships"; + "bayes-stack" = dontDistribute super."bayes-stack"; + "bbdb" = dontDistribute super."bbdb"; + "bbi" = dontDistribute super."bbi"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; + "beamable" = dontDistribute super."beamable"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; + "benchmark-function" = dontDistribute super."benchmark-function"; + "bencoding" = dontDistribute super."bencoding"; + "berkeleydb" = dontDistribute super."berkeleydb"; + "berp" = dontDistribute super."berp"; + "bert" = dontDistribute super."bert"; + "besout" = dontDistribute super."besout"; + "bet" = dontDistribute super."bet"; + "betacode" = dontDistribute super."betacode"; + "between" = dontDistribute super."between"; + "bf-cata" = dontDistribute super."bf-cata"; + "bff" = dontDistribute super."bff"; + "bff-mono" = dontDistribute super."bff-mono"; + "bgmax" = dontDistribute super."bgmax"; + "bgzf" = dontDistribute super."bgzf"; + "bibtex" = dontDistribute super."bibtex"; + "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; + "bidispec" = dontDistribute super."bidispec"; + "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; + "billboard-parser" = dontDistribute super."billboard-parser"; + "billeksah-forms" = dontDistribute super."billeksah-forms"; + "billeksah-main" = dontDistribute super."billeksah-main"; + "billeksah-main-static" = dontDistribute super."billeksah-main-static"; + "billeksah-pane" = dontDistribute super."billeksah-pane"; + "billeksah-services" = dontDistribute super."billeksah-services"; + "bimaps" = dontDistribute super."bimaps"; + "binary-bits" = dontDistribute super."binary-bits"; + "binary-communicator" = dontDistribute super."binary-communicator"; + "binary-derive" = dontDistribute super."binary-derive"; + "binary-enum" = dontDistribute super."binary-enum"; + "binary-file" = dontDistribute super."binary-file"; + "binary-generic" = dontDistribute super."binary-generic"; + "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-protocol" = dontDistribute super."binary-protocol"; + "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; + "binary-shared" = dontDistribute super."binary-shared"; + "binary-state" = dontDistribute super."binary-state"; + "binary-store" = dontDistribute super."binary-store"; + "binary-streams" = dontDistribute super."binary-streams"; + "binary-strict" = dontDistribute super."binary-strict"; + "binarydefer" = dontDistribute super."binarydefer"; + "bind-marshal" = dontDistribute super."bind-marshal"; + "binding-core" = dontDistribute super."binding-core"; + "binding-gtk" = dontDistribute super."binding-gtk"; + "binding-wx" = dontDistribute super."binding-wx"; + "bindings" = dontDistribute super."bindings"; + "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-K8055" = dontDistribute super."bindings-K8055"; + "bindings-apr" = dontDistribute super."bindings-apr"; + "bindings-apr-util" = dontDistribute super."bindings-apr-util"; + "bindings-audiofile" = dontDistribute super."bindings-audiofile"; + "bindings-bfd" = dontDistribute super."bindings-bfd"; + "bindings-cctools" = dontDistribute super."bindings-cctools"; + "bindings-codec2" = dontDistribute super."bindings-codec2"; + "bindings-common" = dontDistribute super."bindings-common"; + "bindings-dc1394" = dontDistribute super."bindings-dc1394"; + "bindings-directfb" = dontDistribute super."bindings-directfb"; + "bindings-eskit" = dontDistribute super."bindings-eskit"; + "bindings-fann" = dontDistribute super."bindings-fann"; + "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth"; + "bindings-friso" = dontDistribute super."bindings-friso"; + "bindings-glib" = dontDistribute super."bindings-glib"; + "bindings-gobject" = dontDistribute super."bindings-gobject"; + "bindings-gpgme" = dontDistribute super."bindings-gpgme"; + "bindings-gsl" = dontDistribute super."bindings-gsl"; + "bindings-gts" = dontDistribute super."bindings-gts"; + "bindings-hamlib" = dontDistribute super."bindings-hamlib"; + "bindings-hdf5" = dontDistribute super."bindings-hdf5"; + "bindings-levmar" = dontDistribute super."bindings-levmar"; + "bindings-libcddb" = dontDistribute super."bindings-libcddb"; + "bindings-libffi" = dontDistribute super."bindings-libffi"; + "bindings-libftdi" = dontDistribute super."bindings-libftdi"; + "bindings-librrd" = dontDistribute super."bindings-librrd"; + "bindings-libstemmer" = dontDistribute super."bindings-libstemmer"; + "bindings-libusb" = dontDistribute super."bindings-libusb"; + "bindings-libv4l2" = dontDistribute super."bindings-libv4l2"; + "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2"; + "bindings-lxc" = dontDistribute super."bindings-lxc"; + "bindings-mmap" = dontDistribute super."bindings-mmap"; + "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal"; + "bindings-nettle" = dontDistribute super."bindings-nettle"; + "bindings-parport" = dontDistribute super."bindings-parport"; + "bindings-portaudio" = dontDistribute super."bindings-portaudio"; + "bindings-potrace" = dontDistribute super."bindings-potrace"; + "bindings-ppdev" = dontDistribute super."bindings-ppdev"; + "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd"; + "bindings-sane" = dontDistribute super."bindings-sane"; + "bindings-sc3" = dontDistribute super."bindings-sc3"; + "bindings-sipc" = dontDistribute super."bindings-sipc"; + "bindings-sophia" = dontDistribute super."bindings-sophia"; + "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; + "bindings-svm" = dontDistribute super."bindings-svm"; + "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; + "binembed" = dontDistribute super."binembed"; + "binembed-example" = dontDistribute super."binembed-example"; + "bini" = dontDistribute super."bini"; + "bio" = dontDistribute super."bio"; + "biohazard" = dontDistribute super."biohazard"; + "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit"; + "biosff" = dontDistribute super."biosff"; + "biostockholm" = dontDistribute super."biostockholm"; + "bird" = dontDistribute super."bird"; + "bit-array" = dontDistribute super."bit-array"; + "bit-vector" = dontDistribute super."bit-vector"; + "bitarray" = dontDistribute super."bitarray"; + "bitcoin-rpc" = dontDistribute super."bitcoin-rpc"; + "bitly-cli" = dontDistribute super."bitly-cli"; + "bitmap" = dontDistribute super."bitmap"; + "bitmap-opengl" = dontDistribute super."bitmap-opengl"; + "bitmaps" = dontDistribute super."bitmaps"; + "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-conduit" = dontDistribute super."bits-conduit"; + "bits-extras" = dontDistribute super."bits-extras"; + "bitset" = dontDistribute super."bitset"; + "bitspeak" = dontDistribute super."bitspeak"; + "bitstream" = dontDistribute super."bitstream"; + "bitstring" = dontDistribute super."bitstring"; + "bittorrent" = dontDistribute super."bittorrent"; + "bitvec" = dontDistribute super."bitvec"; + "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; + "bk-tree" = dontDistribute super."bk-tree"; + "bkr" = dontDistribute super."bkr"; + "bktrees" = dontDistribute super."bktrees"; + "bla" = dontDistribute super."bla"; + "black-jewel" = dontDistribute super."black-jewel"; + "blacktip" = dontDistribute super."blacktip"; + "blakesum" = dontDistribute super."blakesum"; + "blakesum-demo" = dontDistribute super."blakesum-demo"; + "blas" = dontDistribute super."blas"; + "blas-hs" = dontDistribute super."blas-hs"; + "blatex" = dontDistribute super."blatex"; + "blaze" = dontDistribute super."blaze"; + "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; + "blaze-from-html" = dontDistribute super."blaze-from-html"; + "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; + "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat"; + "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; + "blaze-json" = dontDistribute super."blaze-json"; + "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-textual-native" = dontDistribute super."blaze-textual-native"; + "blazeMarker" = dontDistribute super."blazeMarker"; + "blink1" = dontDistribute super."blink1"; + "blip" = dontDistribute super."blip"; + "bliplib" = dontDistribute super."bliplib"; + "blocking-transactions" = dontDistribute super."blocking-transactions"; + "blogination" = dontDistribute super."blogination"; + "bloodhound" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloxorz" = dontDistribute super."bloxorz"; + "blubber" = dontDistribute super."blubber"; + "blubber-server" = dontDistribute super."blubber-server"; + "bluetile" = dontDistribute super."bluetile"; + "bluetileutils" = dontDistribute super."bluetileutils"; + "blunt" = dontDistribute super."blunt"; + "board-games" = dontDistribute super."board-games"; + "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; + "boolean-list" = dontDistribute super."boolean-list"; + "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; + "boolexpr" = dontDistribute super."boolexpr"; + "bools" = dontDistribute super."bools"; + "boolsimplifier" = dontDistribute super."boolsimplifier"; + "boomange" = dontDistribute super."boomange"; + "boombox" = dontDistribute super."boombox"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "bot" = dontDistribute super."bot"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; + "bowntz" = dontDistribute super."bowntz"; + "bpann" = dontDistribute super."bpann"; + "braid" = dontDistribute super."braid"; + "brainfuck" = dontDistribute super."brainfuck"; + "brainfuck-monad" = dontDistribute super."brainfuck-monad"; + "brainfuck-tut" = dontDistribute super."brainfuck-tut"; + "break" = dontDistribute super."break"; + "breakout" = dontDistribute super."breakout"; + "breve" = dontDistribute super."breve"; + "brians-brain" = dontDistribute super."brians-brain"; + "brillig" = dontDistribute super."brillig"; + "broccoli" = dontDistribute super."broccoli"; + "broker-haskell" = dontDistribute super."broker-haskell"; + "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson-generic" = dontDistribute super."bson-generic"; + "bson-generics" = dontDistribute super."bson-generics"; + "bson-mapping" = dontDistribute super."bson-mapping"; + "bspack" = dontDistribute super."bspack"; + "bsparse" = dontDistribute super."bsparse"; + "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; + "buffer-pipe" = dontDistribute super."buffer-pipe"; + "buffon" = dontDistribute super."buffon"; + "bugzilla" = dontDistribute super."bugzilla"; + "buildable" = dontDistribute super."buildable"; + "buildbox" = dontDistribute super."buildbox"; + "buildbox-tools" = dontDistribute super."buildbox-tools"; + "buildwrapper" = dontDistribute super."buildwrapper"; + "bullet" = dontDistribute super."bullet"; + "burst-detection" = dontDistribute super."burst-detection"; + "bus-pirate" = dontDistribute super."bus-pirate"; + "buster" = dontDistribute super."buster"; + "buster-gtk" = dontDistribute super."buster-gtk"; + "buster-network" = dontDistribute super."buster-network"; + "butterflies" = dontDistribute super."butterflies"; + "bv" = dontDistribute super."bv"; + "byline" = dontDistribute super."byline"; + "bytable" = dontDistribute super."bytable"; + "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-class" = dontDistribute super."bytestring-class"; + "bytestring-csv" = dontDistribute super."bytestring-csv"; + "bytestring-delta" = dontDistribute super."bytestring-delta"; + "bytestring-from" = dontDistribute super."bytestring-from"; + "bytestring-nums" = dontDistribute super."bytestring-nums"; + "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-rematch" = dontDistribute super."bytestring-rematch"; + "bytestring-short" = dontDistribute super."bytestring-short"; + "bytestring-show" = dontDistribute super."bytestring-show"; + "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder"; + "bytestringparser" = dontDistribute super."bytestringparser"; + "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary"; + "bytestringreadp" = dontDistribute super."bytestringreadp"; + "c-dsl" = dontDistribute super."c-dsl"; + "c-io" = dontDistribute super."c-io"; + "c-storable-deriving" = dontDistribute super."c-storable-deriving"; + "c0check" = dontDistribute super."c0check"; + "c0parser" = dontDistribute super."c0parser"; + "c10k" = dontDistribute super."c10k"; + "c2hsc" = dontDistribute super."c2hsc"; + "cab" = dontDistribute super."cab"; + "cabal-audit" = dontDistribute super."cabal-audit"; + "cabal-bounds" = dontDistribute super."cabal-bounds"; + "cabal-cargs" = dontDistribute super."cabal-cargs"; + "cabal-constraints" = dontDistribute super."cabal-constraints"; + "cabal-db" = dontDistribute super."cabal-db"; + "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; + "cabal-dev" = dontDistribute super."cabal-dev"; + "cabal-dir" = dontDistribute super."cabal-dir"; + "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags"; + "cabal-ghci" = dontDistribute super."cabal-ghci"; + "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; + "cabal-info" = dontDistribute super."cabal-info"; + "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; + "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; + "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; + "cabal-lenses" = dontDistribute super."cabal-lenses"; + "cabal-macosx" = dontDistribute super."cabal-macosx"; + "cabal-meta" = dontDistribute super."cabal-meta"; + "cabal-mon" = dontDistribute super."cabal-mon"; + "cabal-nirvana" = dontDistribute super."cabal-nirvana"; + "cabal-progdeps" = dontDistribute super."cabal-progdeps"; + "cabal-query" = dontDistribute super."cabal-query"; + "cabal-scripts" = dontDistribute super."cabal-scripts"; + "cabal-setup" = dontDistribute super."cabal-setup"; + "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-test" = dontDistribute super."cabal-test"; + "cabal-test-bin" = dontDistribute super."cabal-test-bin"; + "cabal-test-compat" = dontDistribute super."cabal-test-compat"; + "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck"; + "cabal-uninstall" = dontDistribute super."cabal-uninstall"; + "cabal-upload" = dontDistribute super."cabal-upload"; + "cabal2arch" = dontDistribute super."cabal2arch"; + "cabal2doap" = dontDistribute super."cabal2doap"; + "cabal2ebuild" = dontDistribute super."cabal2ebuild"; + "cabal2ghci" = dontDistribute super."cabal2ghci"; + "cabal2nix" = dontDistribute super."cabal2nix"; + "cabal2spec" = dontDistribute super."cabal2spec"; + "cabalQuery" = dontDistribute super."cabalQuery"; + "cabalg" = dontDistribute super."cabalg"; + "cabalgraph" = dontDistribute super."cabalgraph"; + "cabalmdvrpm" = dontDistribute super."cabalmdvrpm"; + "cabalrpmdeps" = dontDistribute super."cabalrpmdeps"; + "cabalvchk" = dontDistribute super."cabalvchk"; + "cabin" = dontDistribute super."cabin"; + "cabocha" = dontDistribute super."cabocha"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = doDistribute super."cacophony_0_4_0"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "cairo-appbase" = dontDistribute super."cairo-appbase"; + "cake" = dontDistribute super."cake"; + "cake3" = dontDistribute super."cake3"; + "cakyrespa" = dontDistribute super."cakyrespa"; + "cal3d" = dontDistribute super."cal3d"; + "cal3d-examples" = dontDistribute super."cal3d-examples"; + "cal3d-opengl" = dontDistribute super."cal3d-opengl"; + "calc" = dontDistribute super."calc"; + "caldims" = dontDistribute super."caldims"; + "caledon" = dontDistribute super."caledon"; + "call" = dontDistribute super."call"; + "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; + "camh" = dontDistribute super."camh"; + "campfire" = dontDistribute super."campfire"; + "canonical-filepath" = dontDistribute super."canonical-filepath"; + "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; + "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; + "cantor" = dontDistribute super."cantor"; + "cao" = dontDistribute super."cao"; + "cap" = dontDistribute super."cap"; + "capped-list" = dontDistribute super."capped-list"; + "capri" = dontDistribute super."capri"; + "car-pool" = dontDistribute super."car-pool"; + "caramia" = dontDistribute super."caramia"; + "carboncopy" = dontDistribute super."carboncopy"; + "carettah" = dontDistribute super."carettah"; + "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; + "casadi-bindings" = dontDistribute super."casadi-bindings"; + "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; + "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; + "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal"; + "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface"; + "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; + "cascading" = dontDistribute super."cascading"; + "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "casr-logbook" = dontDistribute super."casr-logbook"; + "cassandra-cql" = dontDistribute super."cassandra-cql"; + "cassandra-thrift" = dontDistribute super."cassandra-thrift"; + "cassava-conduit" = dontDistribute super."cassava-conduit"; + "cassava-streams" = dontDistribute super."cassava-streams"; + "cassette" = dontDistribute super."cassette"; + "cassy" = dontDistribute super."cassy"; + "castle" = dontDistribute super."castle"; + "casui" = dontDistribute super."casui"; + "catamorphism" = dontDistribute super."catamorphism"; + "catch-fd" = dontDistribute super."catch-fd"; + "categorical-algebra" = dontDistribute super."categorical-algebra"; + "categories" = dontDistribute super."categories"; + "category-extras" = dontDistribute super."category-extras"; + "category-traced" = dontDistribute super."category-traced"; + "cayley-dickson" = dontDistribute super."cayley-dickson"; + "cblrepo" = dontDistribute super."cblrepo"; + "cci" = dontDistribute super."cci"; + "ccnx" = dontDistribute super."ccnx"; + "cctools-workqueue" = dontDistribute super."cctools-workqueue"; + "cedict" = dontDistribute super."cedict"; + "cef" = dontDistribute super."cef"; + "ceilometer-common" = dontDistribute super."ceilometer-common"; + "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; + "cereal-derive" = dontDistribute super."cereal-derive"; + "cereal-enumerator" = dontDistribute super."cereal-enumerator"; + "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi" = doDistribute super."cgi_3001_2_2_3"; + "cgi-undecidable" = dontDistribute super."cgi-undecidable"; + "cgi-utils" = dontDistribute super."cgi-utils"; + "cgrep" = dontDistribute super."cgrep"; + "chain-codes" = dontDistribute super."chain-codes"; + "chalk" = dontDistribute super."chalk"; + "chalkboard" = dontDistribute super."chalkboard"; + "chalkboard-viewer" = dontDistribute super."chalkboard-viewer"; + "chalmers-lava2000" = dontDistribute super."chalmers-lava2000"; + "chan-split" = dontDistribute super."chan-split"; + "change-monger" = dontDistribute super."change-monger"; + "charade" = dontDistribute super."charade"; + "charsetdetect" = dontDistribute super."charsetdetect"; + "chart-histogram" = dontDistribute super."chart-histogram"; + "chaselev-deque" = dontDistribute super."chaselev-deque"; + "chatter" = dontDistribute super."chatter"; + "chatty" = dontDistribute super."chatty"; + "chatty-text" = dontDistribute super."chatty-text"; + "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; + "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; + "check-pvp" = dontDistribute super."check-pvp"; + "checked" = dontDistribute super."checked"; + "chell-hunit" = dontDistribute super."chell-hunit"; + "chesshs" = dontDistribute super."chesshs"; + "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; + "chp" = dontDistribute super."chp"; + "chp-mtl" = dontDistribute super."chp-mtl"; + "chp-plus" = dontDistribute super."chp-plus"; + "chp-spec" = dontDistribute super."chp-spec"; + "chp-transformers" = dontDistribute super."chp-transformers"; + "chronograph" = dontDistribute super."chronograph"; + "chu2" = dontDistribute super."chu2"; + "chuchu" = dontDistribute super."chuchu"; + "chunks" = dontDistribute super."chunks"; + "chunky" = dontDistribute super."chunky"; + "church-list" = dontDistribute super."church-list"; + "cil" = dontDistribute super."cil"; + "cinvoke" = dontDistribute super."cinvoke"; + "cio" = dontDistribute super."cio"; + "cipher-rc5" = dontDistribute super."cipher-rc5"; + "ciphersaber2" = dontDistribute super."ciphersaber2"; + "circ" = dontDistribute super."circ"; + "cirru-parser" = dontDistribute super."cirru-parser"; + "citation-resolve" = dontDistribute super."citation-resolve"; + "citeproc-hs" = dontDistribute super."citeproc-hs"; + "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter"; + "cityhash" = dontDistribute super."cityhash"; + "cjk" = dontDistribute super."cjk"; + "clac" = dontDistribute super."clac"; + "clafer" = dontDistribute super."clafer"; + "claferIG" = dontDistribute super."claferIG"; + "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; + "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; + "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_6_11"; + "clash-lib" = doDistribute super."clash-lib_0_6_11"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-vhdl" = doDistribute super."clash-vhdl_0_6_8"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; + "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; + "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "clocked" = dontDistribute super."clocked"; + "clogparse" = dontDistribute super."clogparse"; + "clone-all" = dontDistribute super."clone-all"; + "closure" = dontDistribute super."closure"; + "cloud-haskell" = dontDistribute super."cloud-haskell"; + "cloudfront-signer" = dontDistribute super."cloudfront-signer"; + "cloudyfs" = dontDistribute super."cloudyfs"; + "cltw" = dontDistribute super."cltw"; + "clua" = dontDistribute super."clua"; + "clumpiness" = dontDistribute super."clumpiness"; + "cluss" = dontDistribute super."cluss"; + "clustertools" = dontDistribute super."clustertools"; + "clutterhs" = dontDistribute super."clutterhs"; + "cmaes" = dontDistribute super."cmaes"; + "cmath" = dontDistribute super."cmath"; + "cmathml3" = dontDistribute super."cmathml3"; + "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs-browser" = dontDistribute super."cmdargs-browser"; + "cmdlib" = dontDistribute super."cmdlib"; + "cmdtheline" = dontDistribute super."cmdtheline"; + "cml" = dontDistribute super."cml"; + "cmonad" = dontDistribute super."cmonad"; + "cmu" = dontDistribute super."cmu"; + "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; + "cndict" = dontDistribute super."cndict"; + "codec" = dontDistribute super."codec"; + "codec-libevent" = dontDistribute super."codec-libevent"; + "codec-mbox" = dontDistribute super."codec-mbox"; + "codecov-haskell" = dontDistribute super."codecov-haskell"; + "codemonitor" = dontDistribute super."codemonitor"; + "codepad" = dontDistribute super."codepad"; + "codo-notation" = dontDistribute super."codo-notation"; + "cofunctor" = dontDistribute super."cofunctor"; + "cognimeta-utils" = dontDistribute super."cognimeta-utils"; + "coinbase-exchange" = dontDistribute super."coinbase-exchange"; + "colada" = dontDistribute super."colada"; + "colchis" = dontDistribute super."colchis"; + "collada-output" = dontDistribute super."collada-output"; + "collada-types" = dontDistribute super."collada-types"; + "collapse-util" = dontDistribute super."collapse-util"; + "collection-json" = dontDistribute super."collection-json"; + "collections" = dontDistribute super."collections"; + "collections-api" = dontDistribute super."collections-api"; + "collections-base-instances" = dontDistribute super."collections-base-instances"; + "colock" = dontDistribute super."colock"; + "colorize-haskell" = dontDistribute super."colorize-haskell"; + "colors" = dontDistribute super."colors"; + "coltrane" = dontDistribute super."coltrane"; + "com" = dontDistribute super."com"; + "combinat" = dontDistribute super."combinat"; + "combinat-diagrams" = dontDistribute super."combinat-diagrams"; + "combinator-interactive" = dontDistribute super."combinator-interactive"; + "combinatorial-problems" = dontDistribute super."combinatorial-problems"; + "combinatorics" = dontDistribute super."combinatorics"; + "combobuffer" = dontDistribute super."combobuffer"; + "comfort-graph" = dontDistribute super."comfort-graph"; + "command" = dontDistribute super."command"; + "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; + "commodities" = dontDistribute super."commodities"; + "commsec" = dontDistribute super."commsec"; + "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; + "comonad-extras" = dontDistribute super."comonad-extras"; + "comonad-random" = dontDistribute super."comonad-random"; + "compact-map" = dontDistribute super."compact-map"; + "compact-socket" = dontDistribute super."compact-socket"; + "compact-string" = dontDistribute super."compact-string"; + "compact-string-fix" = dontDistribute super."compact-string-fix"; + "compare-type" = dontDistribute super."compare-type"; + "compdata-automata" = dontDistribute super."compdata-automata"; + "compdata-dags" = dontDistribute super."compdata-dags"; + "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = dontDistribute super."compensated"; + "competition" = dontDistribute super."competition"; + "compilation" = dontDistribute super."compilation"; + "complex-generic" = dontDistribute super."complex-generic"; + "complex-integrate" = dontDistribute super."complex-integrate"; + "complexity" = dontDistribute super."complexity"; + "compose-ltr" = dontDistribute super."compose-ltr"; + "compose-trans" = dontDistribute super."compose-trans"; + "compression" = dontDistribute super."compression"; + "compstrat" = dontDistribute super."compstrat"; + "comptrans" = dontDistribute super."comptrans"; + "computational-algebra" = dontDistribute super."computational-algebra"; + "computations" = dontDistribute super."computations"; + "conceit" = dontDistribute super."conceit"; + "concorde" = dontDistribute super."concorde"; + "concraft" = dontDistribute super."concraft"; + "concraft-hr" = dontDistribute super."concraft-hr"; + "concraft-pl" = dontDistribute super."concraft-pl"; + "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser"; + "concrete-typerep" = dontDistribute super."concrete-typerep"; + "concurrent-barrier" = dontDistribute super."concurrent-barrier"; + "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = dontDistribute super."concurrent-extra"; + "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; + "concurrent-sa" = dontDistribute super."concurrent-sa"; + "concurrent-split" = dontDistribute super."concurrent-split"; + "concurrent-state" = dontDistribute super."concurrent-state"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; + "concurrentoutput" = dontDistribute super."concurrentoutput"; + "cond" = dontDistribute super."cond"; + "condor" = dontDistribute super."condor"; + "condorcet" = dontDistribute super."condorcet"; + "conductive-base" = dontDistribute super."conductive-base"; + "conductive-clock" = dontDistribute super."conductive-clock"; + "conductive-hsc3" = dontDistribute super."conductive-hsc3"; + "conductive-song" = dontDistribute super."conductive-song"; + "conduit-audio" = dontDistribute super."conduit-audio"; + "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; + "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; + "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; + "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; + "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; + "config-select" = dontDistribute super."config-select"; + "config-value" = dontDistribute super."config-value"; + "configifier" = dontDistribute super."configifier"; + "configuration" = dontDistribute super."configuration"; + "configuration-tools" = dontDistribute super."configuration-tools"; + "confsolve" = dontDistribute super."confsolve"; + "congruence-relation" = dontDistribute super."congruence-relation"; + "conjugateGradient" = dontDistribute super."conjugateGradient"; + "conjure" = dontDistribute super."conjure"; + "conlogger" = dontDistribute super."conlogger"; + "connection-pool" = dontDistribute super."connection-pool"; + "consistent" = dontDistribute super."consistent"; + "console-program" = dontDistribute super."console-program"; + "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; + "constrained-categories" = dontDistribute super."constrained-categories"; + "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; + "constructible" = dontDistribute super."constructible"; + "constructive-algebra" = dontDistribute super."constructive-algebra"; + "consumers" = dontDistribute super."consumers"; + "container" = dontDistribute super."container"; + "container-classes" = dontDistribute super."container-classes"; + "containers-benchmark" = dontDistribute super."containers-benchmark"; + "containers-deepseq" = dontDistribute super."containers-deepseq"; + "context-free-grammar" = dontDistribute super."context-free-grammar"; + "context-stack" = dontDistribute super."context-stack"; + "continue" = dontDistribute super."continue"; + "continued-fractions" = dontDistribute super."continued-fractions"; + "continuum" = dontDistribute super."continuum"; + "continuum-client" = dontDistribute super."continuum-client"; + "control-event" = dontDistribute super."control-event"; + "control-monad-attempt" = dontDistribute super."control-monad-attempt"; + "control-monad-exception" = dontDistribute super."control-monad-exception"; + "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd"; + "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf"; + "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl"; + "control-monad-failure" = dontDistribute super."control-monad-failure"; + "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl"; + "control-monad-omega" = dontDistribute super."control-monad-omega"; + "control-monad-queue" = dontDistribute super."control-monad-queue"; + "control-timeout" = dontDistribute super."control-timeout"; + "contstuff" = dontDistribute super."contstuff"; + "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf"; + "contstuff-transformers" = dontDistribute super."contstuff-transformers"; + "converge" = dontDistribute super."converge"; + "conversion" = dontDistribute super."conversion"; + "conversion-bytestring" = dontDistribute super."conversion-bytestring"; + "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive"; + "conversion-text" = dontDistribute super."conversion-text"; + "convert" = dontDistribute super."convert"; + "convertible-ascii" = dontDistribute super."convertible-ascii"; + "convertible-text" = dontDistribute super."convertible-text"; + "cookbook" = dontDistribute super."cookbook"; + "coordinate" = dontDistribute super."coordinate"; + "copilot" = dontDistribute super."copilot"; + "copilot-c99" = dontDistribute super."copilot-c99"; + "copilot-cbmc" = dontDistribute super."copilot-cbmc"; + "copilot-core" = dontDistribute super."copilot-core"; + "copilot-language" = dontDistribute super."copilot-language"; + "copilot-libraries" = dontDistribute super."copilot-libraries"; + "copilot-sbv" = dontDistribute super."copilot-sbv"; + "copilot-theorem" = dontDistribute super."copilot-theorem"; + "copr" = dontDistribute super."copr"; + "core" = dontDistribute super."core"; + "core-haskell" = dontDistribute super."core-haskell"; + "corebot-bliki" = dontDistribute super."corebot-bliki"; + "coroutine-enumerator" = dontDistribute super."coroutine-enumerator"; + "coroutine-iteratee" = dontDistribute super."coroutine-iteratee"; + "coroutine-object" = dontDistribute super."coroutine-object"; + "couch-hs" = dontDistribute super."couch-hs"; + "couch-simple" = dontDistribute super."couch-simple"; + "couchdb-conduit" = dontDistribute super."couchdb-conduit"; + "couchdb-enumerator" = dontDistribute super."couchdb-enumerator"; + "count" = dontDistribute super."count"; + "countable" = dontDistribute super."countable"; + "counter" = dontDistribute super."counter"; + "court" = dontDistribute super."court"; + "coverage" = dontDistribute super."coverage"; + "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; + "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; + "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; + "cpsa" = dontDistribute super."cpsa"; + "cpuid" = dontDistribute super."cpuid"; + "cpuperf" = dontDistribute super."cpuperf"; + "cpython" = dontDistribute super."cpython"; + "cqrs" = dontDistribute super."cqrs"; + "cqrs-core" = dontDistribute super."cqrs-core"; + "cqrs-example" = dontDistribute super."cqrs-example"; + "cqrs-memory" = dontDistribute super."cqrs-memory"; + "cqrs-postgresql" = dontDistribute super."cqrs-postgresql"; + "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3"; + "cqrs-test" = dontDistribute super."cqrs-test"; + "cqrs-testkit" = dontDistribute super."cqrs-testkit"; + "cqrs-types" = dontDistribute super."cqrs-types"; + "cr" = dontDistribute super."cr"; + "crack" = dontDistribute super."crack"; + "craftwerk" = dontDistribute super."craftwerk"; + "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; + "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "crc16" = dontDistribute super."crc16"; + "crc16-table" = dontDistribute super."crc16-table"; + "creatur" = dontDistribute super."creatur"; + "crf-chain1" = dontDistribute super."crf-chain1"; + "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained"; + "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; + "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; + "critbit" = dontDistribute super."critbit"; + "criterion-plus" = dontDistribute super."criterion-plus"; + "criterion-to-html" = dontDistribute super."criterion-to-html"; + "crockford" = dontDistribute super."crockford"; + "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; + "cron-compat" = dontDistribute super."cron-compat"; + "cruncher-types" = dontDistribute super."cruncher-types"; + "crunghc" = dontDistribute super."crunghc"; + "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks"; + "crypto-classical" = dontDistribute super."crypto-classical"; + "crypto-conduit" = dontDistribute super."crypto-conduit"; + "crypto-enigma" = dontDistribute super."crypto-enigma"; + "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; + "crypto-random-effect" = dontDistribute super."crypto-random-effect"; + "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; + "cryptsy-api" = dontDistribute super."cryptsy-api"; + "crystalfontz" = dontDistribute super."crystalfontz"; + "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; + "csound-catalog" = dontDistribute super."csound-catalog"; + "csound-expression" = dontDistribute super."csound-expression"; + "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic"; + "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes"; + "csound-expression-typed" = dontDistribute super."csound-expression-typed"; + "csound-sampler" = dontDistribute super."csound-sampler"; + "csp" = dontDistribute super."csp"; + "cspmchecker" = dontDistribute super."cspmchecker"; + "css" = dontDistribute super."css"; + "csv-enumerator" = dontDistribute super."csv-enumerator"; + "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-to-qif" = dontDistribute super."csv-to-qif"; + "ctemplate" = dontDistribute super."ctemplate"; + "ctkl" = dontDistribute super."ctkl"; + "ctpl" = dontDistribute super."ctpl"; + "cube" = dontDistribute super."cube"; + "cubical" = dontDistribute super."cubical"; + "cubicbezier" = dontDistribute super."cubicbezier"; + "cublas" = dontDistribute super."cublas"; + "cuboid" = dontDistribute super."cuboid"; + "cuda" = dontDistribute super."cuda"; + "cudd" = dontDistribute super."cudd"; + "cufft" = dontDistribute super."cufft"; + "curl-aeson" = dontDistribute super."curl-aeson"; + "curlhs" = dontDistribute super."curlhs"; + "currency" = dontDistribute super."currency"; + "current-locale" = dontDistribute super."current-locale"; + "curry-base" = dontDistribute super."curry-base"; + "curry-frontend" = dontDistribute super."curry-frontend"; + "cursedcsv" = dontDistribute super."cursedcsv"; + "curve25519" = dontDistribute super."curve25519"; + "curves" = dontDistribute super."curves"; + "custom-prelude" = dontDistribute super."custom-prelude"; + "cv-combinators" = dontDistribute super."cv-combinators"; + "cyclotomic" = dontDistribute super."cyclotomic"; + "cypher" = dontDistribute super."cypher"; + "d-bus" = dontDistribute super."d-bus"; + "d3js" = dontDistribute super."d3js"; + "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; + "daemons" = dontDistribute super."daemons"; + "dag" = dontDistribute super."dag"; + "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; + "dao" = dontDistribute super."dao"; + "dapi" = dontDistribute super."dapi"; + "darcs-benchmark" = dontDistribute super."darcs-benchmark"; + "darcs-beta" = dontDistribute super."darcs-beta"; + "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; + "darcs-cabalized" = dontDistribute super."darcs-cabalized"; + "darcs-fastconvert" = dontDistribute super."darcs-fastconvert"; + "darcs-graph" = dontDistribute super."darcs-graph"; + "darcs-monitor" = dontDistribute super."darcs-monitor"; + "darcs-scripts" = dontDistribute super."darcs-scripts"; + "darcs2dot" = dontDistribute super."darcs2dot"; + "darcsden" = dontDistribute super."darcsden"; + "darcswatch" = dontDistribute super."darcswatch"; + "darkplaces-demo" = dontDistribute super."darkplaces-demo"; + "darkplaces-rcon" = dontDistribute super."darkplaces-rcon"; + "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util"; + "darkplaces-text" = dontDistribute super."darkplaces-text"; + "dash-haskell" = dontDistribute super."dash-haskell"; + "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib"; + "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd"; + "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf"; + "data-accessor-template" = dontDistribute super."data-accessor-template"; + "data-accessor-transformers" = dontDistribute super."data-accessor-transformers"; + "data-aviary" = dontDistribute super."data-aviary"; + "data-base" = dontDistribute super."data-base"; + "data-bword" = dontDistribute super."data-bword"; + "data-carousel" = dontDistribute super."data-carousel"; + "data-category" = dontDistribute super."data-category"; + "data-cell" = dontDistribute super."data-cell"; + "data-checked" = dontDistribute super."data-checked"; + "data-clist" = dontDistribute super."data-clist"; + "data-concurrent-queue" = dontDistribute super."data-concurrent-queue"; + "data-construction" = dontDistribute super."data-construction"; + "data-cycle" = dontDistribute super."data-cycle"; + "data-default-extra" = dontDistribute super."data-default-extra"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; + "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; + "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; + "data-default-instances-text" = dontDistribute super."data-default-instances-text"; + "data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers"; + "data-default-instances-vector" = dontDistribute super."data-default-instances-vector"; + "data-dispersal" = dontDistribute super."data-dispersal"; + "data-dword" = dontDistribute super."data-dword"; + "data-easy" = dontDistribute super."data-easy"; + "data-embed" = dontDistribute super."data-embed"; + "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-interval" = dontDistribute super."data-interval"; + "data-ivar" = dontDistribute super."data-ivar"; + "data-json-token" = dontDistribute super."data-json-token"; + "data-kiln" = dontDistribute super."data-kiln"; + "data-layer" = dontDistribute super."data-layer"; + "data-layout" = dontDistribute super."data-layout"; + "data-lens" = dontDistribute super."data-lens"; + "data-lens-fd" = dontDistribute super."data-lens-fd"; + "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-template" = dontDistribute super."data-lens-template"; + "data-list-sequences" = dontDistribute super."data-list-sequences"; + "data-map-multikey" = dontDistribute super."data-map-multikey"; + "data-named" = dontDistribute super."data-named"; + "data-nat" = dontDistribute super."data-nat"; + "data-object" = dontDistribute super."data-object"; + "data-object-json" = dontDistribute super."data-object-json"; + "data-object-yaml" = dontDistribute super."data-object-yaml"; + "data-or" = dontDistribute super."data-or"; + "data-partition" = dontDistribute super."data-partition"; + "data-pprint" = dontDistribute super."data-pprint"; + "data-quotientref" = dontDistribute super."data-quotientref"; + "data-r-tree" = dontDistribute super."data-r-tree"; + "data-ref" = dontDistribute super."data-ref"; + "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; + "data-result" = dontDistribute super."data-result"; + "data-rev" = dontDistribute super."data-rev"; + "data-rope" = dontDistribute super."data-rope"; + "data-rtuple" = dontDistribute super."data-rtuple"; + "data-size" = dontDistribute super."data-size"; + "data-spacepart" = dontDistribute super."data-spacepart"; + "data-store" = dontDistribute super."data-store"; + "data-stringmap" = dontDistribute super."data-stringmap"; + "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-tensor" = dontDistribute super."data-tensor"; + "data-textual" = dontDistribute super."data-textual"; + "data-timeout" = dontDistribute super."data-timeout"; + "data-transform" = dontDistribute super."data-transform"; + "data-treify" = dontDistribute super."data-treify"; + "data-type" = dontDistribute super."data-type"; + "data-util" = dontDistribute super."data-util"; + "data-variant" = dontDistribute super."data-variant"; + "database-migrate" = dontDistribute super."database-migrate"; + "database-study" = dontDistribute super."database-study"; + "dataenc" = dontDistribute super."dataenc"; + "dataflow" = dontDistribute super."dataflow"; + "datalog" = dontDistribute super."datalog"; + "datapacker" = dontDistribute super."datapacker"; + "dataurl" = dontDistribute super."dataurl"; + "date-cache" = dontDistribute super."date-cache"; + "dates" = dontDistribute super."dates"; + "datetime" = dontDistribute super."datetime"; + "datetime-sb" = dontDistribute super."datetime-sb"; + "dawdle" = dontDistribute super."dawdle"; + "dawg" = dontDistribute super."dawg"; + "dbcleaner" = dontDistribute super."dbcleaner"; + "dbf" = dontDistribute super."dbf"; + "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = doDistribute super."dbmigrations_1_0"; + "dbus-client" = dontDistribute super."dbus-client"; + "dbus-core" = dontDistribute super."dbus-core"; + "dbus-qq" = dontDistribute super."dbus-qq"; + "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; + "dclabel" = dontDistribute super."dclabel"; + "dclabel-eci11" = dontDistribute super."dclabel-eci11"; + "ddc-base" = dontDistribute super."ddc-base"; + "ddc-build" = dontDistribute super."ddc-build"; + "ddc-code" = dontDistribute super."ddc-code"; + "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-eval" = dontDistribute super."ddc-core-eval"; + "ddc-core-flow" = dontDistribute super."ddc-core-flow"; + "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; + "ddc-core-salt" = dontDistribute super."ddc-core-salt"; + "ddc-core-simpl" = dontDistribute super."ddc-core-simpl"; + "ddc-core-tetra" = dontDistribute super."ddc-core-tetra"; + "ddc-driver" = dontDistribute super."ddc-driver"; + "ddc-interface" = dontDistribute super."ddc-interface"; + "ddc-source-tetra" = dontDistribute super."ddc-source-tetra"; + "ddc-tools" = dontDistribute super."ddc-tools"; + "ddc-war" = dontDistribute super."ddc-war"; + "ddci-core" = dontDistribute super."ddci-core"; + "dead-code-detection" = dontDistribute super."dead-code-detection"; + "dead-simple-json" = dontDistribute super."dead-simple-json"; + "debian-binary" = dontDistribute super."debian-binary"; + "debian-build" = dontDistribute super."debian-build"; + "debug-diff" = dontDistribute super."debug-diff"; + "debug-time" = dontDistribute super."debug-time"; + "decepticons" = dontDistribute super."decepticons"; + "decode-utf8" = dontDistribute super."decode-utf8"; + "decoder-conduit" = dontDistribute super."decoder-conduit"; + "dedukti" = dontDistribute super."dedukti"; + "deepcontrol" = dontDistribute super."deepcontrol"; + "deeplearning-hs" = dontDistribute super."deeplearning-hs"; + "deepseq-bounded" = dontDistribute super."deepseq-bounded"; + "deepseq-magic" = dontDistribute super."deepseq-magic"; + "deepseq-th" = dontDistribute super."deepseq-th"; + "deepzoom" = dontDistribute super."deepzoom"; + "defargs" = dontDistribute super."defargs"; + "definitive-base" = dontDistribute super."definitive-base"; + "definitive-filesystem" = dontDistribute super."definitive-filesystem"; + "definitive-graphics" = dontDistribute super."definitive-graphics"; + "definitive-parser" = dontDistribute super."definitive-parser"; + "definitive-reactive" = dontDistribute super."definitive-reactive"; + "definitive-sound" = dontDistribute super."definitive-sound"; + "deiko-config" = dontDistribute super."deiko-config"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delimiter-separated" = dontDistribute super."delimiter-separated"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "dependent-state" = dontDistribute super."dependent-state"; + "depends" = dontDistribute super."depends"; + "dephd" = dontDistribute super."dephd"; + "dequeue" = dontDistribute super."dequeue"; + "derangement" = dontDistribute super."derangement"; + "derivation-trees" = dontDistribute super."derivation-trees"; + "derive-IG" = dontDistribute super."derive-IG"; + "derive-enumerable" = dontDistribute super."derive-enumerable"; + "derive-gadt" = dontDistribute super."derive-gadt"; + "derive-monoid" = dontDistribute super."derive-monoid"; + "derive-topdown" = dontDistribute super."derive-topdown"; + "derive-trie" = dontDistribute super."derive-trie"; + "deriving-compat" = dontDistribute super."deriving-compat"; + "derp" = dontDistribute super."derp"; + "derp-lib" = dontDistribute super."derp-lib"; + "descrilo" = dontDistribute super."descrilo"; + "despair" = dontDistribute super."despair"; + "deterministic-game-engine" = dontDistribute super."deterministic-game-engine"; + "detrospector" = dontDistribute super."detrospector"; + "deunicode" = dontDistribute super."deunicode"; + "devil" = dontDistribute super."devil"; + "dewdrop" = dontDistribute super."dewdrop"; + "dfrac" = dontDistribute super."dfrac"; + "dfsbuild" = dontDistribute super."dfsbuild"; + "dgim" = dontDistribute super."dgim"; + "dgs" = dontDistribute super."dgs"; + "dia-base" = dontDistribute super."dia-base"; + "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; + "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; + "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; + "diagrams-pdf" = dontDistribute super."diagrams-pdf"; + "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; + "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; + "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; + "dicom" = dontDistribute super."dicom"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; + "diff-parse" = dontDistribute super."diff-parse"; + "diffarray" = dontDistribute super."diffarray"; + "diffcabal" = dontDistribute super."diffcabal"; + "diffdump" = dontDistribute super."diffdump"; + "digamma" = dontDistribute super."digamma"; + "digest-pure" = dontDistribute super."digest-pure"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; + "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; + "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp"; + "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty"; + "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; + "digit" = dontDistribute super."digit"; + "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "dimensional-codata" = dontDistribute super."dimensional-codata"; + "dimensional-tf" = dontDistribute super."dimensional-tf"; + "dingo-core" = dontDistribute super."dingo-core"; + "dingo-example" = dontDistribute super."dingo-example"; + "dingo-widgets" = dontDistribute super."dingo-widgets"; + "diophantine" = dontDistribute super."diophantine"; + "diplomacy" = dontDistribute super."diplomacy"; + "diplomacy-server" = dontDistribute super."diplomacy-server"; + "direct-binary-files" = dontDistribute super."direct-binary-files"; + "direct-daemonize" = dontDistribute super."direct-daemonize"; + "direct-fastcgi" = dontDistribute super."direct-fastcgi"; + "direct-http" = dontDistribute super."direct-http"; + "direct-murmur-hash" = dontDistribute super."direct-murmur-hash"; + "direct-plugins" = dontDistribute super."direct-plugins"; + "directed-cubical" = dontDistribute super."directed-cubical"; + "directory-layout" = dontDistribute super."directory-layout"; + "directory-listing-webpage-parser" = dontDistribute super."directory-listing-webpage-parser"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discordian-calendar" = dontDistribute super."discordian-calendar"; + "discount" = dontDistribute super."discount"; + "discrete-space-map" = dontDistribute super."discrete-space-map"; + "discrimination" = dontDistribute super."discrimination"; + "disjoint-set" = dontDistribute super."disjoint-set"; + "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; + "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = doDistribute super."distributed-process_0_5_5_1"; + "distributed-process-async" = dontDistribute super."distributed-process-async"; + "distributed-process-azure" = dontDistribute super."distributed-process-azure"; + "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; + "distributed-process-ekg" = dontDistribute super."distributed-process-ekg"; + "distributed-process-execution" = dontDistribute super."distributed-process-execution"; + "distributed-process-extras" = dontDistribute super."distributed-process-extras"; + "distributed-process-lifted" = dontDistribute super."distributed-process-lifted"; + "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control"; + "distributed-process-p2p" = dontDistribute super."distributed-process-p2p"; + "distributed-process-platform" = dontDistribute super."distributed-process-platform"; + "distributed-process-registry" = dontDistribute super."distributed-process-registry"; + "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet"; + "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor"; + "distributed-process-task" = dontDistribute super."distributed-process-task"; + "distributed-process-tests" = dontDistribute super."distributed-process-tests"; + "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distribution" = dontDistribute super."distribution"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "djembe" = dontDistribute super."djembe"; + "djinn" = dontDistribute super."djinn"; + "djinn-th" = dontDistribute super."djinn-th"; + "dnscache" = dontDistribute super."dnscache"; + "dnsrbl" = dontDistribute super."dnsrbl"; + "dnssd" = dontDistribute super."dnssd"; + "doc-review" = dontDistribute super."doc-review"; + "doccheck" = dontDistribute super."doccheck"; + "docidx" = dontDistribute super."docidx"; + "docker" = dontDistribute super."docker"; + "dockercook" = dontDistribute super."dockercook"; + "doctest-discover" = dontDistribute super."doctest-discover"; + "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; + "doctest-prop" = dontDistribute super."doctest-prop"; + "dom-lt" = dontDistribute super."dom-lt"; + "dom-parser" = dontDistribute super."dom-parser"; + "dom-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download" = dontDistribute super."download"; + "download-curl" = dontDistribute super."download-curl"; + "download-media-content" = dontDistribute super."download-media-content"; + "dozenal" = dontDistribute super."dozenal"; + "dozens" = dontDistribute super."dozens"; + "dph-base" = dontDistribute super."dph-base"; + "dph-examples" = dontDistribute super."dph-examples"; + "dph-lifted-base" = dontDistribute super."dph-lifted-base"; + "dph-lifted-copy" = dontDistribute super."dph-lifted-copy"; + "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg"; + "dph-par" = dontDistribute super."dph-par"; + "dph-prim-interface" = dontDistribute super."dph-prim-interface"; + "dph-prim-par" = dontDistribute super."dph-prim-par"; + "dph-prim-seq" = dontDistribute super."dph-prim-seq"; + "dph-seq" = dontDistribute super."dph-seq"; + "dpkg" = dontDistribute super."dpkg"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; + "dropbox-sdk" = dontDistribute super."dropbox-sdk"; + "dropsolve" = dontDistribute super."dropsolve"; + "ds-kanren" = dontDistribute super."ds-kanren"; + "dsh-sql" = dontDistribute super."dsh-sql"; + "dsmc" = dontDistribute super."dsmc"; + "dsmc-tools" = dontDistribute super."dsmc-tools"; + "dson" = dontDistribute super."dson"; + "dson-parsec" = dontDistribute super."dson-parsec"; + "dsp" = dontDistribute super."dsp"; + "dstring" = dontDistribute super."dstring"; + "dtab" = dontDistribute super."dtab"; + "dtd" = dontDistribute super."dtd"; + "dtd-text" = dontDistribute super."dtd-text"; + "dtd-types" = dontDistribute super."dtd-types"; + "dtrace" = dontDistribute super."dtrace"; + "dtw" = dontDistribute super."dtw"; + "dump" = dontDistribute super."dump"; + "duplo" = dontDistribute super."duplo"; + "dvda" = dontDistribute super."dvda"; + "dvdread" = dontDistribute super."dvdread"; + "dvi-processing" = dontDistribute super."dvi-processing"; + "dvorak" = dontDistribute super."dvorak"; + "dwarf" = dontDistribute super."dwarf"; + "dwarf-el" = dontDistribute super."dwarf-el"; + "dwarfadt" = dontDistribute super."dwarfadt"; + "dx9base" = dontDistribute super."dx9base"; + "dx9d3d" = dontDistribute super."dx9d3d"; + "dx9d3dx" = dontDistribute super."dx9d3dx"; + "dynamic-cabal" = dontDistribute super."dynamic-cabal"; + "dynamic-graph" = dontDistribute super."dynamic-graph"; + "dynamic-linker-template" = dontDistribute super."dynamic-linker-template"; + "dynamic-loader" = dontDistribute super."dynamic-loader"; + "dynamic-mvector" = dontDistribute super."dynamic-mvector"; + "dynamic-object" = dontDistribute super."dynamic-object"; + "dynamic-plot" = dontDistribute super."dynamic-plot"; + "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynobud" = dontDistribute super."dynobud"; + "dywapitchtrack" = dontDistribute super."dywapitchtrack"; + "dzen-utils" = dontDistribute super."dzen-utils"; + "eager-sockets" = dontDistribute super."eager-sockets"; + "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; + "easyjson" = dontDistribute super."easyjson"; + "easyplot" = dontDistribute super."easyplot"; + "easyrender" = dontDistribute super."easyrender"; + "ebeats" = dontDistribute super."ebeats"; + "ebnf-bff" = dontDistribute super."ebnf-bff"; + "ec2-signature" = dontDistribute super."ec2-signature"; + "ecdsa" = dontDistribute super."ecdsa"; + "ecma262" = dontDistribute super."ecma262"; + "ecu" = dontDistribute super."ecu"; + "ed25519" = dontDistribute super."ed25519"; + "ed25519-donna" = dontDistribute super."ed25519-donna"; + "eddie" = dontDistribute super."eddie"; + "edenmodules" = dontDistribute super."edenmodules"; + "edenskel" = dontDistribute super."edenskel"; + "edentv" = dontDistribute super."edentv"; + "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "eithers" = dontDistribute super."eithers"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-log" = dontDistribute super."ekg-log"; + "ekg-push" = dontDistribute super."ekg-push"; + "ekg-rrd" = dontDistribute super."ekg-rrd"; + "ekg-statsd" = dontDistribute super."ekg-statsd"; + "electrum-mnemonic" = dontDistribute super."electrum-mnemonic"; + "elerea" = dontDistribute super."elerea"; + "elerea-examples" = dontDistribute super."elerea-examples"; + "elerea-sdl" = dontDistribute super."elerea-sdl"; + "elevator" = dontDistribute super."elevator"; + "elf" = dontDistribute super."elf"; + "elision" = dontDistribute super."elision"; + "elm-build-lib" = dontDistribute super."elm-build-lib"; + "elm-compiler" = dontDistribute super."elm-compiler"; + "elm-get" = dontDistribute super."elm-get"; + "elm-init" = dontDistribute super."elm-init"; + "elm-make" = dontDistribute super."elm-make"; + "elm-package" = dontDistribute super."elm-package"; + "elm-reactor" = dontDistribute super."elm-reactor"; + "elm-repl" = dontDistribute super."elm-repl"; + "elm-server" = dontDistribute super."elm-server"; + "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; + "elocrypt" = dontDistribute super."elocrypt"; + "emacs-keys" = dontDistribute super."emacs-keys"; + "email" = dontDistribute super."email"; + "email-header" = dontDistribute super."email-header"; + "email-postmark" = dontDistribute super."email-postmark"; + "email-validator" = dontDistribute super."email-validator"; + "embeddock" = dontDistribute super."embeddock"; + "embeddock-example" = dontDistribute super."embeddock-example"; + "embroidery" = dontDistribute super."embroidery"; + "emgm" = dontDistribute super."emgm"; + "empty" = dontDistribute super."empty"; + "encoding" = dontDistribute super."encoding"; + "endo" = dontDistribute super."endo"; + "engine-io-growler" = dontDistribute super."engine-io-growler"; + "engine-io-snap" = dontDistribute super."engine-io-snap"; + "engineering-units" = dontDistribute super."engineering-units"; + "enumerable" = dontDistribute super."enumerable"; + "enumerate" = dontDistribute super."enumerate"; + "enumeration" = dontDistribute super."enumeration"; + "enumerator-fd" = dontDistribute super."enumerator-fd"; + "enumerator-tf" = dontDistribute super."enumerator-tf"; + "enumfun" = dontDistribute super."enumfun"; + "enummapmap" = dontDistribute super."enummapmap"; + "enummapset" = dontDistribute super."enummapset"; + "enummapset-th" = dontDistribute super."enummapset-th"; + "enumset" = dontDistribute super."enumset"; + "env-parser" = dontDistribute super."env-parser"; + "envparse" = dontDistribute super."envparse"; + "epanet-haskell" = dontDistribute super."epanet-haskell"; + "epass" = dontDistribute super."epass"; + "epic" = dontDistribute super."epic"; + "epoll" = dontDistribute super."epoll"; + "eprocess" = dontDistribute super."eprocess"; + "epub" = dontDistribute super."epub"; + "epub-metadata" = dontDistribute super."epub-metadata"; + "epub-tools" = dontDistribute super."epub-tools"; + "epubname" = dontDistribute super."epubname"; + "equal-files" = dontDistribute super."equal-files"; + "equational-reasoning" = dontDistribute super."equational-reasoning"; + "erd" = dontDistribute super."erd"; + "erf-native" = dontDistribute super."erf-native"; + "erlang" = dontDistribute super."erlang"; + "eros" = dontDistribute super."eros"; + "eros-client" = dontDistribute super."eros-client"; + "eros-http" = dontDistribute super."eros-http"; + "errno" = dontDistribute super."errno"; + "error-analyze" = dontDistribute super."error-analyze"; + "error-continuations" = dontDistribute super."error-continuations"; + "error-list" = dontDistribute super."error-list"; + "error-loc" = dontDistribute super."error-loc"; + "error-location" = dontDistribute super."error-location"; + "error-message" = dontDistribute super."error-message"; + "error-util" = dontDistribute super."error-util"; + "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; + "ersatz" = dontDistribute super."ersatz"; + "ersatz-toysat" = dontDistribute super."ersatz-toysat"; + "ert" = dontDistribute super."ert"; + "esotericbot" = dontDistribute super."esotericbot"; + "ess" = dontDistribute super."ess"; + "estimator" = dontDistribute super."estimator"; + "estimators" = dontDistribute super."estimators"; + "estreps" = dontDistribute super."estreps"; + "eternal" = dontDistribute super."eternal"; + "ether" = doDistribute super."ether_0_3_1_1"; + "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; + "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; + "ethereum-rlp" = dontDistribute super."ethereum-rlp"; + "ety" = dontDistribute super."ety"; + "euler" = dontDistribute super."euler"; + "euphoria" = dontDistribute super."euphoria"; + "eurofxref" = dontDistribute super."eurofxref"; + "event-driven" = dontDistribute super."event-driven"; + "event-handlers" = dontDistribute super."event-handlers"; + "event-list" = dontDistribute super."event-list"; + "event-monad" = dontDistribute super."event-monad"; + "eventloop" = dontDistribute super."eventloop"; + "eventstore" = doDistribute super."eventstore_0_10_0_2"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exception-hierarchy" = dontDistribute super."exception-hierarchy"; + "exception-mailer" = dontDistribute super."exception-mailer"; + "exception-monads-fd" = dontDistribute super."exception-monads-fd"; + "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exception-mtl" = dontDistribute super."exception-mtl"; + "exherbo-cabal" = dontDistribute super."exherbo-cabal"; + "exif" = dontDistribute super."exif"; + "exinst" = dontDistribute super."exinst"; + "exinst-aeson" = dontDistribute super."exinst-aeson"; + "exinst-bytes" = dontDistribute super."exinst-bytes"; + "exinst-deepseq" = dontDistribute super."exinst-deepseq"; + "exinst-hashable" = dontDistribute super."exinst-hashable"; + "existential" = dontDistribute super."existential"; + "exists" = dontDistribute super."exists"; + "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; + "exp-pairs" = dontDistribute super."exp-pairs"; + "expand" = dontDistribute super."expand"; + "expat-enumerator" = dontDistribute super."expat-enumerator"; + "expiring-mvar" = dontDistribute super."expiring-mvar"; + "explain" = dontDistribute super."explain"; + "explicit-determinant" = dontDistribute super."explicit-determinant"; + "explicit-iomodes" = dontDistribute super."explicit-iomodes"; + "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring"; + "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text"; + "explicit-sharing" = dontDistribute super."explicit-sharing"; + "explore" = dontDistribute super."explore"; + "exposed-containers" = dontDistribute super."exposed-containers"; + "expression-parser" = dontDistribute super."expression-parser"; + "extcore" = dontDistribute super."extcore"; + "extemp" = dontDistribute super."extemp"; + "extended-categories" = dontDistribute super."extended-categories"; + "extended-reals" = dontDistribute super."extended-reals"; + "extensible" = dontDistribute super."extensible"; + "extensible-data" = dontDistribute super."extensible-data"; + "external-sort" = dontDistribute super."external-sort"; + "extractelf" = dontDistribute super."extractelf"; + "ez-couch" = dontDistribute super."ez-couch"; + "faceted" = dontDistribute super."faceted"; + "factory" = dontDistribute super."factory"; + "factual-api" = dontDistribute super."factual-api"; + "fad" = dontDistribute super."fad"; + "failable-list" = dontDistribute super."failable-list"; + "failure" = dontDistribute super."failure"; + "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; + "faker" = dontDistribute super."faker"; + "falling-turnip" = dontDistribute super."falling-turnip"; + "fallingblocks" = dontDistribute super."fallingblocks"; + "family-tree" = dontDistribute super."family-tree"; + "fast-digits" = dontDistribute super."fast-digits"; + "fast-math" = dontDistribute super."fast-math"; + "fast-tags" = dontDistribute super."fast-tags"; + "fast-tagsoup" = dontDistribute super."fast-tagsoup"; + "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fastbayes" = dontDistribute super."fastbayes"; + "fastcgi" = dontDistribute super."fastcgi"; + "fastedit" = dontDistribute super."fastedit"; + "fastirc" = dontDistribute super."fastirc"; + "fault-tree" = dontDistribute super."fault-tree"; + "fay-geoposition" = dontDistribute super."fay-geoposition"; + "fay-hsx" = dontDistribute super."fay-hsx"; + "fay-ref" = dontDistribute super."fay-ref"; + "fca" = dontDistribute super."fca"; + "fcache" = dontDistribute super."fcache"; + "fcd" = dontDistribute super."fcd"; + "fckeditor" = dontDistribute super."fckeditor"; + "fclabels-monadlib" = dontDistribute super."fclabels-monadlib"; + "fdo-trash" = dontDistribute super."fdo-trash"; + "fec" = dontDistribute super."fec"; + "fedora-packages" = dontDistribute super."fedora-packages"; + "feed-cli" = dontDistribute super."feed-cli"; + "feed-collect" = dontDistribute super."feed-collect"; + "feed-crawl" = dontDistribute super."feed-crawl"; + "feed-translator" = dontDistribute super."feed-translator"; + "feed2lj" = dontDistribute super."feed2lj"; + "feed2twitter" = dontDistribute super."feed2twitter"; + "feldspar-compiler" = dontDistribute super."feldspar-compiler"; + "feldspar-language" = dontDistribute super."feldspar-language"; + "feldspar-signal" = dontDistribute super."feldspar-signal"; + "fen2s" = dontDistribute super."fen2s"; + "fences" = dontDistribute super."fences"; + "fenfire" = dontDistribute super."fenfire"; + "fez-conf" = dontDistribute super."fez-conf"; + "ffeed" = dontDistribute super."ffeed"; + "fficxx" = dontDistribute super."fficxx"; + "fficxx-runtime" = dontDistribute super."fficxx-runtime"; + "ffmpeg-light" = dontDistribute super."ffmpeg-light"; + "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; + "fgl-visualize" = dontDistribute super."fgl-visualize"; + "fibon" = dontDistribute super."fibon"; + "fibonacci" = dontDistribute super."fibonacci"; + "fields" = dontDistribute super."fields"; + "fields-json" = dontDistribute super."fields-json"; + "fieldwise" = dontDistribute super."fieldwise"; + "fig" = dontDistribute super."fig"; + "file-collection" = dontDistribute super."file-collection"; + "file-command-qq" = dontDistribute super."file-command-qq"; + "filediff" = dontDistribute super."filediff"; + "filepath-io-access" = dontDistribute super."filepath-io-access"; + "filepather" = dontDistribute super."filepather"; + "filestore" = dontDistribute super."filestore"; + "filesystem-conduit" = dontDistribute super."filesystem-conduit"; + "filesystem-enumerator" = dontDistribute super."filesystem-enumerator"; + "filesystem-trees" = dontDistribute super."filesystem-trees"; + "filtrable" = dontDistribute super."filtrable"; + "final" = dontDistribute super."final"; + "find-clumpiness" = dontDistribute super."find-clumpiness"; + "find-conduit" = dontDistribute super."find-conduit"; + "fingertree-tf" = dontDistribute super."fingertree-tf"; + "finite-field" = dontDistribute super."finite-field"; + "finite-typelits" = dontDistribute super."finite-typelits"; + "first-and-last" = dontDistribute super."first-and-last"; + "first-class-patterns" = dontDistribute super."first-class-patterns"; + "firstify" = dontDistribute super."firstify"; + "fishfood" = dontDistribute super."fishfood"; + "fit" = dontDistribute super."fit"; + "fitsio" = dontDistribute super."fitsio"; + "fix-imports" = dontDistribute super."fix-imports"; + "fix-parser-simple" = dontDistribute super."fix-parser-simple"; + "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit"; + "fixed-length" = dontDistribute super."fixed-length"; + "fixed-point" = dontDistribute super."fixed-point"; + "fixed-point-vector" = dontDistribute super."fixed-point-vector"; + "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space"; + "fixed-precision" = dontDistribute super."fixed-precision"; + "fixed-storable-array" = dontDistribute super."fixed-storable-array"; + "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; + "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixedprec" = dontDistribute super."fixedprec"; + "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; + "fixfile" = dontDistribute super."fixfile"; + "fixhs" = dontDistribute super."fixhs"; + "fixplate" = dontDistribute super."fixplate"; + "fixpoint" = dontDistribute super."fixpoint"; + "fixtime" = dontDistribute super."fixtime"; + "fizz-buzz" = dontDistribute super."fizz-buzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "flat-mcmc" = dontDistribute super."flat-mcmc"; + "flat-tex" = dontDistribute super."flat-tex"; + "flexible-time" = dontDistribute super."flexible-time"; + "flexible-unlit" = dontDistribute super."flexible-unlit"; + "flexiwrap" = dontDistribute super."flexiwrap"; + "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck"; + "flickr" = dontDistribute super."flickr"; + "flippers" = dontDistribute super."flippers"; + "flite" = dontDistribute super."flite"; + "flo" = dontDistribute super."flo"; + "float-binstring" = dontDistribute super."float-binstring"; + "floating-bits" = dontDistribute super."floating-bits"; + "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; + "flow2dot" = dontDistribute super."flow2dot"; + "flowdock-api" = dontDistribute super."flowdock-api"; + "flowdock-rest" = dontDistribute super."flowdock-rest"; + "flower" = dontDistribute super."flower"; + "flowlocks-framework" = dontDistribute super."flowlocks-framework"; + "flowsim" = dontDistribute super."flowsim"; + "fltkhs" = dontDistribute super."fltkhs"; + "fltkhs-demos" = dontDistribute super."fltkhs-demos"; + "fltkhs-fluid-demos" = dontDistribute super."fltkhs-fluid-demos"; + "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples"; + "fltkhs-hello-world" = dontDistribute super."fltkhs-hello-world"; + "fluent-logger" = dontDistribute super."fluent-logger"; + "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; + "fluidsynth" = dontDistribute super."fluidsynth"; + "fmark" = dontDistribute super."fmark"; + "fn" = doDistribute super."fn_0_2_0_2"; + "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; + "fold-debounce" = dontDistribute super."fold-debounce"; + "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl" = doDistribute super."foldl_1_1_5"; + "foldl-incremental" = dontDistribute super."foldl-incremental"; + "foldl-transduce" = dontDistribute super."foldl-transduce"; + "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; + "folds" = dontDistribute super."folds"; + "folds-common" = dontDistribute super."folds-common"; + "follower" = dontDistribute super."follower"; + "foma" = dontDistribute super."foma"; + "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6"; + "foo" = dontDistribute super."foo"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "fordo" = dontDistribute super."fordo"; + "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; + "foreign-var" = dontDistribute super."foreign-var"; + "forger" = dontDistribute super."forger"; + "forkable-monad" = dontDistribute super."forkable-monad"; + "formal" = dontDistribute super."formal"; + "format" = dontDistribute super."format"; + "format-status" = dontDistribute super."format-status"; + "formattable" = dontDistribute super."formattable"; + "forml" = dontDistribute super."forml"; + "formlets" = dontDistribute super."formlets"; + "formlets-hsp" = dontDistribute super."formlets-hsp"; + "formura" = dontDistribute super."formura"; + "forth-hll" = dontDistribute super."forth-hll"; + "foscam-directory" = dontDistribute super."foscam-directory"; + "foscam-filename" = dontDistribute super."foscam-filename"; + "foscam-sort" = dontDistribute super."foscam-sort"; + "fountain" = dontDistribute super."fountain"; + "fpco-api" = dontDistribute super."fpco-api"; + "fpipe" = dontDistribute super."fpipe"; + "fpnla" = dontDistribute super."fpnla"; + "fpnla-examples" = dontDistribute super."fpnla-examples"; + "fptest" = dontDistribute super."fptest"; + "fquery" = dontDistribute super."fquery"; + "fractal" = dontDistribute super."fractal"; + "fractals" = dontDistribute super."fractals"; + "fraction" = dontDistribute super."fraction"; + "frag" = dontDistribute super."frag"; + "frame" = dontDistribute super."frame"; + "frame-markdown" = dontDistribute super."frame-markdown"; + "franchise" = dontDistribute super."franchise"; + "free-concurrent" = dontDistribute super."free-concurrent"; + "free-functors" = dontDistribute super."free-functors"; + "free-game" = dontDistribute super."free-game"; + "free-http" = dontDistribute super."free-http"; + "free-operational" = dontDistribute super."free-operational"; + "free-theorems" = dontDistribute super."free-theorems"; + "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples"; + "free-theorems-seq" = dontDistribute super."free-theorems-seq"; + "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui"; + "free-theorems-webui" = dontDistribute super."free-theorems-webui"; + "free-vl" = dontDistribute super."free-vl"; + "freekick2" = dontDistribute super."freekick2"; + "freer" = dontDistribute super."freer"; + "freesect" = dontDistribute super."freesect"; + "freesound" = dontDistribute super."freesound"; + "freetype-simple" = dontDistribute super."freetype-simple"; + "freetype2" = dontDistribute super."freetype2"; + "fresh" = dontDistribute super."fresh"; + "friday" = dontDistribute super."friday"; + "friday-devil" = dontDistribute super."friday-devil"; + "friday-juicypixels" = dontDistribute super."friday-juicypixels"; + "friday-scale-dct" = dontDistribute super."friday-scale-dct"; + "friendly-time" = dontDistribute super."friendly-time"; + "frown" = dontDistribute super."frown"; + "frp-arduino" = dontDistribute super."frp-arduino"; + "frpnow" = dontDistribute super."frpnow"; + "frpnow-gloss" = dontDistribute super."frpnow-gloss"; + "frpnow-gtk" = dontDistribute super."frpnow-gtk"; + "frquotes" = dontDistribute super."frquotes"; + "fs-events" = dontDistribute super."fs-events"; + "fsharp" = dontDistribute super."fsharp"; + "fsmActions" = dontDistribute super."fsmActions"; + "fst" = dontDistribute super."fst"; + "fsutils" = dontDistribute super."fsutils"; + "fswatcher" = dontDistribute super."fswatcher"; + "ftdi" = dontDistribute super."ftdi"; + "ftp-conduit" = dontDistribute super."ftp-conduit"; + "ftphs" = dontDistribute super."ftphs"; + "ftree" = dontDistribute super."ftree"; + "ftshell" = dontDistribute super."ftshell"; + "fugue" = dontDistribute super."fugue"; + "full-sessions" = dontDistribute super."full-sessions"; + "full-text-search" = dontDistribute super."full-text-search"; + "fullstop" = dontDistribute super."fullstop"; + "funbot" = dontDistribute super."funbot"; + "funbot-client" = dontDistribute super."funbot-client"; + "funbot-ext-events" = dontDistribute super."funbot-ext-events"; + "funbot-git-hook" = dontDistribute super."funbot-git-hook"; + "funcons-tools" = dontDistribute super."funcons-tools"; + "function-combine" = dontDistribute super."function-combine"; + "function-instances-algebra" = dontDistribute super."function-instances-algebra"; + "functional-arrow" = dontDistribute super."functional-arrow"; + "functional-kmp" = dontDistribute super."functional-kmp"; + "functor-apply" = dontDistribute super."functor-apply"; + "functor-combo" = dontDistribute super."functor-combo"; + "functor-infix" = dontDistribute super."functor-infix"; + "functor-monadic" = dontDistribute super."functor-monadic"; + "functor-utils" = dontDistribute super."functor-utils"; + "functorm" = dontDistribute super."functorm"; + "functors" = dontDistribute super."functors"; + "funion" = dontDistribute super."funion"; + "funpat" = dontDistribute super."funpat"; + "funsat" = dontDistribute super."funsat"; + "fusion" = dontDistribute super."fusion"; + "futun" = dontDistribute super."futun"; + "future" = dontDistribute super."future"; + "future-resource" = dontDistribute super."future-resource"; + "fuzzy" = dontDistribute super."fuzzy"; + "fuzzy-timings" = dontDistribute super."fuzzy-timings"; + "fuzzytime" = dontDistribute super."fuzzytime"; + "fwgl" = dontDistribute super."fwgl"; + "fwgl-glfw" = dontDistribute super."fwgl-glfw"; + "fwgl-javascript" = dontDistribute super."fwgl-javascript"; + "g-npm" = dontDistribute super."g-npm"; + "gact" = dontDistribute super."gact"; + "game-of-life" = dontDistribute super."game-of-life"; + "game-probability" = dontDistribute super."game-probability"; + "game-tree" = dontDistribute super."game-tree"; + "gameclock" = dontDistribute super."gameclock"; + "gamma" = dontDistribute super."gamma"; + "gang-of-threads" = dontDistribute super."gang-of-threads"; + "garepinoh" = dontDistribute super."garepinoh"; + "garsia-wachs" = dontDistribute super."garsia-wachs"; + "gbu" = dontDistribute super."gbu"; + "gc" = dontDistribute super."gc"; + "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai"; + "gconf" = dontDistribute super."gconf"; + "gdiff" = dontDistribute super."gdiff"; + "gdiff-ig" = dontDistribute super."gdiff-ig"; + "gdiff-th" = dontDistribute super."gdiff-th"; + "gdo" = dontDistribute super."gdo"; + "gearbox" = dontDistribute super."gearbox"; + "geek" = dontDistribute super."geek"; + "geek-server" = dontDistribute super."geek-server"; + "gelatin" = dontDistribute super."gelatin"; + "gemstone" = dontDistribute super."gemstone"; + "gencheck" = dontDistribute super."gencheck"; + "gender" = dontDistribute super."gender"; + "genders" = dontDistribute super."genders"; + "general-prelude" = dontDistribute super."general-prelude"; + "generator" = dontDistribute super."generator"; + "generators" = dontDistribute super."generators"; + "generic-accessors" = dontDistribute super."generic-accessors"; + "generic-binary" = dontDistribute super."generic-binary"; + "generic-church" = dontDistribute super."generic-church"; + "generic-deepseq" = dontDistribute super."generic-deepseq"; + "generic-deriving" = doDistribute super."generic-deriving_1_9_0"; + "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "generic-server" = dontDistribute super."generic-server"; + "generic-storable" = dontDistribute super."generic-storable"; + "generic-tree" = dontDistribute super."generic-tree"; + "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; + "genericserialize" = dontDistribute super."genericserialize"; + "genetics" = dontDistribute super."genetics"; + "geni-gui" = dontDistribute super."geni-gui"; + "geni-util" = dontDistribute super."geni-util"; + "geniconvert" = dontDistribute super."geniconvert"; + "genifunctors" = dontDistribute super."genifunctors"; + "geniplate" = dontDistribute super."geniplate"; + "geniserver" = dontDistribute super."geniserver"; + "genprog" = dontDistribute super."genprog"; + "gentlemark" = dontDistribute super."gentlemark"; + "geo-resolver" = dontDistribute super."geo-resolver"; + "geo-uk" = dontDistribute super."geo-uk"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geom2d" = dontDistribute super."geom2d"; + "getemx" = dontDistribute super."getemx"; + "getflag" = dontDistribute super."getflag"; + "getopt-simple" = dontDistribute super."getopt-simple"; + "gf" = dontDistribute super."gf"; + "ggtsTC" = dontDistribute super."ggtsTC"; + "ghc-core" = dontDistribute super."ghc-core"; + "ghc-core-html" = dontDistribute super."ghc-core-html"; + "ghc-datasize" = dontDistribute super."ghc-datasize"; + "ghc-dump-tree" = dontDistribute super."ghc-dump-tree"; + "ghc-dup" = dontDistribute super."ghc-dup"; + "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; + "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; + "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-imported-from" = dontDistribute super."ghc-imported-from"; + "ghc-make" = dontDistribute super."ghc-make"; + "ghc-man-completion" = dontDistribute super."ghc-man-completion"; + "ghc-options" = dontDistribute super."ghc-options"; + "ghc-parmake" = dontDistribute super."ghc-parmake"; + "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; + "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; + "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; + "ghc-server" = dontDistribute super."ghc-server"; + "ghc-simple" = dontDistribute super."ghc-simple"; + "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; + "ghc-syb" = dontDistribute super."ghc-syb"; + "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-vis" = dontDistribute super."ghc-vis"; + "ghci-diagrams" = dontDistribute super."ghci-diagrams"; + "ghci-haskeline" = dontDistribute super."ghci-haskeline"; + "ghci-lib" = dontDistribute super."ghci-lib"; + "ghci-ng" = dontDistribute super."ghci-ng"; + "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; + "ghcjs-dom" = dontDistribute super."ghcjs-dom"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gi-atk" = dontDistribute super."gi-atk"; + "gi-cairo" = dontDistribute super."gi-cairo"; + "gi-gdk" = dontDistribute super."gi-gdk"; + "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf"; + "gi-gio" = dontDistribute super."gi-gio"; + "gi-girepository" = dontDistribute super."gi-girepository"; + "gi-glib" = dontDistribute super."gi-glib"; + "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gtk" = dontDistribute super."gi-gtk"; + "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; + "gi-notify" = dontDistribute super."gi-notify"; + "gi-pango" = dontDistribute super."gi-pango"; + "gi-poppler" = dontDistribute super."gi-poppler"; + "gi-soup" = dontDistribute super."gi-soup"; + "gi-vte" = dontDistribute super."gi-vte"; + "gi-webkit" = dontDistribute super."gi-webkit"; + "gi-webkit2" = dontDistribute super."gi-webkit2"; + "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "gimlh" = dontDistribute super."gimlh"; + "ginger" = dontDistribute super."ginger"; + "ginsu" = dontDistribute super."ginsu"; + "giphy-api" = dontDistribute super."giphy-api"; + "gist" = dontDistribute super."gist"; + "git-all" = dontDistribute super."git-all"; + "git-annex" = doDistribute super."git-annex_6_20160114"; + "git-checklist" = dontDistribute super."git-checklist"; + "git-date" = dontDistribute super."git-date"; + "git-embed" = dontDistribute super."git-embed"; + "git-freq" = dontDistribute super."git-freq"; + "git-gpush" = dontDistribute super."git-gpush"; + "git-jump" = dontDistribute super."git-jump"; + "git-monitor" = dontDistribute super."git-monitor"; + "git-object" = dontDistribute super."git-object"; + "git-repair" = dontDistribute super."git-repair"; + "git-sanity" = dontDistribute super."git-sanity"; + "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; + "gitcache" = dontDistribute super."gitcache"; + "gitdo" = dontDistribute super."gitdo"; + "github-backup" = dontDistribute super."github-backup"; + "github-post-receive" = dontDistribute super."github-post-receive"; + "github-utils" = dontDistribute super."github-utils"; + "gitignore" = dontDistribute super."gitignore"; + "gitit" = dontDistribute super."gitit"; + "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; + "gitlib-cross" = dontDistribute super."gitlib-cross"; + "gitlib-s3" = dontDistribute super."gitlib-s3"; + "gitlib-sample" = dontDistribute super."gitlib-sample"; + "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; + "gl-capture" = dontDistribute super."gl-capture"; + "glade" = dontDistribute super."glade"; + "gladexml-accessor" = dontDistribute super."gladexml-accessor"; + "glambda" = dontDistribute super."glambda"; + "glapp" = dontDistribute super."glapp"; + "glasso" = dontDistribute super."glasso"; + "glicko" = dontDistribute super."glicko"; + "glider-nlp" = dontDistribute super."glider-nlp"; + "glintcollider" = dontDistribute super."glintcollider"; + "gll" = dontDistribute super."gll"; + "global" = dontDistribute super."global"; + "global-config" = dontDistribute super."global-config"; + "global-lock" = dontDistribute super."global-lock"; + "global-variables" = dontDistribute super."global-variables"; + "glome-hs" = dontDistribute super."glome-hs"; + "gloss" = dontDistribute super."gloss"; + "gloss-accelerate" = dontDistribute super."gloss-accelerate"; + "gloss-algorithms" = dontDistribute super."gloss-algorithms"; + "gloss-banana" = dontDistribute super."gloss-banana"; + "gloss-devil" = dontDistribute super."gloss-devil"; + "gloss-examples" = dontDistribute super."gloss-examples"; + "gloss-game" = dontDistribute super."gloss-game"; + "gloss-juicy" = dontDistribute super."gloss-juicy"; + "gloss-raster" = dontDistribute super."gloss-raster"; + "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate"; + "gloss-rendering" = dontDistribute super."gloss-rendering"; + "gloss-sodium" = dontDistribute super."gloss-sodium"; + "glpk-hs" = dontDistribute super."glpk-hs"; + "glue" = dontDistribute super."glue"; + "glue-common" = dontDistribute super."glue-common"; + "glue-core" = dontDistribute super."glue-core"; + "glue-ekg" = dontDistribute super."glue-ekg"; + "glue-example" = dontDistribute super."glue-example"; + "gluturtle" = dontDistribute super."gluturtle"; + "gmap" = dontDistribute super."gmap"; + "gmndl" = dontDistribute super."gmndl"; + "gnome-desktop" = dontDistribute super."gnome-desktop"; + "gnome-keyring" = dontDistribute super."gnome-keyring"; + "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gogol" = dontDistribute super."gogol"; + "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer"; + "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller"; + "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer"; + "gogol-admin-directory" = dontDistribute super."gogol-admin-directory"; + "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration"; + "gogol-admin-reports" = dontDistribute super."gogol-admin-reports"; + "gogol-adsense" = dontDistribute super."gogol-adsense"; + "gogol-adsense-host" = dontDistribute super."gogol-adsense-host"; + "gogol-affiliates" = dontDistribute super."gogol-affiliates"; + "gogol-analytics" = dontDistribute super."gogol-analytics"; + "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise"; + "gogol-android-publisher" = dontDistribute super."gogol-android-publisher"; + "gogol-appengine" = dontDistribute super."gogol-appengine"; + "gogol-apps-activity" = dontDistribute super."gogol-apps-activity"; + "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar"; + "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing"; + "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller"; + "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks"; + "gogol-appstate" = dontDistribute super."gogol-appstate"; + "gogol-autoscaler" = dontDistribute super."gogol-autoscaler"; + "gogol-bigquery" = dontDistribute super."gogol-bigquery"; + "gogol-billing" = dontDistribute super."gogol-billing"; + "gogol-blogger" = dontDistribute super."gogol-blogger"; + "gogol-books" = dontDistribute super."gogol-books"; + "gogol-civicinfo" = dontDistribute super."gogol-civicinfo"; + "gogol-classroom" = dontDistribute super."gogol-classroom"; + "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-dictionary" = dontDistribute super."google-dictionary"; + "google-drive" = dontDistribute super."google-drive"; + "google-html5-slide" = dontDistribute super."google-html5-slide"; + "google-mail-filters" = dontDistribute super."google-mail-filters"; + "google-oauth2" = dontDistribute super."google-oauth2"; + "google-search" = dontDistribute super."google-search"; + "googleplus" = dontDistribute super."googleplus"; + "googlepolyline" = dontDistribute super."googlepolyline"; + "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; + "gpah" = dontDistribute super."gpah"; + "gpcsets" = dontDistribute super."gpcsets"; + "gpolyline" = dontDistribute super."gpolyline"; + "gps" = dontDistribute super."gps"; + "gps2htmlReport" = dontDistribute super."gps2htmlReport"; + "gpx-conduit" = dontDistribute super."gpx-conduit"; + "graceful" = dontDistribute super."graceful"; + "grammar-combinators" = dontDistribute super."grammar-combinators"; + "grapefruit-examples" = dontDistribute super."grapefruit-examples"; + "grapefruit-frp" = dontDistribute super."grapefruit-frp"; + "grapefruit-records" = dontDistribute super."grapefruit-records"; + "grapefruit-ui" = dontDistribute super."grapefruit-ui"; + "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk"; + "graph-core" = doDistribute super."graph-core_0_2_2_0"; + "graph-generators" = dontDistribute super."graph-generators"; + "graph-matchings" = dontDistribute super."graph-matchings"; + "graph-rewriting" = dontDistribute super."graph-rewriting"; + "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl"; + "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl"; + "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope"; + "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout"; + "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski"; + "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies"; + "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs"; + "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww"; + "graph-serialize" = dontDistribute super."graph-serialize"; + "graph-utils" = dontDistribute super."graph-utils"; + "graph-visit" = dontDistribute super."graph-visit"; + "graphbuilder" = dontDistribute super."graphbuilder"; + "graphene" = dontDistribute super."graphene"; + "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators"; + "graphics-formats-collada" = dontDistribute super."graphics-formats-collada"; + "graphicsFormats" = dontDistribute super."graphicsFormats"; + "graphicstools" = dontDistribute super."graphicstools"; + "graphmod" = dontDistribute super."graphmod"; + "graphql" = dontDistribute super."graphql"; + "graphtype" = dontDistribute super."graphtype"; + "grasp" = dontDistribute super."grasp"; + "gray-code" = dontDistribute super."gray-code"; + "gray-extended" = dontDistribute super."gray-extended"; + "graylog" = dontDistribute super."graylog"; + "greencard" = dontDistribute super."greencard"; + "greencard-lib" = dontDistribute super."greencard-lib"; + "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; + "greplicate" = dontDistribute super."greplicate"; + "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; + "gridland" = dontDistribute super."gridland"; + "grm" = dontDistribute super."grm"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; + "groundhog-inspector" = dontDistribute super."groundhog-inspector"; + "group-with" = dontDistribute super."group-with"; + "groupoid" = dontDistribute super."groupoid"; + "gruff" = dontDistribute super."gruff"; + "gruff-examples" = dontDistribute super."gruff-examples"; + "gsc-weighting" = dontDistribute super."gsc-weighting"; + "gsl-random" = dontDistribute super."gsl-random"; + "gsl-random-fu" = dontDistribute super."gsl-random-fu"; + "gsmenu" = dontDistribute super."gsmenu"; + "gstreamer" = dontDistribute super."gstreamer"; + "gt-tools" = dontDistribute super."gt-tools"; + "gtfs" = dontDistribute super."gtfs"; + "gtk-helpers" = dontDistribute super."gtk-helpers"; + "gtk-jsinput" = dontDistribute super."gtk-jsinput"; + "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; + "gtk-mac-integration" = dontDistribute super."gtk-mac-integration"; + "gtk-serialized-event" = dontDistribute super."gtk-serialized-event"; + "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view"; + "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list"; + "gtk-toy" = dontDistribute super."gtk-toy"; + "gtk-traymanager" = dontDistribute super."gtk-traymanager"; + "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade"; + "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib"; + "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs"; + "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk"; + "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext"; + "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2"; + "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; + "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; + "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; + "gtkglext" = dontDistribute super."gtkglext"; + "gtkimageview" = dontDistribute super."gtkimageview"; + "gtkrsync" = dontDistribute super."gtkrsync"; + "gtksourceview2" = dontDistribute super."gtksourceview2"; + "gtksourceview3" = dontDistribute super."gtksourceview3"; + "guarded-rewriting" = dontDistribute super."guarded-rewriting"; + "guess-combinator" = dontDistribute super."guess-combinator"; + "gulcii" = dontDistribute super."gulcii"; + "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis"; + "gyah-bin" = dontDistribute super."gyah-bin"; + "h-booru" = dontDistribute super."h-booru"; + "h-gpgme" = dontDistribute super."h-gpgme"; + "h2048" = dontDistribute super."h2048"; + "hArduino" = dontDistribute super."hArduino"; + "hBDD" = dontDistribute super."hBDD"; + "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD"; + "hBDD-CUDD" = dontDistribute super."hBDD-CUDD"; + "hCsound" = dontDistribute super."hCsound"; + "hDFA" = dontDistribute super."hDFA"; + "hF2" = dontDistribute super."hF2"; + "hGelf" = dontDistribute super."hGelf"; + "hLLVM" = dontDistribute super."hLLVM"; + "hMollom" = dontDistribute super."hMollom"; + "hPDB-examples" = dontDistribute super."hPDB-examples"; + "hPushover" = dontDistribute super."hPushover"; + "hR" = dontDistribute super."hR"; + "hRESP" = dontDistribute super."hRESP"; + "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; + "hSimpleDB" = dontDistribute super."hSimpleDB"; + "hTalos" = dontDistribute super."hTalos"; + "hTensor" = dontDistribute super."hTensor"; + "hVOIDP" = dontDistribute super."hVOIDP"; + "hXmixer" = dontDistribute super."hXmixer"; + "haar" = dontDistribute super."haar"; + "hacanon-light" = dontDistribute super."hacanon-light"; + "hack" = dontDistribute super."hack"; + "hack-contrib" = dontDistribute super."hack-contrib"; + "hack-contrib-press" = dontDistribute super."hack-contrib-press"; + "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack"; + "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi"; + "hack-handler-cgi" = dontDistribute super."hack-handler-cgi"; + "hack-handler-epoll" = dontDistribute super."hack-handler-epoll"; + "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp"; + "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi"; + "hack-handler-happstack" = dontDistribute super."hack-handler-happstack"; + "hack-handler-hyena" = dontDistribute super."hack-handler-hyena"; + "hack-handler-kibro" = dontDistribute super."hack-handler-kibro"; + "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver"; + "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath"; + "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession"; + "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip"; + "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp"; + "hack2" = dontDistribute super."hack2"; + "hack2-contrib" = dontDistribute super."hack2-contrib"; + "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra"; + "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server"; + "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http"; + "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server"; + "hack2-handler-warp" = dontDistribute super."hack2-handler-warp"; + "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; + "hackage-diff" = dontDistribute super."hackage-diff"; + "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-proxy" = dontDistribute super."hackage-proxy"; + "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; + "hackage-security" = dontDistribute super."hackage-security"; + "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; + "hackage-server" = dontDistribute super."hackage-server"; + "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage2hwn" = dontDistribute super."hackage2hwn"; + "hackage2twitter" = dontDistribute super."hackage2twitter"; + "hackager" = dontDistribute super."hackager"; + "hackernews" = dontDistribute super."hackernews"; + "hackertyper" = dontDistribute super."hackertyper"; + "hackport" = dontDistribute super."hackport"; + "hactor" = dontDistribute super."hactor"; + "hactors" = dontDistribute super."hactors"; + "haddock" = dontDistribute super."haddock"; + "haddock-leksah" = dontDistribute super."haddock-leksah"; + "hadoop-formats" = dontDistribute super."hadoop-formats"; + "hadoop-rpc" = dontDistribute super."hadoop-rpc"; + "hadoop-tools" = dontDistribute super."hadoop-tools"; + "haeredes" = dontDistribute super."haeredes"; + "haggis" = dontDistribute super."haggis"; + "haha" = dontDistribute super."haha"; + "hahp" = dontDistribute super."hahp"; + "haiji" = dontDistribute super."haiji"; + "hailgun" = dontDistribute super."hailgun"; + "hailgun-send" = dontDistribute super."hailgun-send"; + "hails" = dontDistribute super."hails"; + "hails-bin" = dontDistribute super."hails-bin"; + "hairy" = dontDistribute super."hairy"; + "hakaru" = dontDistribute super."hakaru"; + "hake" = dontDistribute super."hake"; + "hakismet" = dontDistribute super."hakismet"; + "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; + "hakyll-R" = dontDistribute super."hakyll-R"; + "hakyll-agda" = dontDistribute super."hakyll-agda"; + "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; + "hakyll-contrib" = dontDistribute super."hakyll-contrib"; + "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation"; + "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; + "hakyll-convert" = dontDistribute super."hakyll-convert"; + "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; + "hakyll-sass" = dontDistribute super."hakyll-sass"; + "halberd" = dontDistribute super."halberd"; + "halfs" = dontDistribute super."halfs"; + "halipeto" = dontDistribute super."halipeto"; + "halive" = dontDistribute super."halive"; + "halma" = dontDistribute super."halma"; + "haltavista" = dontDistribute super."haltavista"; + "hamid" = dontDistribute super."hamid"; + "hampp" = dontDistribute super."hampp"; + "hamtmap" = dontDistribute super."hamtmap"; + "hamusic" = dontDistribute super."hamusic"; + "handa-gdata" = dontDistribute super."handa-gdata"; + "handa-geodata" = dontDistribute super."handa-geodata"; + "handa-opengl" = dontDistribute super."handa-opengl"; + "handle-like" = dontDistribute super."handle-like"; + "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; + "hangman" = dontDistribute super."hangman"; + "hannahci" = dontDistribute super."hannahci"; + "hans" = dontDistribute super."hans"; + "hans-pcap" = dontDistribute super."hans-pcap"; + "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; + "happindicator" = dontDistribute super."happindicator"; + "happindicator3" = dontDistribute super."happindicator3"; + "happraise" = dontDistribute super."happraise"; + "happs-hsp" = dontDistribute super."happs-hsp"; + "happs-hsp-template" = dontDistribute super."happs-hsp-template"; + "happs-tutorial" = dontDistribute super."happs-tutorial"; + "happstack" = dontDistribute super."happstack"; + "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = doDistribute super."happstack-authenticate_2_3_4"; + "happstack-contrib" = dontDistribute super."happstack-contrib"; + "happstack-data" = dontDistribute super."happstack-data"; + "happstack-dlg" = dontDistribute super."happstack-dlg"; + "happstack-facebook" = dontDistribute super."happstack-facebook"; + "happstack-fastcgi" = dontDistribute super."happstack-fastcgi"; + "happstack-fay" = dontDistribute super."happstack-fay"; + "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax"; + "happstack-foundation" = dontDistribute super."happstack-foundation"; + "happstack-hamlet" = dontDistribute super."happstack-hamlet"; + "happstack-heist" = dontDistribute super."happstack-heist"; + "happstack-helpers" = dontDistribute super."happstack-helpers"; + "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate"; + "happstack-ixset" = dontDistribute super."happstack-ixset"; + "happstack-lite" = dontDistribute super."happstack-lite"; + "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; + "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; + "happstack-state" = dontDistribute super."happstack-state"; + "happstack-static-routing" = dontDistribute super."happstack-static-routing"; + "happstack-util" = dontDistribute super."happstack-util"; + "happstack-yui" = dontDistribute super."happstack-yui"; + "happy-meta" = dontDistribute super."happy-meta"; + "happybara" = dontDistribute super."happybara"; + "happybara-webkit" = dontDistribute super."happybara-webkit"; + "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "har" = dontDistribute super."har"; + "harchive" = dontDistribute super."harchive"; + "hardware-edsl" = dontDistribute super."hardware-edsl"; + "hark" = dontDistribute super."hark"; + "harmony" = dontDistribute super."harmony"; + "haroonga" = dontDistribute super."haroonga"; + "haroonga-httpd" = dontDistribute super."haroonga-httpd"; + "harpy" = dontDistribute super."harpy"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "hascat" = dontDistribute super."hascat"; + "hascat-lib" = dontDistribute super."hascat-lib"; + "hascat-setup" = dontDistribute super."hascat-setup"; + "hascat-system" = dontDistribute super."hascat-system"; + "hash" = dontDistribute super."hash"; + "hashable-generics" = dontDistribute super."hashable-generics"; + "hashabler" = dontDistribute super."hashabler"; + "hashed-storage" = dontDistribute super."hashed-storage"; + "hashids" = dontDistribute super."hashids"; + "hashring" = dontDistribute super."hashring"; + "hashtables-plus" = dontDistribute super."hashtables-plus"; + "hasim" = dontDistribute super."hasim"; + "hask" = dontDistribute super."hask"; + "hask-home" = dontDistribute super."hask-home"; + "haskades" = dontDistribute super."haskades"; + "haskakafka" = dontDistribute super."haskakafka"; + "haskanoid" = dontDistribute super."haskanoid"; + "haskarrow" = dontDistribute super."haskarrow"; + "haskbot-core" = dontDistribute super."haskbot-core"; + "haskdeep" = dontDistribute super."haskdeep"; + "haskdogs" = dontDistribute super."haskdogs"; + "haskeem" = dontDistribute super."haskeem"; + "haskeline" = doDistribute super."haskeline_0_7_2_2"; + "haskeline-class" = dontDistribute super."haskeline-class"; + "haskell-aliyun" = dontDistribute super."haskell-aliyun"; + "haskell-awk" = dontDistribute super."haskell-awk"; + "haskell-bcrypt" = dontDistribute super."haskell-bcrypt"; + "haskell-brainfuck" = dontDistribute super."haskell-brainfuck"; + "haskell-cnc" = dontDistribute super."haskell-cnc"; + "haskell-coffee" = dontDistribute super."haskell-coffee"; + "haskell-compression" = dontDistribute super."haskell-compression"; + "haskell-course-preludes" = dontDistribute super."haskell-course-preludes"; + "haskell-docs" = dontDistribute super."haskell-docs"; + "haskell-exp-parser" = dontDistribute super."haskell-exp-parser"; + "haskell-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-gi" = dontDistribute super."haskell-gi"; + "haskell-gi-base" = dontDistribute super."haskell-gi-base"; + "haskell-import-graph" = dontDistribute super."haskell-import-graph"; + "haskell-in-space" = dontDistribute super."haskell-in-space"; + "haskell-kubernetes" = dontDistribute super."haskell-kubernetes"; + "haskell-modbus" = dontDistribute super."haskell-modbus"; + "haskell-mpfr" = dontDistribute super."haskell-mpfr"; + "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = dontDistribute super."haskell-names"; + "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; + "haskell-platform-test" = dontDistribute super."haskell-platform-test"; + "haskell-plot" = dontDistribute super."haskell-plot"; + "haskell-qrencode" = dontDistribute super."haskell-qrencode"; + "haskell-read-editor" = dontDistribute super."haskell-read-editor"; + "haskell-reflect" = dontDistribute super."haskell-reflect"; + "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; + "haskell-token-utils" = dontDistribute super."haskell-token-utils"; + "haskell-tor" = dontDistribute super."haskell-tor"; + "haskell-type-exts" = dontDistribute super."haskell-type-exts"; + "haskell-typescript" = dontDistribute super."haskell-typescript"; + "haskell-tyrant" = dontDistribute super."haskell-tyrant"; + "haskell-updater" = dontDistribute super."haskell-updater"; + "haskell-xmpp" = dontDistribute super."haskell-xmpp"; + "haskell2010" = dontDistribute super."haskell2010"; + "haskell98" = dontDistribute super."haskell98"; + "haskell98libraries" = dontDistribute super."haskell98libraries"; + "haskelldb" = dontDistribute super."haskelldb"; + "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc"; + "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl"; + "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf"; + "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers"; + "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted"; + "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic"; + "haskelldb-flat" = dontDistribute super."haskelldb-flat"; + "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc"; + "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql"; + "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc"; + "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql"; + "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3"; + "haskelldb-hsql" = dontDistribute super."haskelldb-hsql"; + "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql"; + "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc"; + "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle"; + "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql"; + "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite"; + "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3"; + "haskelldb-th" = dontDistribute super."haskelldb-th"; + "haskelldb-wx" = dontDistribute super."haskelldb-wx"; + "haskellscrabble" = dontDistribute super."haskellscrabble"; + "haskellscript" = dontDistribute super."haskellscript"; + "haskelm" = dontDistribute super."haskelm"; + "haskgame" = dontDistribute super."haskgame"; + "haskheap" = dontDistribute super."haskheap"; + "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_6_0_0"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-core" = dontDistribute super."haskoin-core"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-node" = dontDistribute super."haskoin-node"; + "haskoin-protocol" = dontDistribute super."haskoin-protocol"; + "haskoin-script" = dontDistribute super."haskoin-script"; + "haskoin-util" = dontDistribute super."haskoin-util"; + "haskoin-wallet" = dontDistribute super."haskoin-wallet"; + "haskoon" = dontDistribute super."haskoon"; + "haskoon-httpspec" = dontDistribute super."haskoon-httpspec"; + "haskoon-salvia" = dontDistribute super."haskoon-salvia"; + "haskore" = dontDistribute super."haskore"; + "haskore-realtime" = dontDistribute super."haskore-realtime"; + "haskore-supercollider" = dontDistribute super."haskore-supercollider"; + "haskore-synthesizer" = dontDistribute super."haskore-synthesizer"; + "haskore-vintage" = dontDistribute super."haskore-vintage"; + "hasktags" = dontDistribute super."hasktags"; + "haslo" = dontDistribute super."haslo"; + "hasloGUI" = dontDistribute super."hasloGUI"; + "hasparql-client" = dontDistribute super."hasparql-client"; + "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_19_6"; + "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative"; + "hasql-pool" = dontDistribute super."hasql-pool"; + "hasql-postgres" = dontDistribute super."hasql-postgres"; + "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; + "hasql-th" = dontDistribute super."hasql-th"; + "hasql-transaction" = dontDistribute super."hasql-transaction"; + "hastache-aeson" = dontDistribute super."hastache-aeson"; + "haste" = dontDistribute super."haste"; + "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-markup" = dontDistribute super."haste-markup"; + "haste-perch" = dontDistribute super."haste-perch"; + "hastily" = dontDistribute super."hastily"; + "hat" = dontDistribute super."hat"; + "hatex-guide" = dontDistribute super."hatex-guide"; + "hath" = dontDistribute super."hath"; + "hatt" = dontDistribute super."hatt"; + "haverer" = dontDistribute super."haverer"; + "hawitter" = dontDistribute super."hawitter"; + "haxl-amazonka" = dontDistribute super."haxl-amazonka"; + "haxl-facebook" = dontDistribute super."haxl-facebook"; + "haxparse" = dontDistribute super."haxparse"; + "haxr" = doDistribute super."haxr_3000_11_1_3"; + "haxr-th" = dontDistribute super."haxr-th"; + "haxy" = dontDistribute super."haxy"; + "hayland" = dontDistribute super."hayland"; + "hayoo-cli" = dontDistribute super."hayoo-cli"; + "hback" = dontDistribute super."hback"; + "hbayes" = dontDistribute super."hbayes"; + "hbb" = dontDistribute super."hbb"; + "hbcd" = dontDistribute super."hbcd"; + "hbeat" = dontDistribute super."hbeat"; + "hblas" = dontDistribute super."hblas"; + "hblock" = dontDistribute super."hblock"; + "hbro" = dontDistribute super."hbro"; + "hbro-contrib" = dontDistribute super."hbro-contrib"; + "hburg" = dontDistribute super."hburg"; + "hcc" = dontDistribute super."hcc"; + "hcg-minus" = dontDistribute super."hcg-minus"; + "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo"; + "hcheat" = dontDistribute super."hcheat"; + "hchesslib" = dontDistribute super."hchesslib"; + "hcltest" = dontDistribute super."hcltest"; + "hcoap" = dontDistribute super."hcoap"; + "hcron" = dontDistribute super."hcron"; + "hcube" = dontDistribute super."hcube"; + "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; + "hdbc-aeson" = dontDistribute super."hdbc-aeson"; + "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; + "hdbc-tuple" = dontDistribute super."hdbc-tuple"; + "hdbi" = dontDistribute super."hdbi"; + "hdbi-conduit" = dontDistribute super."hdbi-conduit"; + "hdbi-postgresql" = dontDistribute super."hdbi-postgresql"; + "hdbi-sqlite" = dontDistribute super."hdbi-sqlite"; + "hdbi-tests" = dontDistribute super."hdbi-tests"; + "hdf" = dontDistribute super."hdf"; + "hdigest" = dontDistribute super."hdigest"; + "hdirect" = dontDistribute super."hdirect"; + "hdis86" = dontDistribute super."hdis86"; + "hdiscount" = dontDistribute super."hdiscount"; + "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; + "hdph" = dontDistribute super."hdph"; + "hdph-closure" = dontDistribute super."hdph-closure"; + "hdr-histogram" = dontDistribute super."hdr-histogram"; + "headergen" = dontDistribute super."headergen"; + "heapsort" = dontDistribute super."heapsort"; + "hecc" = dontDistribute super."hecc"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-pile" = dontDistribute super."hedis-pile"; + "hedis-simple" = dontDistribute super."hedis-simple"; + "hedis-tags" = dontDistribute super."hedis-tags"; + "hedn" = dontDistribute super."hedn"; + "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; + "heist-aeson" = dontDistribute super."heist-aeson"; + "heist-async" = dontDistribute super."heist-async"; + "helics" = dontDistribute super."helics"; + "helics-wai" = dontDistribute super."helics-wai"; + "helisp" = dontDistribute super."helisp"; + "helium" = dontDistribute super."helium"; + "helix" = dontDistribute super."helix"; + "hell" = dontDistribute super."hell"; + "hellage" = dontDistribute super."hellage"; + "hellnet" = dontDistribute super."hellnet"; + "hello" = dontDistribute super."hello"; + "helm" = dontDistribute super."helm"; + "help-esb" = dontDistribute super."help-esb"; + "hemkay" = dontDistribute super."hemkay"; + "hemkay-core" = dontDistribute super."hemkay-core"; + "hemokit" = dontDistribute super."hemokit"; + "hen" = dontDistribute super."hen"; + "henet" = dontDistribute super."henet"; + "hepevt" = dontDistribute super."hepevt"; + "her-lexer" = dontDistribute super."her-lexer"; + "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; + "herbalizer" = dontDistribute super."herbalizer"; + "herf-time" = dontDistribute super."herf-time"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets"; + "heroku" = dontDistribute super."heroku"; + "heroku-persistent" = dontDistribute super."heroku-persistent"; + "herringbone" = dontDistribute super."herringbone"; + "herringbone-embed" = dontDistribute super."herringbone-embed"; + "herringbone-wai" = dontDistribute super."herringbone-wai"; + "hesh" = dontDistribute super."hesh"; + "hesql" = dontDistribute super."hesql"; + "hetero-map" = dontDistribute super."hetero-map"; + "hetris" = dontDistribute super."hetris"; + "heukarya" = dontDistribute super."heukarya"; + "hevolisa" = dontDistribute super."hevolisa"; + "hevolisa-dph" = dontDistribute super."hevolisa-dph"; + "hexdump" = dontDistribute super."hexdump"; + "hexif" = dontDistribute super."hexif"; + "hexpat-iteratee" = dontDistribute super."hexpat-iteratee"; + "hexpat-lens" = dontDistribute super."hexpat-lens"; + "hexpat-pickle" = dontDistribute super."hexpat-pickle"; + "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic"; + "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup"; + "hexpr" = dontDistribute super."hexpr"; + "hexquote" = dontDistribute super."hexquote"; + "heyefi" = dontDistribute super."heyefi"; + "hfann" = dontDistribute super."hfann"; + "hfd" = dontDistribute super."hfd"; + "hfiar" = dontDistribute super."hfiar"; + "hfmt" = dontDistribute super."hfmt"; + "hfoil" = dontDistribute super."hfoil"; + "hformat" = dontDistribute super."hformat"; + "hfov" = dontDistribute super."hfov"; + "hfractal" = dontDistribute super."hfractal"; + "hfusion" = dontDistribute super."hfusion"; + "hg-buildpackage" = dontDistribute super."hg-buildpackage"; + "hgal" = dontDistribute super."hgal"; + "hgalib" = dontDistribute super."hgalib"; + "hgdbmi" = dontDistribute super."hgdbmi"; + "hgearman" = dontDistribute super."hgearman"; + "hgen" = dontDistribute super."hgen"; + "hgeometric" = dontDistribute super."hgeometric"; + "hgeometry" = dontDistribute super."hgeometry"; + "hgithub" = dontDistribute super."hgithub"; + "hgl-example" = dontDistribute super."hgl-example"; + "hgom" = dontDistribute super."hgom"; + "hgopher" = dontDistribute super."hgopher"; + "hgrev" = dontDistribute super."hgrev"; + "hgrib" = dontDistribute super."hgrib"; + "hharp" = dontDistribute super."hharp"; + "hi" = dontDistribute super."hi"; + "hi3status" = dontDistribute super."hi3status"; + "hiccup" = dontDistribute super."hiccup"; + "hichi" = dontDistribute super."hichi"; + "hieraclus" = dontDistribute super."hieraclus"; + "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; + "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions"; + "hierarchy" = dontDistribute super."hierarchy"; + "hiernotify" = dontDistribute super."hiernotify"; + "highWaterMark" = dontDistribute super."highWaterMark"; + "higher-leveldb" = dontDistribute super."higher-leveldb"; + "higherorder" = dontDistribute super."higherorder"; + "highlight-versions" = dontDistribute super."highlight-versions"; + "highlighter" = dontDistribute super."highlighter"; + "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; + "hills" = dontDistribute super."hills"; + "himerge" = dontDistribute super."himerge"; + "himg" = dontDistribute super."himg"; + "himpy" = dontDistribute super."himpy"; + "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; + "hinduce-classifier" = dontDistribute super."hinduce-classifier"; + "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; + "hinduce-examples" = dontDistribute super."hinduce-examples"; + "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinquire" = dontDistribute super."hinquire"; + "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_3"; + "hint-server" = dontDistribute super."hint-server"; + "hinvaders" = dontDistribute super."hinvaders"; + "hinze-streams" = dontDistribute super."hinze-streams"; + "hip" = dontDistribute super."hip"; + "hipbot" = dontDistribute super."hipbot"; + "hipchat-hs" = dontDistribute super."hipchat-hs"; + "hipe" = dontDistribute super."hipe"; + "hips" = dontDistribute super."hips"; + "hircules" = dontDistribute super."hircules"; + "hirt" = dontDistribute super."hirt"; + "hissmetrics" = dontDistribute super."hissmetrics"; + "hist-pl" = dontDistribute super."hist-pl"; + "hist-pl-dawg" = dontDistribute super."hist-pl-dawg"; + "hist-pl-fusion" = dontDistribute super."hist-pl-fusion"; + "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon"; + "hist-pl-lmf" = dontDistribute super."hist-pl-lmf"; + "hist-pl-transliter" = dontDistribute super."hist-pl-transliter"; + "hist-pl-types" = dontDistribute super."hist-pl-types"; + "histogram-fill-binary" = dontDistribute super."histogram-fill-binary"; + "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal"; + "historian" = dontDistribute super."historian"; + "hjcase" = dontDistribute super."hjcase"; + "hjpath" = dontDistribute super."hjpath"; + "hjs" = dontDistribute super."hjs"; + "hjson" = dontDistribute super."hjson"; + "hjson-query" = dontDistribute super."hjson-query"; + "hjsonpointer" = dontDistribute super."hjsonpointer"; + "hjsonschema" = dontDistribute super."hjsonschema"; + "hkdf" = dontDistribute super."hkdf"; + "hlatex" = dontDistribute super."hlatex"; + "hlbfgsb" = dontDistribute super."hlbfgsb"; + "hlcm" = dontDistribute super."hlcm"; + "hleap" = dontDistribute super."hleap"; + "hledger-chart" = dontDistribute super."hledger-chart"; + "hledger-diff" = dontDistribute super."hledger-diff"; + "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlogger" = dontDistribute super."hlogger"; + "hlongurl" = dontDistribute super."hlongurl"; + "hls" = dontDistribute super."hls"; + "hlwm" = dontDistribute super."hlwm"; + "hly" = dontDistribute super."hly"; + "hmark" = dontDistribute super."hmark"; + "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-repa" = dontDistribute super."hmatrix-repa"; + "hmatrix-special" = dontDistribute super."hmatrix-special"; + "hmatrix-static" = dontDistribute super."hmatrix-static"; + "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc"; + "hmatrix-syntax" = dontDistribute super."hmatrix-syntax"; + "hmatrix-tests" = dontDistribute super."hmatrix-tests"; + "hmeap" = dontDistribute super."hmeap"; + "hmeap-utils" = dontDistribute super."hmeap-utils"; + "hmemdb" = dontDistribute super."hmemdb"; + "hmenu" = dontDistribute super."hmenu"; + "hmidi" = dontDistribute super."hmidi"; + "hmk" = dontDistribute super."hmk"; + "hmm" = dontDistribute super."hmm"; + "hmm-hmatrix" = dontDistribute super."hmm-hmatrix"; + "hmp3" = dontDistribute super."hmp3"; + "hmpfr" = dontDistribute super."hmpfr"; + "hmt" = dontDistribute super."hmt"; + "hmt-diagrams" = dontDistribute super."hmt-diagrams"; + "hmumps" = dontDistribute super."hmumps"; + "hnetcdf" = dontDistribute super."hnetcdf"; + "hnix" = dontDistribute super."hnix"; + "hnn" = dontDistribute super."hnn"; + "hnop" = dontDistribute super."hnop"; + "ho-rewriting" = dontDistribute super."ho-rewriting"; + "hoauth" = dontDistribute super."hoauth"; + "hob" = dontDistribute super."hob"; + "hobbes" = dontDistribute super."hobbes"; + "hobbits" = dontDistribute super."hobbits"; + "hoe" = dontDistribute super."hoe"; + "hofix-mtl" = dontDistribute super."hofix-mtl"; + "hog" = dontDistribute super."hog"; + "hogg" = dontDistribute super."hogg"; + "hogre" = dontDistribute super."hogre"; + "hogre-examples" = dontDistribute super."hogre-examples"; + "hois" = dontDistribute super."hois"; + "hoist-error" = dontDistribute super."hoist-error"; + "hold-em" = dontDistribute super."hold-em"; + "hole" = dontDistribute super."hole"; + "holey-format" = dontDistribute super."holey-format"; + "homeomorphic" = dontDistribute super."homeomorphic"; + "hommage" = dontDistribute super."hommage"; + "hommage-ds" = dontDistribute super."hommage-ds"; + "homplexity" = dontDistribute super."homplexity"; + "honi" = dontDistribute super."honi"; + "honk" = dontDistribute super."honk"; + "hoobuddy" = dontDistribute super."hoobuddy"; + "hood" = dontDistribute super."hood"; + "hood-off" = dontDistribute super."hood-off"; + "hood2" = dontDistribute super."hood2"; + "hoodie" = dontDistribute super."hoodie"; + "hoodle" = dontDistribute super."hoodle"; + "hoodle-builder" = dontDistribute super."hoodle-builder"; + "hoodle-core" = dontDistribute super."hoodle-core"; + "hoodle-extra" = dontDistribute super."hoodle-extra"; + "hoodle-parser" = dontDistribute super."hoodle-parser"; + "hoodle-publish" = dontDistribute super."hoodle-publish"; + "hoodle-render" = dontDistribute super."hoodle-render"; + "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle-index" = dontDistribute super."hoogle-index"; + "hooks-dir" = dontDistribute super."hooks-dir"; + "hoovie" = dontDistribute super."hoovie"; + "hopencc" = dontDistribute super."hopencc"; + "hopencl" = dontDistribute super."hopencl"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "hoppy-generator" = dontDistribute super."hoppy-generator"; + "hoppy-runtime" = dontDistribute super."hoppy-runtime"; + "hoppy-std" = dontDistribute super."hoppy-std"; + "hops" = dontDistribute super."hops"; + "hoq" = dontDistribute super."hoq"; + "horizon" = dontDistribute super."horizon"; + "hosc" = dontDistribute super."hosc"; + "hosc-json" = dontDistribute super."hosc-json"; + "hosc-utils" = dontDistribute super."hosc-utils"; + "hosts-server" = dontDistribute super."hosts-server"; + "hothasktags" = dontDistribute super."hothasktags"; + "hotswap" = dontDistribute super."hotswap"; + "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "hp2any-core" = dontDistribute super."hp2any-core"; + "hp2any-graph" = dontDistribute super."hp2any-graph"; + "hp2any-manager" = dontDistribute super."hp2any-manager"; + "hp2html" = dontDistribute super."hp2html"; + "hp2pretty" = dontDistribute super."hp2pretty"; + "hpack" = dontDistribute super."hpack"; + "hpaco" = dontDistribute super."hpaco"; + "hpaco-lib" = dontDistribute super."hpaco-lib"; + "hpage" = dontDistribute super."hpage"; + "hpapi" = dontDistribute super."hpapi"; + "hpaste" = dontDistribute super."hpaste"; + "hpasteit" = dontDistribute super."hpasteit"; + "hpc-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; + "hplayground" = dontDistribute super."hplayground"; + "hplaylist" = dontDistribute super."hplaylist"; + "hpodder" = dontDistribute super."hpodder"; + "hpp" = dontDistribute super."hpp"; + "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; + "hprotoc-fork" = dontDistribute super."hprotoc-fork"; + "hps" = dontDistribute super."hps"; + "hps-cairo" = dontDistribute super."hps-cairo"; + "hps-kmeans" = dontDistribute super."hps-kmeans"; + "hpuz" = dontDistribute super."hpuz"; + "hpygments" = dontDistribute super."hpygments"; + "hpylos" = dontDistribute super."hpylos"; + "hpyrg" = dontDistribute super."hpyrg"; + "hquantlib" = dontDistribute super."hquantlib"; + "hquery" = dontDistribute super."hquery"; + "hranker" = dontDistribute super."hranker"; + "hreader" = dontDistribute super."hreader"; + "hricket" = dontDistribute super."hricket"; + "hruby" = dontDistribute super."hruby"; + "hs-GeoIP" = dontDistribute super."hs-GeoIP"; + "hs-blake2" = dontDistribute super."hs-blake2"; + "hs-captcha" = dontDistribute super."hs-captcha"; + "hs-carbon" = dontDistribute super."hs-carbon"; + "hs-carbon-examples" = dontDistribute super."hs-carbon-examples"; + "hs-cdb" = dontDistribute super."hs-cdb"; + "hs-dotnet" = dontDistribute super."hs-dotnet"; + "hs-duktape" = dontDistribute super."hs-duktape"; + "hs-excelx" = dontDistribute super."hs-excelx"; + "hs-ffmpeg" = dontDistribute super."hs-ffmpeg"; + "hs-fltk" = dontDistribute super."hs-fltk"; + "hs-gchart" = dontDistribute super."hs-gchart"; + "hs-gen-iface" = dontDistribute super."hs-gen-iface"; + "hs-gizapp" = dontDistribute super."hs-gizapp"; + "hs-inspector" = dontDistribute super."hs-inspector"; + "hs-java" = dontDistribute super."hs-java"; + "hs-json-rpc" = dontDistribute super."hs-json-rpc"; + "hs-logo" = dontDistribute super."hs-logo"; + "hs-mesos" = dontDistribute super."hs-mesos"; + "hs-nombre-generator" = dontDistribute super."hs-nombre-generator"; + "hs-pgms" = dontDistribute super."hs-pgms"; + "hs-php-session" = dontDistribute super."hs-php-session"; + "hs-pkg-config" = dontDistribute super."hs-pkg-config"; + "hs-pkpass" = dontDistribute super."hs-pkpass"; + "hs-re" = dontDistribute super."hs-re"; + "hs-scrape" = dontDistribute super."hs-scrape"; + "hs-twitter" = dontDistribute super."hs-twitter"; + "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver"; + "hs-vcard" = dontDistribute super."hs-vcard"; + "hs2048" = dontDistribute super."hs2048"; + "hs2bf" = dontDistribute super."hs2bf"; + "hs2dot" = dontDistribute super."hs2dot"; + "hsConfigure" = dontDistribute super."hsConfigure"; + "hsSqlite3" = dontDistribute super."hsSqlite3"; + "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsay" = dontDistribute super."hsay"; + "hsb2hs" = dontDistribute super."hsb2hs"; + "hsbackup" = dontDistribute super."hsbackup"; + "hsbencher" = dontDistribute super."hsbencher"; + "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed"; + "hsbencher-fusion" = dontDistribute super."hsbencher-fusion"; + "hsc2hs" = dontDistribute super."hsc2hs"; + "hsc3" = dontDistribute super."hsc3"; + "hsc3-auditor" = dontDistribute super."hsc3-auditor"; + "hsc3-cairo" = dontDistribute super."hsc3-cairo"; + "hsc3-data" = dontDistribute super."hsc3-data"; + "hsc3-db" = dontDistribute super."hsc3-db"; + "hsc3-dot" = dontDistribute super."hsc3-dot"; + "hsc3-forth" = dontDistribute super."hsc3-forth"; + "hsc3-graphs" = dontDistribute super."hsc3-graphs"; + "hsc3-lang" = dontDistribute super."hsc3-lang"; + "hsc3-lisp" = dontDistribute super."hsc3-lisp"; + "hsc3-plot" = dontDistribute super."hsc3-plot"; + "hsc3-process" = dontDistribute super."hsc3-process"; + "hsc3-rec" = dontDistribute super."hsc3-rec"; + "hsc3-rw" = dontDistribute super."hsc3-rw"; + "hsc3-server" = dontDistribute super."hsc3-server"; + "hsc3-sf" = dontDistribute super."hsc3-sf"; + "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile"; + "hsc3-unsafe" = dontDistribute super."hsc3-unsafe"; + "hsc3-utils" = dontDistribute super."hsc3-utils"; + "hscamwire" = dontDistribute super."hscamwire"; + "hscassandra" = dontDistribute super."hscassandra"; + "hscd" = dontDistribute super."hscd"; + "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; + "hscope" = dontDistribute super."hscope"; + "hscrtmpl" = dontDistribute super."hscrtmpl"; + "hscuid" = dontDistribute super."hscuid"; + "hscurses" = dontDistribute super."hscurses"; + "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex"; + "hsdev" = dontDistribute super."hsdev"; + "hsdif" = dontDistribute super."hsdif"; + "hsdip" = dontDistribute super."hsdip"; + "hsdns" = dontDistribute super."hsdns"; + "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsemail-ns" = dontDistribute super."hsemail-ns"; + "hsenv" = dontDistribute super."hsenv"; + "hserv" = dontDistribute super."hserv"; + "hset" = dontDistribute super."hset"; + "hsfacter" = dontDistribute super."hsfacter"; + "hsfcsh" = dontDistribute super."hsfcsh"; + "hsfilt" = dontDistribute super."hsfilt"; + "hsgnutls" = dontDistribute super."hsgnutls"; + "hsgnutls-yj" = dontDistribute super."hsgnutls-yj"; + "hsgsom" = dontDistribute super."hsgsom"; + "hsgtd" = dontDistribute super."hsgtd"; + "hsharc" = dontDistribute super."hsharc"; + "hsilop" = dontDistribute super."hsilop"; + "hsimport" = dontDistribute super."hsimport"; + "hsini" = dontDistribute super."hsini"; + "hskeleton" = dontDistribute super."hskeleton"; + "hslackbuilder" = dontDistribute super."hslackbuilder"; + "hslibsvm" = dontDistribute super."hslibsvm"; + "hslinks" = dontDistribute super."hslinks"; + "hslogger-reader" = dontDistribute super."hslogger-reader"; + "hslogger-template" = dontDistribute super."hslogger-template"; + "hslogger4j" = dontDistribute super."hslogger4j"; + "hslogstash" = dontDistribute super."hslogstash"; + "hsmagick" = dontDistribute super."hsmagick"; + "hsmisc" = dontDistribute super."hsmisc"; + "hsmtpclient" = dontDistribute super."hsmtpclient"; + "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector"; + "hsnock" = dontDistribute super."hsnock"; + "hsnoise" = dontDistribute super."hsnoise"; + "hsns" = dontDistribute super."hsns"; + "hsnsq" = dontDistribute super."hsnsq"; + "hsntp" = dontDistribute super."hsntp"; + "hsoptions" = dontDistribute super."hsoptions"; + "hsp-cgi" = dontDistribute super."hsp-cgi"; + "hsparklines" = dontDistribute super."hsparklines"; + "hsparql" = dontDistribute super."hsparql"; + "hspear" = dontDistribute super."hspear"; + "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; + "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; + "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-experimental" = dontDistribute super."hspec-experimental"; + "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-monad-control" = dontDistribute super."hspec-monad-control"; + "hspec-server" = dontDistribute super."hspec-server"; + "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; + "hspec-test-framework" = dontDistribute super."hspec-test-framework"; + "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; + "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; + "hspec2" = dontDistribute super."hspec2"; + "hspr-sh" = dontDistribute super."hspr-sh"; + "hspread" = dontDistribute super."hspread"; + "hspresent" = dontDistribute super."hspresent"; + "hsprocess" = dontDistribute super."hsprocess"; + "hsql" = dontDistribute super."hsql"; + "hsql-mysql" = dontDistribute super."hsql-mysql"; + "hsql-odbc" = dontDistribute super."hsql-odbc"; + "hsql-postgresql" = dontDistribute super."hsql-postgresql"; + "hsql-sqlite3" = dontDistribute super."hsql-sqlite3"; + "hsqml" = dontDistribute super."hsqml"; + "hsqml-datamodel" = dontDistribute super."hsqml-datamodel"; + "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl"; + "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris"; + "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes"; + "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; + "hsqml-morris" = dontDistribute super."hsqml-morris"; + "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; + "hsshellscript" = dontDistribute super."hsshellscript"; + "hssourceinfo" = dontDistribute super."hssourceinfo"; + "hssqlppp" = dontDistribute super."hssqlppp"; + "hstats" = dontDistribute super."hstats"; + "hstest" = dontDistribute super."hstest"; + "hstidy" = dontDistribute super."hstidy"; + "hstorchat" = dontDistribute super."hstorchat"; + "hstradeking" = dontDistribute super."hstradeking"; + "hstyle" = dontDistribute super."hstyle"; + "hstzaar" = dontDistribute super."hstzaar"; + "hsubconvert" = dontDistribute super."hsubconvert"; + "hsverilog" = dontDistribute super."hsverilog"; + "hswip" = dontDistribute super."hswip"; + "hsx" = dontDistribute super."hsx"; + "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsyscall" = dontDistribute super."hsyscall"; + "hszephyr" = dontDistribute super."hszephyr"; + "htags" = dontDistribute super."htags"; + "htar" = dontDistribute super."htar"; + "htiled" = dontDistribute super."htiled"; + "htime" = dontDistribute super."htime"; + "html-email-validate" = dontDistribute super."html-email-validate"; + "html-entities" = dontDistribute super."html-entities"; + "html-kure" = dontDistribute super."html-kure"; + "html-minimalist" = dontDistribute super."html-minimalist"; + "html-rules" = dontDistribute super."html-rules"; + "html-tokenizer" = dontDistribute super."html-tokenizer"; + "html-truncate" = dontDistribute super."html-truncate"; + "html2hamlet" = dontDistribute super."html2hamlet"; + "html5-entity" = dontDistribute super."html5-entity"; + "htodo" = dontDistribute super."htodo"; + "htoml" = dontDistribute super."htoml"; + "htrace" = dontDistribute super."htrace"; + "hts" = dontDistribute super."hts"; + "htsn" = dontDistribute super."htsn"; + "htsn-common" = dontDistribute super."htsn-common"; + "htsn-import" = dontDistribute super."htsn-import"; + "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client-auth" = dontDistribute super."http-client-auth"; + "http-client-conduit" = dontDistribute super."http-client-conduit"; + "http-client-lens" = dontDistribute super."http-client-lens"; + "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; + "http-client-streams" = dontDistribute super."http-client-streams"; + "http-conduit-browser" = dontDistribute super."http-conduit-browser"; + "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-encodings" = dontDistribute super."http-encodings"; + "http-enumerator" = dontDistribute super."http-enumerator"; + "http-kinder" = dontDistribute super."http-kinder"; + "http-kit" = dontDistribute super."http-kit"; + "http-listen" = dontDistribute super."http-listen"; + "http-monad" = dontDistribute super."http-monad"; + "http-proxy" = dontDistribute super."http-proxy"; + "http-querystring" = dontDistribute super."http-querystring"; + "http-server" = dontDistribute super."http-server"; + "http-shed" = dontDistribute super."http-shed"; + "http-test" = dontDistribute super."http-test"; + "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_4_5"; + "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; + "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; + "httpspec" = dontDistribute super."httpspec"; + "htune" = dontDistribute super."htune"; + "htzaar" = dontDistribute super."htzaar"; + "hub" = dontDistribute super."hub"; + "hubigraph" = dontDistribute super."hubigraph"; + "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; + "huffman" = dontDistribute super."huffman"; + "hugs2yc" = dontDistribute super."hugs2yc"; + "hulk" = dontDistribute super."hulk"; + "hums" = dontDistribute super."hums"; + "hunch" = dontDistribute super."hunch"; + "hunit-gui" = dontDistribute super."hunit-gui"; + "hunit-parsec" = dontDistribute super."hunit-parsec"; + "hunit-rematch" = dontDistribute super."hunit-rematch"; + "hunp" = dontDistribute super."hunp"; + "hunt-searchengine" = dontDistribute super."hunt-searchengine"; + "hunt-server" = dontDistribute super."hunt-server"; + "hunt-server-cli" = dontDistribute super."hunt-server-cli"; + "hurdle" = dontDistribute super."hurdle"; + "husk-scheme" = dontDistribute super."husk-scheme"; + "husk-scheme-libs" = dontDistribute super."husk-scheme-libs"; + "husky" = dontDistribute super."husky"; + "hutton" = dontDistribute super."hutton"; + "huttons-razor" = dontDistribute super."huttons-razor"; + "huzzy" = dontDistribute super."huzzy"; + "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hws" = dontDistribute super."hws"; + "hwsl2" = dontDistribute super."hwsl2"; + "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; + "hwsl2-reducers" = dontDistribute super."hwsl2-reducers"; + "hx" = dontDistribute super."hx"; + "hxmppc" = dontDistribute super."hxmppc"; + "hxournal" = dontDistribute super."hxournal"; + "hxt-binary" = dontDistribute super."hxt-binary"; + "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-extras" = dontDistribute super."hxt-extras"; + "hxt-filter" = dontDistribute super."hxt-filter"; + "hxt-xpath" = dontDistribute super."hxt-xpath"; + "hxt-xslt" = dontDistribute super."hxt-xslt"; + "hxthelper" = dontDistribute super."hxthelper"; + "hxweb" = dontDistribute super."hxweb"; + "hyahtzee" = dontDistribute super."hyahtzee"; + "hyakko" = dontDistribute super."hyakko"; + "hybrid" = dontDistribute super."hybrid"; + "hydra-hs" = dontDistribute super."hydra-hs"; + "hydra-print" = dontDistribute super."hydra-print"; + "hydrogen" = dontDistribute super."hydrogen"; + "hydrogen-cli" = dontDistribute super."hydrogen-cli"; + "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args"; + "hydrogen-data" = dontDistribute super."hydrogen-data"; + "hydrogen-multimap" = dontDistribute super."hydrogen-multimap"; + "hydrogen-parsing" = dontDistribute super."hydrogen-parsing"; + "hydrogen-prelude" = dontDistribute super."hydrogen-prelude"; + "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec"; + "hydrogen-syntax" = dontDistribute super."hydrogen-syntax"; + "hydrogen-util" = dontDistribute super."hydrogen-util"; + "hydrogen-version" = dontDistribute super."hydrogen-version"; + "hyena" = dontDistribute super."hyena"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; + "hzk" = dontDistribute super."hzk"; + "i18n" = dontDistribute super."i18n"; + "iCalendar" = dontDistribute super."iCalendar"; + "iException" = dontDistribute super."iException"; + "iap-verifier" = dontDistribute super."iap-verifier"; + "ib-api" = dontDistribute super."ib-api"; + "iban" = dontDistribute super."iban"; + "ibus-hs" = dontDistribute super."ibus-hs"; + "ideas" = dontDistribute super."ideas"; + "ideas-math" = dontDistribute super."ideas-math"; + "idempotent" = dontDistribute super."idempotent"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "idris" = dontDistribute super."idris"; + "ieee" = dontDistribute super."ieee"; + "ieee-utils" = dontDistribute super."ieee-utils"; + "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix"; + "ieee754-parser" = dontDistribute super."ieee754-parser"; + "ifcxt" = dontDistribute super."ifcxt"; + "iff" = dontDistribute super."iff"; + "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_8_3_0"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "illuminate" = dontDistribute super."illuminate"; + "image-type" = dontDistribute super."image-type"; + "imagefilters" = dontDistribute super."imagefilters"; + "imagemagick" = dontDistribute super."imagemagick"; + "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; + "imapget" = dontDistribute super."imapget"; + "imbib" = dontDistribute super."imbib"; + "imgurder" = dontDistribute super."imgurder"; + "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; + "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; + "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; + "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; + "implicit-params" = dontDistribute super."implicit-params"; + "imports" = dontDistribute super."imports"; + "impossible" = dontDistribute super."impossible"; + "improve" = dontDistribute super."improve"; + "inc-ref" = dontDistribute super."inc-ref"; + "inch" = dontDistribute super."inch"; + "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-sat-solver" = dontDistribute super."incremental-sat-solver"; + "increments" = dontDistribute super."increments"; + "indentation" = dontDistribute super."indentation"; + "indentparser" = dontDistribute super."indentparser"; + "index-core" = dontDistribute super."index-core"; + "indexed" = dontDistribute super."indexed"; + "indexed-do-notation" = dontDistribute super."indexed-do-notation"; + "indexed-extras" = dontDistribute super."indexed-extras"; + "indexed-free" = dontDistribute super."indexed-free"; + "indian-language-font-converter" = dontDistribute super."indian-language-font-converter"; + "indices" = dontDistribute super."indices"; + "indieweb-algorithms" = dontDistribute super."indieweb-algorithms"; + "inf-interval" = dontDistribute super."inf-interval"; + "infer-upstream" = dontDistribute super."infer-upstream"; + "infernu" = dontDistribute super."infernu"; + "infinite-search" = dontDistribute super."infinite-search"; + "infinity" = dontDistribute super."infinity"; + "infix" = dontDistribute super."infix"; + "inflist" = dontDistribute super."inflist"; + "influxdb" = dontDistribute super."influxdb"; + "informative" = dontDistribute super."informative"; + "inilist" = dontDistribute super."inilist"; + "inject" = dontDistribute super."inject"; + "inject-function" = dontDistribute super."inject-function"; + "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; + "inserts" = dontDistribute super."inserts"; + "inspection-proxy" = dontDistribute super."inspection-proxy"; + "instant-aeson" = dontDistribute super."instant-aeson"; + "instant-bytes" = dontDistribute super."instant-bytes"; + "instant-deepseq" = dontDistribute super."instant-deepseq"; + "instant-generics" = dontDistribute super."instant-generics"; + "instant-hashable" = dontDistribute super."instant-hashable"; + "instant-zipper" = dontDistribute super."instant-zipper"; + "instinct" = dontDistribute super."instinct"; + "instrument-chord" = dontDistribute super."instrument-chord"; + "int-cast" = dontDistribute super."int-cast"; + "integer-pure" = dontDistribute super."integer-pure"; + "intel-aes" = dontDistribute super."intel-aes"; + "interchangeable" = dontDistribute super."interchangeable"; + "interleavableGen" = dontDistribute super."interleavableGen"; + "interleavableIO" = dontDistribute super."interleavableIO"; + "interleave" = dontDistribute super."interleave"; + "interlude" = dontDistribute super."interlude"; + "intern" = dontDistribute super."intern"; + "internetmarke" = dontDistribute super."internetmarke"; + "interpol" = dontDistribute super."interpol"; + "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; + "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; + "interpolation" = dontDistribute super."interpolation"; + "intricacy" = dontDistribute super."intricacy"; + "intset" = dontDistribute super."intset"; + "invertible-syntax" = dontDistribute super."invertible-syntax"; + "io-capture" = dontDistribute super."io-capture"; + "io-reactive" = dontDistribute super."io-reactive"; + "io-streams-http" = dontDistribute super."io-streams-http"; + "io-throttle" = dontDistribute super."io-throttle"; + "ioctl" = dontDistribute super."ioctl"; + "ioref-stable" = dontDistribute super."ioref-stable"; + "iothread" = dontDistribute super."iothread"; + "iotransaction" = dontDistribute super."iotransaction"; + "ip-quoter" = dontDistribute super."ip-quoter"; + "ipatch" = dontDistribute super."ipatch"; + "ipc" = dontDistribute super."ipc"; + "ipcvar" = dontDistribute super."ipcvar"; + "ipopt-hs" = dontDistribute super."ipopt-hs"; + "ipprint" = dontDistribute super."ipprint"; + "iptables-helpers" = dontDistribute super."iptables-helpers"; + "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; + "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-core" = dontDistribute super."irc-core"; + "irc-dcc" = dontDistribute super."irc-dcc"; + "irc-fun-bot" = dontDistribute super."irc-fun-bot"; + "irc-fun-client" = dontDistribute super."irc-fun-client"; + "irc-fun-color" = dontDistribute super."irc-fun-color"; + "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; + "ircbot" = dontDistribute super."ircbot"; + "ircbouncer" = dontDistribute super."ircbouncer"; + "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; + "iron-mq" = dontDistribute super."iron-mq"; + "ironforge" = dontDistribute super."ironforge"; + "is" = dontDistribute super."is"; + "isdicom" = dontDistribute super."isdicom"; + "isevaluated" = dontDistribute super."isevaluated"; + "isiz" = dontDistribute super."isiz"; + "ismtp" = dontDistribute super."ismtp"; + "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; + "isohunt" = dontDistribute super."isohunt"; + "itanium-abi" = dontDistribute super."itanium-abi"; + "iter-stats" = dontDistribute super."iter-stats"; + "iterIO" = dontDistribute super."iterIO"; + "iteratee" = dontDistribute super."iteratee"; + "iteratee-compress" = dontDistribute super."iteratee-compress"; + "iteratee-mtl" = dontDistribute super."iteratee-mtl"; + "iteratee-parsec" = dontDistribute super."iteratee-parsec"; + "iteratee-stm" = dontDistribute super."iteratee-stm"; + "iterio-server" = dontDistribute super."iterio-server"; + "ivar-simple" = dontDistribute super."ivar-simple"; + "ivor" = dontDistribute super."ivor"; + "ivory" = dontDistribute super."ivory"; + "ivory-backend-c" = dontDistribute super."ivory-backend-c"; + "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-examples" = dontDistribute super."ivory-examples"; + "ivory-hw" = dontDistribute super."ivory-hw"; + "ivory-opts" = dontDistribute super."ivory-opts"; + "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-stdlib" = dontDistribute super."ivory-stdlib"; + "ivy-web" = dontDistribute super."ivy-web"; + "ixdopp" = dontDistribute super."ixdopp"; + "ixmonad" = dontDistribute super."ixmonad"; + "iyql" = dontDistribute super."iyql"; + "j2hs" = dontDistribute super."j2hs"; + "ja-base-extra" = dontDistribute super."ja-base-extra"; + "jack" = dontDistribute super."jack"; + "jack-bindings" = dontDistribute super."jack-bindings"; + "jackminimix" = dontDistribute super."jackminimix"; + "jacobi-roots" = dontDistribute super."jacobi-roots"; + "jail" = dontDistribute super."jail"; + "jailbreak-cabal" = dontDistribute super."jailbreak-cabal"; + "jalaali" = dontDistribute super."jalaali"; + "jalla" = dontDistribute super."jalla"; + "jammittools" = dontDistribute super."jammittools"; + "jarfind" = dontDistribute super."jarfind"; + "java-bridge" = dontDistribute super."java-bridge"; + "java-bridge-extras" = dontDistribute super."java-bridge-extras"; + "java-character" = dontDistribute super."java-character"; + "java-poker" = dontDistribute super."java-poker"; + "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; + "javasf" = dontDistribute super."javasf"; + "javav" = dontDistribute super."javav"; + "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; + "jdi" = dontDistribute super."jdi"; + "jespresso" = dontDistribute super."jespresso"; + "jobqueue" = dontDistribute super."jobqueue"; + "join" = dontDistribute super."join"; + "joinlist" = dontDistribute super."joinlist"; + "jonathanscard" = dontDistribute super."jonathanscard"; + "jort" = dontDistribute super."jort"; + "jose" = dontDistribute super."jose"; + "jpeg" = dontDistribute super."jpeg"; + "js-good-parts" = dontDistribute super."js-good-parts"; + "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-hello" = dontDistribute super."jsaddle-hello"; + "jsc" = dontDistribute super."jsc"; + "jsmw" = dontDistribute super."jsmw"; + "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; + "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_11"; + "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; + "json-enumerator" = dontDistribute super."json-enumerator"; + "json-extra" = dontDistribute super."json-extra"; + "json-fu" = dontDistribute super."json-fu"; + "json-litobj" = dontDistribute super."json-litobj"; + "json-pointer" = dontDistribute super."json-pointer"; + "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; + "json-python" = dontDistribute super."json-python"; + "json-qq" = dontDistribute super."json-qq"; + "json-rpc" = dontDistribute super."json-rpc"; + "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-sop" = dontDistribute super."json-sop"; + "json-state" = dontDistribute super."json-state"; + "json-stream" = dontDistribute super."json-stream"; + "json-togo" = dontDistribute super."json-togo"; + "json-tools" = dontDistribute super."json-tools"; + "json-types" = dontDistribute super."json-types"; + "json2" = dontDistribute super."json2"; + "json2-hdbc" = dontDistribute super."json2-hdbc"; + "json2-types" = dontDistribute super."json2-types"; + "json2yaml" = dontDistribute super."json2yaml"; + "jsonresume" = dontDistribute super."jsonresume"; + "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit"; + "jsonschema-gen" = dontDistribute super."jsonschema-gen"; + "jsonsql" = dontDistribute super."jsonsql"; + "jsontsv" = dontDistribute super."jsontsv"; + "jspath" = dontDistribute super."jspath"; + "judy" = dontDistribute super."judy"; + "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; + "jumpthefive" = dontDistribute super."jumpthefive"; + "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; + "kademlia" = dontDistribute super."kademlia"; + "kafka-client" = dontDistribute super."kafka-client"; + "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; + "kansas-lava" = dontDistribute super."kansas-lava"; + "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; + "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; + "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; + "karakuri" = dontDistribute super."karakuri"; + "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; + "katt" = dontDistribute super."katt"; + "kazura-queue" = dontDistribute super."kazura-queue"; + "kbq-gu" = dontDistribute super."kbq-gu"; + "kd-tree" = dontDistribute super."kd-tree"; + "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; + "keera-callbacks" = dontDistribute super."keera-callbacks"; + "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; + "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; + "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk"; + "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel"; + "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel"; + "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config"; + "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk"; + "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view"; + "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk"; + "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs"; + "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk"; + "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network"; + "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling"; + "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx"; + "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa"; + "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses"; + "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "krpc" = dontDistribute super."krpc"; + "ks-test" = dontDistribute super."ks-test"; + "ktx" = dontDistribute super."ktx"; + "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate"; + "kyotocabinet" = dontDistribute super."kyotocabinet"; + "l-bfgs-b" = dontDistribute super."l-bfgs-b"; + "labeled-graph" = dontDistribute super."labeled-graph"; + "labeled-tree" = dontDistribute super."labeled-tree"; + "laborantin-hs" = dontDistribute super."laborantin-hs"; + "labyrinth" = dontDistribute super."labyrinth"; + "labyrinth-server" = dontDistribute super."labyrinth-server"; + "lackey" = dontDistribute super."lackey"; + "lagrangian" = dontDistribute super."lagrangian"; + "laika" = dontDistribute super."laika"; + "lambda-ast" = dontDistribute super."lambda-ast"; + "lambda-bridge" = dontDistribute super."lambda-bridge"; + "lambda-canvas" = dontDistribute super."lambda-canvas"; + "lambda-devs" = dontDistribute super."lambda-devs"; + "lambda-options" = dontDistribute super."lambda-options"; + "lambda-placeholders" = dontDistribute super."lambda-placeholders"; + "lambda-toolbox" = dontDistribute super."lambda-toolbox"; + "lambda2js" = dontDistribute super."lambda2js"; + "lambdaBase" = dontDistribute super."lambdaBase"; + "lambdaFeed" = dontDistribute super."lambdaFeed"; + "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = dontDistribute super."lambdabot"; + "lambdabot-core" = dontDistribute super."lambdabot-core"; + "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins"; + "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins"; + "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins"; + "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins"; + "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins"; + "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins"; + "lambdabot-trusted" = dontDistribute super."lambdabot-trusted"; + "lambdabot-utils" = dontDistribute super."lambdabot-utils"; + "lambdacat" = dontDistribute super."lambdacat"; + "lambdacms-core" = dontDistribute super."lambdacms-core"; + "lambdacms-media" = dontDistribute super."lambdacms-media"; + "lambdacube" = dontDistribute super."lambdacube"; + "lambdacube-bullet" = dontDistribute super."lambdacube-bullet"; + "lambdacube-compiler" = dontDistribute super."lambdacube-compiler"; + "lambdacube-core" = dontDistribute super."lambdacube-core"; + "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; + "lambdacube-engine" = dontDistribute super."lambdacube-engine"; + "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = dontDistribute super."lambdacube-gl"; + "lambdacube-ir" = dontDistribute super."lambdacube-ir"; + "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; + "lambdatwit" = dontDistribute super."lambdatwit"; + "lambdiff" = dontDistribute super."lambdiff"; + "lame-tester" = dontDistribute super."lame-tester"; + "language-asn1" = dontDistribute super."language-asn1"; + "language-bash" = dontDistribute super."language-bash"; + "language-boogie" = dontDistribute super."language-boogie"; + "language-c-comments" = dontDistribute super."language-c-comments"; + "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = dontDistribute super."language-c-quote"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "language-dot" = dontDistribute super."language-dot"; + "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; + "language-eiffel" = dontDistribute super."language-eiffel"; + "language-fortran" = dontDistribute super."language-fortran"; + "language-gcl" = dontDistribute super."language-gcl"; + "language-go" = dontDistribute super."language-go"; + "language-guess" = dontDistribute super."language-guess"; + "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; + "language-kort" = dontDistribute super."language-kort"; + "language-lua" = dontDistribute super."language-lua"; + "language-lua-qq" = dontDistribute super."language-lua-qq"; + "language-mixal" = dontDistribute super."language-mixal"; + "language-objc" = dontDistribute super."language-objc"; + "language-openscad" = dontDistribute super."language-openscad"; + "language-pig" = dontDistribute super."language-pig"; + "language-puppet" = dontDistribute super."language-puppet"; + "language-python" = dontDistribute super."language-python"; + "language-python-colour" = dontDistribute super."language-python-colour"; + "language-python-test" = dontDistribute super."language-python-test"; + "language-qux" = dontDistribute super."language-qux"; + "language-sh" = dontDistribute super."language-sh"; + "language-slice" = dontDistribute super."language-slice"; + "language-spelling" = dontDistribute super."language-spelling"; + "language-sqlite" = dontDistribute super."language-sqlite"; + "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; + "language-typescript" = dontDistribute super."language-typescript"; + "language-vhdl" = dontDistribute super."language-vhdl"; + "lat" = dontDistribute super."lat"; + "latest-npm-version" = dontDistribute super."latest-npm-version"; + "latex" = dontDistribute super."latex"; + "launchpad-control" = dontDistribute super."launchpad-control"; + "lax" = dontDistribute super."lax"; + "layers" = dontDistribute super."layers"; + "layers-game" = dontDistribute super."layers-game"; + "layout" = dontDistribute super."layout"; + "layout-bootstrap" = dontDistribute super."layout-bootstrap"; + "lazy-io" = dontDistribute super."lazy-io"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysmallcheck" = dontDistribute super."lazysmallcheck"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "leksah" = dontDistribute super."leksah"; + "leksah-server" = dontDistribute super."leksah-server"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; + "lens-properties" = dontDistribute super."lens-properties"; + "lens-sop" = dontDistribute super."lens-sop"; + "lens-text-encoding" = dontDistribute super."lens-text-encoding"; + "lens-time" = dontDistribute super."lens-time"; + "lens-tutorial" = dontDistribute super."lens-tutorial"; + "lens-utils" = dontDistribute super."lens-utils"; + "lenses" = dontDistribute super."lenses"; + "lensref" = dontDistribute super."lensref"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; + "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; + "levmar" = dontDistribute super."levmar"; + "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; + "lgtk" = dontDistribute super."lgtk"; + "lha" = dontDistribute super."lha"; + "lhae" = dontDistribute super."lhae"; + "lhc" = dontDistribute super."lhc"; + "lhe" = dontDistribute super."lhe"; + "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl"; + "lhs2html" = dontDistribute super."lhs2html"; + "lhslatex" = dontDistribute super."lhslatex"; + "libGenI" = dontDistribute super."libGenI"; + "libarchive-conduit" = dontDistribute super."libarchive-conduit"; + "libconfig" = dontDistribute super."libconfig"; + "libcspm" = dontDistribute super."libcspm"; + "libexpect" = dontDistribute super."libexpect"; + "libffi" = dontDistribute super."libffi"; + "libgraph" = dontDistribute super."libgraph"; + "libhbb" = dontDistribute super."libhbb"; + "libjenkins" = dontDistribute super."libjenkins"; + "liblastfm" = dontDistribute super."liblastfm"; + "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; + "libltdl" = dontDistribute super."libltdl"; + "libmpd" = dontDistribute super."libmpd"; + "libnvvm" = dontDistribute super."libnvvm"; + "liboleg" = dontDistribute super."liboleg"; + "libpafe" = dontDistribute super."libpafe"; + "libpq" = dontDistribute super."libpq"; + "librandomorg" = dontDistribute super."librandomorg"; + "libravatar" = dontDistribute super."libravatar"; + "libssh2" = dontDistribute super."libssh2"; + "libssh2-conduit" = dontDistribute super."libssh2-conduit"; + "libstackexchange" = dontDistribute super."libstackexchange"; + "libsystemd-daemon" = dontDistribute super."libsystemd-daemon"; + "libtagc" = dontDistribute super."libtagc"; + "libvirt-hs" = dontDistribute super."libvirt-hs"; + "libvorbis" = dontDistribute super."libvorbis"; + "libxls" = dontDistribute super."libxls"; + "libxml" = dontDistribute super."libxml"; + "libxml-enumerator" = dontDistribute super."libxml-enumerator"; + "libxslt" = dontDistribute super."libxslt"; + "life" = dontDistribute super."life"; + "lift-generics" = dontDistribute super."lift-generics"; + "lifted-threads" = dontDistribute super."lifted-threads"; + "lifter" = dontDistribute super."lifter"; + "ligature" = dontDistribute super."ligature"; + "ligd" = dontDistribute super."ligd"; + "lighttpd-conf" = dontDistribute super."lighttpd-conf"; + "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq"; + "lilypond" = dontDistribute super."lilypond"; + "limp" = dontDistribute super."limp"; + "limp-cbc" = dontDistribute super."limp-cbc"; + "lin-alg" = dontDistribute super."lin-alg"; + "linda" = dontDistribute super."linda"; + "lindenmayer" = dontDistribute super."lindenmayer"; + "line-break" = dontDistribute super."line-break"; + "line2pdf" = dontDistribute super."line2pdf"; + "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; + "linear-circuit" = dontDistribute super."linear-circuit"; + "linear-grammar" = dontDistribute super."linear-grammar"; + "linear-maps" = dontDistribute super."linear-maps"; + "linear-opengl" = dontDistribute super."linear-opengl"; + "linear-vect" = dontDistribute super."linear-vect"; + "linearEqSolver" = dontDistribute super."linearEqSolver"; + "linearscan" = dontDistribute super."linearscan"; + "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; + "linebreak" = dontDistribute super."linebreak"; + "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; + "linkchk" = dontDistribute super."linkchk"; + "linkcore" = dontDistribute super."linkcore"; + "linkedhashmap" = dontDistribute super."linkedhashmap"; + "linklater" = dontDistribute super."linklater"; + "linode" = dontDistribute super."linode"; + "linux-blkid" = dontDistribute super."linux-blkid"; + "linux-cgroup" = dontDistribute super."linux-cgroup"; + "linux-evdev" = dontDistribute super."linux-evdev"; + "linux-inotify" = dontDistribute super."linux-inotify"; + "linux-kmod" = dontDistribute super."linux-kmod"; + "linux-mount" = dontDistribute super."linux-mount"; + "linux-perf" = dontDistribute super."linux-perf"; + "linux-ptrace" = dontDistribute super."linux-ptrace"; + "linux-xattr" = dontDistribute super."linux-xattr"; + "linx-gateway" = dontDistribute super."linx-gateway"; + "lio" = dontDistribute super."lio"; + "lio-eci11" = dontDistribute super."lio-eci11"; + "lio-fs" = dontDistribute super."lio-fs"; + "lio-simple" = dontDistribute super."lio-simple"; + "lipsum-gen" = dontDistribute super."lipsum-gen"; + "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; + "liquidhaskell" = dontDistribute super."liquidhaskell"; + "lispparser" = dontDistribute super."lispparser"; + "list-extras" = dontDistribute super."list-extras"; + "list-grouping" = dontDistribute super."list-grouping"; + "list-mux" = dontDistribute super."list-mux"; + "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; + "list-t-html-parser" = dontDistribute super."list-t-html-parser"; + "list-t-http-client" = dontDistribute super."list-t-http-client"; + "list-t-libcurl" = dontDistribute super."list-t-libcurl"; + "list-t-text" = dontDistribute super."list-t-text"; + "list-tries" = dontDistribute super."list-tries"; + "list-zip-def" = dontDistribute super."list-zip-def"; + "listlike-instances" = dontDistribute super."listlike-instances"; + "lists" = dontDistribute super."lists"; + "listsafe" = dontDistribute super."listsafe"; + "lit" = dontDistribute super."lit"; + "literals" = dontDistribute super."literals"; + "live-sequencer" = dontDistribute super."live-sequencer"; + "ll-picosat" = dontDistribute super."ll-picosat"; + "llrbtree" = dontDistribute super."llrbtree"; + "llsd" = dontDistribute super."llsd"; + "llvm" = dontDistribute super."llvm"; + "llvm-analysis" = dontDistribute super."llvm-analysis"; + "llvm-base" = dontDistribute super."llvm-base"; + "llvm-base-types" = dontDistribute super."llvm-base-types"; + "llvm-base-util" = dontDistribute super."llvm-base-util"; + "llvm-data-interop" = dontDistribute super."llvm-data-interop"; + "llvm-extra" = dontDistribute super."llvm-extra"; + "llvm-ffi" = dontDistribute super."llvm-ffi"; + "llvm-general" = dontDistribute super."llvm-general"; + "llvm-general-pure" = dontDistribute super."llvm-general-pure"; + "llvm-general-quote" = dontDistribute super."llvm-general-quote"; + "llvm-ht" = dontDistribute super."llvm-ht"; + "llvm-pkg-config" = dontDistribute super."llvm-pkg-config"; + "llvm-pretty" = dontDistribute super."llvm-pretty"; + "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser"; + "llvm-tf" = dontDistribute super."llvm-tf"; + "llvm-tools" = dontDistribute super."llvm-tools"; + "lmdb" = dontDistribute super."lmdb"; + "lmonad" = dontDistribute super."lmonad"; + "lmonad-yesod" = dontDistribute super."lmonad-yesod"; + "loadavg" = dontDistribute super."loadavg"; + "local-address" = dontDistribute super."local-address"; + "local-search" = dontDistribute super."local-search"; + "located-base" = dontDistribute super."located-base"; + "locators" = dontDistribute super."locators"; + "loch" = dontDistribute super."loch"; + "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; + "lockfree-queue" = dontDistribute super."lockfree-queue"; + "log" = dontDistribute super."log"; + "log-effect" = dontDistribute super."log-effect"; + "log2json" = dontDistribute super."log2json"; + "logfloat" = dontDistribute super."logfloat"; + "logger" = dontDistribute super."logger"; + "logging" = dontDistribute super."logging"; + "logging-effect" = dontDistribute super."logging-effect"; + "logging-facade-journald" = dontDistribute super."logging-facade-journald"; + "logic-TPTP" = dontDistribute super."logic-TPTP"; + "logic-classes" = dontDistribute super."logic-classes"; + "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; + "logplex-parse" = dontDistribute super."logplex-parse"; + "logsink" = dontDistribute super."logsink"; + "lojban" = dontDistribute super."lojban"; + "lojbanParser" = dontDistribute super."lojbanParser"; + "lojbanXiragan" = dontDistribute super."lojbanXiragan"; + "lojysamban" = dontDistribute super."lojysamban"; + "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; + "loli" = dontDistribute super."loli"; + "lookup-tables" = dontDistribute super."lookup-tables"; + "loop-effin" = dontDistribute super."loop-effin"; + "loop-while" = dontDistribute super."loop-while"; + "loops" = dontDistribute super."loops"; + "loopy" = dontDistribute super."loopy"; + "lord" = dontDistribute super."lord"; + "lorem" = dontDistribute super."lorem"; + "loris" = dontDistribute super."loris"; + "loshadka" = dontDistribute super."loshadka"; + "lostcities" = dontDistribute super."lostcities"; + "lowgl" = dontDistribute super."lowgl"; + "lp-diagrams" = dontDistribute super."lp-diagrams"; + "lp-diagrams-svg" = dontDistribute super."lp-diagrams-svg"; + "ls-usb" = dontDistribute super."ls-usb"; + "lscabal" = dontDistribute super."lscabal"; + "lss" = dontDistribute super."lss"; + "lsystem" = dontDistribute super."lsystem"; + "ltk" = dontDistribute super."ltk"; + "ltl" = dontDistribute super."ltl"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luka" = dontDistribute super."luka"; + "luminance" = doDistribute super."luminance_0_9_1_2"; + "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; + "lushtags" = dontDistribute super."lushtags"; + "luthor" = dontDistribute super."luthor"; + "lvish" = dontDistribute super."lvish"; + "lvmlib" = dontDistribute super."lvmlib"; + "lvmrun" = dontDistribute super."lvmrun"; + "lxc" = dontDistribute super."lxc"; + "lye" = dontDistribute super."lye"; + "lz4" = dontDistribute super."lz4"; + "lzma" = dontDistribute super."lzma"; + "lzma-clib" = dontDistribute super."lzma-clib"; + "lzma-enumerator" = dontDistribute super."lzma-enumerator"; + "lzma-streams" = dontDistribute super."lzma-streams"; + "maam" = dontDistribute super."maam"; + "mac" = dontDistribute super."mac"; + "maccatcher" = dontDistribute super."maccatcher"; + "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; + "machines-zlib" = dontDistribute super."machines-zlib"; + "macho" = dontDistribute super."macho"; + "maclight" = dontDistribute super."maclight"; + "macosx-make-standalone" = dontDistribute super."macosx-make-standalone"; + "mage" = dontDistribute super."mage"; + "magico" = dontDistribute super."magico"; + "magma" = dontDistribute super."magma"; + "mahoro" = dontDistribute super."mahoro"; + "maid" = dontDistribute super."maid"; + "mailbox-count" = dontDistribute super."mailbox-count"; + "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; + "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = dontDistribute super."mainland-pretty"; + "majordomo" = dontDistribute super."majordomo"; + "majority" = dontDistribute super."majority"; + "make-hard-links" = dontDistribute super."make-hard-links"; + "make-package" = dontDistribute super."make-package"; + "makedo" = dontDistribute super."makedo"; + "manatee" = dontDistribute super."manatee"; + "manatee-all" = dontDistribute super."manatee-all"; + "manatee-anything" = dontDistribute super."manatee-anything"; + "manatee-browser" = dontDistribute super."manatee-browser"; + "manatee-core" = dontDistribute super."manatee-core"; + "manatee-curl" = dontDistribute super."manatee-curl"; + "manatee-editor" = dontDistribute super."manatee-editor"; + "manatee-filemanager" = dontDistribute super."manatee-filemanager"; + "manatee-imageviewer" = dontDistribute super."manatee-imageviewer"; + "manatee-ircclient" = dontDistribute super."manatee-ircclient"; + "manatee-mplayer" = dontDistribute super."manatee-mplayer"; + "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer"; + "manatee-processmanager" = dontDistribute super."manatee-processmanager"; + "manatee-reader" = dontDistribute super."manatee-reader"; + "manatee-template" = dontDistribute super."manatee-template"; + "manatee-terminal" = dontDistribute super."manatee-terminal"; + "manatee-welcome" = dontDistribute super."manatee-welcome"; + "mancala" = dontDistribute super."mancala"; + "mandulia" = dontDistribute super."mandulia"; + "manifold-random" = dontDistribute super."manifold-random"; + "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; + "marionetta" = dontDistribute super."marionetta"; + "markdown-kate" = dontDistribute super."markdown-kate"; + "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown2svg" = dontDistribute super."markdown2svg"; + "marked-pretty" = dontDistribute super."marked-pretty"; + "markov" = dontDistribute super."markov"; + "markov-chain" = dontDistribute super."markov-chain"; + "markov-processes" = dontDistribute super."markov-processes"; + "markup-preview" = dontDistribute super."markup-preview"; + "marmalade-upload" = dontDistribute super."marmalade-upload"; + "marquise" = dontDistribute super."marquise"; + "marxup" = dontDistribute super."marxup"; + "masakazu-bot" = dontDistribute super."masakazu-bot"; + "mastermind" = dontDistribute super."mastermind"; + "matchers" = dontDistribute super."matchers"; + "mathblog" = dontDistribute super."mathblog"; + "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; + "mathlink" = dontDistribute super."mathlink"; + "matlab" = dontDistribute super."matlab"; + "matrix-market" = dontDistribute super."matrix-market"; + "matrix-market-pure" = dontDistribute super."matrix-market-pure"; + "matsuri" = dontDistribute super."matsuri"; + "maude" = dontDistribute super."maude"; + "maxent" = dontDistribute super."maxent"; + "maxsharing" = dontDistribute super."maxsharing"; + "maybe-justify" = dontDistribute super."maybe-justify"; + "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; + "mbox-tools" = dontDistribute super."mbox-tools"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcpi" = dontDistribute super."mcpi"; + "mdapi" = dontDistribute super."mdapi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mdp" = dontDistribute super."mdp"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_3_0"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "melody" = dontDistribute super."melody"; + "memcache" = dontDistribute super."memcache"; + "memcache-conduit" = dontDistribute super."memcache-conduit"; + "memcache-haskell" = dontDistribute super."memcache-haskell"; + "memcached" = dontDistribute super."memcached"; + "memexml" = dontDistribute super."memexml"; + "memo-ptr" = dontDistribute super."memo-ptr"; + "memo-sqlite" = dontDistribute super."memo-sqlite"; + "memscript" = dontDistribute super."memscript"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "messente" = dontDistribute super."messente"; + "meta-misc" = dontDistribute super."meta-misc"; + "meta-par" = dontDistribute super."meta-par"; + "meta-par-accelerate" = dontDistribute super."meta-par-accelerate"; + "metadata" = dontDistribute super."metadata"; + "metamorphic" = dontDistribute super."metamorphic"; + "metaplug" = dontDistribute super."metaplug"; + "metric" = dontDistribute super."metric"; + "metricsd-client" = dontDistribute super."metricsd-client"; + "metronome" = dontDistribute super."metronome"; + "mezzolens" = dontDistribute super."mezzolens"; + "mfsolve" = dontDistribute super."mfsolve"; + "mgeneric" = dontDistribute super."mgeneric"; + "mi" = dontDistribute super."mi"; + "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = doDistribute super."microformats2-parser_1_0_1_3"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens-each" = dontDistribute super."microlens-each"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minilens" = dontDistribute super."minilens"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; + "modbus-tcp" = dontDistribute super."modbus-tcp"; + "modelicaparser" = dontDistribute super."modelicaparser"; + "modsplit" = dontDistribute super."modsplit"; + "modular-arithmetic" = dontDistribute super."modular-arithmetic"; + "modular-prelude" = dontDistribute super."modular-prelude"; + "modular-prelude-classy" = dontDistribute super."modular-prelude-classy"; + "module-management" = dontDistribute super."module-management"; + "modulespection" = dontDistribute super."modulespection"; + "modulo" = dontDistribute super."modulo"; + "moe" = dontDistribute super."moe"; + "mohws" = dontDistribute super."mohws"; + "monad-abort-fd" = dontDistribute super."monad-abort-fd"; + "monad-atom" = dontDistribute super."monad-atom"; + "monad-atom-simple" = dontDistribute super."monad-atom-simple"; + "monad-bool" = dontDistribute super."monad-bool"; + "monad-classes" = dontDistribute super."monad-classes"; + "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; + "monad-exception" = dontDistribute super."monad-exception"; + "monad-fork" = dontDistribute super."monad-fork"; + "monad-gen" = dontDistribute super."monad-gen"; + "monad-interleave" = dontDistribute super."monad-interleave"; + "monad-levels" = dontDistribute super."monad-levels"; + "monad-loops-stm" = dontDistribute super."monad-loops-stm"; + "monad-lrs" = dontDistribute super."monad-lrs"; + "monad-memo" = dontDistribute super."monad-memo"; + "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; + "monad-open" = dontDistribute super."monad-open"; + "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; + "monad-param" = dontDistribute super."monad-param"; + "monad-ran" = dontDistribute super."monad-ran"; + "monad-resumption" = dontDistribute super."monad-resumption"; + "monad-state" = dontDistribute super."monad-state"; + "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-stlike-io" = dontDistribute super."monad-stlike-io"; + "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; + "monad-supply" = dontDistribute super."monad-supply"; + "monad-task" = dontDistribute super."monad-task"; + "monad-tx" = dontDistribute super."monad-tx"; + "monad-unify" = dontDistribute super."monad-unify"; + "monad-wrap" = dontDistribute super."monad-wrap"; + "monadIO" = dontDistribute super."monadIO"; + "monadLib-compose" = dontDistribute super."monadLib-compose"; + "monadacme" = dontDistribute super."monadacme"; + "monadbi" = dontDistribute super."monadbi"; + "monadfibre" = dontDistribute super."monadfibre"; + "monadiccp" = dontDistribute super."monadiccp"; + "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; + "monadio-unwrappable" = dontDistribute super."monadio-unwrappable"; + "monadlist" = dontDistribute super."monadlist"; + "monadloc-pp" = dontDistribute super."monadloc-pp"; + "monadplus" = dontDistribute super."monadplus"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-owns" = dontDistribute super."monoid-owns"; + "monoid-record" = dontDistribute super."monoid-record"; + "monoid-statistics" = dontDistribute super."monoid-statistics"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidplus" = dontDistribute super."monoidplus"; + "monoids" = dontDistribute super."monoids"; + "monomorphic" = dontDistribute super."monomorphic"; + "montage" = dontDistribute super."montage"; + "montage-client" = dontDistribute super."montage-client"; + "monte-carlo" = dontDistribute super."monte-carlo"; + "moo" = dontDistribute super."moo"; + "moonshine" = dontDistribute super."moonshine"; + "morfette" = dontDistribute super."morfette"; + "morfeusz" = dontDistribute super."morfeusz"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; + "ms" = dontDistribute super."ms"; + "msgpack" = dontDistribute super."msgpack"; + "msgpack-aeson" = dontDistribute super."msgpack-aeson"; + "msgpack-idl" = dontDistribute super."msgpack-idl"; + "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; + "msu" = dontDistribute super."msu"; + "mtgoxapi" = dontDistribute super."mtgoxapi"; + "mtl-c" = dontDistribute super."mtl-c"; + "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-tf" = dontDistribute super."mtl-tf"; + "mtl-unleashed" = dontDistribute super."mtl-unleashed"; + "mtlparse" = dontDistribute super."mtlparse"; + "mtlx" = dontDistribute super."mtlx"; + "mtp" = dontDistribute super."mtp"; + "mtree" = dontDistribute super."mtree"; + "mucipher" = dontDistribute super."mucipher"; + "mudbath" = dontDistribute super."mudbath"; + "muesli" = dontDistribute super."muesli"; + "mueval" = dontDistribute super."mueval"; + "mulang" = dontDistribute super."mulang"; + "multext-east-msd" = dontDistribute super."multext-east-msd"; + "multi-cabal" = dontDistribute super."multi-cabal"; + "multiaddr" = dontDistribute super."multiaddr"; + "multifocal" = dontDistribute super."multifocal"; + "multihash" = dontDistribute super."multihash"; + "multipart-names" = dontDistribute super."multipart-names"; + "multipass" = dontDistribute super."multipass"; + "multiplate-simplified" = dontDistribute super."multiplate-simplified"; + "multiplicity" = dontDistribute super."multiplicity"; + "multirec" = dontDistribute super."multirec"; + "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; + "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset-comb" = dontDistribute super."multiset-comb"; + "multisetrewrite" = dontDistribute super."multisetrewrite"; + "multistate" = dontDistribute super."multistate"; + "muon" = dontDistribute super."muon"; + "murder" = dontDistribute super."murder"; + "murmur3" = dontDistribute super."murmur3"; + "murmurhash3" = dontDistribute super."murmurhash3"; + "music-articulation" = dontDistribute super."music-articulation"; + "music-diatonic" = dontDistribute super."music-diatonic"; + "music-dynamics" = dontDistribute super."music-dynamics"; + "music-dynamics-literal" = dontDistribute super."music-dynamics-literal"; + "music-graphics" = dontDistribute super."music-graphics"; + "music-parts" = dontDistribute super."music-parts"; + "music-pitch" = dontDistribute super."music-pitch"; + "music-pitch-literal" = dontDistribute super."music-pitch-literal"; + "music-preludes" = dontDistribute super."music-preludes"; + "music-score" = dontDistribute super."music-score"; + "music-sibelius" = dontDistribute super."music-sibelius"; + "music-suite" = dontDistribute super."music-suite"; + "music-util" = dontDistribute super."music-util"; + "musicbrainz-email" = dontDistribute super."musicbrainz-email"; + "musicxml" = dontDistribute super."musicxml"; + "musicxml2" = dontDistribute super."musicxml2"; + "mustache-haskell" = dontDistribute super."mustache-haskell"; + "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-iter" = dontDistribute super."mutable-iter"; + "mute-unmute" = dontDistribute super."mute-unmute"; + "mvc" = dontDistribute super."mvc"; + "mvc-updates" = dontDistribute super."mvc-updates"; + "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = doDistribute super."mwc-probability_1_0_3"; + "mwc-random-monad" = dontDistribute super."mwc-random-monad"; + "myTestlll" = dontDistribute super."myTestlll"; + "mybitcoin-sci" = dontDistribute super."mybitcoin-sci"; + "myo" = dontDistribute super."myo"; + "mysnapsession" = dontDistribute super."mysnapsession"; + "mysnapsession-example" = dontDistribute super."mysnapsession-example"; + "mysql-effect" = dontDistribute super."mysql-effect"; + "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi"; + "mysql-simple-typed" = dontDistribute super."mysql-simple-typed"; + "mzv" = dontDistribute super."mzv"; + "n-m" = dontDistribute super."n-m"; + "nagios-perfdata" = dontDistribute super."nagios-perfdata"; + "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg"; + "named-formlet" = dontDistribute super."named-formlet"; + "named-lock" = dontDistribute super."named-lock"; + "named-records" = dontDistribute super."named-records"; + "namelist" = dontDistribute super."namelist"; + "names" = dontDistribute super."names"; + "names-th" = dontDistribute super."names-th"; + "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; + "nano-hmac" = dontDistribute super."nano-hmac"; + "nano-md5" = dontDistribute super."nano-md5"; + "nanoAgda" = dontDistribute super."nanoAgda"; + "nanocurses" = dontDistribute super."nanocurses"; + "nanomsg" = dontDistribute super."nanomsg"; + "nanomsg-haskell" = dontDistribute super."nanomsg-haskell"; + "nanoparsec" = dontDistribute super."nanoparsec"; + "nanq" = dontDistribute super."nanq"; + "narc" = dontDistribute super."narc"; + "nat" = dontDistribute super."nat"; + "nats-queue" = dontDistribute super."nats-queue"; + "natural-number" = dontDistribute super."natural-number"; + "natural-numbers" = dontDistribute super."natural-numbers"; + "natural-transformation" = dontDistribute super."natural-transformation"; + "naturalcomp" = dontDistribute super."naturalcomp"; + "naturals" = dontDistribute super."naturals"; + "naver-translate" = dontDistribute super."naver-translate"; + "nbt" = dontDistribute super."nbt"; + "nc-indicators" = dontDistribute super."nc-indicators"; + "ncurses" = dontDistribute super."ncurses"; + "neat" = dontDistribute super."neat"; + "needle" = dontDistribute super."needle"; + "neet" = dontDistribute super."neet"; + "nehe-tuts" = dontDistribute super."nehe-tuts"; + "neil" = dontDistribute super."neil"; + "neither" = dontDistribute super."neither"; + "nemesis" = dontDistribute super."nemesis"; + "nemesis-titan" = dontDistribute super."nemesis-titan"; + "nerf" = dontDistribute super."nerf"; + "nero" = dontDistribute super."nero"; + "nero-wai" = dontDistribute super."nero-wai"; + "nero-warp" = dontDistribute super."nero-warp"; + "nested-routes" = dontDistribute super."nested-routes"; + "nested-sets" = dontDistribute super."nested-sets"; + "nestedmap" = dontDistribute super."nestedmap"; + "net-concurrent" = dontDistribute super."net-concurrent"; + "netclock" = dontDistribute super."netclock"; + "netcore" = dontDistribute super."netcore"; + "netlines" = dontDistribute super."netlines"; + "netlink" = dontDistribute super."netlink"; + "netlist" = dontDistribute super."netlist"; + "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl"; + "netpbm" = dontDistribute super."netpbm"; + "netrc" = dontDistribute super."netrc"; + "netspec" = dontDistribute super."netspec"; + "netstring-enumerator" = dontDistribute super."netstring-enumerator"; + "nettle-frp" = dontDistribute super."nettle-frp"; + "nettle-netkit" = dontDistribute super."nettle-netkit"; + "nettle-openflow" = dontDistribute super."nettle-openflow"; + "netwire" = dontDistribute super."netwire"; + "netwire-input" = dontDistribute super."netwire-input"; + "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; + "network-address" = dontDistribute super."network-address"; + "network-api-support" = dontDistribute super."network-api-support"; + "network-bitcoin" = dontDistribute super."network-bitcoin"; + "network-builder" = dontDistribute super."network-builder"; + "network-bytestring" = dontDistribute super."network-bytestring"; + "network-conduit" = dontDistribute super."network-conduit"; + "network-connection" = dontDistribute super."network-connection"; + "network-data" = dontDistribute super."network-data"; + "network-dbus" = dontDistribute super."network-dbus"; + "network-dns" = dontDistribute super."network-dns"; + "network-enumerator" = dontDistribute super."network-enumerator"; + "network-fancy" = dontDistribute super."network-fancy"; + "network-interfacerequest" = dontDistribute super."network-interfacerequest"; + "network-ip" = dontDistribute super."network-ip"; + "network-metrics" = dontDistribute super."network-metrics"; + "network-minihttp" = dontDistribute super."network-minihttp"; + "network-msg" = dontDistribute super."network-msg"; + "network-netpacket" = dontDistribute super."network-netpacket"; + "network-pgi" = dontDistribute super."network-pgi"; + "network-rpca" = dontDistribute super."network-rpca"; + "network-server" = dontDistribute super."network-server"; + "network-service" = dontDistribute super."network-service"; + "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; + "network-simple-tls" = dontDistribute super."network-simple-tls"; + "network-socket-options" = dontDistribute super."network-socket-options"; + "network-stream" = dontDistribute super."network-stream"; + "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport-amqp" = dontDistribute super."network-transport-amqp"; + "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; + "network-uri-static" = dontDistribute super."network-uri-static"; + "network-wai-router" = dontDistribute super."network-wai-router"; + "network-websocket" = dontDistribute super."network-websocket"; + "networked-game" = dontDistribute super."networked-game"; + "newports" = dontDistribute super."newports"; + "newsynth" = dontDistribute super."newsynth"; + "newt" = dontDistribute super."newt"; + "newtype-deriving" = dontDistribute super."newtype-deriving"; + "newtype-th" = dontDistribute super."newtype-th"; + "newtyper" = dontDistribute super."newtyper"; + "nextstep-plist" = dontDistribute super."nextstep-plist"; + "nf" = dontDistribute super."nf"; + "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; + "nibblestring" = dontDistribute super."nibblestring"; + "nicify" = dontDistribute super."nicify"; + "nicify-lib" = dontDistribute super."nicify-lib"; + "nicovideo-translator" = dontDistribute super."nicovideo-translator"; + "nikepub" = dontDistribute super."nikepub"; + "nimber" = dontDistribute super."nimber"; + "nist-beacon" = dontDistribute super."nist-beacon"; + "nitro" = dontDistribute super."nitro"; + "nix-eval" = dontDistribute super."nix-eval"; + "nixfromnpm" = dontDistribute super."nixfromnpm"; + "nixos-types" = dontDistribute super."nixos-types"; + "nkjp" = dontDistribute super."nkjp"; + "nlp-scores" = dontDistribute super."nlp-scores"; + "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts"; + "nm" = dontDistribute super."nm"; + "nme" = dontDistribute super."nme"; + "nntp" = dontDistribute super."nntp"; + "no-buffering-workaround" = dontDistribute super."no-buffering-workaround"; + "no-role-annots" = dontDistribute super."no-role-annots"; + "nofib-analyse" = dontDistribute super."nofib-analyse"; + "nofib-analyze" = dontDistribute super."nofib-analyze"; + "noise" = dontDistribute super."noise"; + "non-empty" = dontDistribute super."non-empty"; + "non-negative" = dontDistribute super."non-negative"; + "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; + "nonfree" = dontDistribute super."nonfree"; + "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; + "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; + "noodle" = dontDistribute super."noodle"; + "normaldistribution" = dontDistribute super."normaldistribution"; + "not-gloss" = dontDistribute super."not-gloss"; + "not-gloss-examples" = dontDistribute super."not-gloss-examples"; + "not-in-base" = dontDistribute super."not-in-base"; + "notcpp" = dontDistribute super."notcpp"; + "notmuch-haskell" = dontDistribute super."notmuch-haskell"; + "notmuch-web" = dontDistribute super."notmuch-web"; + "notzero" = dontDistribute super."notzero"; + "np-extras" = dontDistribute super."np-extras"; + "np-linear" = dontDistribute super."np-linear"; + "nptools" = dontDistribute super."nptools"; + "nth-prime" = dontDistribute super."nth-prime"; + "nthable" = dontDistribute super."nthable"; + "ntp-control" = dontDistribute super."ntp-control"; + "null-canvas" = dontDistribute super."null-canvas"; + "nullary" = dontDistribute super."nullary"; + "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; + "numbering" = dontDistribute super."numbering"; + "numerals" = dontDistribute super."numerals"; + "numerals-base" = dontDistribute super."numerals-base"; + "numeric-limits" = dontDistribute super."numeric-limits"; + "numeric-prelude" = dontDistribute super."numeric-prelude"; + "numeric-qq" = dontDistribute super."numeric-qq"; + "numeric-quest" = dontDistribute super."numeric-quest"; + "numeric-ranges" = dontDistribute super."numeric-ranges"; + "numeric-tools" = dontDistribute super."numeric-tools"; + "numericpeano" = dontDistribute super."numericpeano"; + "nums" = dontDistribute super."nums"; + "numtype" = dontDistribute super."numtype"; + "numtype-tf" = dontDistribute super."numtype-tf"; + "nurbs" = dontDistribute super."nurbs"; + "nvim-hs" = dontDistribute super."nvim-hs"; + "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib"; + "nyan" = dontDistribute super."nyan"; + "nylas" = dontDistribute super."nylas"; + "nymphaea" = dontDistribute super."nymphaea"; + "oanda-rest-api" = dontDistribute super."oanda-rest-api"; + "oauthenticated" = dontDistribute super."oauthenticated"; + "obdd" = dontDistribute super."obdd"; + "oberon0" = dontDistribute super."oberon0"; + "obj" = dontDistribute super."obj"; + "objectid" = dontDistribute super."objectid"; + "objective" = doDistribute super."objective_1_0_5"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octane" = dontDistribute super."octane"; + "octohat" = dontDistribute super."octohat"; + "octopus" = dontDistribute super."octopus"; + "oculus" = dontDistribute super."oculus"; + "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = dontDistribute super."oeis"; + "off-simple" = dontDistribute super."off-simple"; + "ohloh-hs" = dontDistribute super."ohloh-hs"; + "oi" = dontDistribute super."oi"; + "oidc-client" = dontDistribute super."oidc-client"; + "ois-input-manager" = dontDistribute super."ois-input-manager"; + "old-version" = dontDistribute super."old-version"; + "olwrapper" = dontDistribute super."olwrapper"; + "omaketex" = dontDistribute super."omaketex"; + "omega" = dontDistribute super."omega"; + "omnicodec" = dontDistribute super."omnicodec"; + "on-a-horse" = dontDistribute super."on-a-horse"; + "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "one-liner" = dontDistribute super."one-liner"; + "one-time-password" = dontDistribute super."one-time-password"; + "oneOfN" = dontDistribute super."oneOfN"; + "oneormore" = dontDistribute super."oneormore"; + "only" = dontDistribute super."only"; + "onu-course" = dontDistribute super."onu-course"; + "opaleye-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = dontDistribute super."opaleye-trans"; + "open-haddock" = dontDistribute super."open-haddock"; + "open-pandoc" = dontDistribute super."open-pandoc"; + "open-symbology" = dontDistribute super."open-symbology"; + "open-typerep" = dontDistribute super."open-typerep"; + "open-union" = dontDistribute super."open-union"; + "open-witness" = dontDistribute super."open-witness"; + "opencog-atomspace" = dontDistribute super."opencog-atomspace"; + "opencv-raw" = dontDistribute super."opencv-raw"; + "opendatatable" = dontDistribute super."opendatatable"; + "openexchangerates" = dontDistribute super."openexchangerates"; + "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; + "opengl-spacenavigator" = dontDistribute super."opengl-spacenavigator"; + "opengles" = dontDistribute super."opengles"; + "openid" = dontDistribute super."openid"; + "openpgp" = dontDistribute super."openpgp"; + "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; + "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; + "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "openssh-github-keys" = dontDistribute super."openssh-github-keys"; + "openssl-createkey" = dontDistribute super."openssl-createkey"; + "opentheory" = dontDistribute super."opentheory"; + "opentheory-bits" = dontDistribute super."opentheory-bits"; + "opentheory-byte" = dontDistribute super."opentheory-byte"; + "opentheory-char" = dontDistribute super."opentheory-char"; + "opentheory-divides" = dontDistribute super."opentheory-divides"; + "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci"; + "opentheory-parser" = dontDistribute super."opentheory-parser"; + "opentheory-prime" = dontDistribute super."opentheory-prime"; + "opentheory-primitive" = dontDistribute super."opentheory-primitive"; + "opentheory-probability" = dontDistribute super."opentheory-probability"; + "opentheory-stream" = dontDistribute super."opentheory-stream"; + "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; + "operational-extra" = dontDistribute super."operational-extra"; + "opml" = dontDistribute super."opml"; + "opml-conduit" = doDistribute super."opml-conduit_0_4_0_1"; + "opn" = dontDistribute super."opn"; + "optimal-blocks" = dontDistribute super."optimal-blocks"; + "optimization" = dontDistribute super."optimization"; + "optimusprime" = dontDistribute super."optimusprime"; + "option" = dontDistribute super."option"; + "optional" = dontDistribute super."optional"; + "options-time" = dontDistribute super."options-time"; + "optparse-declarative" = dontDistribute super."optparse-declarative"; + "optparse-generic" = dontDistribute super."optparse-generic"; + "orc" = dontDistribute super."orc"; + "orchestrate" = dontDistribute super."orchestrate"; + "orchid" = dontDistribute super."orchid"; + "orchid-demo" = dontDistribute super."orchid-demo"; + "ord-adhoc" = dontDistribute super."ord-adhoc"; + "order-maintenance" = dontDistribute super."order-maintenance"; + "order-statistic-tree" = dontDistribute super."order-statistic-tree"; + "order-statistics" = dontDistribute super."order-statistics"; + "ordered" = dontDistribute super."ordered"; + "orders" = dontDistribute super."orders"; + "ordrea" = dontDistribute super."ordrea"; + "organize-imports" = dontDistribute super."organize-imports"; + "orgmode" = dontDistribute super."orgmode"; + "orgmode-parse" = dontDistribute super."orgmode-parse"; + "origami" = dontDistribute super."origami"; + "os-release" = dontDistribute super."os-release"; + "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; + "osm-download" = dontDistribute super."osm-download"; + "oso2pdf" = dontDistribute super."oso2pdf"; + "osx-ar" = dontDistribute super."osx-ar"; + "ot" = dontDistribute super."ot"; + "ottparse-pretty" = dontDistribute super."ottparse-pretty"; + "overloaded-records" = dontDistribute super."overloaded-records"; + "overture" = dontDistribute super."overture"; + "pack" = dontDistribute super."pack"; + "package-o-tron" = dontDistribute super."package-o-tron"; + "package-vt" = dontDistribute super."package-vt"; + "packdeps" = dontDistribute super."packdeps"; + "packed-dawg" = dontDistribute super."packed-dawg"; + "packedstring" = dontDistribute super."packedstring"; + "packer" = dontDistribute super."packer"; + "packman" = dontDistribute super."packman"; + "packunused" = dontDistribute super."packunused"; + "pacman-memcache" = dontDistribute super."pacman-memcache"; + "padKONTROL" = dontDistribute super."padKONTROL"; + "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_6"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_9"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-include" = dontDistribute super."pandoc-include"; + "pandoc-japanese-filters" = dontDistribute super."pandoc-japanese-filters"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "papillon" = dontDistribute super."papillon"; + "pappy" = dontDistribute super."pappy"; + "para" = dontDistribute super."para"; + "paragon" = dontDistribute super."paragon"; + "parallel-tasks" = dontDistribute super."parallel-tasks"; + "parallel-tree-search" = dontDistribute super."parallel-tree-search"; + "parameterized-data" = dontDistribute super."parameterized-data"; + "parco" = dontDistribute super."parco"; + "parco-attoparsec" = dontDistribute super."parco-attoparsec"; + "parco-parsec" = dontDistribute super."parco-parsec"; + "parcom-lib" = dontDistribute super."parcom-lib"; + "parconc-examples" = dontDistribute super."parconc-examples"; + "parport" = dontDistribute super."parport"; + "parse-dimacs" = dontDistribute super."parse-dimacs"; + "parse-help" = dontDistribute super."parse-help"; + "parsec-extra" = dontDistribute super."parsec-extra"; + "parsec-numbers" = dontDistribute super."parsec-numbers"; + "parsec-parsers" = dontDistribute super."parsec-parsers"; + "parsec-permutation" = dontDistribute super."parsec-permutation"; + "parsec-tagsoup" = dontDistribute super."parsec-tagsoup"; + "parsec-trace" = dontDistribute super."parsec-trace"; + "parsec-utils" = dontDistribute super."parsec-utils"; + "parsec1" = dontDistribute super."parsec1"; + "parsec2" = dontDistribute super."parsec2"; + "parsec3" = dontDistribute super."parsec3"; + "parsec3-numbers" = dontDistribute super."parsec3-numbers"; + "parsedate" = dontDistribute super."parsedate"; + "parsek" = dontDistribute super."parsek"; + "parsely" = dontDistribute super."parsely"; + "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; + "parsergen" = dontDistribute super."parsergen"; + "parsestar" = dontDistribute super."parsestar"; + "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; + "partial" = dontDistribute super."partial"; + "partial-lens" = dontDistribute super."partial-lens"; + "partial-uri" = dontDistribute super."partial-uri"; + "partly" = dontDistribute super."partly"; + "passage" = dontDistribute super."passage"; + "passwords" = dontDistribute super."passwords"; + "pastis" = dontDistribute super."pastis"; + "pasty" = dontDistribute super."pasty"; + "patch-combinators" = dontDistribute super."patch-combinators"; + "patch-image" = dontDistribute super."patch-image"; + "path-io" = doDistribute super."path-io_0_2_0"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "patronscraper" = dontDistribute super."patronscraper"; + "patterns" = dontDistribute super."patterns"; + "paymill" = dontDistribute super."paymill"; + "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops"; + "paypal-api" = dontDistribute super."paypal-api"; + "pb" = dontDistribute super."pb"; + "pbc4hs" = dontDistribute super."pbc4hs"; + "pbkdf" = dontDistribute super."pbkdf"; + "pcap-conduit" = dontDistribute super."pcap-conduit"; + "pcap-enumerator" = dontDistribute super."pcap-enumerator"; + "pcd-loader" = dontDistribute super."pcd-loader"; + "pcf" = dontDistribute super."pcf"; + "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; + "pcre-less" = dontDistribute super."pcre-less"; + "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; + "pdf2line" = dontDistribute super."pdf2line"; + "pdfsplit" = dontDistribute super."pdfsplit"; + "pdynload" = dontDistribute super."pdynload"; + "peakachu" = dontDistribute super."peakachu"; + "peano" = dontDistribute super."peano"; + "peano-inf" = dontDistribute super."peano-inf"; + "pec" = dontDistribute super."pec"; + "pecoff" = dontDistribute super."pecoff"; + "peg" = dontDistribute super."peg"; + "peggy" = dontDistribute super."peggy"; + "pell" = dontDistribute super."pell"; + "penn-treebank" = dontDistribute super."penn-treebank"; + "penny" = dontDistribute super."penny"; + "penny-bin" = dontDistribute super."penny-bin"; + "penny-lib" = dontDistribute super."penny-lib"; + "peparser" = dontDistribute super."peparser"; + "perceptron" = dontDistribute super."perceptron"; + "perdure" = dontDistribute super."perdure"; + "period" = dontDistribute super."period"; + "perm" = dontDistribute super."perm"; + "permutation" = dontDistribute super."permutation"; + "permute" = dontDistribute super."permute"; + "persist2er" = dontDistribute super."persist2er"; + "persistable-record" = dontDistribute super."persistable-record"; + "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-equivalence" = dontDistribute super."persistent-equivalence"; + "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; + "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; + "persistent-iproute" = dontDistribute super."persistent-iproute"; + "persistent-map" = dontDistribute super."persistent-map"; + "persistent-odbc" = dontDistribute super."persistent-odbc"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-vector" = dontDistribute super."persistent-vector"; + "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; + "persona" = dontDistribute super."persona"; + "persona-idp" = dontDistribute super."persona-idp"; + "pesca" = dontDistribute super."pesca"; + "peyotls" = dontDistribute super."peyotls"; + "peyotls-codec" = dontDistribute super."peyotls-codec"; + "pez" = dontDistribute super."pez"; + "pg-harness" = dontDistribute super."pg-harness"; + "pg-harness-client" = dontDistribute super."pg-harness-client"; + "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pgdl" = dontDistribute super."pgdl"; + "pgm" = dontDistribute super."pgm"; + "pgsql-simple" = dontDistribute super."pgsql-simple"; + "pgstream" = dontDistribute super."pgstream"; + "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; + "phone-numbers" = dontDistribute super."phone-numbers"; + "phone-push" = dontDistribute super."phone-push"; + "phonetic-code" = dontDistribute super."phonetic-code"; + "phooey" = dontDistribute super."phooey"; + "photoname" = dontDistribute super."photoname"; + "phraskell" = dontDistribute super."phraskell"; + "phybin" = dontDistribute super."phybin"; + "pi-calculus" = dontDistribute super."pi-calculus"; + "pia-forward" = dontDistribute super."pia-forward"; + "pianola" = dontDistribute super."pianola"; + "picologic" = dontDistribute super."picologic"; + "picosat" = dontDistribute super."picosat"; + "piet" = dontDistribute super."piet"; + "piki" = dontDistribute super."piki"; + "pinboard" = dontDistribute super."pinboard"; + "pinchot" = doDistribute super."pinchot_0_6_0_0"; + "pipe-enumerator" = dontDistribute super."pipe-enumerator"; + "pipeclip" = dontDistribute super."pipeclip"; + "pipes-async" = dontDistribute super."pipes-async"; + "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-bzip" = dontDistribute super."pipes-bzip"; + "pipes-cacophony" = doDistribute super."pipes-cacophony_0_1_3"; + "pipes-cellular" = dontDistribute super."pipes-cellular"; + "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; + "pipes-cereal" = dontDistribute super."pipes-cereal"; + "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-conduit" = dontDistribute super."pipes-conduit"; + "pipes-core" = dontDistribute super."pipes-core"; + "pipes-courier" = dontDistribute super."pipes-courier"; + "pipes-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-network-tls" = dontDistribute super."pipes-network-tls"; + "pipes-p2p" = dontDistribute super."pipes-p2p"; + "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; + "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; + "pipes-vector" = dontDistribute super."pipes-vector"; + "pipes-websockets" = dontDistribute super."pipes-websockets"; + "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; + "pipes-zlib" = dontDistribute super."pipes-zlib"; + "pisigma" = dontDistribute super."pisigma"; + "pit" = dontDistribute super."pit"; + "pitchtrack" = dontDistribute super."pitchtrack"; + "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs7" = dontDistribute super."pkcs7"; + "pkggraph" = dontDistribute super."pkggraph"; + "pktree" = dontDistribute super."pktree"; + "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; + "planar-graph" = dontDistribute super."planar-graph"; + "plat" = dontDistribute super."plat"; + "playlists" = dontDistribute super."playlists"; + "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; + "plivo" = dontDistribute super."plivo"; + "plot-lab" = dontDistribute super."plot-lab"; + "plotfont" = dontDistribute super."plotfont"; + "plotserver-api" = dontDistribute super."plotserver-api"; + "plugins" = dontDistribute super."plugins"; + "plugins-auto" = dontDistribute super."plugins-auto"; + "plugins-multistage" = dontDistribute super."plugins-multistage"; + "plumbers" = dontDistribute super."plumbers"; + "ply-loader" = dontDistribute super."ply-loader"; + "png-file" = dontDistribute super."png-file"; + "pngload" = dontDistribute super."pngload"; + "pngload-fixed" = dontDistribute super."pngload-fixed"; + "pnm" = dontDistribute super."pnm"; + "pocket-dns" = dontDistribute super."pocket-dns"; + "pointfree" = dontDistribute super."pointfree"; + "pointful" = dontDistribute super."pointful"; + "pointless-fun" = dontDistribute super."pointless-fun"; + "pointless-haskell" = dontDistribute super."pointless-haskell"; + "pointless-lenses" = dontDistribute super."pointless-lenses"; + "pointless-rewrite" = dontDistribute super."pointless-rewrite"; + "poker-eval" = dontDistribute super."poker-eval"; + "pokitdok" = dontDistribute super."pokitdok"; + "polar" = dontDistribute super."polar"; + "polar-configfile" = dontDistribute super."polar-configfile"; + "polar-shader" = dontDistribute super."polar-shader"; + "polh-lexicon" = dontDistribute super."polh-lexicon"; + "polimorf" = dontDistribute super."polimorf"; + "poll" = dontDistribute super."poll"; + "poly-control" = dontDistribute super."poly-control"; + "polyToMonoid" = dontDistribute super."polyToMonoid"; + "polymap" = dontDistribute super."polymap"; + "polynom" = dontDistribute super."polynom"; + "polynomial" = dontDistribute super."polynomial"; + "polynomials-bernstein" = dontDistribute super."polynomials-bernstein"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "ponder" = dontDistribute super."ponder"; + "pong-server" = dontDistribute super."pong-server"; + "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver"; + "pontarius-xmpp" = dontDistribute super."pontarius-xmpp"; + "pontarius-xpmn" = dontDistribute super."pontarius-xpmn"; + "pony" = dontDistribute super."pony"; + "pool" = dontDistribute super."pool"; + "pool-conduit" = dontDistribute super."pool-conduit"; + "pooled-io" = dontDistribute super."pooled-io"; + "pop3-client" = dontDistribute super."pop3-client"; + "popenhs" = dontDistribute super."popenhs"; + "poppler" = dontDistribute super."poppler"; + "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache"; + "portable-lines" = dontDistribute super."portable-lines"; + "portaudio" = dontDistribute super."portaudio"; + "porte" = dontDistribute super."porte"; + "porter" = dontDistribute super."porter"; + "ports" = dontDistribute super."ports"; + "ports-tools" = dontDistribute super."ports-tools"; + "positive" = dontDistribute super."positive"; + "posix-acl" = dontDistribute super."posix-acl"; + "posix-escape" = dontDistribute super."posix-escape"; + "posix-filelock" = dontDistribute super."posix-filelock"; + "posix-paths" = dontDistribute super."posix-paths"; + "posix-pty" = dontDistribute super."posix-pty"; + "posix-timer" = dontDistribute super."posix-timer"; + "posix-waitpid" = dontDistribute super."posix-waitpid"; + "possible" = dontDistribute super."possible"; + "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9"; + "postgresql-config" = dontDistribute super."postgresql-config"; + "postgresql-connector" = dontDistribute super."postgresql-connector"; + "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; + "postgresql-cube" = dontDistribute super."postgresql-cube"; + "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; + "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; + "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; + "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; + "postgresql-typed" = dontDistribute super."postgresql-typed"; + "postgrest" = dontDistribute super."postgrest"; + "postie" = dontDistribute super."postie"; + "postmark" = dontDistribute super."postmark"; + "postmaster" = dontDistribute super."postmaster"; + "potato-tool" = dontDistribute super."potato-tool"; + "potrace" = dontDistribute super."potrace"; + "potrace-diagrams" = dontDistribute super."potrace-diagrams"; + "powermate" = dontDistribute super."powermate"; + "powerpc" = dontDistribute super."powerpc"; + "ppm" = dontDistribute super."ppm"; + "pqc" = dontDistribute super."pqc"; + "pqueue-mtl" = dontDistribute super."pqueue-mtl"; + "practice-room" = dontDistribute super."practice-room"; + "precis" = dontDistribute super."precis"; + "predicates" = dontDistribute super."predicates"; + "prednote-test" = dontDistribute super."prednote-test"; + "prefork" = dontDistribute super."prefork"; + "pregame" = dontDistribute super."pregame"; + "prelude-edsl" = dontDistribute super."prelude-edsl"; + "prelude-generalize" = dontDistribute super."prelude-generalize"; + "prelude-plus" = dontDistribute super."prelude-plus"; + "prelude-prime" = dontDistribute super."prelude-prime"; + "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = dontDistribute super."present"; + "press" = dontDistribute super."press"; + "presto-hdbc" = dontDistribute super."presto-hdbc"; + "prettify" = dontDistribute super."prettify"; + "pretty-compact" = dontDistribute super."pretty-compact"; + "pretty-error" = dontDistribute super."pretty-error"; + "pretty-hex" = dontDistribute super."pretty-hex"; + "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-sop" = dontDistribute super."pretty-sop"; + "pretty-tree" = dontDistribute super."pretty-tree"; + "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-uniq" = dontDistribute super."prim-uniq"; + "primitive-simd" = dontDistribute super."primitive-simd"; + "primula-board" = dontDistribute super."primula-board"; + "primula-bot" = dontDistribute super."primula-bot"; + "print-debugger" = dontDistribute super."print-debugger"; + "printf-mauke" = dontDistribute super."printf-mauke"; + "printxosd" = dontDistribute super."printxosd"; + "priority-queue" = dontDistribute super."priority-queue"; + "priority-sync" = dontDistribute super."priority-sync"; + "privileged-concurrency" = dontDistribute super."privileged-concurrency"; + "prizm" = dontDistribute super."prizm"; + "probability" = dontDistribute super."probability"; + "probable" = dontDistribute super."probable"; + "proc" = dontDistribute super."proc"; + "process-conduit" = dontDistribute super."process-conduit"; + "process-extras" = doDistribute super."process-extras_0_3_3_7"; + "process-iterio" = dontDistribute super."process-iterio"; + "process-leksah" = dontDistribute super."process-leksah"; + "process-listlike" = dontDistribute super."process-listlike"; + "process-progress" = dontDistribute super."process-progress"; + "process-qq" = dontDistribute super."process-qq"; + "process-streaming" = dontDistribute super."process-streaming"; + "processing" = dontDistribute super."processing"; + "processor-creative-kit" = dontDistribute super."processor-creative-kit"; + "procrastinating-structure" = dontDistribute super."procrastinating-structure"; + "procrastinating-variable" = dontDistribute super."procrastinating-variable"; + "procstat" = dontDistribute super."procstat"; + "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3_1"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "profiteur" = dontDistribute super."profiteur"; + "progress" = dontDistribute super."progress"; + "progressbar" = dontDistribute super."progressbar"; + "progression" = dontDistribute super."progression"; + "progressive" = dontDistribute super."progressive"; + "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; + "projection" = dontDistribute super."projection"; + "prolog" = dontDistribute super."prolog"; + "prolog-graph" = dontDistribute super."prolog-graph"; + "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; + "promise" = dontDistribute super."promise"; + "promises" = dontDistribute super."promises"; + "propane" = dontDistribute super."propane"; + "propellor" = dontDistribute super."propellor"; + "properties" = dontDistribute super."properties"; + "property-list" = dontDistribute super."property-list"; + "proplang" = dontDistribute super."proplang"; + "props" = dontDistribute super."props"; + "prosper" = dontDistribute super."prosper"; + "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; + "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; + "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "proton-haskell" = dontDistribute super."proton-haskell"; + "prototype" = dontDistribute super."prototype"; + "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = doDistribute super."psc-ide_0_5_0"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; + "publicsuffixlist" = dontDistribute super."publicsuffixlist"; + "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; + "pubnub" = dontDistribute super."pubnub"; + "pubsub" = dontDistribute super."pubsub"; + "puffytools" = dontDistribute super."puffytools"; + "pugixml" = dontDistribute super."pugixml"; + "pugs-DrIFT" = dontDistribute super."pugs-DrIFT"; + "pugs-HsSyck" = dontDistribute super."pugs-HsSyck"; + "pugs-compat" = dontDistribute super."pugs-compat"; + "pugs-hsregex" = dontDistribute super."pugs-hsregex"; + "pulse-simple" = dontDistribute super."pulse-simple"; + "punkt" = dontDistribute super."punkt"; + "punycode" = dontDistribute super."punycode"; + "puppetresources" = dontDistribute super."puppetresources"; + "pure-fft" = dontDistribute super."pure-fft"; + "pure-priority-queue" = dontDistribute super."pure-priority-queue"; + "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; + "pure-zlib" = dontDistribute super."pure-zlib"; + "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; + "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "push-notify" = dontDistribute super."push-notify"; + "push-notify-ccs" = dontDistribute super."push-notify-ccs"; + "push-notify-general" = dontDistribute super."push-notify-general"; + "pusher-haskell" = dontDistribute super."pusher-haskell"; + "pushme" = dontDistribute super."pushme"; + "putlenses" = dontDistribute super."putlenses"; + "puzzle-draw" = dontDistribute super."puzzle-draw"; + "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline"; + "pvd" = dontDistribute super."pvd"; + "pwstore-cli" = dontDistribute super."pwstore-cli"; + "pxsl-tools" = dontDistribute super."pxsl-tools"; + "pyffi" = dontDistribute super."pyffi"; + "pyfi" = dontDistribute super."pyfi"; + "python-pickle" = dontDistribute super."python-pickle"; + "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator"; + "qd" = dontDistribute super."qd"; + "qd-vec" = dontDistribute super."qd-vec"; + "qed" = dontDistribute super."qed"; + "qhull-simple" = dontDistribute super."qhull-simple"; + "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "qudb" = dontDistribute super."qudb"; + "quenya-verb" = dontDistribute super."quenya-verb"; + "querystring-pickle" = dontDistribute super."querystring-pickle"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quick-schema" = dontDistribute super."quick-schema"; + "quickcheck-poly" = dontDistribute super."quickcheck-poly"; + "quickcheck-properties" = dontDistribute super."quickcheck-properties"; + "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; + "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad"; + "quickcheck-regex" = dontDistribute super."quickcheck-regex"; + "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng"; + "quickcheck-rematch" = dontDistribute super."quickcheck-rematch"; + "quickcheck-script" = dontDistribute super."quickcheck-script"; + "quickcheck-simple" = dontDistribute super."quickcheck-simple"; + "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "quicktest" = dontDistribute super."quicktest"; + "quickwebapp" = dontDistribute super."quickwebapp"; + "quiver" = dontDistribute super."quiver"; + "quiver-bytestring" = dontDistribute super."quiver-bytestring"; + "quiver-cell" = dontDistribute super."quiver-cell"; + "quiver-csv" = dontDistribute super."quiver-csv"; + "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-http" = dontDistribute super."quiver-http"; + "quoridor-hs" = dontDistribute super."quoridor-hs"; + "qux" = dontDistribute super."qux"; + "rabocsv2qif" = dontDistribute super."rabocsv2qif"; + "rad" = dontDistribute super."rad"; + "radian" = dontDistribute super."radian"; + "radium" = dontDistribute super."radium"; + "radium-formula-parser" = dontDistribute super."radium-formula-parser"; + "radix" = dontDistribute super."radix"; + "rados-haskell" = dontDistribute super."rados-haskell"; + "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-tree" = dontDistribute super."random-tree"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratel" = dontDistribute super."ratel"; + "ratel-wai" = dontDistribute super."ratel-wai"; + "ratio-int" = dontDistribute super."ratio-int"; + "raven-haskell" = dontDistribute super."raven-haskell"; + "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "rawstring-qm" = dontDistribute super."rawstring-qm"; + "razom-text-util" = dontDistribute super."razom-text-util"; + "rbr" = dontDistribute super."rbr"; + "rclient" = dontDistribute super."rclient"; + "rcu" = dontDistribute super."rcu"; + "rdf4h" = dontDistribute super."rdf4h"; + "rdioh" = dontDistribute super."rdioh"; + "rdtsc" = dontDistribute super."rdtsc"; + "rdtsc-enolan" = dontDistribute super."rdtsc-enolan"; + "re2" = dontDistribute super."re2"; + "react-flux" = dontDistribute super."react-flux"; + "react-haskell" = dontDistribute super."react-haskell"; + "reaction-logic" = dontDistribute super."reaction-logic"; + "reactive" = dontDistribute super."reactive"; + "reactive-bacon" = dontDistribute super."reactive-bacon"; + "reactive-balsa" = dontDistribute super."reactive-balsa"; + "reactive-banana" = dontDistribute super."reactive-banana"; + "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl"; + "reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2"; + "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny"; + "reactive-banana-wx" = dontDistribute super."reactive-banana-wx"; + "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip"; + "reactive-glut" = dontDistribute super."reactive-glut"; + "reactive-haskell" = dontDistribute super."reactive-haskell"; + "reactive-io" = dontDistribute super."reactive-io"; + "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; + "reactor" = dontDistribute super."reactor"; + "read-bounded" = dontDistribute super."read-bounded"; + "readline-statevar" = dontDistribute super."readline-statevar"; + "readpyc" = dontDistribute super."readpyc"; + "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; + "reasonable-lens" = dontDistribute super."reasonable-lens"; + "reasonable-operational" = dontDistribute super."reasonable-operational"; + "rebase" = dontDistribute super."rebase"; + "recaptcha" = dontDistribute super."recaptcha"; + "record" = dontDistribute super."record"; + "record-aeson" = dontDistribute super."record-aeson"; + "record-gl" = dontDistribute super."record-gl"; + "record-preprocessor" = dontDistribute super."record-preprocessor"; + "record-syntax" = dontDistribute super."record-syntax"; + "records" = dontDistribute super."records"; + "records-th" = dontDistribute super."records-th"; + "recursive-line-count" = dontDistribute super."recursive-line-count"; + "redHandlers" = dontDistribute super."redHandlers"; + "reddit" = dontDistribute super."reddit"; + "redis" = dontDistribute super."redis"; + "redis-hs" = dontDistribute super."redis-hs"; + "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-simple" = dontDistribute super."redis-simple"; + "redo" = dontDistribute super."redo"; + "reedsolomon" = dontDistribute super."reedsolomon"; + "reenact" = dontDistribute super."reenact"; + "reexport-crypto-random" = dontDistribute super."reexport-crypto-random"; + "ref" = dontDistribute super."ref"; + "ref-mtl" = dontDistribute super."ref-mtl"; + "ref-tf" = dontDistribute super."ref-tf"; + "refcount" = dontDistribute super."refcount"; + "reference" = dontDistribute super."reference"; + "references" = dontDistribute super."references"; + "refh" = dontDistribute super."refh"; + "refined" = dontDistribute super."refined"; + "reflection-extras" = dontDistribute super."reflection-extras"; + "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; + "reflex" = dontDistribute super."reflex"; + "reflex-animation" = dontDistribute super."reflex-animation"; + "reflex-dom" = dontDistribute super."reflex-dom"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; + "regex-deriv" = dontDistribute super."regex-deriv"; + "regex-dfa" = dontDistribute super."regex-dfa"; + "regex-easy" = dontDistribute super."regex-easy"; + "regex-genex" = dontDistribute super."regex-genex"; + "regex-parsec" = dontDistribute super."regex-parsec"; + "regex-pderiv" = dontDistribute super."regex-pderiv"; + "regex-posix-unittest" = dontDistribute super."regex-posix-unittest"; + "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes"; + "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter"; + "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; + "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; + "regex-tre" = dontDistribute super."regex-tre"; + "regex-xmlschema" = dontDistribute super."regex-xmlschema"; + "regexchar" = dontDistribute super."regexchar"; + "regexdot" = dontDistribute super."regexdot"; + "regexp-tries" = dontDistribute super."regexp-tries"; + "regexpr" = dontDistribute super."regexpr"; + "regexpr-symbolic" = dontDistribute super."regexpr-symbolic"; + "regexqq" = dontDistribute super."regexqq"; + "regional-pointers" = dontDistribute super."regional-pointers"; + "regions" = dontDistribute super."regions"; + "regions-monadsfd" = dontDistribute super."regions-monadsfd"; + "regions-monadstf" = dontDistribute super."regions-monadstf"; + "regions-mtl" = dontDistribute super."regions-mtl"; + "regress" = dontDistribute super."regress"; + "regular" = dontDistribute super."regular"; + "regular-extras" = dontDistribute super."regular-extras"; + "regular-web" = dontDistribute super."regular-web"; + "regular-xmlpickler" = dontDistribute super."regular-xmlpickler"; + "reheat" = dontDistribute super."reheat"; + "rehoo" = dontDistribute super."rehoo"; + "rei" = dontDistribute super."rei"; + "reified-records" = dontDistribute super."reified-records"; + "reify" = dontDistribute super."reify"; + "relacion" = dontDistribute super."relacion"; + "relation" = dontDistribute super."relation"; + "relational-postgresql8" = dontDistribute super."relational-postgresql8"; + "relational-query" = dontDistribute super."relational-query"; + "relational-query-HDBC" = dontDistribute super."relational-query-HDBC"; + "relational-record" = dontDistribute super."relational-record"; + "relational-record-examples" = dontDistribute super."relational-record-examples"; + "relational-schemas" = dontDistribute super."relational-schemas"; + "relative-date" = dontDistribute super."relative-date"; + "relit" = dontDistribute super."relit"; + "rematch" = dontDistribute super."rematch"; + "rematch-text" = dontDistribute super."rematch-text"; + "remote" = dontDistribute super."remote"; + "remote-debugger" = dontDistribute super."remote-debugger"; + "remote-json" = dontDistribute super."remote-json"; + "remote-json-client" = dontDistribute super."remote-json-client"; + "remote-json-server" = dontDistribute super."remote-json-server"; + "remote-monad" = dontDistribute super."remote-monad"; + "remotion" = dontDistribute super."remotion"; + "renderable" = dontDistribute super."renderable"; + "reord" = dontDistribute super."reord"; + "reorderable" = dontDistribute super."reorderable"; + "repa-array" = dontDistribute super."repa-array"; + "repa-bytestring" = dontDistribute super."repa-bytestring"; + "repa-convert" = dontDistribute super."repa-convert"; + "repa-eval" = dontDistribute super."repa-eval"; + "repa-examples" = dontDistribute super."repa-examples"; + "repa-fftw" = dontDistribute super."repa-fftw"; + "repa-flow" = dontDistribute super."repa-flow"; + "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; + "repa-plugin" = dontDistribute super."repa-plugin"; + "repa-scalar" = dontDistribute super."repa-scalar"; + "repa-series" = dontDistribute super."repa-series"; + "repa-sndfile" = dontDistribute super."repa-sndfile"; + "repa-stream" = dontDistribute super."repa-stream"; + "repa-v4l2" = dontDistribute super."repa-v4l2"; + "repl" = dontDistribute super."repl"; + "repl-toolkit" = dontDistribute super."repl-toolkit"; + "repline" = dontDistribute super."repline"; + "repo-based-blog" = dontDistribute super."repo-based-blog"; + "repr" = dontDistribute super."repr"; + "repr-tree-syb" = dontDistribute super."repr-tree-syb"; + "representable-functors" = dontDistribute super."representable-functors"; + "representable-profunctors" = dontDistribute super."representable-profunctors"; + "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; + "request-monad" = dontDistribute super."request-monad"; + "reserve" = dontDistribute super."reserve"; + "resistor-cube" = dontDistribute super."resistor-cube"; + "resource-effect" = dontDistribute super."resource-effect"; + "resource-embed" = dontDistribute super."resource-embed"; + "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-pool-monad" = dontDistribute super."resource-pool-monad"; + "resource-simple" = dontDistribute super."resource-simple"; + "respond" = dontDistribute super."respond"; + "rest-core" = doDistribute super."rest-core_0_37"; + "rest-example" = dontDistribute super."rest-example"; + "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "restful-snap" = dontDistribute super."restful-snap"; + "restricted-workers" = dontDistribute super."restricted-workers"; + "restyle" = dontDistribute super."restyle"; + "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb-model" = dontDistribute super."rethinkdb-model"; + "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retryer" = dontDistribute super."retryer"; + "revdectime" = dontDistribute super."revdectime"; + "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-geocoding" = dontDistribute super."reverse-geocoding"; + "reversi" = dontDistribute super."reversi"; + "rewrite" = dontDistribute super."rewrite"; + "rewriting" = dontDistribute super."rewriting"; + "rex" = dontDistribute super."rex"; + "rezoom" = dontDistribute super."rezoom"; + "rfc3339" = dontDistribute super."rfc3339"; + "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; + "richreports" = dontDistribute super."richreports"; + "riemann" = dontDistribute super."riemann"; + "riff" = dontDistribute super."riff"; + "ring-buffer" = dontDistribute super."ring-buffer"; + "riot" = dontDistribute super."riot"; + "ripple" = dontDistribute super."ripple"; + "ripple-federation" = dontDistribute super."ripple-federation"; + "risc386" = dontDistribute super."risc386"; + "rivers" = dontDistribute super."rivers"; + "rivet" = dontDistribute super."rivet"; + "rivet-core" = dontDistribute super."rivet-core"; + "rivet-migration" = dontDistribute super."rivet-migration"; + "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; + "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; + "rmonad" = dontDistribute super."rmonad"; + "rncryptor" = dontDistribute super."rncryptor"; + "rng-utils" = dontDistribute super."rng-utils"; + "robin" = dontDistribute super."robin"; + "robot" = dontDistribute super."robot"; + "robots-txt" = dontDistribute super."robots-txt"; + "rocksdb-haskell" = dontDistribute super."rocksdb-haskell"; + "roguestar" = dontDistribute super."roguestar"; + "roguestar-engine" = dontDistribute super."roguestar-engine"; + "roguestar-gl" = dontDistribute super."roguestar-gl"; + "roguestar-glut" = dontDistribute super."roguestar-glut"; + "rollbar" = dontDistribute super."rollbar"; + "roller" = dontDistribute super."roller"; + "rolling-queue" = dontDistribute super."rolling-queue"; + "roman-numerals" = dontDistribute super."roman-numerals"; + "romkan" = dontDistribute super."romkan"; + "roots" = dontDistribute super."roots"; + "rope" = dontDistribute super."rope"; + "rosa" = dontDistribute super."rosa"; + "rose-trie" = dontDistribute super."rose-trie"; + "roshask" = dontDistribute super."roshask"; + "rosso" = dontDistribute super."rosso"; + "rot13" = dontDistribute super."rot13"; + "rotating-log" = dontDistribute super."rotating-log"; + "rounding" = dontDistribute super."rounding"; + "roundtrip" = dontDistribute super."roundtrip"; + "roundtrip-aeson" = dontDistribute super."roundtrip-aeson"; + "roundtrip-string" = dontDistribute super."roundtrip-string"; + "roundtrip-xml" = dontDistribute super."roundtrip-xml"; + "route-generator" = dontDistribute super."route-generator"; + "route-planning" = dontDistribute super."route-planning"; + "rowrecord" = dontDistribute super."rowrecord"; + "rpc" = dontDistribute super."rpc"; + "rpc-framework" = dontDistribute super."rpc-framework"; + "rpf" = dontDistribute super."rpf"; + "rpm" = dontDistribute super."rpm"; + "rsagl" = dontDistribute super."rsagl"; + "rsagl-frp" = dontDistribute super."rsagl-frp"; + "rsagl-math" = dontDistribute super."rsagl-math"; + "rspp" = dontDistribute super."rspp"; + "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; + "rss2irc" = dontDistribute super."rss2irc"; + "rtcm" = dontDistribute super."rtcm"; + "rtld" = dontDistribute super."rtld"; + "rtlsdr" = dontDistribute super."rtlsdr"; + "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; + "rtorrent-state" = dontDistribute super."rtorrent-state"; + "rubberband" = dontDistribute super."rubberband"; + "ruby-marshal" = dontDistribute super."ruby-marshal"; + "ruby-qq" = dontDistribute super."ruby-qq"; + "ruff" = dontDistribute super."ruff"; + "ruler" = dontDistribute super."ruler"; + "ruler-core" = dontDistribute super."ruler-core"; + "rungekutta" = dontDistribute super."rungekutta"; + "runghc" = dontDistribute super."runghc"; + "rwlock" = dontDistribute super."rwlock"; + "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; + "safe-access" = dontDistribute super."safe-access"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-length" = dontDistribute super."safe-length"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "sampling" = dontDistribute super."sampling"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandlib" = dontDistribute super."sandlib"; + "sarasvati" = dontDistribute super."sarasvati"; + "sasl" = dontDistribute super."sasl"; + "sat" = dontDistribute super."sat"; + "sat-micro-hs" = dontDistribute super."sat-micro-hs"; + "satchmo" = dontDistribute super."satchmo"; + "satchmo-backends" = dontDistribute super."satchmo-backends"; + "satchmo-examples" = dontDistribute super."satchmo-examples"; + "satchmo-funsat" = dontDistribute super."satchmo-funsat"; + "satchmo-minisat" = dontDistribute super."satchmo-minisat"; + "satchmo-toysat" = dontDistribute super."satchmo-toysat"; + "sbp" = dontDistribute super."sbp"; + "sbvPlugin" = dontDistribute super."sbvPlugin"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "scalpel" = doDistribute super."scalpel_0_2_1_1"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scat" = dontDistribute super."scat"; + "scc" = dontDistribute super."scc"; + "scenegraph" = dontDistribute super."scenegraph"; + "scgi" = dontDistribute super."scgi"; + "schedevr" = dontDistribute super."schedevr"; + "schedule-planner" = dontDistribute super."schedule-planner"; + "schedyield" = dontDistribute super."schedyield"; + "scholdoc" = dontDistribute super."scholdoc"; + "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc"; + "scholdoc-texmath" = dontDistribute super."scholdoc-texmath"; + "scholdoc-types" = dontDistribute super."scholdoc-types"; + "schonfinkeling" = dontDistribute super."schonfinkeling"; + "sci-ratio" = dontDistribute super."sci-ratio"; + "science-constants" = dontDistribute super."science-constants"; + "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scion" = dontDistribute super."scion"; + "scion-browser" = dontDistribute super."scion-browser"; + "scons2dot" = dontDistribute super."scons2dot"; + "scope" = dontDistribute super."scope"; + "scope-cairo" = dontDistribute super."scope-cairo"; + "scottish" = dontDistribute super."scottish"; + "scotty" = doDistribute super."scotty_0_10_2"; + "scotty-binding-play" = dontDistribute super."scotty-binding-play"; + "scotty-blaze" = dontDistribute super."scotty-blaze"; + "scotty-cookie" = dontDistribute super."scotty-cookie"; + "scotty-fay" = dontDistribute super."scotty-fay"; + "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-rest" = dontDistribute super."scotty-rest"; + "scotty-session" = dontDistribute super."scotty-session"; + "scotty-tls" = dontDistribute super."scotty-tls"; + "scp-streams" = dontDistribute super."scp-streams"; + "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrobble" = dontDistribute super."scrobble"; + "scroll" = dontDistribute super."scroll"; + "scrz" = dontDistribute super."scrz"; + "scyther-proof" = dontDistribute super."scyther-proof"; + "sde-solver" = dontDistribute super."sde-solver"; + "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; + "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; + "sdl2-compositor" = dontDistribute super."sdl2-compositor"; + "sdl2-image" = dontDistribute super."sdl2-image"; + "sdl2-ttf" = dontDistribute super."sdl2-ttf"; + "sdnv" = dontDistribute super."sdnv"; + "sdr" = dontDistribute super."sdr"; + "seacat" = dontDistribute super."seacat"; + "seal-module" = dontDistribute super."seal-module"; + "search" = dontDistribute super."search"; + "sec" = dontDistribute super."sec"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; + "secret-santa" = dontDistribute super."secret-santa"; + "secret-sharing" = dontDistribute super."secret-sharing"; + "secrm" = dontDistribute super."secrm"; + "secure-sockets" = dontDistribute super."secure-sockets"; + "sednaDBXML" = dontDistribute super."sednaDBXML"; + "select" = dontDistribute super."select"; + "selectors" = dontDistribute super."selectors"; + "selenium" = dontDistribute super."selenium"; + "selenium-server" = dontDistribute super."selenium-server"; + "selfrestart" = dontDistribute super."selfrestart"; + "selinux" = dontDistribute super."selinux"; + "semaphore-plus" = dontDistribute super."semaphore-plus"; + "semi-iso" = dontDistribute super."semi-iso"; + "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; + "semigroups-actions" = dontDistribute super."semigroups-actions"; + "semiring" = dontDistribute super."semiring"; + "semiring-simple" = dontDistribute super."semiring-simple"; + "semver-range" = dontDistribute super."semver-range"; + "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; + "sensenet" = dontDistribute super."sensenet"; + "sentry" = dontDistribute super."sentry"; + "senza" = dontDistribute super."senza"; + "separated" = dontDistribute super."separated"; + "seqaid" = dontDistribute super."seqaid"; + "seqid" = dontDistribute super."seqid"; + "seqid-streams" = dontDistribute super."seqid-streams"; + "seqloc-datafiles" = dontDistribute super."seqloc-datafiles"; + "sequence" = dontDistribute super."sequence"; + "sequent-core" = dontDistribute super."sequent-core"; + "sequential-index" = dontDistribute super."sequential-index"; + "sequor" = dontDistribute super."sequor"; + "serial" = dontDistribute super."serial"; + "serial-test-generators" = dontDistribute super."serial-test-generators"; + "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; + "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; + "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; + "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; + "servant-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pandoc" = dontDistribute super."servant-pandoc"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-response" = dontDistribute super."servant-response"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; + "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-extra" = doDistribute super."set-extra_1_3_2"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setgame" = dontDistribute super."setgame"; + "setops" = dontDistribute super."setops"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-grammar" = dontDistribute super."sexp-grammar"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shake-persist" = dontDistribute super."shake-persist"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-babel" = dontDistribute super."shakespeare-babel"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "sharc-timbre" = dontDistribute super."sharc-timbre"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "shivers-cfg" = dontDistribute super."shivers-cfg"; + "shoap" = dontDistribute super."shoap"; + "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; + "shorten-strings" = dontDistribute super."shorten-strings"; + "show" = dontDistribute super."show"; + "show-type" = dontDistribute super."show-type"; + "showdown" = dontDistribute super."showdown"; + "shpider" = dontDistribute super."shpider"; + "shplit" = dontDistribute super."shplit"; + "shqq" = dontDistribute super."shqq"; + "shuffle" = dontDistribute super."shuffle"; + "sieve" = dontDistribute super."sieve"; + "sifflet" = dontDistribute super."sifflet"; + "sifflet-lib" = dontDistribute super."sifflet-lib"; + "sign" = dontDistribute super."sign"; + "signals" = dontDistribute super."signals"; + "signed-multiset" = dontDistribute super."signed-multiset"; + "simd" = dontDistribute super."simd"; + "simgi" = dontDistribute super."simgi"; + "simple-actors" = dontDistribute super."simple-actors"; + "simple-atom" = dontDistribute super."simple-atom"; + "simple-bluetooth" = dontDistribute super."simple-bluetooth"; + "simple-c-value" = dontDistribute super."simple-c-value"; + "simple-conduit" = dontDistribute super."simple-conduit"; + "simple-config" = dontDistribute super."simple-config"; + "simple-css" = dontDistribute super."simple-css"; + "simple-eval" = dontDistribute super."simple-eval"; + "simple-firewire" = dontDistribute super."simple-firewire"; + "simple-form" = dontDistribute super."simple-form"; + "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm"; + "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr"; + "simple-get-opt" = dontDistribute super."simple-get-opt"; + "simple-index" = dontDistribute super."simple-index"; + "simple-log" = dontDistribute super."simple-log"; + "simple-log-syslog" = dontDistribute super."simple-log-syslog"; + "simple-neural-networks" = dontDistribute super."simple-neural-networks"; + "simple-nix" = dontDistribute super."simple-nix"; + "simple-observer" = dontDistribute super."simple-observer"; + "simple-pascal" = dontDistribute super."simple-pascal"; + "simple-pipe" = dontDistribute super."simple-pipe"; + "simple-rope" = dontDistribute super."simple-rope"; + "simple-server" = dontDistribute super."simple-server"; + "simple-sessions" = dontDistribute super."simple-sessions"; + "simple-sql-parser" = dontDistribute super."simple-sql-parser"; + "simple-stacked-vm" = dontDistribute super."simple-stacked-vm"; + "simple-tabular" = dontDistribute super."simple-tabular"; + "simple-vec3" = dontDistribute super."simple-vec3"; + "simpleargs" = dontDistribute super."simpleargs"; + "simpleirc" = dontDistribute super."simpleirc"; + "simpleirc-lens" = dontDistribute super."simpleirc-lens"; + "simplenote" = dontDistribute super."simplenote"; + "simpleprelude" = dontDistribute super."simpleprelude"; + "simplesmtpclient" = dontDistribute super."simplesmtpclient"; + "simplessh" = dontDistribute super."simplessh"; + "simplest-sqlite" = dontDistribute super."simplest-sqlite"; + "simplex" = dontDistribute super."simplex"; + "simplex-basic" = dontDistribute super."simplex-basic"; + "simseq" = dontDistribute super."simseq"; + "simtreelo" = dontDistribute super."simtreelo"; + "sindre" = dontDistribute super."sindre"; + "singleton-nats" = dontDistribute super."singleton-nats"; + "sink" = dontDistribute super."sink"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "sized" = dontDistribute super."sized"; + "sized-types" = dontDistribute super."sized-types"; + "sized-vector" = dontDistribute super."sized-vector"; + "sizes" = dontDistribute super."sizes"; + "sjsp" = dontDistribute super."sjsp"; + "skeleton" = dontDistribute super."skeleton"; + "skell" = dontDistribute super."skell"; + "skemmtun" = dontDistribute super."skemmtun"; + "skype4hs" = dontDistribute super."skype4hs"; + "skypelogexport" = dontDistribute super."skypelogexport"; + "slack" = dontDistribute super."slack"; + "slack-api" = dontDistribute super."slack-api"; + "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "sleep" = dontDistribute super."sleep"; + "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; + "slidemews" = dontDistribute super."slidemews"; + "sloane" = dontDistribute super."sloane"; + "slot-lambda" = dontDistribute super."slot-lambda"; + "sloth" = dontDistribute super."sloth"; + "smallarray" = dontDistribute super."smallarray"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "smt-lib" = dontDistribute super."smt-lib"; + "smtlib2" = dontDistribute super."smtlib2"; + "smtp-mail-ng" = dontDistribute super."smtp-mail-ng"; + "smtp2mta" = dontDistribute super."smtp2mta"; + "smtps-gmail" = dontDistribute super."smtps-gmail"; + "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; + "snap-accept" = dontDistribute super."snap-accept"; + "snap-app" = dontDistribute super."snap-app"; + "snap-auth-cli" = dontDistribute super."snap-auth-cli"; + "snap-blaze" = dontDistribute super."snap-blaze"; + "snap-blaze-clay" = dontDistribute super."snap-blaze-clay"; + "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities"; + "snap-cors" = dontDistribute super."snap-cors"; + "snap-elm" = dontDistribute super."snap-elm"; + "snap-error-collector" = dontDistribute super."snap-error-collector"; + "snap-extras" = dontDistribute super."snap-extras"; + "snap-language" = dontDistribute super."snap-language"; + "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic"; + "snap-loader-static" = dontDistribute super."snap-loader-static"; + "snap-predicates" = dontDistribute super."snap-predicates"; + "snap-testing" = dontDistribute super."snap-testing"; + "snap-utils" = dontDistribute super."snap-utils"; + "snap-web-routes" = dontDistribute super."snap-web-routes"; + "snaplet-acid-state" = dontDistribute super."snaplet-acid-state"; + "snaplet-actionlog" = dontDistribute super."snaplet-actionlog"; + "snaplet-amqp" = dontDistribute super."snaplet-amqp"; + "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid"; + "snaplet-coffee" = dontDistribute super."snaplet-coffee"; + "snaplet-css-min" = dontDistribute super."snaplet-css-min"; + "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; + "snaplet-hasql" = dontDistribute super."snaplet-hasql"; + "snaplet-haxl" = dontDistribute super."snaplet-haxl"; + "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; + "snaplet-hslogger" = dontDistribute super."snaplet-hslogger"; + "snaplet-i18n" = dontDistribute super."snaplet-i18n"; + "snaplet-influxdb" = dontDistribute super."snaplet-influxdb"; + "snaplet-lss" = dontDistribute super."snaplet-lss"; + "snaplet-mandrill" = dontDistribute super."snaplet-mandrill"; + "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB"; + "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic"; + "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple"; + "snaplet-oauth" = dontDistribute super."snaplet-oauth"; + "snaplet-persistent" = dontDistribute super."snaplet-persistent"; + "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple"; + "snaplet-postmark" = dontDistribute super."snaplet-postmark"; + "snaplet-purescript" = dontDistribute super."snaplet-purescript"; + "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha"; + "snaplet-redis" = dontDistribute super."snaplet-redis"; + "snaplet-redson" = dontDistribute super."snaplet-redson"; + "snaplet-rest" = dontDistribute super."snaplet-rest"; + "snaplet-riak" = dontDistribute super."snaplet-riak"; + "snaplet-sass" = dontDistribute super."snaplet-sass"; + "snaplet-sedna" = dontDistribute super."snaplet-sedna"; + "snaplet-ses-html" = dontDistribute super."snaplet-ses-html"; + "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple"; + "snaplet-stripe" = dontDistribute super."snaplet-stripe"; + "snaplet-tasks" = dontDistribute super."snaplet-tasks"; + "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions"; + "snaplet-wordpress" = dontDistribute super."snaplet-wordpress"; + "snappy" = dontDistribute super."snappy"; + "snappy-conduit" = dontDistribute super."snappy-conduit"; + "snappy-framing" = dontDistribute super."snappy-framing"; + "snappy-iteratee" = dontDistribute super."snappy-iteratee"; + "sndfile-enumerators" = dontDistribute super."sndfile-enumerators"; + "sneakyterm" = dontDistribute super."sneakyterm"; + "sneathlane-haste" = dontDistribute super."sneathlane-haste"; + "snippet-extractor" = dontDistribute super."snippet-extractor"; + "snm" = dontDistribute super."snm"; + "snow-white" = dontDistribute super."snow-white"; + "snowball" = dontDistribute super."snowball"; + "snowglobe" = dontDistribute super."snowglobe"; + "sock2stream" = dontDistribute super."sock2stream"; + "sockaddr" = dontDistribute super."sockaddr"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "socketson" = dontDistribute super."socketson"; + "soegtk" = dontDistribute super."soegtk"; + "sonic-visualiser" = dontDistribute super."sonic-visualiser"; + "sophia" = dontDistribute super."sophia"; + "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; + "sorted" = dontDistribute super."sorted"; + "sorting" = dontDistribute super."sorting"; + "sorty" = dontDistribute super."sorty"; + "sound-collage" = dontDistribute super."sound-collage"; + "sounddelay" = dontDistribute super."sounddelay"; + "source-code-server" = dontDistribute super."source-code-server"; + "sousit" = dontDistribute super."sousit"; + "sox" = dontDistribute super."sox"; + "soxlib" = dontDistribute super."soxlib"; + "soyuz" = dontDistribute super."soyuz"; + "spacefill" = dontDistribute super."spacefill"; + "spacepart" = dontDistribute super."spacepart"; + "spaceprobe" = dontDistribute super."spaceprobe"; + "spanout" = dontDistribute super."spanout"; + "sparse" = dontDistribute super."sparse"; + "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; + "sparsebit" = dontDistribute super."sparsebit"; + "sparsecheck" = dontDistribute super."sparsecheck"; + "sparser" = dontDistribute super."sparser"; + "spata" = dontDistribute super."spata"; + "spatial-math" = dontDistribute super."spatial-math"; + "spawn" = dontDistribute super."spawn"; + "spe" = dontDistribute super."spe"; + "special-functors" = dontDistribute super."special-functors"; + "special-keys" = dontDistribute super."special-keys"; + "specialize-th" = dontDistribute super."specialize-th"; + "species" = dontDistribute super."species"; + "speculation-transformers" = dontDistribute super."speculation-transformers"; + "spelling-suggest" = dontDistribute super."spelling-suggest"; + "sphero" = dontDistribute super."sphero"; + "sphinx-cli" = dontDistribute super."sphinx-cli"; + "spice" = dontDistribute super."spice"; + "spike" = dontDistribute super."spike"; + "spine" = dontDistribute super."spine"; + "spir-v" = dontDistribute super."spir-v"; + "splay" = dontDistribute super."splay"; + "splaytree" = dontDistribute super."splaytree"; + "spline3" = dontDistribute super."spline3"; + "splines" = dontDistribute super."splines"; + "split-channel" = dontDistribute super."split-channel"; + "split-record" = dontDistribute super."split-record"; + "split-tchan" = dontDistribute super."split-tchan"; + "splitter" = dontDistribute super."splitter"; + "splot" = dontDistribute super."splot"; + "spool" = dontDistribute super."spool"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "spsa" = dontDistribute super."spsa"; + "spy" = dontDistribute super."spy"; + "sql-simple" = dontDistribute super."sql-simple"; + "sql-simple-mysql" = dontDistribute super."sql-simple-mysql"; + "sql-simple-pool" = dontDistribute super."sql-simple-pool"; + "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql"; + "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite"; + "sql-words" = dontDistribute super."sql-words"; + "sqlite" = dontDistribute super."sqlite"; + "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed"; + "sqlvalue-list" = dontDistribute super."sqlvalue-list"; + "squeeze" = dontDistribute super."squeeze"; + "sr-extra" = dontDistribute super."sr-extra"; + "srcinst" = dontDistribute super."srcinst"; + "srec" = dontDistribute super."srec"; + "sscgi" = dontDistribute super."sscgi"; + "ssh" = dontDistribute super."ssh"; + "sshd-lint" = dontDistribute super."sshd-lint"; + "sshtun" = dontDistribute super."sshtun"; + "sssp" = dontDistribute super."sssp"; + "sstable" = dontDistribute super."sstable"; + "ssv" = dontDistribute super."ssv"; + "stable-heap" = dontDistribute super."stable-heap"; + "stable-maps" = dontDistribute super."stable-maps"; + "stable-marriage" = dontDistribute super."stable-marriage"; + "stable-memo" = dontDistribute super."stable-memo"; + "stable-tree" = dontDistribute super."stable-tree"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; + "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; + "standalone-haddock" = dontDistribute super."standalone-haddock"; + "star-to-star" = dontDistribute super."star-to-star"; + "star-to-star-contra" = dontDistribute super."star-to-star-contra"; + "starling" = dontDistribute super."starling"; + "starrover2" = dontDistribute super."starrover2"; + "stash" = dontDistribute super."stash"; + "state" = dontDistribute super."state"; + "state-record" = dontDistribute super."state-record"; + "statechart" = dontDistribute super."statechart"; + "stateful-mtl" = dontDistribute super."stateful-mtl"; + "statethread" = dontDistribute super."statethread"; + "statgrab" = dontDistribute super."statgrab"; + "static-hash" = dontDistribute super."static-hash"; + "static-resources" = dontDistribute super."static-resources"; + "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; + "statistics-fusion" = dontDistribute super."statistics-fusion"; + "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; + "stats" = dontDistribute super."stats"; + "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; + "statsd-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; + "stm-firehose" = dontDistribute super."stm-firehose"; + "stm-io-hooks" = dontDistribute super."stm-io-hooks"; + "stm-lifted" = dontDistribute super."stm-lifted"; + "stm-linkedlist" = dontDistribute super."stm-linkedlist"; + "stm-orelse-io" = dontDistribute super."stm-orelse-io"; + "stm-promise" = dontDistribute super."stm-promise"; + "stm-queue-extras" = dontDistribute super."stm-queue-extras"; + "stm-sbchan" = dontDistribute super."stm-sbchan"; + "stm-split" = dontDistribute super."stm-split"; + "stm-tlist" = dontDistribute super."stm-tlist"; + "stmcontrol" = dontDistribute super."stmcontrol"; + "stomp-conduit" = dontDistribute super."stomp-conduit"; + "stomp-patterns" = dontDistribute super."stomp-patterns"; + "stomp-queue" = dontDistribute super."stomp-queue"; + "stompl" = dontDistribute super."stompl"; + "stopwatch" = dontDistribute super."stopwatch"; + "storable" = dontDistribute super."storable"; + "storable-record" = dontDistribute super."storable-record"; + "storable-static-array" = dontDistribute super."storable-static-array"; + "storable-tuple" = dontDistribute super."storable-tuple"; + "storablevector" = dontDistribute super."storablevector"; + "storablevector-carray" = dontDistribute super."storablevector-carray"; + "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; + "str" = dontDistribute super."str"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "strict-base-types" = doDistribute super."strict-base-types_0_4_0"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin"; + "strict-identity" = dontDistribute super."strict-identity"; + "strict-io" = dontDistribute super."strict-io"; + "strictify" = dontDistribute super."strictify"; + "strictly" = dontDistribute super."strictly"; + "string" = dontDistribute super."string"; + "string-conv" = dontDistribute super."string-conv"; + "string-convert" = dontDistribute super."string-convert"; + "string-quote" = dontDistribute super."string-quote"; + "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; + "stringlike" = dontDistribute super."stringlike"; + "stringprep" = dontDistribute super."stringprep"; + "strings" = dontDistribute super."strings"; + "stringtable-atom" = dontDistribute super."stringtable-atom"; + "strio" = dontDistribute super."strio"; + "stripe" = dontDistribute super."stripe"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; + "strive" = dontDistribute super."strive"; + "strptime" = dontDistribute super."strptime"; + "structs" = dontDistribute super."structs"; + "structural-induction" = dontDistribute super."structural-induction"; + "structured-haskell-mode" = dontDistribute super."structured-haskell-mode"; + "structured-mongoDB" = dontDistribute super."structured-mongoDB"; + "structures" = dontDistribute super."structures"; + "stunclient" = dontDistribute super."stunclient"; + "stunts" = dontDistribute super."stunts"; + "stylized" = dontDistribute super."stylized"; + "sub-state" = dontDistribute super."sub-state"; + "subhask" = dontDistribute super."subhask"; + "subleq-toolchain" = dontDistribute super."subleq-toolchain"; + "subnet" = dontDistribute super."subnet"; + "subtitleParser" = dontDistribute super."subtitleParser"; + "subtitles" = dontDistribute super."subtitles"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sump" = dontDistribute super."sump"; + "sundown" = dontDistribute super."sundown"; + "sunlight" = dontDistribute super."sunlight"; + "sunroof-compiler" = dontDistribute super."sunroof-compiler"; + "sunroof-examples" = dontDistribute super."sunroof-examples"; + "sunroof-server" = dontDistribute super."sunroof-server"; + "super-user-spark" = dontDistribute super."super-user-spark"; + "supercollider-ht" = dontDistribute super."supercollider-ht"; + "supercollider-midi" = dontDistribute super."supercollider-midi"; + "superdoc" = dontDistribute super."superdoc"; + "supero" = dontDistribute super."supero"; + "supervisor" = dontDistribute super."supervisor"; + "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; + "svg2q" = dontDistribute super."svg2q"; + "svgcairo" = dontDistribute super."svgcairo"; + "svgutils" = dontDistribute super."svgutils"; + "svm" = dontDistribute super."svm"; + "svm-light-utils" = dontDistribute super."svm-light-utils"; + "svm-simple" = dontDistribute super."svm-simple"; + "svndump" = dontDistribute super."svndump"; + "swagger2" = doDistribute super."swagger2_1_2_1"; + "swapper" = dontDistribute super."swapper"; + "swearjure" = dontDistribute super."swearjure"; + "swf" = dontDistribute super."swf"; + "swift-lda" = dontDistribute super."swift-lda"; + "swish" = dontDistribute super."swish"; + "sws" = dontDistribute super."sws"; + "syb-extras" = dontDistribute super."syb-extras"; + "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; + "sylvia" = dontDistribute super."sylvia"; + "sym" = dontDistribute super."sym"; + "sym-plot" = dontDistribute super."sym-plot"; + "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; + "sync" = dontDistribute super."sync"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "t-regex" = dontDistribute super."t-regex"; + "ta" = dontDistribute super."ta"; + "table" = dontDistribute super."table"; + "table-tennis" = dontDistribute super."table-tennis"; + "tableaux" = dontDistribute super."tableaux"; + "tables" = dontDistribute super."tables"; + "tablestorage" = dontDistribute super."tablestorage"; + "tabloid" = dontDistribute super."tabloid"; + "taffybar" = dontDistribute super."taffybar"; + "tag-bits" = dontDistribute super."tag-bits"; + "tag-stream" = dontDistribute super."tag-stream"; + "tagchup" = dontDistribute super."tagchup"; + "tagged-exception-core" = dontDistribute super."tagged-exception-core"; + "tagged-list" = dontDistribute super."tagged-list"; + "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; + "tagged-transformer" = dontDistribute super."tagged-transformer"; + "tagging" = dontDistribute super."tagging"; + "taggy" = dontDistribute super."taggy"; + "taggy-lens" = dontDistribute super."taggy-lens"; + "taglib" = dontDistribute super."taglib"; + "taglib-api" = dontDistribute super."taglib-api"; + "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_8"; + "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "takahashi" = dontDistribute super."takahashi"; + "takusen-oracle" = dontDistribute super."takusen-oracle"; + "tamarin-prover" = dontDistribute super."tamarin-prover"; + "tamarin-prover-term" = dontDistribute super."tamarin-prover-term"; + "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; + "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; + "tamper" = dontDistribute super."tamper"; + "target" = dontDistribute super."target"; + "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; + "taskpool" = dontDistribute super."taskpool"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; + "tasty-integrate" = dontDistribute super."tasty-integrate"; + "tasty-laws" = dontDistribute super."tasty-laws"; + "tasty-lens" = dontDistribute super."tasty-lens"; + "tasty-program" = dontDistribute super."tasty-program"; + "tateti-tateti" = dontDistribute super."tateti-tateti"; + "tau" = dontDistribute super."tau"; + "tbox" = dontDistribute super."tbox"; + "tcache-AWS" = dontDistribute super."tcache-AWS"; + "tccli" = dontDistribute super."tccli"; + "tce-conf" = dontDistribute super."tce-conf"; + "tconfig" = dontDistribute super."tconfig"; + "tcp" = dontDistribute super."tcp"; + "tdd-util" = dontDistribute super."tdd-util"; + "tdoc" = dontDistribute super."tdoc"; + "teams" = dontDistribute super."teams"; + "teeth" = dontDistribute super."teeth"; + "telegram" = dontDistribute super."telegram"; + "telegram-api" = dontDistribute super."telegram-api"; + "teleport" = dontDistribute super."teleport"; + "template-default" = dontDistribute super."template-default"; + "template-haskell-util" = dontDistribute super."template-haskell-util"; + "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; + "templatepg" = dontDistribute super."templatepg"; + "templater" = dontDistribute super."templater"; + "tempodb" = dontDistribute super."tempodb"; + "temporal-csound" = dontDistribute super."temporal-csound"; + "temporal-media" = dontDistribute super."temporal-media"; + "temporal-music-notation" = dontDistribute super."temporal-music-notation"; + "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo"; + "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western"; + "temporary-resourcet" = dontDistribute super."temporary-resourcet"; + "tempus" = dontDistribute super."tempus"; + "tempus-fugit" = dontDistribute super."tempus-fugit"; + "tensor" = dontDistribute super."tensor"; + "term-rewriting" = dontDistribute super."term-rewriting"; + "termbox-bindings" = dontDistribute super."termbox-bindings"; + "termination-combinators" = dontDistribute super."termination-combinators"; + "terminfo" = doDistribute super."terminfo_0_4_0_2"; + "terminfo-hs" = dontDistribute super."terminfo-hs"; + "termplot" = dontDistribute super."termplot"; + "terntup" = dontDistribute super."terntup"; + "terrahs" = dontDistribute super."terrahs"; + "tersmu" = dontDistribute super."tersmu"; + "test-framework-doctest" = dontDistribute super."test-framework-doctest"; + "test-framework-golden" = dontDistribute super."test-framework-golden"; + "test-framework-program" = dontDistribute super."test-framework-program"; + "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck"; + "test-framework-sandbox" = dontDistribute super."test-framework-sandbox"; + "test-framework-skip" = dontDistribute super."test-framework-skip"; + "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat"; + "test-invariant" = dontDistribute super."test-invariant"; + "test-pkg" = dontDistribute super."test-pkg"; + "test-sandbox" = dontDistribute super."test-sandbox"; + "test-sandbox-compose" = dontDistribute super."test-sandbox-compose"; + "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit"; + "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; + "test-shouldbe" = dontDistribute super."test-shouldbe"; + "testPkg" = dontDistribute super."testPkg"; + "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; + "testloop" = dontDistribute super."testloop"; + "testpack" = dontDistribute super."testpack"; + "testpattern" = dontDistribute super."testpattern"; + "testrunner" = dontDistribute super."testrunner"; + "tetris" = dontDistribute super."tetris"; + "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4_2"; + "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; + "text-and-plots" = dontDistribute super."text-and-plots"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-ldap" = dontDistribute super."text-ldap"; + "text-locale-encoding" = dontDistribute super."text-locale-encoding"; + "text-normal" = dontDistribute super."text-normal"; + "text-position" = dontDistribute super."text-position"; + "text-postgresql" = dontDistribute super."text-postgresql"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-region" = dontDistribute super."text-region"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "text-show-instances" = dontDistribute super."text-show-instances"; + "text-stream-decode" = dontDistribute super."text-stream-decode"; + "text-utf7" = dontDistribute super."text-utf7"; + "text-xml-generic" = dontDistribute super."text-xml-generic"; + "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text1" = dontDistribute super."text1"; + "textPlot" = dontDistribute super."textPlot"; + "textmatetags" = dontDistribute super."textmatetags"; + "textocat-api" = dontDistribute super."textocat-api"; + "texts" = dontDistribute super."texts"; + "textual" = dontDistribute super."textual"; + "tfp" = dontDistribute super."tfp"; + "tfp-th" = dontDistribute super."tfp-th"; + "tftp" = dontDistribute super."tftp"; + "tga" = dontDistribute super."tga"; + "th-alpha" = dontDistribute super."th-alpha"; + "th-build" = dontDistribute super."th-build"; + "th-cas" = dontDistribute super."th-cas"; + "th-context" = dontDistribute super."th-context"; + "th-fold" = dontDistribute super."th-fold"; + "th-inline-io-action" = dontDistribute super."th-inline-io-action"; + "th-instance-reification" = dontDistribute super."th-instance-reification"; + "th-instances" = dontDistribute super."th-instances"; + "th-kinds" = dontDistribute super."th-kinds"; + "th-kinds-fork" = dontDistribute super."th-kinds-fork"; + "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-printf" = dontDistribute super."th-printf"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "thespian" = dontDistribute super."thespian"; + "theta-functions" = dontDistribute super."theta-functions"; + "thih" = dontDistribute super."thih"; + "thimk" = dontDistribute super."thimk"; + "thorn" = dontDistribute super."thorn"; + "thread-local-storage" = dontDistribute super."thread-local-storage"; + "threadPool" = dontDistribute super."threadPool"; + "threadmanager" = dontDistribute super."threadmanager"; + "threads-pool" = dontDistribute super."threads-pool"; + "threads-supervisor" = dontDistribute super."threads-supervisor"; + "threadscope" = dontDistribute super."threadscope"; + "threefish" = dontDistribute super."threefish"; + "threepenny-gui" = dontDistribute super."threepenny-gui"; + "thrift" = dontDistribute super."thrift"; + "thrist" = dontDistribute super."thrist"; + "throttle" = dontDistribute super."throttle"; + "thumbnail" = dontDistribute super."thumbnail"; + "tianbar" = dontDistribute super."tianbar"; + "tic-tac-toe" = dontDistribute super."tic-tac-toe"; + "tickle" = dontDistribute super."tickle"; + "tictactoe3d" = dontDistribute super."tictactoe3d"; + "tidal" = dontDistribute super."tidal"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "tidal-vis" = dontDistribute super."tidal-vis"; + "tie-knot" = dontDistribute super."tie-knot"; + "tiempo" = dontDistribute super."tiempo"; + "tiger" = dontDistribute super."tiger"; + "tight-apply" = dontDistribute super."tight-apply"; + "tightrope" = dontDistribute super."tightrope"; + "tighttp" = dontDistribute super."tighttp"; + "tilings" = dontDistribute super."tilings"; + "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; + "time-extras" = dontDistribute super."time-extras"; + "time-exts" = dontDistribute super."time-exts"; + "time-http" = dontDistribute super."time-http"; + "time-interval" = dontDistribute super."time-interval"; + "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; + "time-patterns" = dontDistribute super."time-patterns"; + "time-qq" = dontDistribute super."time-qq"; + "time-recurrence" = dontDistribute super."time-recurrence"; + "time-series" = dontDistribute super."time-series"; + "time-w3c" = dontDistribute super."time-w3c"; + "timecalc" = dontDistribute super."timecalc"; + "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; + "timemap" = dontDistribute super."timemap"; + "timeout" = dontDistribute super."timeout"; + "timeout-control" = dontDistribute super."timeout-control"; + "timeout-with-results" = dontDistribute super."timeout-with-results"; + "timeparsers" = dontDistribute super."timeparsers"; + "timeplot" = dontDistribute super."timeplot"; + "timers" = dontDistribute super."timers"; + "timers-updatable" = dontDistribute super."timers-updatable"; + "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; + "timestamper" = dontDistribute super."timestamper"; + "timezone-olson-th" = dontDistribute super."timezone-olson-th"; + "timing-convenience" = dontDistribute super."timing-convenience"; + "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; + "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; + "tip-lib" = dontDistribute super."tip-lib"; + "tiphys" = dontDistribute super."tiphys"; + "titlecase" = dontDistribute super."titlecase"; + "tkhs" = dontDistribute super."tkhs"; + "tkyprof" = dontDistribute super."tkyprof"; + "tld" = dontDistribute super."tld"; + "tls-extra" = dontDistribute super."tls-extra"; + "tmpl" = dontDistribute super."tmpl"; + "tn" = dontDistribute super."tn"; + "tnet" = dontDistribute super."tnet"; + "to-haskell" = dontDistribute super."to-haskell"; + "to-string-class" = dontDistribute super."to-string-class"; + "to-string-instances" = dontDistribute super."to-string-instances"; + "todos" = dontDistribute super."todos"; + "tofromxml" = dontDistribute super."tofromxml"; + "toilet" = dontDistribute super."toilet"; + "tokenify" = dontDistribute super."tokenify"; + "tokenize" = dontDistribute super."tokenize"; + "toktok" = dontDistribute super."toktok"; + "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell"; + "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell"; + "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal"; + "toml" = dontDistribute super."toml"; + "toolshed" = dontDistribute super."toolshed"; + "topkata" = dontDistribute super."topkata"; + "torch" = dontDistribute super."torch"; + "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; + "total-map" = dontDistribute super."total-map"; + "total-maps" = dontDistribute super."total-maps"; + "touched" = dontDistribute super."touched"; + "toysolver" = dontDistribute super."toysolver"; + "tpdb" = dontDistribute super."tpdb"; + "trace" = dontDistribute super."trace"; + "trace-call" = dontDistribute super."trace-call"; + "trace-function-call" = dontDistribute super."trace-function-call"; + "traced" = dontDistribute super."traced"; + "tracer" = dontDistribute super."tracer"; + "tracker" = dontDistribute super."tracker"; + "trajectory" = dontDistribute super."trajectory"; + "transactional-events" = dontDistribute super."transactional-events"; + "transf" = dontDistribute super."transf"; + "transformations" = dontDistribute super."transformations"; + "transformers-abort" = dontDistribute super."transformers-abort"; + "transformers-compose" = dontDistribute super."transformers-compose"; + "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-free" = dontDistribute super."transformers-free"; + "transformers-runnable" = dontDistribute super."transformers-runnable"; + "transformers-supply" = dontDistribute super."transformers-supply"; + "transient" = dontDistribute super."transient"; + "translatable-intset" = dontDistribute super."translatable-intset"; + "translate" = dontDistribute super."translate"; + "travis" = dontDistribute super."travis"; + "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; + "trawl" = dontDistribute super."trawl"; + "traypoweroff" = dontDistribute super."traypoweroff"; + "tree-fun" = dontDistribute super."tree-fun"; + "tree-monad" = dontDistribute super."tree-monad"; + "treemap-html" = dontDistribute super."treemap-html"; + "treemap-html-tools" = dontDistribute super."treemap-html-tools"; + "treersec" = dontDistribute super."treersec"; + "treeviz" = dontDistribute super."treeviz"; + "tremulous-query" = dontDistribute super."tremulous-query"; + "trhsx" = dontDistribute super."trhsx"; + "triangulation" = dontDistribute super."triangulation"; + "trimpolya" = dontDistribute super."trimpolya"; + "tripLL" = dontDistribute super."tripLL"; + "trivia" = dontDistribute super."trivia"; + "trivial-constraint" = dontDistribute super."trivial-constraint"; + "tropical" = dontDistribute super."tropical"; + "truelevel" = dontDistribute super."truelevel"; + "trurl" = dontDistribute super."trurl"; + "truthful" = dontDistribute super."truthful"; + "tsession" = dontDistribute super."tsession"; + "tsession-happstack" = dontDistribute super."tsession-happstack"; + "tskiplist" = dontDistribute super."tskiplist"; + "tslib" = dontDistribute super."tslib"; + "tslogger" = dontDistribute super."tslogger"; + "tsp-viz" = dontDistribute super."tsp-viz"; + "tsparse" = dontDistribute super."tsparse"; + "tst" = dontDistribute super."tst"; + "tsvsql" = dontDistribute super."tsvsql"; + "tttool" = doDistribute super."tttool_1_5_1"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple" = dontDistribute super."tuple"; + "tuple-gen" = dontDistribute super."tuple-gen"; + "tuple-generic" = dontDistribute super."tuple-generic"; + "tuple-hlist" = dontDistribute super."tuple-hlist"; + "tuple-lenses" = dontDistribute super."tuple-lenses"; + "tuple-morph" = dontDistribute super."tuple-morph"; + "tupleinstances" = dontDistribute super."tupleinstances"; + "turing" = dontDistribute super."turing"; + "turing-music" = dontDistribute super."turing-music"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "turtle-options" = dontDistribute super."turtle-options"; + "tweak" = dontDistribute super."tweak"; + "twee" = dontDistribute super."twee"; + "twentefp" = dontDistribute super."twentefp"; + "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; + "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees"; + "twentefp-graphs" = dontDistribute super."twentefp-graphs"; + "twentefp-number" = dontDistribute super."twentefp-number"; + "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; + "twentefp-trees" = dontDistribute super."twentefp-trees"; + "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; + "twhs" = dontDistribute super."twhs"; + "twidge" = dontDistribute super."twidge"; + "twilight-stm" = dontDistribute super."twilight-stm"; + "twilio" = dontDistribute super."twilio"; + "twill" = dontDistribute super."twill"; + "twiml" = dontDistribute super."twiml"; + "twine" = dontDistribute super."twine"; + "twisty" = dontDistribute super."twisty"; + "twitch" = dontDistribute super."twitch"; + "twitter" = dontDistribute super."twitter"; + "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "tx" = dontDistribute super."tx"; + "txt-sushi" = dontDistribute super."txt-sushi"; + "txt2rtf" = dontDistribute super."txt2rtf"; + "txtblk" = dontDistribute super."txtblk"; + "ty" = dontDistribute super."ty"; + "typalyze" = dontDistribute super."typalyze"; + "type-booleans" = dontDistribute super."type-booleans"; + "type-cache" = dontDistribute super."type-cache"; + "type-cereal" = dontDistribute super."type-cereal"; + "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; + "type-digits" = dontDistribute super."type-digits"; + "type-equality" = dontDistribute super."type-equality"; + "type-equality-check" = dontDistribute super."type-equality-check"; + "type-fun" = dontDistribute super."type-fun"; + "type-functions" = dontDistribute super."type-functions"; + "type-hint" = dontDistribute super."type-hint"; + "type-int" = dontDistribute super."type-int"; + "type-iso" = dontDistribute super."type-iso"; + "type-level" = dontDistribute super."type-level"; + "type-level-bst" = dontDistribute super."type-level-bst"; + "type-level-natural-number" = dontDistribute super."type-level-natural-number"; + "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction"; + "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; + "type-level-sets" = dontDistribute super."type-level-sets"; + "type-level-tf" = dontDistribute super."type-level-tf"; + "type-natural" = dontDistribute super."type-natural"; + "type-ord" = dontDistribute super."type-ord"; + "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; + "type-prelude" = dontDistribute super."type-prelude"; + "type-settheory" = dontDistribute super."type-settheory"; + "type-spine" = dontDistribute super."type-spine"; + "type-structure" = dontDistribute super."type-structure"; + "type-sub-th" = dontDistribute super."type-sub-th"; + "type-unary" = dontDistribute super."type-unary"; + "typeable-th" = dontDistribute super."typeable-th"; + "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; + "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; + "typedquery" = dontDistribute super."typedquery"; + "typehash" = dontDistribute super."typehash"; + "typelevel" = dontDistribute super."typelevel"; + "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typeof" = dontDistribute super."typeof"; + "typeparams" = dontDistribute super."typeparams"; + "typesafe-endian" = dontDistribute super."typesafe-endian"; + "typescript-docs" = dontDistribute super."typescript-docs"; + "typical" = dontDistribute super."typical"; + "typography-geometry" = dontDistribute super."typography-geometry"; + "uAgda" = dontDistribute super."uAgda"; + "ua-parser" = dontDistribute super."ua-parser"; + "uacpid" = dontDistribute super."uacpid"; + "uberlast" = dontDistribute super."uberlast"; + "uconv" = dontDistribute super."uconv"; + "udbus" = dontDistribute super."udbus"; + "udbus-model" = dontDistribute super."udbus-model"; + "udcode" = dontDistribute super."udcode"; + "udev" = dontDistribute super."udev"; + "uhc-light" = dontDistribute super."uhc-light"; + "uhc-util" = dontDistribute super."uhc-util"; + "uhexdump" = dontDistribute super."uhexdump"; + "uhttpc" = dontDistribute super."uhttpc"; + "ui-command" = dontDistribute super."ui-command"; + "uid" = dontDistribute super."uid"; + "una" = dontDistribute super."una"; + "unagi-chan" = dontDistribute super."unagi-chan"; + "unagi-streams" = dontDistribute super."unagi-streams"; + "unamb" = dontDistribute super."unamb"; + "unamb-custom" = dontDistribute super."unamb-custom"; + "unbound" = dontDistribute super."unbound"; + "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; + "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; + "unfoldable" = dontDistribute super."unfoldable"; + "ungadtagger" = dontDistribute super."ungadtagger"; + "uni-events" = dontDistribute super."uni-events"; + "uni-graphs" = dontDistribute super."uni-graphs"; + "uni-htk" = dontDistribute super."uni-htk"; + "uni-posixutil" = dontDistribute super."uni-posixutil"; + "uni-reactor" = dontDistribute super."uni-reactor"; + "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph"; + "uni-util" = dontDistribute super."uni-util"; + "unicode" = dontDistribute super."unicode"; + "unicode-names" = dontDistribute super."unicode-names"; + "unicode-normalization" = dontDistribute super."unicode-normalization"; + "unicode-prelude" = dontDistribute super."unicode-prelude"; + "unicode-properties" = dontDistribute super."unicode-properties"; + "unicode-show" = dontDistribute super."unicode-show"; + "unicode-symbols" = dontDistribute super."unicode-symbols"; + "unicoder" = dontDistribute super."unicoder"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; + "union-find-array" = dontDistribute super."union-find-array"; + "union-map" = dontDistribute super."union-map"; + "unique" = dontDistribute super."unique"; + "unique-logic" = dontDistribute super."unique-logic"; + "unique-logic-tf" = dontDistribute super."unique-logic-tf"; + "uniqueid" = dontDistribute super."uniqueid"; + "unit" = dontDistribute super."unit"; + "units" = dontDistribute super."units"; + "units-attoparsec" = dontDistribute super."units-attoparsec"; + "units-defs" = dontDistribute super."units-defs"; + "units-parser" = dontDistribute super."units-parser"; + "unittyped" = dontDistribute super."unittyped"; + "universal-binary" = dontDistribute super."universal-binary"; + "universe-th" = dontDistribute super."universe-th"; + "unix-fcntl" = dontDistribute super."unix-fcntl"; + "unix-handle" = dontDistribute super."unix-handle"; + "unix-io-extra" = dontDistribute super."unix-io-extra"; + "unix-memory" = dontDistribute super."unix-memory"; + "unix-process-conduit" = dontDistribute super."unix-process-conduit"; + "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = dontDistribute super."unlambda"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; + "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; + "unpack-funcs" = dontDistribute super."unpack-funcs"; + "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; + "unsafe" = dontDistribute super."unsafe"; + "unsafe-promises" = dontDistribute super."unsafe-promises"; + "unsafely" = dontDistribute super."unsafely"; + "unsafeperformst" = dontDistribute super."unsafeperformst"; + "unscramble" = dontDistribute super."unscramble"; + "unusable-pkg" = dontDistribute super."unusable-pkg"; + "uom-plugin" = dontDistribute super."uom-plugin"; + "up" = dontDistribute super."up"; + "up-grade" = dontDistribute super."up-grade"; + "uploadcare" = dontDistribute super."uploadcare"; + "upskirt" = dontDistribute super."upskirt"; + "ureader" = dontDistribute super."ureader"; + "urembed" = dontDistribute super."urembed"; + "uri" = dontDistribute super."uri"; + "uri-bytestring" = doDistribute super."uri-bytestring_0_1_9_2"; + "uri-conduit" = dontDistribute super."uri-conduit"; + "uri-enumerator" = dontDistribute super."uri-enumerator"; + "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; + "uri-template" = dontDistribute super."uri-template"; + "url-generic" = dontDistribute super."url-generic"; + "urlcheck" = dontDistribute super."urlcheck"; + "urldecode" = dontDistribute super."urldecode"; + "urldisp-happstack" = dontDistribute super."urldisp-happstack"; + "urlencoded" = dontDistribute super."urlencoded"; + "urn" = dontDistribute super."urn"; + "urxml" = dontDistribute super."urxml"; + "usb" = dontDistribute super."usb"; + "usb-enumerator" = dontDistribute super."usb-enumerator"; + "usb-hid" = dontDistribute super."usb-hid"; + "usb-id-database" = dontDistribute super."usb-id-database"; + "usb-iteratee" = dontDistribute super."usb-iteratee"; + "usb-safe" = dontDistribute super."usb-safe"; + "users" = doDistribute super."users_0_4_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; + "users-test" = doDistribute super."users-test_0_4_0_0"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uulib" = dontDistribute super."uulib"; + "uvector" = dontDistribute super."uvector"; + "uvector-algorithms" = dontDistribute super."uvector-algorithms"; + "uxadt" = dontDistribute super."uxadt"; + "uzbl-with-source" = dontDistribute super."uzbl-with-source"; + "v4l2" = dontDistribute super."v4l2"; + "v4l2-examples" = dontDistribute super."v4l2-examples"; + "vacuum" = dontDistribute super."vacuum"; + "vacuum-cairo" = dontDistribute super."vacuum-cairo"; + "vacuum-graphviz" = dontDistribute super."vacuum-graphviz"; + "vacuum-opengl" = dontDistribute super."vacuum-opengl"; + "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph"; + "vado" = dontDistribute super."vado"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validated-literals" = dontDistribute super."validated-literals"; + "validations" = dontDistribute super."validations"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vcsgui" = dontDistribute super."vcsgui"; + "vcswrapper" = dontDistribute super."vcswrapper"; + "vect" = dontDistribute super."vect"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector-binary" = dontDistribute super."vector-binary"; + "vector-binary-instances" = doDistribute super."vector-binary-instances_0_2_3_0"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "vector-functorlazy" = dontDistribute super."vector-functorlazy"; + "vector-heterogenous" = dontDistribute super."vector-heterogenous"; + "vector-instances-collections" = dontDistribute super."vector-instances-collections"; + "vector-mmap" = dontDistribute super."vector-mmap"; + "vector-random" = dontDistribute super."vector-random"; + "vector-read-instances" = dontDistribute super."vector-read-instances"; + "vector-sized" = dontDistribute super."vector-sized"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-space-points" = dontDistribute super."vector-space-points"; + "vector-static" = dontDistribute super."vector-static"; + "vector-strategies" = dontDistribute super."vector-strategies"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "versions" = dontDistribute super."versions"; + "vhdl" = dontDistribute super."vhdl"; + "views" = dontDistribute super."views"; + "vigilance" = dontDistribute super."vigilance"; + "vimeta" = dontDistribute super."vimeta"; + "vimus" = dontDistribute super."vimus"; + "vintage-basic" = dontDistribute super."vintage-basic"; + "vinyl-gl" = dontDistribute super."vinyl-gl"; + "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; + "vinyl-utils" = dontDistribute super."vinyl-utils"; + "vinyl-vectors" = dontDistribute super."vinyl-vectors"; + "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; + "vision" = dontDistribute super."vision"; + "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; + "visual-prof" = dontDistribute super."visual-prof"; + "vivid" = dontDistribute super."vivid"; + "vk-aws-route53" = dontDistribute super."vk-aws-route53"; + "vk-posix-pty" = dontDistribute super."vk-posix-pty"; + "vocabulary-kadma" = dontDistribute super."vocabulary-kadma"; + "vorbiscomment" = dontDistribute super."vorbiscomment"; + "vowpal-utils" = dontDistribute super."vowpal-utils"; + "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty-examples" = dontDistribute super."vty-examples"; + "vty-menu" = dontDistribute super."vty-menu"; + "vty-ui" = dontDistribute super."vty-ui"; + "vty-ui-extras" = dontDistribute super."vty-ui-extras"; + "vulkan" = dontDistribute super."vulkan"; + "wacom-daemon" = dontDistribute super."wacom-daemon"; + "waddle" = dontDistribute super."waddle"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_14_1"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; + "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; + "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; + "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; + "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; + "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; + "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-metrics" = doDistribute super."wai-middleware-metrics_0_2_2"; + "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; + "wai-middleware-route" = dontDistribute super."wai-middleware-route"; + "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-request-spec" = dontDistribute super."wai-request-spec"; + "wai-responsible" = dontDistribute super."wai-responsible"; + "wai-router" = dontDistribute super."wai-router"; + "wai-session-alt" = dontDistribute super."wai-session-alt"; + "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; + "wai-static-cache" = dontDistribute super."wai-static-cache"; + "wai-static-pages" = dontDistribute super."wai-static-pages"; + "wai-test" = dontDistribute super."wai-test"; + "wai-thrift" = dontDistribute super."wai-thrift"; + "wai-throttler" = dontDistribute super."wai-throttler"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_2_2"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "wavesurfer" = dontDistribute super."wavesurfer"; + "wavy" = dontDistribute super."wavy"; + "wcwidth" = dontDistribute super."wcwidth"; + "weather-api" = dontDistribute super."weather-api"; + "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell"; + "web-css" = dontDistribute super."web-css"; + "web-encodings" = dontDistribute super."web-encodings"; + "web-mongrel2" = dontDistribute super."web-mongrel2"; + "web-page" = dontDistribute super."web-page"; + "web-routes-mtl" = dontDistribute super."web-routes-mtl"; + "web-routes-quasi" = dontDistribute super."web-routes-quasi"; + "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-transformers" = dontDistribute super."web-routes-transformers"; + "webapi" = dontDistribute super."webapi"; + "webapp" = dontDistribute super."webapp"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_1"; + "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; + "webidl" = dontDistribute super."webidl"; + "webify" = dontDistribute super."webify"; + "webkit" = dontDistribute super."webkit"; + "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore"; + "webkitgtk3" = dontDistribute super."webkitgtk3"; + "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore"; + "webrtc-vad" = dontDistribute super."webrtc-vad"; + "webserver" = dontDistribute super."webserver"; + "websnap" = dontDistribute super."websnap"; + "webwire" = dontDistribute super."webwire"; + "wedding-announcement" = dontDistribute super."wedding-announcement"; + "wedged" = dontDistribute super."wedged"; + "weighted-regexp" = dontDistribute super."weighted-regexp"; + "weighted-search" = dontDistribute super."weighted-search"; + "welshy" = dontDistribute super."welshy"; + "werewolf" = dontDistribute super."werewolf"; + "wheb-mongo" = dontDistribute super."wheb-mongo"; + "wheb-redis" = dontDistribute super."wheb-redis"; + "wheb-strapped" = dontDistribute super."wheb-strapped"; + "while-lang-parser" = dontDistribute super."while-lang-parser"; + "whim" = dontDistribute super."whim"; + "whiskers" = dontDistribute super."whiskers"; + "whitespace" = dontDistribute super."whitespace"; + "whois" = dontDistribute super."whois"; + "why3" = dontDistribute super."why3"; + "wigner-symbols" = dontDistribute super."wigner-symbols"; + "wikipedia4epub" = dontDistribute super."wikipedia4epub"; + "win-hp-path" = dontDistribute super."win-hp-path"; + "windowslive" = dontDistribute super."windowslive"; + "winerror" = dontDistribute super."winerror"; + "winio" = dontDistribute super."winio"; + "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; + "witness" = dontDistribute super."witness"; + "witty" = dontDistribute super."witty"; + "wkt" = dontDistribute super."wkt"; + "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm"; + "wlc-hs" = dontDistribute super."wlc-hs"; + "wobsurv" = dontDistribute super."wobsurv"; + "woffex" = dontDistribute super."woffex"; + "wol" = dontDistribute super."wol"; + "wolf" = dontDistribute super."wolf"; + "woot" = dontDistribute super."woot"; + "word24" = dontDistribute super."word24"; + "wordcloud" = dontDistribute super."wordcloud"; + "wordexp" = dontDistribute super."wordexp"; + "words" = dontDistribute super."words"; + "wordsearch" = dontDistribute super."wordsearch"; + "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; + "wp-archivebot" = dontDistribute super."wp-archivebot"; + "wraparound" = dontDistribute super."wraparound"; + "wraxml" = dontDistribute super."wraxml"; + "wreq-sb" = dontDistribute super."wreq-sb"; + "wright" = dontDistribute super."wright"; + "wsdl" = dontDistribute super."wsdl"; + "wsedit" = dontDistribute super."wsedit"; + "wtk" = dontDistribute super."wtk"; + "wtk-gtk" = dontDistribute super."wtk-gtk"; + "wumpus-basic" = dontDistribute super."wumpus-basic"; + "wumpus-core" = dontDistribute super."wumpus-core"; + "wumpus-drawing" = dontDistribute super."wumpus-drawing"; + "wumpus-microprint" = dontDistribute super."wumpus-microprint"; + "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = dontDistribute super."wuss"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdg-userdirs" = dontDistribute super."xdg-userdirs"; + "xdot" = dontDistribute super."xdot"; + "xfconf" = dontDistribute super."xfconf"; + "xhaskell-library" = dontDistribute super."xhaskell-library"; + "xhb" = dontDistribute super."xhb"; + "xhb-atom-cache" = dontDistribute super."xhb-atom-cache"; + "xhb-ewmh" = dontDistribute super."xhb-ewmh"; + "xhtml" = doDistribute super."xhtml_3000_2_1"; + "xhtml-combinators" = dontDistribute super."xhtml-combinators"; + "xilinx-lava" = dontDistribute super."xilinx-lava"; + "xine" = dontDistribute super."xine"; + "xing-api" = dontDistribute super."xing-api"; + "xinput-conduit" = dontDistribute super."xinput-conduit"; + "xkbcommon" = dontDistribute super."xkbcommon"; + "xkcd" = dontDistribute super."xkcd"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-enumerator" = dontDistribute super."xml-enumerator"; + "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; + "xml-extractors" = dontDistribute super."xml-extractors"; + "xml-helpers" = dontDistribute super."xml-helpers"; + "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens"; + "xml-monad" = dontDistribute super."xml-monad"; + "xml-parsec" = dontDistribute super."xml-parsec"; + "xml-picklers" = dontDistribute super."xml-picklers"; + "xml-pipe" = dontDistribute super."xml-pipe"; + "xml-prettify" = dontDistribute super."xml-prettify"; + "xml-push" = dontDistribute super."xml-push"; + "xml-query" = dontDistribute super."xml-query"; + "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit"; + "xml-query-xml-types" = dontDistribute super."xml-query-xml-types"; + "xml2html" = dontDistribute super."xml2html"; + "xml2json" = dontDistribute super."xml2json"; + "xml2x" = dontDistribute super."xml2x"; + "xmltv" = dontDistribute super."xmltv"; + "xmms2-client" = dontDistribute super."xmms2-client"; + "xmms2-client-glib" = dontDistribute super."xmms2-client-glib"; + "xmobar" = dontDistribute super."xmobar"; + "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch"; + "xmonad-contrib" = dontDistribute super."xmonad-contrib"; + "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch"; + "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl"; + "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper"; + "xmonad-eval" = dontDistribute super."xmonad-eval"; + "xmonad-extras" = dontDistribute super."xmonad-extras"; + "xmonad-screenshot" = dontDistribute super."xmonad-screenshot"; + "xmonad-utils" = dontDistribute super."xmonad-utils"; + "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper"; + "xmonad-windownames" = dontDistribute super."xmonad-windownames"; + "xmpipe" = dontDistribute super."xmpipe"; + "xorshift" = dontDistribute super."xorshift"; + "xosd" = dontDistribute super."xosd"; + "xournal-builder" = dontDistribute super."xournal-builder"; + "xournal-convert" = dontDistribute super."xournal-convert"; + "xournal-parser" = dontDistribute super."xournal-parser"; + "xournal-render" = dontDistribute super."xournal-render"; + "xournal-types" = dontDistribute super."xournal-types"; + "xsact" = dontDistribute super."xsact"; + "xsd" = dontDistribute super."xsd"; + "xsha1" = dontDistribute super."xsha1"; + "xslt" = dontDistribute super."xslt"; + "xtc" = dontDistribute super."xtc"; + "xtest" = dontDistribute super."xtest"; + "xturtle" = dontDistribute super."xturtle"; + "xxhash" = dontDistribute super."xxhash"; + "y0l0bot" = dontDistribute super."y0l0bot"; + "yabi" = dontDistribute super."yabi"; + "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; + "yahoo-web-search" = dontDistribute super."yahoo-web-search"; + "yajl" = dontDistribute super."yajl"; + "yajl-enumerator" = dontDistribute super."yajl-enumerator"; + "yall" = dontDistribute super."yall"; + "yamemo" = dontDistribute super."yamemo"; + "yaml-config" = dontDistribute super."yaml-config"; + "yaml-light-lens" = dontDistribute super."yaml-light-lens"; + "yaml-rpc" = dontDistribute super."yaml-rpc"; + "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty"; + "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap"; + "yaml-union" = dontDistribute super."yaml-union"; + "yaml2owl" = dontDistribute super."yaml2owl"; + "yamlkeysdiff" = dontDistribute super."yamlkeysdiff"; + "yampa-canvas" = dontDistribute super."yampa-canvas"; + "yampa-glfw" = dontDistribute super."yampa-glfw"; + "yampa-glut" = dontDistribute super."yampa-glut"; + "yampa2048" = dontDistribute super."yampa2048"; + "yaop" = dontDistribute super."yaop"; + "yap" = dontDistribute super."yap"; + "yarr" = dontDistribute super."yarr"; + "yarr-image-io" = dontDistribute super."yarr-image-io"; + "yate" = dontDistribute super."yate"; + "yavie" = dontDistribute super."yavie"; + "ycextra" = dontDistribute super."ycextra"; + "yeganesh" = dontDistribute super."yeganesh"; + "yeller" = dontDistribute super."yeller"; + "yeshql" = dontDistribute super."yeshql"; + "yesod-angular" = dontDistribute super."yesod-angular"; + "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; + "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; + "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; + "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_1_7"; + "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; + "yesod-comments" = dontDistribute super."yesod-comments"; + "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; + "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-crud" = dontDistribute super."yesod-crud"; + "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; + "yesod-csp" = dontDistribute super."yesod-csp"; + "yesod-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-json" = dontDistribute super."yesod-json"; + "yesod-links" = dontDistribute super."yesod-links"; + "yesod-lucid" = dontDistribute super."yesod-lucid"; + "yesod-markdown" = dontDistribute super."yesod-markdown"; + "yesod-media-simple" = dontDistribute super."yesod-media-simple"; + "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5"; + "yesod-paginate" = dontDistribute super."yesod-paginate"; + "yesod-pagination" = dontDistribute super."yesod-pagination"; + "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-platform" = dontDistribute super."yesod-platform"; + "yesod-pnotify" = dontDistribute super."yesod-pnotify"; + "yesod-pure" = dontDistribute super."yesod-pure"; + "yesod-purescript" = dontDistribute super."yesod-purescript"; + "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; + "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; + "yesod-routes" = dontDistribute super."yesod-routes"; + "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; + "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript"; + "yesod-rst" = dontDistribute super."yesod-rst"; + "yesod-s3" = dontDistribute super."yesod-s3"; + "yesod-sass" = dontDistribute super."yesod-sass"; + "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test-json" = dontDistribute super."yesod-test-json"; + "yesod-tls" = dontDistribute super."yesod-tls"; + "yesod-transloadit" = dontDistribute super."yesod-transloadit"; + "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; + "yesod-worker" = dontDistribute super."yesod-worker"; + "yet-another-logger" = dontDistribute super."yet-another-logger"; + "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_3"; + "yi-contrib" = dontDistribute super."yi-contrib"; + "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; + "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-monokai" = dontDistribute super."yi-monokai"; + "yi-snippet" = dontDistribute super."yi-snippet"; + "yi-solarized" = dontDistribute super."yi-solarized"; + "yi-spolsky" = dontDistribute super."yi-spolsky"; + "yi-vty" = dontDistribute super."yi-vty"; + "yices" = dontDistribute super."yices"; + "yices-easy" = dontDistribute super."yices-easy"; + "yices-painless" = dontDistribute super."yices-painless"; + "yjftp" = dontDistribute super."yjftp"; + "yjftp-libs" = dontDistribute super."yjftp-libs"; + "yjsvg" = dontDistribute super."yjsvg"; + "yjtools" = dontDistribute super."yjtools"; + "yocto" = dontDistribute super."yocto"; + "yoctoparsec" = dontDistribute super."yoctoparsec"; + "yoko" = dontDistribute super."yoko"; + "york-lava" = dontDistribute super."york-lava"; + "youtube" = dontDistribute super."youtube"; + "yql" = dontDistribute super."yql"; + "yst" = dontDistribute super."yst"; + "yuiGrid" = dontDistribute super."yuiGrid"; + "yuuko" = dontDistribute super."yuuko"; + "yxdb-utils" = dontDistribute super."yxdb-utils"; + "z3" = dontDistribute super."z3"; + "zalgo" = dontDistribute super."zalgo"; + "zampolit" = dontDistribute super."zampolit"; + "zasni-gerna" = dontDistribute super."zasni-gerna"; + "zcache" = dontDistribute super."zcache"; + "zenc" = dontDistribute super."zenc"; + "zendesk-api" = dontDistribute super."zendesk-api"; + "zeno" = dontDistribute super."zeno"; + "zerobin" = dontDistribute super."zerobin"; + "zeromq-haskell" = dontDistribute super."zeromq-haskell"; + "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; + "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; + "zeroth" = dontDistribute super."zeroth"; + "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; + "zip" = dontDistribute super."zip"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipkin" = dontDistribute super."zipkin"; + "zipper" = dontDistribute super."zipper"; + "zippers" = dontDistribute super."zippers"; + "zippo" = dontDistribute super."zippo"; + "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zmcat" = dontDistribute super."zmcat"; + "zmidi-core" = dontDistribute super."zmidi-core"; + "zmidi-score" = dontDistribute super."zmidi-score"; + "zmqat" = dontDistribute super."zmqat"; + "zoneinfo" = dontDistribute super."zoneinfo"; + "zoom" = dontDistribute super."zoom"; + "zoom-cache" = dontDistribute super."zoom-cache"; + "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm"; + "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile"; + "zoom-refs" = dontDistribute super."zoom-refs"; + "zot" = dontDistribute super."zot"; + "zsh-battery" = dontDistribute super."zsh-battery"; + "ztail" = dontDistribute super."ztail"; + +} diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix new file mode 100644 index 00000000000..0f0b7a65ccf --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix @@ -0,0 +1,7946 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # core libraries provided by the compiler + Cabal = null; + array = null; + base = null; + bin-package-db = null; + binary = null; + bytestring = null; + containers = null; + deepseq = null; + directory = null; + filepath = null; + ghc-prim = null; + hoopl = null; + hpc = null; + integer-gmp = null; + pretty = null; + process = null; + rts = null; + template-haskell = null; + time = null; + transformers = null; + unix = null; + + # lts-5.8 packages + "3d-graphics-examples" = dontDistribute super."3d-graphics-examples"; + "3dmodels" = dontDistribute super."3dmodels"; + "4Blocks" = dontDistribute super."4Blocks"; + "AAI" = dontDistribute super."AAI"; + "ABList" = dontDistribute super."ABList"; + "AC-Angle" = dontDistribute super."AC-Angle"; + "AC-Boolean" = dontDistribute super."AC-Boolean"; + "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform"; + "AC-Colour" = dontDistribute super."AC-Colour"; + "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK"; + "AC-HalfInteger" = dontDistribute super."AC-HalfInteger"; + "AC-MiniTest" = dontDistribute super."AC-MiniTest"; + "AC-PPM" = dontDistribute super."AC-PPM"; + "AC-Random" = dontDistribute super."AC-Random"; + "AC-Terminal" = dontDistribute super."AC-Terminal"; + "AC-VanillaArray" = dontDistribute super."AC-VanillaArray"; + "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy"; + "ACME" = dontDistribute super."ACME"; + "ADPfusion" = dontDistribute super."ADPfusion"; + "AERN-Basics" = dontDistribute super."AERN-Basics"; + "AERN-Net" = dontDistribute super."AERN-Net"; + "AERN-Real" = dontDistribute super."AERN-Real"; + "AERN-Real-Double" = dontDistribute super."AERN-Real-Double"; + "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval"; + "AERN-RnToRm" = dontDistribute super."AERN-RnToRm"; + "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot"; + "AES" = dontDistribute super."AES"; + "AGI" = dontDistribute super."AGI"; + "ALUT" = dontDistribute super."ALUT"; + "AMI" = dontDistribute super."AMI"; + "ANum" = dontDistribute super."ANum"; + "ASN1" = dontDistribute super."ASN1"; + "AVar" = dontDistribute super."AVar"; + "AWin32Console" = dontDistribute super."AWin32Console"; + "AbortT-monadstf" = dontDistribute super."AbortT-monadstf"; + "AbortT-mtl" = dontDistribute super."AbortT-mtl"; + "AbortT-transformers" = dontDistribute super."AbortT-transformers"; + "ActionKid" = dontDistribute super."ActionKid"; + "Adaptive" = dontDistribute super."Adaptive"; + "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade"; + "Advgame" = dontDistribute super."Advgame"; + "AesonBson" = dontDistribute super."AesonBson"; + "Agata" = dontDistribute super."Agata"; + "Agda-executable" = dontDistribute super."Agda-executable"; + "AhoCorasick" = dontDistribute super."AhoCorasick"; + "AlgorithmW" = dontDistribute super."AlgorithmW"; + "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms"; + "Allure" = dontDistribute super."Allure"; + "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter"; + "Animas" = dontDistribute super."Animas"; + "Annotations" = dontDistribute super."Annotations"; + "Ansi2Html" = dontDistribute super."Ansi2Html"; + "ApplePush" = dontDistribute super."ApplePush"; + "AppleScript" = dontDistribute super."AppleScript"; + "ApproxFun-hs" = dontDistribute super."ApproxFun-hs"; + "ArrayRef" = dontDistribute super."ArrayRef"; + "ArrowVHDL" = dontDistribute super."ArrowVHDL"; + "AspectAG" = dontDistribute super."AspectAG"; + "AttoBencode" = dontDistribute super."AttoBencode"; + "AttoJson" = dontDistribute super."AttoJson"; + "Attrac" = dontDistribute super."Attrac"; + "Aurochs" = dontDistribute super."Aurochs"; + "AutoForms" = dontDistribute super."AutoForms"; + "AvlTree" = dontDistribute super."AvlTree"; + "BASIC" = dontDistribute super."BASIC"; + "BCMtools" = dontDistribute super."BCMtools"; + "BNFC" = dontDistribute super."BNFC"; + "BNFC-meta" = dontDistribute super."BNFC-meta"; + "Baggins" = dontDistribute super."Baggins"; + "Bang" = dontDistribute super."Bang"; + "Barracuda" = dontDistribute super."Barracuda"; + "Befunge93" = dontDistribute super."Befunge93"; + "BenchmarkHistory" = dontDistribute super."BenchmarkHistory"; + "BerkeleyDB" = dontDistribute super."BerkeleyDB"; + "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; + "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BigPixel" = dontDistribute super."BigPixel"; + "Binpack" = dontDistribute super."Binpack"; + "Biobase" = dontDistribute super."Biobase"; + "BiobaseBlast" = dontDistribute super."BiobaseBlast"; + "BiobaseDotP" = dontDistribute super."BiobaseDotP"; + "BiobaseFR3D" = dontDistribute super."BiobaseFR3D"; + "BiobaseFasta" = dontDistribute super."BiobaseFasta"; + "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; + "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; + "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; + "BiobaseTurner" = dontDistribute super."BiobaseTurner"; + "BiobaseTypes" = dontDistribute super."BiobaseTypes"; + "BiobaseVienna" = dontDistribute super."BiobaseVienna"; + "BiobaseXNA" = dontDistribute super."BiobaseXNA"; + "BirdPP" = dontDistribute super."BirdPP"; + "BitSyntax" = dontDistribute super."BitSyntax"; + "Bitly" = dontDistribute super."Bitly"; + "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; + "BluePrintCSS" = dontDistribute super."BluePrintCSS"; + "Blueprint" = dontDistribute super."Blueprint"; + "Bookshelf" = dontDistribute super."Bookshelf"; + "Bravo" = dontDistribute super."Bravo"; + "BufferedSocket" = dontDistribute super."BufferedSocket"; + "Buster" = dontDistribute super."Buster"; + "CBOR" = dontDistribute super."CBOR"; + "CC-delcont" = dontDistribute super."CC-delcont"; + "CC-delcont-alt" = dontDistribute super."CC-delcont-alt"; + "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe"; + "CC-delcont-exc" = dontDistribute super."CC-delcont-exc"; + "CC-delcont-ref" = dontDistribute super."CC-delcont-ref"; + "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf"; + "CCA" = dontDistribute super."CCA"; + "CHXHtml" = dontDistribute super."CHXHtml"; + "CLASE" = dontDistribute super."CLASE"; + "CLI" = dontDistribute super."CLI"; + "CMCompare" = dontDistribute super."CMCompare"; + "CMQ" = dontDistribute super."CMQ"; + "COrdering" = dontDistribute super."COrdering"; + "CPBrainfuck" = dontDistribute super."CPBrainfuck"; + "CPL" = dontDistribute super."CPL"; + "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage"; + "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules"; + "CSPM-Frontend" = dontDistribute super."CSPM-Frontend"; + "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter"; + "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog"; + "CSPM-cspm" = dontDistribute super."CSPM-cspm"; + "CTRex" = dontDistribute super."CTRex"; + "CV" = dontDistribute super."CV"; + "CabalSearch" = dontDistribute super."CabalSearch"; + "Capabilities" = dontDistribute super."Capabilities"; + "Cardinality" = dontDistribute super."Cardinality"; + "CarneadesDSL" = dontDistribute super."CarneadesDSL"; + "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; + "Cascade" = dontDistribute super."Cascade"; + "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = dontDistribute super."Chart-diagrams"; + "Chart-gtk" = dontDistribute super."Chart-gtk"; + "Chart-simple" = dontDistribute super."Chart-simple"; + "CheatSheet" = dontDistribute super."CheatSheet"; + "Checked" = dontDistribute super."Checked"; + "Chitra" = dontDistribute super."Chitra"; + "ChristmasTree" = dontDistribute super."ChristmasTree"; + "CirruParser" = dontDistribute super."CirruParser"; + "ClassLaws" = dontDistribute super."ClassLaws"; + "ClassyPrelude" = dontDistribute super."ClassyPrelude"; + "Clean" = dontDistribute super."Clean"; + "Clipboard" = dontDistribute super."Clipboard"; + "Coadjute" = dontDistribute super."Coadjute"; + "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; + "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; + "Combinatorrent" = dontDistribute super."Combinatorrent"; + "Command" = dontDistribute super."Command"; + "Commando" = dontDistribute super."Commando"; + "ComonadSheet" = dontDistribute super."ComonadSheet"; + "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; + "Concurrential" = dontDistribute super."Concurrential"; + "Condor" = dontDistribute super."Condor"; + "ConfigFileTH" = dontDistribute super."ConfigFileTH"; + "Configger" = dontDistribute super."Configger"; + "Configurable" = dontDistribute super."Configurable"; + "ConsStream" = dontDistribute super."ConsStream"; + "Conscript" = dontDistribute super."Conscript"; + "ConstraintKinds" = dontDistribute super."ConstraintKinds"; + "Consumer" = dontDistribute super."Consumer"; + "ContArrow" = dontDistribute super."ContArrow"; + "ContextAlgebra" = dontDistribute super."ContextAlgebra"; + "Contract" = dontDistribute super."Contract"; + "Control-Engine" = dontDistribute super."Control-Engine"; + "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass"; + "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2"; + "CoreDump" = dontDistribute super."CoreDump"; + "CoreErlang" = dontDistribute super."CoreErlang"; + "CoreFoundation" = dontDistribute super."CoreFoundation"; + "Coroutine" = dontDistribute super."Coroutine"; + "CouchDB" = dontDistribute super."CouchDB"; + "Craft3e" = dontDistribute super."Craft3e"; + "Crypto" = dontDistribute super."Crypto"; + "CurryDB" = dontDistribute super."CurryDB"; + "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DBlimited" = dontDistribute super."DBlimited"; + "DBus" = dontDistribute super."DBus"; + "DCFL" = dontDistribute super."DCFL"; + "DMuCheck" = dontDistribute super."DMuCheck"; + "DOM" = dontDistribute super."DOM"; + "DP" = dontDistribute super."DP"; + "DPM" = dontDistribute super."DPM"; + "DSA" = dontDistribute super."DSA"; + "DSH" = dontDistribute super."DSH"; + "DSTM" = dontDistribute super."DSTM"; + "DTC" = dontDistribute super."DTC"; + "Dangerous" = dontDistribute super."Dangerous"; + "Dao" = dontDistribute super."Dao"; + "DarcsHelpers" = dontDistribute super."DarcsHelpers"; + "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent"; + "Data-Rope" = dontDistribute super."Data-Rope"; + "DataTreeView" = dontDistribute super."DataTreeView"; + "Deadpan-DDP" = dontDistribute super."Deadpan-DDP"; + "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers"; + "DecisionTree" = dontDistribute super."DecisionTree"; + "DeepArrow" = dontDistribute super."DeepArrow"; + "DefendTheKing" = dontDistribute super."DefendTheKing"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "DifferenceLogic" = dontDistribute super."DifferenceLogic"; + "DifferentialEvolution" = dontDistribute super."DifferentialEvolution"; + "Digit" = dontDistribute super."Digit"; + "DigitalOcean" = dontDistribute super."DigitalOcean"; + "DimensionalHash" = dontDistribute super."DimensionalHash"; + "DirectSound" = dontDistribute super."DirectSound"; + "DisTract" = dontDistribute super."DisTract"; + "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem"; + "Dish" = dontDistribute super."Dish"; + "Dist" = dontDistribute super."Dist"; + "DistanceTransform" = dontDistribute super."DistanceTransform"; + "DistanceUnits" = dontDistribute super."DistanceUnits"; + "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment"; + "DocTest" = dontDistribute super."DocTest"; + "Docs" = dontDistribute super."Docs"; + "DrHylo" = dontDistribute super."DrHylo"; + "DrIFT" = dontDistribute super."DrIFT"; + "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized"; + "Dung" = dontDistribute super."Dung"; + "Dust" = dontDistribute super."Dust"; + "Dust-crypto" = dontDistribute super."Dust-crypto"; + "Dust-tools" = dontDistribute super."Dust-tools"; + "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap"; + "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp"; + "DysFRP" = dontDistribute super."DysFRP"; + "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; + "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; + "EEConfig" = dontDistribute super."EEConfig"; + "EdisonAPI" = dontDistribute super."EdisonAPI"; + "EdisonCore" = dontDistribute super."EdisonCore"; + "EditTimeReport" = dontDistribute super."EditTimeReport"; + "EitherT" = dontDistribute super."EitherT"; + "Elm" = dontDistribute super."Elm"; + "Emping" = dontDistribute super."Emping"; + "Encode" = dontDistribute super."Encode"; + "EnumContainers" = dontDistribute super."EnumContainers"; + "EnumMap" = dontDistribute super."EnumMap"; + "Eq" = dontDistribute super."Eq"; + "EqualitySolver" = dontDistribute super."EqualitySolver"; + "EsounD" = dontDistribute super."EsounD"; + "EstProgress" = dontDistribute super."EstProgress"; + "EtaMOO" = dontDistribute super."EtaMOO"; + "Etage" = dontDistribute super."Etage"; + "Etage-Graph" = dontDistribute super."Etage-Graph"; + "Eternal10Seconds" = dontDistribute super."Eternal10Seconds"; + "Etherbunny" = dontDistribute super."Etherbunny"; + "EuroIT" = dontDistribute super."EuroIT"; + "Euterpea" = dontDistribute super."Euterpea"; + "EventSocket" = dontDistribute super."EventSocket"; + "Extra" = dontDistribute super."Extra"; + "FComp" = dontDistribute super."FComp"; + "FM-SBLEX" = dontDistribute super."FM-SBLEX"; + "FModExRaw" = dontDistribute super."FModExRaw"; + "FPretty" = dontDistribute super."FPretty"; + "FTGL" = dontDistribute super."FTGL"; + "FTGL-bytestring" = dontDistribute super."FTGL-bytestring"; + "FTPLine" = dontDistribute super."FTPLine"; + "Facts" = dontDistribute super."Facts"; + "FailureT" = dontDistribute super."FailureT"; + "FastxPipe" = dontDistribute super."FastxPipe"; + "FermatsLastMargin" = dontDistribute super."FermatsLastMargin"; + "FerryCore" = dontDistribute super."FerryCore"; + "Feval" = dontDistribute super."Feval"; + "FieldTrip" = dontDistribute super."FieldTrip"; + "FileManip" = dontDistribute super."FileManip"; + "FileManipCompat" = dontDistribute super."FileManipCompat"; + "FilePather" = dontDistribute super."FilePather"; + "FileSystem" = dontDistribute super."FileSystem"; + "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo"; + "Finance-Treasury" = dontDistribute super."Finance-Treasury"; + "FiniteMap" = dontDistribute super."FiniteMap"; + "FirstOrderTheory" = dontDistribute super."FirstOrderTheory"; + "FixedPoint-simple" = dontDistribute super."FixedPoint-simple"; + "Flippi" = dontDistribute super."Flippi"; + "Focus" = dontDistribute super."Focus"; + "Folly" = dontDistribute super."Folly"; + "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; + "ForkableT" = dontDistribute super."ForkableT"; + "FormalGrammars" = dontDistribute super."FormalGrammars"; + "Foster" = dontDistribute super."Foster"; + "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; + "Fractaler" = dontDistribute super."Fractaler"; + "Frank" = dontDistribute super."Frank"; + "FreeTypeGL" = dontDistribute super."FreeTypeGL"; + "FunGEn" = dontDistribute super."FunGEn"; + "Fungi" = dontDistribute super."Fungi"; + "GA" = dontDistribute super."GA"; + "GGg" = dontDistribute super."GGg"; + "GHood" = dontDistribute super."GHood"; + "GLFW" = dontDistribute super."GLFW"; + "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; + "GLFW-task" = dontDistribute super."GLFW-task"; + "GLHUI" = dontDistribute super."GLHUI"; + "GLM" = dontDistribute super."GLM"; + "GLMatrix" = dontDistribute super."GLMatrix"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad"; + "GTALib" = dontDistribute super."GTALib"; + "Gamgine" = dontDistribute super."Gamgine"; + "Ganymede" = dontDistribute super."Ganymede"; + "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration"; + "GeBoP" = dontDistribute super."GeBoP"; + "GenI" = dontDistribute super."GenI"; + "GenSmsPdu" = dontDistribute super."GenSmsPdu"; + "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe"; + "GenussFold" = dontDistribute super."GenussFold"; + "GeoIp" = dontDistribute super."GeoIp"; + "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage"; + "Geodetic" = dontDistribute super."Geodetic"; + "GeomPredicates" = dontDistribute super."GeomPredicates"; + "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE"; + "GiST" = dontDistribute super."GiST"; + "Gifcurry" = dontDistribute super."Gifcurry"; + "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "GlomeTrace" = dontDistribute super."GlomeTrace"; + "GlomeVec" = dontDistribute super."GlomeVec"; + "GlomeView" = dontDistribute super."GlomeView"; + "GoogleChart" = dontDistribute super."GoogleChart"; + "GoogleDirections" = dontDistribute super."GoogleDirections"; + "GoogleSB" = dontDistribute super."GoogleSB"; + "GoogleSuggest" = dontDistribute super."GoogleSuggest"; + "GoogleTranslate" = dontDistribute super."GoogleTranslate"; + "GotoT-transformers" = dontDistribute super."GotoT-transformers"; + "GrammarProducts" = dontDistribute super."GrammarProducts"; + "Graph500" = dontDistribute super."Graph500"; + "GraphHammer" = dontDistribute super."GraphHammer"; + "GraphHammer-examples" = dontDistribute super."GraphHammer-examples"; + "Graphalyze" = dontDistribute super."Graphalyze"; + "Grempa" = dontDistribute super."Grempa"; + "GroteTrap" = dontDistribute super."GroteTrap"; + "Grow" = dontDistribute super."Grow"; + "GrowlNotify" = dontDistribute super."GrowlNotify"; + "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics"; + "GtkGLTV" = dontDistribute super."GtkGLTV"; + "GtkTV" = dontDistribute super."GtkTV"; + "GuiHaskell" = dontDistribute super."GuiHaskell"; + "GuiTV" = dontDistribute super."GuiTV"; + "HARM" = dontDistribute super."HARM"; + "HAppS-Data" = dontDistribute super."HAppS-Data"; + "HAppS-IxSet" = dontDistribute super."HAppS-IxSet"; + "HAppS-Server" = dontDistribute super."HAppS-Server"; + "HAppS-State" = dontDistribute super."HAppS-State"; + "HAppS-Util" = dontDistribute super."HAppS-Util"; + "HAppSHelpers" = dontDistribute super."HAppSHelpers"; + "HCL" = dontDistribute super."HCL"; + "HCard" = dontDistribute super."HCard"; + "HDBC-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDBC-session" = dontDistribute super."HDBC-session"; + "HDRUtils" = dontDistribute super."HDRUtils"; + "HERA" = dontDistribute super."HERA"; + "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; + "HFuse" = dontDistribute super."HFuse"; + "HGL" = dontDistribute super."HGL"; + "HGamer3D" = dontDistribute super."HGamer3D"; + "HGamer3D-API" = dontDistribute super."HGamer3D-API"; + "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio"; + "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding"; + "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding"; + "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding"; + "HGamer3D-Common" = dontDistribute super."HGamer3D-Common"; + "HGamer3D-Data" = dontDistribute super."HGamer3D-Data"; + "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding"; + "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI"; + "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D"; + "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem"; + "HGamer3D-Network" = dontDistribute super."HGamer3D-Network"; + "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding"; + "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding"; + "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding"; + "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding"; + "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent"; + "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire"; + "HGraphStorage" = dontDistribute super."HGraphStorage"; + "HHDL" = dontDistribute super."HHDL"; + "HJScript" = dontDistribute super."HJScript"; + "HJVM" = dontDistribute super."HJVM"; + "HJavaScript" = dontDistribute super."HJavaScript"; + "HLearn-algebra" = dontDistribute super."HLearn-algebra"; + "HLearn-approximation" = dontDistribute super."HLearn-approximation"; + "HLearn-classification" = dontDistribute super."HLearn-classification"; + "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; + "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HListPP" = dontDistribute super."HListPP"; + "HLogger" = dontDistribute super."HLogger"; + "HMM" = dontDistribute super."HMM"; + "HMap" = dontDistribute super."HMap"; + "HNM" = dontDistribute super."HNM"; + "HODE" = dontDistribute super."HODE"; + "HOpenCV" = dontDistribute super."HOpenCV"; + "HPath" = dontDistribute super."HPath"; + "HPi" = dontDistribute super."HPi"; + "HPlot" = dontDistribute super."HPlot"; + "HPong" = dontDistribute super."HPong"; + "HROOT" = dontDistribute super."HROOT"; + "HROOT-core" = dontDistribute super."HROOT-core"; + "HROOT-graf" = dontDistribute super."HROOT-graf"; + "HROOT-hist" = dontDistribute super."HROOT-hist"; + "HROOT-io" = dontDistribute super."HROOT-io"; + "HROOT-math" = dontDistribute super."HROOT-math"; + "HRay" = dontDistribute super."HRay"; + "HSFFIG" = dontDistribute super."HSFFIG"; + "HSGEP" = dontDistribute super."HSGEP"; + "HSH" = dontDistribute super."HSH"; + "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSlippyMap" = dontDistribute super."HSlippyMap"; + "HSmarty" = dontDistribute super."HSmarty"; + "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; + "HSvm" = dontDistribute super."HSvm"; + "HTTP-Simple" = dontDistribute super."HTTP-Simple"; + "HTab" = dontDistribute super."HTab"; + "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit-Diff" = dontDistribute super."HUnit-Diff"; + "HUnit-Plus" = dontDistribute super."HUnit-Plus"; + "HUnit-approx" = dontDistribute super."HUnit-approx"; + "HXMPP" = dontDistribute super."HXMPP"; + "HXQ" = dontDistribute super."HXQ"; + "HaLeX" = dontDistribute super."HaLeX"; + "HaMinitel" = dontDistribute super."HaMinitel"; + "HaPy" = dontDistribute super."HaPy"; + "HaTeX-meta" = dontDistribute super."HaTeX-meta"; + "HaTeX-qq" = dontDistribute super."HaTeX-qq"; + "HaVSA" = dontDistribute super."HaVSA"; + "Hach" = dontDistribute super."Hach"; + "HackMail" = dontDistribute super."HackMail"; + "Haggressive" = dontDistribute super."Haggressive"; + "HandlerSocketClient" = dontDistribute super."HandlerSocketClient"; + "Hangman" = dontDistribute super."Hangman"; + "HarmTrace" = dontDistribute super."HarmTrace"; + "HarmTrace-Base" = dontDistribute super."HarmTrace-Base"; + "HasGP" = dontDistribute super."HasGP"; + "Haschoo" = dontDistribute super."Haschoo"; + "Hashell" = dontDistribute super."Hashell"; + "HaskRel" = dontDistribute super."HaskRel"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; + "Hawk" = dontDistribute super."Hawk"; + "Hayoo" = dontDistribute super."Hayoo"; + "Hclip" = dontDistribute super."Hclip"; + "Hedi" = dontDistribute super."Hedi"; + "HerbiePlugin" = dontDistribute super."HerbiePlugin"; + "Hermes" = dontDistribute super."Hermes"; + "Hieroglyph" = dontDistribute super."Hieroglyph"; + "HiggsSet" = dontDistribute super."HiggsSet"; + "Hipmunk" = dontDistribute super."Hipmunk"; + "HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; + "Hish" = dontDistribute super."Hish"; + "Histogram" = dontDistribute super."Histogram"; + "Hmpf" = dontDistribute super."Hmpf"; + "Hoed" = dontDistribute super."Hoed"; + "HoleyMonoid" = dontDistribute super."HoleyMonoid"; + "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution"; + "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce"; + "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine"; + "Holumbus-Storage" = dontDistribute super."Holumbus-Storage"; + "Homology" = dontDistribute super."Homology"; + "HongoDB" = dontDistribute super."HongoDB"; + "HostAndPort" = dontDistribute super."HostAndPort"; + "Hricket" = dontDistribute super."Hricket"; + "Hs2lib" = dontDistribute super."Hs2lib"; + "HsASA" = dontDistribute super."HsASA"; + "HsHaruPDF" = dontDistribute super."HsHaruPDF"; + "HsHyperEstraier" = dontDistribute super."HsHyperEstraier"; + "HsJudy" = dontDistribute super."HsJudy"; + "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system"; + "HsParrot" = dontDistribute super."HsParrot"; + "HsPerl5" = dontDistribute super."HsPerl5"; + "HsSVN" = dontDistribute super."HsSVN"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "HulkImport" = dontDistribute super."HulkImport"; + "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres"; + "IDynamic" = dontDistribute super."IDynamic"; + "IFS" = dontDistribute super."IFS"; + "INblobs" = dontDistribute super."INblobs"; + "IOR" = dontDistribute super."IOR"; + "IORefCAS" = dontDistribute super."IORefCAS"; + "IOSpec" = dontDistribute super."IOSpec"; + "IcoGrid" = dontDistribute super."IcoGrid"; + "Imlib" = dontDistribute super."Imlib"; + "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; + "IndentParser" = dontDistribute super."IndentParser"; + "IndexedList" = dontDistribute super."IndexedList"; + "InfixApplicative" = dontDistribute super."InfixApplicative"; + "Interpolation" = dontDistribute super."Interpolation"; + "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JunkDB" = dontDistribute super."JunkDB"; + "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; + "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables"; + "JustParse" = dontDistribute super."JustParse"; + "KMP" = dontDistribute super."KMP"; + "KSP" = dontDistribute super."KSP"; + "Kalman" = dontDistribute super."Kalman"; + "KdTree" = dontDistribute super."KdTree"; + "Ketchup" = dontDistribute super."Ketchup"; + "KiCS" = dontDistribute super."KiCS"; + "KiCS-debugger" = dontDistribute super."KiCS-debugger"; + "KiCS-prophecy" = dontDistribute super."KiCS-prophecy"; + "Kleislify" = dontDistribute super."Kleislify"; + "Konf" = dontDistribute super."Konf"; + "Kriens" = dontDistribute super."Kriens"; + "KyotoCabinet" = dontDistribute super."KyotoCabinet"; + "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; + "LDAP" = dontDistribute super."LDAP"; + "LRU" = dontDistribute super."LRU"; + "LTree" = dontDistribute super."LTree"; + "LambdaCalculator" = dontDistribute super."LambdaCalculator"; + "LambdaHack" = dontDistribute super."LambdaHack"; + "LambdaINet" = dontDistribute super."LambdaINet"; + "LambdaNet" = dontDistribute super."LambdaNet"; + "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; + "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdajudge" = dontDistribute super."Lambdajudge"; + "Lambdaya" = dontDistribute super."Lambdaya"; + "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; + "Lastik" = dontDistribute super."Lastik"; + "Lattices" = dontDistribute super."Lattices"; + "Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2"; + "LazyVault" = dontDistribute super."LazyVault"; + "Level0" = dontDistribute super."Level0"; + "LibClang" = dontDistribute super."LibClang"; + "Limit" = dontDistribute super."Limit"; + "LinearSplit" = dontDistribute super."LinearSplit"; + "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; + "LinkChecker" = dontDistribute super."LinkChecker"; + "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; + "ListZipper" = dontDistribute super."ListZipper"; + "Logic" = dontDistribute super."Logic"; + "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; + "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI"; + "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network"; + "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes"; + "LslPlus" = dontDistribute super."LslPlus"; + "Lucu" = dontDistribute super."Lucu"; + "MASMGen" = dontDistribute super."MASMGen"; + "MC-Fold-DP" = dontDistribute super."MC-Fold-DP"; + "MHask" = dontDistribute super."MHask"; + "MSQueue" = dontDistribute super."MSQueue"; + "MTGBuilder" = dontDistribute super."MTGBuilder"; + "MagicHaskeller" = dontDistribute super."MagicHaskeller"; + "MailchimpSimple" = dontDistribute super."MailchimpSimple"; + "MaybeT" = dontDistribute super."MaybeT"; + "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf"; + "MaybeT-transformers" = dontDistribute super."MaybeT-transformers"; + "MazesOfMonad" = dontDistribute super."MazesOfMonad"; + "MeanShift" = dontDistribute super."MeanShift"; + "Measure" = dontDistribute super."Measure"; + "MetaHDBC" = dontDistribute super."MetaHDBC"; + "MetaObject" = dontDistribute super."MetaObject"; + "Metrics" = dontDistribute super."Metrics"; + "Mhailist" = dontDistribute super."Mhailist"; + "Michelangelo" = dontDistribute super."Michelangelo"; + "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator"; + "MiniAgda" = dontDistribute super."MiniAgda"; + "MissingK" = dontDistribute super."MissingK"; + "MissingM" = dontDistribute super."MissingM"; + "MissingPy" = dontDistribute super."MissingPy"; + "Modulo" = dontDistribute super."Modulo"; + "Moe" = dontDistribute super."Moe"; + "MoeDict" = dontDistribute super."MoeDict"; + "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl"; + "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign"; + "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; + "MonadCompose" = dontDistribute super."MonadCompose"; + "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; + "MonadStack" = dontDistribute super."MonadStack"; + "Monadius" = dontDistribute super."Monadius"; + "Monaris" = dontDistribute super."Monaris"; + "Monatron" = dontDistribute super."Monatron"; + "Monatron-IO" = dontDistribute super."Monatron-IO"; + "Monocle" = dontDistribute super."Monocle"; + "MorseCode" = dontDistribute super."MorseCode"; + "MuCheck" = dontDistribute super."MuCheck"; + "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit"; + "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec"; + "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck"; + "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck"; + "Munkres" = dontDistribute super."Munkres"; + "Munkres-simple" = dontDistribute super."Munkres-simple"; + "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid"; + "MyPrimes" = dontDistribute super."MyPrimes"; + "NGrams" = dontDistribute super."NGrams"; + "NTRU" = dontDistribute super."NTRU"; + "NXT" = dontDistribute super."NXT"; + "NXTDSL" = dontDistribute super."NXTDSL"; + "NanoProlog" = dontDistribute super."NanoProlog"; + "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets"; + "NaturalSort" = dontDistribute super."NaturalSort"; + "NearContextAlgebra" = dontDistribute super."NearContextAlgebra"; + "Neks" = dontDistribute super."Neks"; + "NestedFunctor" = dontDistribute super."NestedFunctor"; + "NestedSampling" = dontDistribute super."NestedSampling"; + "NetSNMP" = dontDistribute super."NetSNMP"; + "NewBinary" = dontDistribute super."NewBinary"; + "Ninjas" = dontDistribute super."Ninjas"; + "NoSlow" = dontDistribute super."NoSlow"; + "NoTrace" = dontDistribute super."NoTrace"; + "Noise" = dontDistribute super."Noise"; + "Nomyx" = dontDistribute super."Nomyx"; + "Nomyx-Core" = dontDistribute super."Nomyx-Core"; + "Nomyx-Language" = dontDistribute super."Nomyx-Language"; + "Nomyx-Rules" = dontDistribute super."Nomyx-Rules"; + "Nomyx-Web" = dontDistribute super."Nomyx-Web"; + "NonEmpty" = dontDistribute super."NonEmpty"; + "NonEmptyList" = dontDistribute super."NonEmptyList"; + "NumLazyByteString" = dontDistribute super."NumLazyByteString"; + "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; + "Numbers" = dontDistribute super."Numbers"; + "Nussinov78" = dontDistribute super."Nussinov78"; + "Nutri" = dontDistribute super."Nutri"; + "OGL" = dontDistribute super."OGL"; + "OSM" = dontDistribute super."OSM"; + "OTP" = dontDistribute super."OTP"; + "Object" = dontDistribute super."Object"; + "ObjectIO" = dontDistribute super."ObjectIO"; + "Obsidian" = dontDistribute super."Obsidian"; + "OddWord" = dontDistribute super."OddWord"; + "Omega" = dontDistribute super."Omega"; + "OneTuple" = dontDistribute super."OneTuple"; + "OpenAFP" = dontDistribute super."OpenAFP"; + "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils"; + "OpenAL" = dontDistribute super."OpenAL"; + "OpenCL" = dontDistribute super."OpenCL"; + "OpenCLRaw" = dontDistribute super."OpenCLRaw"; + "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; + "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; + "OpenSCAD" = dontDistribute super."OpenSCAD"; + "OpenVG" = dontDistribute super."OpenVG"; + "OpenVGRaw" = dontDistribute super."OpenVGRaw"; + "Operads" = dontDistribute super."Operads"; + "OptDir" = dontDistribute super."OptDir"; + "OrPatterns" = dontDistribute super."OrPatterns"; + "OrchestrateDB" = dontDistribute super."OrchestrateDB"; + "OrderedBits" = dontDistribute super."OrderedBits"; + "Ordinals" = dontDistribute super."Ordinals"; + "PArrows" = dontDistribute super."PArrows"; + "PBKDF2" = dontDistribute super."PBKDF2"; + "PCLT" = dontDistribute super."PCLT"; + "PCLT-DB" = dontDistribute super."PCLT-DB"; + "PDBtools" = dontDistribute super."PDBtools"; + "PTQ" = dontDistribute super."PTQ"; + "PUH-Project" = dontDistribute super."PUH-Project"; + "PageIO" = dontDistribute super."PageIO"; + "Paillier" = dontDistribute super."Paillier"; + "PandocAgda" = dontDistribute super."PandocAgda"; + "Paraiso" = dontDistribute super."Paraiso"; + "Parry" = dontDistribute super."Parry"; + "ParsecTools" = dontDistribute super."ParsecTools"; + "ParserFunction" = dontDistribute super."ParserFunction"; + "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; + "PasswordGenerator" = dontDistribute super."PasswordGenerator"; + "PastePipe" = dontDistribute super."PastePipe"; + "Pathfinder" = dontDistribute super."Pathfinder"; + "Peano" = dontDistribute super."Peano"; + "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; + "PerfectHash" = dontDistribute super."PerfectHash"; + "PermuteEffects" = dontDistribute super."PermuteEffects"; + "Phsu" = dontDistribute super."Phsu"; + "Pipe" = dontDistribute super."Pipe"; + "Piso" = dontDistribute super."Piso"; + "PlayHangmanGame" = dontDistribute super."PlayHangmanGame"; + "PlayingCards" = dontDistribute super."PlayingCards"; + "Plot-ho-matic" = dontDistribute super."Plot-ho-matic"; + "PlslTools" = dontDistribute super."PlslTools"; + "Plural" = dontDistribute super."Plural"; + "Pollutocracy" = dontDistribute super."Pollutocracy"; + "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = dontDistribute super."PortMidi"; + "PostgreSQL" = dontDistribute super."PostgreSQL"; + "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; + "Printf-TH" = dontDistribute super."Printf-TH"; + "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; + "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; + "PropLogic" = dontDistribute super."PropLogic"; + "Proper" = dontDistribute super."Proper"; + "ProxN" = dontDistribute super."ProxN"; + "Pugs" = dontDistribute super."Pugs"; + "Pup-Events" = dontDistribute super."Pup-Events"; + "Pup-Events-Client" = dontDistribute super."Pup-Events-Client"; + "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo"; + "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; + "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; + "QIO" = dontDistribute super."QIO"; + "QuadEdge" = dontDistribute super."QuadEdge"; + "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; + "QuickAnnotate" = dontDistribute super."QuickAnnotate"; + "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; + "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; + "QuickCheck-safe" = dontDistribute super."QuickCheck-safe"; + "QuickPlot" = dontDistribute super."QuickPlot"; + "Quickson" = dontDistribute super."Quickson"; + "R-pandoc" = dontDistribute super."R-pandoc"; + "RANSAC" = dontDistribute super."RANSAC"; + "RBTree" = dontDistribute super."RBTree"; + "RESTng" = dontDistribute super."RESTng"; + "RFC1751" = dontDistribute super."RFC1751"; + "RJson" = dontDistribute super."RJson"; + "RMP" = dontDistribute super."RMP"; + "RNAFold" = dontDistribute super."RNAFold"; + "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; + "RNAdesign" = dontDistribute super."RNAdesign"; + "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = doDistribute super."RNAlien_1_0_0"; + "RNAwolf" = dontDistribute super."RNAwolf"; + "Raincat" = dontDistribute super."Raincat"; + "Random123" = dontDistribute super."Random123"; + "RandomDotOrg" = dontDistribute super."RandomDotOrg"; + "Randometer" = dontDistribute super."Randometer"; + "Range" = dontDistribute super."Range"; + "Ranged-sets" = dontDistribute super."Ranged-sets"; + "Ranka" = dontDistribute super."Ranka"; + "Rasenschach" = dontDistribute super."Rasenschach"; + "Redmine" = dontDistribute super."Redmine"; + "Ref" = dontDistribute super."Ref"; + "Referees" = dontDistribute super."Referees"; + "RepLib" = dontDistribute super."RepLib"; + "ReplicateEffects" = dontDistribute super."ReplicateEffects"; + "ReviewBoard" = dontDistribute super."ReviewBoard"; + "RichConditional" = dontDistribute super."RichConditional"; + "RollingDirectory" = dontDistribute super."RollingDirectory"; + "RoyalMonad" = dontDistribute super."RoyalMonad"; + "RxHaskell" = dontDistribute super."RxHaskell"; + "SBench" = dontDistribute super."SBench"; + "SConfig" = dontDistribute super."SConfig"; + "SDL" = dontDistribute super."SDL"; + "SDL-gfx" = dontDistribute super."SDL-gfx"; + "SDL-image" = dontDistribute super."SDL-image"; + "SDL-mixer" = dontDistribute super."SDL-mixer"; + "SDL-mpeg" = dontDistribute super."SDL-mpeg"; + "SDL-ttf" = dontDistribute super."SDL-ttf"; + "SDL2-ttf" = dontDistribute super."SDL2-ttf"; + "SFML" = dontDistribute super."SFML"; + "SFML-control" = dontDistribute super."SFML-control"; + "SFont" = dontDistribute super."SFont"; + "SG" = dontDistribute super."SG"; + "SGdemo" = dontDistribute super."SGdemo"; + "SHA2" = dontDistribute super."SHA2"; + "SMTPClient" = dontDistribute super."SMTPClient"; + "SNet" = dontDistribute super."SNet"; + "SQLDeps" = dontDistribute super."SQLDeps"; + "STL" = dontDistribute super."STL"; + "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = dontDistribute super."SVGFonts"; + "SVGPath" = dontDistribute super."SVGPath"; + "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; + "SableCC2Hs" = dontDistribute super."SableCC2Hs"; + "Safe" = dontDistribute super."Safe"; + "Salsa" = dontDistribute super."Salsa"; + "Saturnin" = dontDistribute super."Saturnin"; + "SciFlow" = dontDistribute super."SciFlow"; + "ScratchFs" = dontDistribute super."ScratchFs"; + "Scurry" = dontDistribute super."Scurry"; + "Semantique" = dontDistribute super."Semantique"; + "Semigroup" = dontDistribute super."Semigroup"; + "SeqAlign" = dontDistribute super."SeqAlign"; + "SessionLogger" = dontDistribute super."SessionLogger"; + "ShellCheck" = dontDistribute super."ShellCheck"; + "Shellac" = dontDistribute super."Shellac"; + "Shellac-compatline" = dontDistribute super."Shellac-compatline"; + "Shellac-editline" = dontDistribute super."Shellac-editline"; + "Shellac-haskeline" = dontDistribute super."Shellac-haskeline"; + "Shellac-readline" = dontDistribute super."Shellac-readline"; + "ShowF" = dontDistribute super."ShowF"; + "Shrub" = dontDistribute super."Shrub"; + "Shu-thing" = dontDistribute super."Shu-thing"; + "SimpleAES" = dontDistribute super."SimpleAES"; + "SimpleEA" = dontDistribute super."SimpleEA"; + "SimpleGL" = dontDistribute super."SimpleGL"; + "SimpleH" = dontDistribute super."SimpleH"; + "SimpleLog" = dontDistribute super."SimpleLog"; + "SimpleServer" = dontDistribute super."SimpleServer"; + "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; + "Smooth" = dontDistribute super."Smooth"; + "SmtLib" = dontDistribute super."SmtLib"; + "Snusmumrik" = dontDistribute super."Snusmumrik"; + "SoOSiM" = dontDistribute super."SoOSiM"; + "SoccerFun" = dontDistribute super."SoccerFun"; + "SoccerFunGL" = dontDistribute super."SoccerFunGL"; + "Sonnex" = dontDistribute super."Sonnex"; + "SourceGraph" = dontDistribute super."SourceGraph"; + "Southpaw" = dontDistribute super."Southpaw"; + "SpaceInvaders" = dontDistribute super."SpaceInvaders"; + "SpacePrivateers" = dontDistribute super."SpacePrivateers"; + "SpinCounter" = dontDistribute super."SpinCounter"; + "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; + "SpreadsheetML" = dontDistribute super."SpreadsheetML"; + "Sprig" = dontDistribute super."Sprig"; + "Stasis" = dontDistribute super."Stasis"; + "StateVar-transformer" = dontDistribute super."StateVar-transformer"; + "StatisticalMethods" = dontDistribute super."StatisticalMethods"; + "Stomp" = dontDistribute super."Stomp"; + "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; + "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "StrappedTemplates" = dontDistribute super."StrappedTemplates"; + "StrategyLib" = dontDistribute super."StrategyLib"; + "Stream" = dontDistribute super."Stream"; + "StrictBench" = dontDistribute super."StrictBench"; + "SuffixStructures" = dontDistribute super."SuffixStructures"; + "SybWidget" = dontDistribute super."SybWidget"; + "SyntaxMacros" = dontDistribute super."SyntaxMacros"; + "Sysmon" = dontDistribute super."Sysmon"; + "TBC" = dontDistribute super."TBC"; + "TBit" = dontDistribute super."TBit"; + "THEff" = dontDistribute super."THEff"; + "TTTAS" = dontDistribute super."TTTAS"; + "TV" = dontDistribute super."TV"; + "TYB" = dontDistribute super."TYB"; + "TableAlgebra" = dontDistribute super."TableAlgebra"; + "Tables" = dontDistribute super."Tables"; + "Tablify" = dontDistribute super."Tablify"; + "Tainted" = dontDistribute super."Tainted"; + "Takusen" = dontDistribute super."Takusen"; + "Tape" = dontDistribute super."Tape"; + "TeaHS" = dontDistribute super."TeaHS"; + "Tensor" = dontDistribute super."Tensor"; + "TernaryTrees" = dontDistribute super."TernaryTrees"; + "TestExplode" = dontDistribute super."TestExplode"; + "Theora" = dontDistribute super."Theora"; + "Thingie" = dontDistribute super."Thingie"; + "ThreadObjects" = dontDistribute super."ThreadObjects"; + "Thrift" = dontDistribute super."Thrift"; + "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe"; + "TicTacToe" = dontDistribute super."TicTacToe"; + "TigerHash" = dontDistribute super."TigerHash"; + "TimePiece" = dontDistribute super."TimePiece"; + "TinyLaunchbury" = dontDistribute super."TinyLaunchbury"; + "TinyURL" = dontDistribute super."TinyURL"; + "Titim" = dontDistribute super."Titim"; + "Top" = dontDistribute super."Top"; + "Tournament" = dontDistribute super."Tournament"; + "TraceUtils" = dontDistribute super."TraceUtils"; + "TransformersStepByStep" = dontDistribute super."TransformersStepByStep"; + "Transhare" = dontDistribute super."Transhare"; + "TreeCounter" = dontDistribute super."TreeCounter"; + "TreeStructures" = dontDistribute super."TreeStructures"; + "TreeT" = dontDistribute super."TreeT"; + "Treiber" = dontDistribute super."Treiber"; + "TrendGraph" = dontDistribute super."TrendGraph"; + "TrieMap" = dontDistribute super."TrieMap"; + "Twofish" = dontDistribute super."Twofish"; + "TypeClass" = dontDistribute super."TypeClass"; + "TypeCompose" = dontDistribute super."TypeCompose"; + "TypeIlluminator" = dontDistribute super."TypeIlluminator"; + "TypeNat" = dontDistribute super."TypeNat"; + "TypingTester" = dontDistribute super."TypingTester"; + "UISF" = dontDistribute super."UISF"; + "UMM" = dontDistribute super."UMM"; + "URLT" = dontDistribute super."URLT"; + "URLb" = dontDistribute super."URLb"; + "UTFTConverter" = dontDistribute super."UTFTConverter"; + "Unique" = dontDistribute super."Unique"; + "Unixutils-shadow" = dontDistribute super."Unixutils-shadow"; + "Updater" = dontDistribute super."Updater"; + "UrlDisp" = dontDistribute super."UrlDisp"; + "Useful" = dontDistribute super."Useful"; + "UtilityTM" = dontDistribute super."UtilityTM"; + "VKHS" = dontDistribute super."VKHS"; + "Validation" = dontDistribute super."Validation"; + "Vec" = dontDistribute super."Vec"; + "Vec-Boolean" = dontDistribute super."Vec-Boolean"; + "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw"; + "Vec-Transform" = dontDistribute super."Vec-Transform"; + "VecN" = dontDistribute super."VecN"; + "Verba" = dontDistribute super."Verba"; + "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "Vulkan" = dontDistribute super."Vulkan"; + "WAVE" = dontDistribute super."WAVE"; + "WL500gPControl" = dontDistribute super."WL500gPControl"; + "WL500gPLib" = dontDistribute super."WL500gPLib"; + "WMSigner" = dontDistribute super."WMSigner"; + "WURFL" = dontDistribute super."WURFL"; + "WXDiffCtrl" = dontDistribute super."WXDiffCtrl"; + "WashNGo" = dontDistribute super."WashNGo"; + "WaveFront" = dontDistribute super."WaveFront"; + "Weather" = dontDistribute super."Weather"; + "WebBits" = dontDistribute super."WebBits"; + "WebBits-Html" = dontDistribute super."WebBits-Html"; + "WebBits-multiplate" = dontDistribute super."WebBits-multiplate"; + "WebCont" = dontDistribute super."WebCont"; + "WeberLogic" = dontDistribute super."WeberLogic"; + "Webrexp" = dontDistribute super."Webrexp"; + "Wheb" = dontDistribute super."Wheb"; + "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; + "Win32-errors" = dontDistribute super."Win32-errors"; + "Win32-junction-point" = dontDistribute super."Win32-junction-point"; + "Win32-security" = dontDistribute super."Win32-security"; + "Win32-services" = dontDistribute super."Win32-services"; + "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper"; + "Wired" = dontDistribute super."Wired"; + "WordAlignment" = dontDistribute super."WordAlignment"; + "WordNet" = dontDistribute super."WordNet"; + "WordNet-ghc74" = dontDistribute super."WordNet-ghc74"; + "Wordlint" = dontDistribute super."Wordlint"; + "WxGeneric" = dontDistribute super."WxGeneric"; + "X11-extras" = dontDistribute super."X11-extras"; + "X11-rm" = dontDistribute super."X11-rm"; + "X11-xdamage" = dontDistribute super."X11-xdamage"; + "X11-xfixes" = dontDistribute super."X11-xfixes"; + "X11-xft" = dontDistribute super."X11-xft"; + "X11-xshape" = dontDistribute super."X11-xshape"; + "XAttr" = dontDistribute super."XAttr"; + "XInput" = dontDistribute super."XInput"; + "XMMS" = dontDistribute super."XMMS"; + "XMPP" = dontDistribute super."XMPP"; + "XSaiga" = dontDistribute super."XSaiga"; + "Xec" = dontDistribute super."Xec"; + "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter"; + "Xorshift128Plus" = dontDistribute super."Xorshift128Plus"; + "YACPong" = dontDistribute super."YACPong"; + "YFrob" = dontDistribute super."YFrob"; + "Yablog" = dontDistribute super."Yablog"; + "YamlReference" = dontDistribute super."YamlReference"; + "Yampa-core" = dontDistribute super."Yampa-core"; + "Yocto" = dontDistribute super."Yocto"; + "Yogurt" = dontDistribute super."Yogurt"; + "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone"; + "ZEBEDDE" = dontDistribute super."ZEBEDDE"; + "ZFS" = dontDistribute super."ZFS"; + "ZMachine" = dontDistribute super."ZMachine"; + "ZipFold" = dontDistribute super."ZipFold"; + "ZipperAG" = dontDistribute super."ZipperAG"; + "Zora" = dontDistribute super."Zora"; + "Zwaluw" = dontDistribute super."Zwaluw"; + "a50" = dontDistribute super."a50"; + "abacate" = dontDistribute super."abacate"; + "abc-puzzle" = dontDistribute super."abc-puzzle"; + "abcBridge" = dontDistribute super."abcBridge"; + "abcnotation" = dontDistribute super."abcnotation"; + "abeson" = dontDistribute super."abeson"; + "abstract-deque-tests" = dontDistribute super."abstract-deque-tests"; + "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate"; + "abt" = dontDistribute super."abt"; + "ac-machine" = dontDistribute super."ac-machine"; + "ac-machine-conduit" = dontDistribute super."ac-machine-conduit"; + "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic"; + "accelerate-cublas" = dontDistribute super."accelerate-cublas"; + "accelerate-cuda" = dontDistribute super."accelerate-cuda"; + "accelerate-cufft" = dontDistribute super."accelerate-cufft"; + "accelerate-examples" = dontDistribute super."accelerate-examples"; + "accelerate-fft" = dontDistribute super."accelerate-fft"; + "accelerate-fftw" = dontDistribute super."accelerate-fftw"; + "accelerate-fourier" = dontDistribute super."accelerate-fourier"; + "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; + "accelerate-io" = dontDistribute super."accelerate-io"; + "accelerate-random" = dontDistribute super."accelerate-random"; + "accelerate-utility" = dontDistribute super."accelerate-utility"; + "accentuateus" = dontDistribute super."accentuateus"; + "access-time" = dontDistribute super."access-time"; + "acid-state-dist" = dontDistribute super."acid-state-dist"; + "acid-state-tls" = dontDistribute super."acid-state-tls"; + "acl2" = dontDistribute super."acl2"; + "acme-all-monad" = dontDistribute super."acme-all-monad"; + "acme-box" = dontDistribute super."acme-box"; + "acme-cadre" = dontDistribute super."acme-cadre"; + "acme-cofunctor" = dontDistribute super."acme-cofunctor"; + "acme-colosson" = dontDistribute super."acme-colosson"; + "acme-comonad" = dontDistribute super."acme-comonad"; + "acme-cutegirl" = dontDistribute super."acme-cutegirl"; + "acme-dont" = dontDistribute super."acme-dont"; + "acme-flipping-tables" = dontDistribute super."acme-flipping-tables"; + "acme-grawlix" = dontDistribute super."acme-grawlix"; + "acme-hq9plus" = dontDistribute super."acme-hq9plus"; + "acme-http" = dontDistribute super."acme-http"; + "acme-inator" = dontDistribute super."acme-inator"; + "acme-io" = dontDistribute super."acme-io"; + "acme-lolcat" = dontDistribute super."acme-lolcat"; + "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; + "acme-memorandom" = dontDistribute super."acme-memorandom"; + "acme-microwave" = dontDistribute super."acme-microwave"; + "acme-miscorder" = dontDistribute super."acme-miscorder"; + "acme-missiles" = dontDistribute super."acme-missiles"; + "acme-now" = dontDistribute super."acme-now"; + "acme-numbersystem" = dontDistribute super."acme-numbersystem"; + "acme-omitted" = dontDistribute super."acme-omitted"; + "acme-one" = dontDistribute super."acme-one"; + "acme-operators" = dontDistribute super."acme-operators"; + "acme-php" = dontDistribute super."acme-php"; + "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers"; + "acme-realworld" = dontDistribute super."acme-realworld"; + "acme-safe" = dontDistribute super."acme-safe"; + "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel"; + "acme-strfry" = dontDistribute super."acme-strfry"; + "acme-stringly-typed" = dontDistribute super."acme-stringly-typed"; + "acme-strtok" = dontDistribute super."acme-strtok"; + "acme-timemachine" = dontDistribute super."acme-timemachine"; + "acme-year" = dontDistribute super."acme-year"; + "acme-zero" = dontDistribute super."acme-zero"; + "activehs" = dontDistribute super."activehs"; + "activehs-base" = dontDistribute super."activehs-base"; + "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; + "actor" = dontDistribute super."actor"; + "adaptive-containers" = dontDistribute super."adaptive-containers"; + "adaptive-tuple" = dontDistribute super."adaptive-tuple"; + "adb" = dontDistribute super."adb"; + "adblock2privoxy" = dontDistribute super."adblock2privoxy"; + "addLicenseInfo" = dontDistribute super."addLicenseInfo"; + "adhoc-network" = dontDistribute super."adhoc-network"; + "adict" = dontDistribute super."adict"; + "adler32" = dontDistribute super."adler32"; + "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; + "adp-multi" = dontDistribute super."adp-multi"; + "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; + "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-lens" = dontDistribute super."aeson-lens"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-schema" = dontDistribute super."aeson-schema"; + "aeson-serialize" = dontDistribute super."aeson-serialize"; + "aeson-smart" = dontDistribute super."aeson-smart"; + "aeson-streams" = dontDistribute super."aeson-streams"; + "aeson-t" = dontDistribute super."aeson-t"; + "aeson-toolkit" = dontDistribute super."aeson-toolkit"; + "aeson-value-parser" = dontDistribute super."aeson-value-parser"; + "aeson-yak" = dontDistribute super."aeson-yak"; + "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc"; + "afis" = dontDistribute super."afis"; + "afv" = dontDistribute super."afv"; + "ag-pictgen" = dontDistribute super."ag-pictgen"; + "agda-server" = dontDistribute super."agda-server"; + "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; + "agum" = dontDistribute super."agum"; + "aig" = dontDistribute super."aig"; + "air" = dontDistribute super."air"; + "air-extra" = dontDistribute super."air-extra"; + "air-spec" = dontDistribute super."air-spec"; + "air-th" = dontDistribute super."air-th"; + "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; + "aivika" = dontDistribute super."aivika"; + "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-experiment" = dontDistribute super."aivika-experiment"; + "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; + "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; + "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams"; + "aivika-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "alea" = dontDistribute super."alea"; + "alex-meta" = dontDistribute super."alex-meta"; + "alfred" = dontDistribute super."alfred"; + "alga" = dontDistribute super."alga"; + "algebra" = dontDistribute super."algebra"; + "algebra-dag" = dontDistribute super."algebra-dag"; + "algebra-sql" = dontDistribute super."algebra-sql"; + "algebraic" = dontDistribute super."algebraic"; + "algebraic-classes" = dontDistribute super."algebraic-classes"; + "align" = dontDistribute super."align"; + "align-text" = dontDistribute super."align-text"; + "aligned-foreignptr" = dontDistribute super."aligned-foreignptr"; + "allocated-processor" = dontDistribute super."allocated-processor"; + "alloy" = dontDistribute super."alloy"; + "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd"; + "almost-fix" = dontDistribute super."almost-fix"; + "alms" = dontDistribute super."alms"; + "alpha" = dontDistribute super."alpha"; + "alpino-tools" = dontDistribute super."alpino-tools"; + "alsa" = dontDistribute super."alsa"; + "alsa-core" = dontDistribute super."alsa-core"; + "alsa-gui" = dontDistribute super."alsa-gui"; + "alsa-midi" = dontDistribute super."alsa-midi"; + "alsa-mixer" = dontDistribute super."alsa-mixer"; + "alsa-pcm" = dontDistribute super."alsa-pcm"; + "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests"; + "alsa-seq" = dontDistribute super."alsa-seq"; + "alsa-seq-tests" = dontDistribute super."alsa-seq-tests"; + "altcomposition" = dontDistribute super."altcomposition"; + "alternative-io" = dontDistribute super."alternative-io"; + "altfloat" = dontDistribute super."altfloat"; + "alure" = dontDistribute super."alure"; + "amazon-emailer" = dontDistribute super."amazon-emailer"; + "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; + "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; + "ampersand" = dontDistribute super."ampersand"; + "amqp-conduit" = dontDistribute super."amqp-conduit"; + "amrun" = dontDistribute super."amrun"; + "analyze-client" = dontDistribute super."analyze-client"; + "anansi" = dontDistribute super."anansi"; + "anansi-hscolour" = dontDistribute super."anansi-hscolour"; + "anansi-pandoc" = dontDistribute super."anansi-pandoc"; + "anatomy" = dontDistribute super."anatomy"; + "android" = dontDistribute super."android"; + "android-lint-summary" = dontDistribute super."android-lint-summary"; + "animalcase" = dontDistribute super."animalcase"; + "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; + "ansi-pretty" = dontDistribute super."ansi-pretty"; + "ansigraph" = dontDistribute super."ansigraph"; + "antagonist" = dontDistribute super."antagonist"; + "antfarm" = dontDistribute super."antfarm"; + "anticiv" = dontDistribute super."anticiv"; + "antigate" = dontDistribute super."antigate"; + "antimirov" = dontDistribute super."antimirov"; + "antiquoter" = dontDistribute super."antiquoter"; + "antisplice" = dontDistribute super."antisplice"; + "antlrc" = dontDistribute super."antlrc"; + "anydbm" = dontDistribute super."anydbm"; + "aosd" = dontDistribute super."aosd"; + "ap-reflect" = dontDistribute super."ap-reflect"; + "apache-md5" = dontDistribute super."apache-md5"; + "apelsin" = dontDistribute super."apelsin"; + "api-builder" = dontDistribute super."api-builder"; + "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; + "api-tools" = dontDistribute super."api-tools"; + "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; + "apiary-purescript" = dontDistribute super."apiary-purescript"; + "apis" = dontDistribute super."apis"; + "apotiki" = dontDistribute super."apotiki"; + "app-lens" = dontDistribute super."app-lens"; + "appc" = dontDistribute super."appc"; + "applicative-extras" = dontDistribute super."applicative-extras"; + "applicative-fail" = dontDistribute super."applicative-fail"; + "applicative-numbers" = dontDistribute super."applicative-numbers"; + "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-quoters" = dontDistribute super."applicative-quoters"; + "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; + "apportionment" = dontDistribute super."apportionment"; + "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate-equality" = dontDistribute super."approximate-equality"; + "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; + "arb-fft" = dontDistribute super."arb-fft"; + "arbb-vm" = dontDistribute super."arbb-vm"; + "archive" = dontDistribute super."archive"; + "archiver" = dontDistribute super."archiver"; + "archlinux" = dontDistribute super."archlinux"; + "archlinux-web" = dontDistribute super."archlinux-web"; + "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; + "arff" = dontDistribute super."arff"; + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon2" = dontDistribute super."argon2"; + "argparser" = dontDistribute super."argparser"; + "arguedit" = dontDistribute super."arguedit"; + "ariadne" = dontDistribute super."ariadne"; + "arion" = dontDistribute super."arion"; + "arith-encode" = dontDistribute super."arith-encode"; + "arithmatic" = dontDistribute super."arithmatic"; + "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = dontDistribute super."arithmoi"; + "armada" = dontDistribute super."armada"; + "arpa" = dontDistribute super."arpa"; + "array-forth" = dontDistribute super."array-forth"; + "array-memoize" = dontDistribute super."array-memoize"; + "array-primops" = dontDistribute super."array-primops"; + "array-utils" = dontDistribute super."array-utils"; + "arrow-improve" = dontDistribute super."arrow-improve"; + "arrowapply-utils" = dontDistribute super."arrowapply-utils"; + "arrowp" = dontDistribute super."arrowp"; + "arrows" = dontDistribute super."arrows"; + "artery" = dontDistribute super."artery"; + "arx" = dontDistribute super."arx"; + "arxiv" = dontDistribute super."arxiv"; + "ascetic" = dontDistribute super."ascetic"; + "ascii" = dontDistribute super."ascii"; + "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; + "asic" = dontDistribute super."asic"; + "asil" = dontDistribute super."asil"; + "asn1-data" = dontDistribute super."asn1-data"; + "asn1dump" = dontDistribute super."asn1dump"; + "assembler" = dontDistribute super."assembler"; + "assert" = dontDistribute super."assert"; + "assert-failure" = dontDistribute super."assert-failure"; + "assertions" = dontDistribute super."assertions"; + "assimp" = dontDistribute super."assimp"; + "astar" = dontDistribute super."astar"; + "astrds" = dontDistribute super."astrds"; + "astview" = dontDistribute super."astview"; + "astview-utils" = dontDistribute super."astview-utils"; + "async-extras" = dontDistribute super."async-extras"; + "async-manager" = dontDistribute super."async-manager"; + "async-pool" = dontDistribute super."async-pool"; + "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions"; + "aterm" = dontDistribute super."aterm"; + "aterm-utils" = dontDistribute super."aterm-utils"; + "atl" = dontDistribute super."atl"; + "atlassian-connect-core" = dontDistribute super."atlassian-connect-core"; + "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor"; + "atmos" = dontDistribute super."atmos"; + "atmos-dimensional" = dontDistribute super."atmos-dimensional"; + "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atom" = dontDistribute super."atom"; + "atom-basic" = dontDistribute super."atom-basic"; + "atom-conduit" = dontDistribute super."atom-conduit"; + "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; + "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; + "atomic-write" = dontDistribute super."atomic-write"; + "atomo" = dontDistribute super."atomo"; + "atp-haskell" = dontDistribute super."atp-haskell"; + "atrans" = dontDistribute super."atrans"; + "attempt" = dontDistribute super."attempt"; + "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec-arff" = dontDistribute super."attoparsec-arff"; + "attoparsec-binary" = dontDistribute super."attoparsec-binary"; + "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; + "attoparsec-csv" = dontDistribute super."attoparsec-csv"; + "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee"; + "attoparsec-parsec" = dontDistribute super."attoparsec-parsec"; + "attoparsec-text" = dontDistribute super."attoparsec-text"; + "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator"; + "attosplit" = dontDistribute super."attosplit"; + "atuin" = dontDistribute super."atuin"; + "audacity" = dontDistribute super."audacity"; + "audiovisual" = dontDistribute super."audiovisual"; + "augeas" = dontDistribute super."augeas"; + "augur" = dontDistribute super."augur"; + "aur" = dontDistribute super."aur"; + "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; + "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authinfo-hs" = dontDistribute super."authinfo-hs"; + "authoring" = dontDistribute super."authoring"; + "autoexporter" = dontDistribute super."autoexporter"; + "autonix-deps" = dontDistribute super."autonix-deps"; + "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; + "autoproc" = dontDistribute super."autoproc"; + "avahi" = dontDistribute super."avahi"; + "avatar-generator" = dontDistribute super."avatar-generator"; + "average" = dontDistribute super."average"; + "avl-static" = dontDistribute super."avl-static"; + "avr-shake" = dontDistribute super."avr-shake"; + "awesome-prelude" = dontDistribute super."awesome-prelude"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; + "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; + "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; + "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams"; + "aws-ec2" = dontDistribute super."aws-ec2"; + "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder"; + "aws-general" = dontDistribute super."aws-general"; + "aws-kinesis" = dontDistribute super."aws-kinesis"; + "aws-kinesis-client" = dontDistribute super."aws-kinesis-client"; + "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard"; + "aws-lambda" = dontDistribute super."aws-lambda"; + "aws-performance-tests" = dontDistribute super."aws-performance-tests"; + "aws-route53" = dontDistribute super."aws-route53"; + "aws-sdk" = dontDistribute super."aws-sdk"; + "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter"; + "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered"; + "aws-sign4" = dontDistribute super."aws-sign4"; + "aws-sns" = dontDistribute super."aws-sns"; + "azure-acs" = dontDistribute super."azure-acs"; + "azure-service-api" = dontDistribute super."azure-service-api"; + "azure-servicebus" = dontDistribute super."azure-servicebus"; + "azurify" = dontDistribute super."azurify"; + "b-tree" = dontDistribute super."b-tree"; + "babylon" = dontDistribute super."babylon"; + "backdropper" = dontDistribute super."backdropper"; + "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; + "backward-state" = dontDistribute super."backward-state"; + "bacteria" = dontDistribute super."bacteria"; + "bag" = dontDistribute super."bag"; + "bamboo" = dontDistribute super."bamboo"; + "bamboo-launcher" = dontDistribute super."bamboo-launcher"; + "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight"; + "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo"; + "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint"; + "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5"; + "bamse" = dontDistribute super."bamse"; + "bamstats" = dontDistribute super."bamstats"; + "bank-holiday-usa" = dontDistribute super."bank-holiday-usa"; + "banwords" = dontDistribute super."banwords"; + "barchart" = dontDistribute super."barchart"; + "barcodes-code128" = dontDistribute super."barcodes-code128"; + "barecheck" = dontDistribute super."barecheck"; + "barley" = dontDistribute super."barley"; + "barrie" = dontDistribute super."barrie"; + "barrier-monad" = dontDistribute super."barrier-monad"; + "base-generics" = dontDistribute super."base-generics"; + "base-io-access" = dontDistribute super."base-io-access"; + "base-prelude" = doDistribute super."base-prelude_0_1_21"; + "base32-bytestring" = dontDistribute super."base32-bytestring"; + "base58-bytestring" = dontDistribute super."base58-bytestring"; + "base58address" = dontDistribute super."base58address"; + "base64-conduit" = dontDistribute super."base64-conduit"; + "base91" = dontDistribute super."base91"; + "basex-client" = dontDistribute super."basex-client"; + "bash" = dontDistribute super."bash"; + "basic-lens" = dontDistribute super."basic-lens"; + "basic-sop" = dontDistribute super."basic-sop"; + "baskell" = dontDistribute super."baskell"; + "battlenet" = dontDistribute super."battlenet"; + "battlenet-yesod" = dontDistribute super."battlenet-yesod"; + "battleships" = dontDistribute super."battleships"; + "bayes-stack" = dontDistribute super."bayes-stack"; + "bbdb" = dontDistribute super."bbdb"; + "bbi" = dontDistribute super."bbi"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; + "beamable" = dontDistribute super."beamable"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; + "benchmark-function" = dontDistribute super."benchmark-function"; + "bencoding" = dontDistribute super."bencoding"; + "berkeleydb" = dontDistribute super."berkeleydb"; + "berp" = dontDistribute super."berp"; + "bert" = dontDistribute super."bert"; + "besout" = dontDistribute super."besout"; + "bet" = dontDistribute super."bet"; + "betacode" = dontDistribute super."betacode"; + "between" = dontDistribute super."between"; + "bf-cata" = dontDistribute super."bf-cata"; + "bff" = dontDistribute super."bff"; + "bff-mono" = dontDistribute super."bff-mono"; + "bgmax" = dontDistribute super."bgmax"; + "bgzf" = dontDistribute super."bgzf"; + "bibtex" = dontDistribute super."bibtex"; + "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; + "bidispec" = dontDistribute super."bidispec"; + "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; + "billboard-parser" = dontDistribute super."billboard-parser"; + "billeksah-forms" = dontDistribute super."billeksah-forms"; + "billeksah-main" = dontDistribute super."billeksah-main"; + "billeksah-main-static" = dontDistribute super."billeksah-main-static"; + "billeksah-pane" = dontDistribute super."billeksah-pane"; + "billeksah-services" = dontDistribute super."billeksah-services"; + "bimaps" = dontDistribute super."bimaps"; + "binary-bits" = dontDistribute super."binary-bits"; + "binary-communicator" = dontDistribute super."binary-communicator"; + "binary-derive" = dontDistribute super."binary-derive"; + "binary-enum" = dontDistribute super."binary-enum"; + "binary-file" = dontDistribute super."binary-file"; + "binary-generic" = dontDistribute super."binary-generic"; + "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-protocol" = dontDistribute super."binary-protocol"; + "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; + "binary-shared" = dontDistribute super."binary-shared"; + "binary-state" = dontDistribute super."binary-state"; + "binary-store" = dontDistribute super."binary-store"; + "binary-streams" = dontDistribute super."binary-streams"; + "binary-strict" = dontDistribute super."binary-strict"; + "binarydefer" = dontDistribute super."binarydefer"; + "bind-marshal" = dontDistribute super."bind-marshal"; + "binding-core" = dontDistribute super."binding-core"; + "binding-gtk" = dontDistribute super."binding-gtk"; + "binding-wx" = dontDistribute super."binding-wx"; + "bindings" = dontDistribute super."bindings"; + "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-K8055" = dontDistribute super."bindings-K8055"; + "bindings-apr" = dontDistribute super."bindings-apr"; + "bindings-apr-util" = dontDistribute super."bindings-apr-util"; + "bindings-audiofile" = dontDistribute super."bindings-audiofile"; + "bindings-bfd" = dontDistribute super."bindings-bfd"; + "bindings-cctools" = dontDistribute super."bindings-cctools"; + "bindings-codec2" = dontDistribute super."bindings-codec2"; + "bindings-common" = dontDistribute super."bindings-common"; + "bindings-dc1394" = dontDistribute super."bindings-dc1394"; + "bindings-directfb" = dontDistribute super."bindings-directfb"; + "bindings-eskit" = dontDistribute super."bindings-eskit"; + "bindings-fann" = dontDistribute super."bindings-fann"; + "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth"; + "bindings-friso" = dontDistribute super."bindings-friso"; + "bindings-glib" = dontDistribute super."bindings-glib"; + "bindings-gobject" = dontDistribute super."bindings-gobject"; + "bindings-gpgme" = dontDistribute super."bindings-gpgme"; + "bindings-gsl" = dontDistribute super."bindings-gsl"; + "bindings-gts" = dontDistribute super."bindings-gts"; + "bindings-hamlib" = dontDistribute super."bindings-hamlib"; + "bindings-hdf5" = dontDistribute super."bindings-hdf5"; + "bindings-levmar" = dontDistribute super."bindings-levmar"; + "bindings-libcddb" = dontDistribute super."bindings-libcddb"; + "bindings-libffi" = dontDistribute super."bindings-libffi"; + "bindings-libftdi" = dontDistribute super."bindings-libftdi"; + "bindings-librrd" = dontDistribute super."bindings-librrd"; + "bindings-libstemmer" = dontDistribute super."bindings-libstemmer"; + "bindings-libusb" = dontDistribute super."bindings-libusb"; + "bindings-libv4l2" = dontDistribute super."bindings-libv4l2"; + "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2"; + "bindings-lxc" = dontDistribute super."bindings-lxc"; + "bindings-mmap" = dontDistribute super."bindings-mmap"; + "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal"; + "bindings-nettle" = dontDistribute super."bindings-nettle"; + "bindings-parport" = dontDistribute super."bindings-parport"; + "bindings-portaudio" = dontDistribute super."bindings-portaudio"; + "bindings-potrace" = dontDistribute super."bindings-potrace"; + "bindings-ppdev" = dontDistribute super."bindings-ppdev"; + "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd"; + "bindings-sane" = dontDistribute super."bindings-sane"; + "bindings-sc3" = dontDistribute super."bindings-sc3"; + "bindings-sipc" = dontDistribute super."bindings-sipc"; + "bindings-sophia" = dontDistribute super."bindings-sophia"; + "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; + "bindings-svm" = dontDistribute super."bindings-svm"; + "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; + "binembed" = dontDistribute super."binembed"; + "binembed-example" = dontDistribute super."binembed-example"; + "bini" = dontDistribute super."bini"; + "bio" = dontDistribute super."bio"; + "biohazard" = dontDistribute super."biohazard"; + "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit"; + "biosff" = dontDistribute super."biosff"; + "biostockholm" = dontDistribute super."biostockholm"; + "bird" = dontDistribute super."bird"; + "bit-array" = dontDistribute super."bit-array"; + "bit-vector" = dontDistribute super."bit-vector"; + "bitarray" = dontDistribute super."bitarray"; + "bitcoin-rpc" = dontDistribute super."bitcoin-rpc"; + "bitly-cli" = dontDistribute super."bitly-cli"; + "bitmap" = dontDistribute super."bitmap"; + "bitmap-opengl" = dontDistribute super."bitmap-opengl"; + "bitmaps" = dontDistribute super."bitmaps"; + "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-conduit" = dontDistribute super."bits-conduit"; + "bits-extras" = dontDistribute super."bits-extras"; + "bitset" = dontDistribute super."bitset"; + "bitspeak" = dontDistribute super."bitspeak"; + "bitstream" = dontDistribute super."bitstream"; + "bitstring" = dontDistribute super."bitstring"; + "bittorrent" = dontDistribute super."bittorrent"; + "bitvec" = dontDistribute super."bitvec"; + "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; + "bk-tree" = dontDistribute super."bk-tree"; + "bkr" = dontDistribute super."bkr"; + "bktrees" = dontDistribute super."bktrees"; + "bla" = dontDistribute super."bla"; + "black-jewel" = dontDistribute super."black-jewel"; + "blacktip" = dontDistribute super."blacktip"; + "blakesum" = dontDistribute super."blakesum"; + "blakesum-demo" = dontDistribute super."blakesum-demo"; + "blas" = dontDistribute super."blas"; + "blas-hs" = dontDistribute super."blas-hs"; + "blatex" = dontDistribute super."blatex"; + "blaze" = dontDistribute super."blaze"; + "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; + "blaze-from-html" = dontDistribute super."blaze-from-html"; + "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; + "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat"; + "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; + "blaze-json" = dontDistribute super."blaze-json"; + "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-textual-native" = dontDistribute super."blaze-textual-native"; + "blazeMarker" = dontDistribute super."blazeMarker"; + "blink1" = dontDistribute super."blink1"; + "blip" = dontDistribute super."blip"; + "bliplib" = dontDistribute super."bliplib"; + "blocking-transactions" = dontDistribute super."blocking-transactions"; + "blogination" = dontDistribute super."blogination"; + "bloodhound" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloxorz" = dontDistribute super."bloxorz"; + "blubber" = dontDistribute super."blubber"; + "blubber-server" = dontDistribute super."blubber-server"; + "bluetile" = dontDistribute super."bluetile"; + "bluetileutils" = dontDistribute super."bluetileutils"; + "blunt" = dontDistribute super."blunt"; + "board-games" = dontDistribute super."board-games"; + "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; + "boolean-list" = dontDistribute super."boolean-list"; + "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; + "boolexpr" = dontDistribute super."boolexpr"; + "bools" = dontDistribute super."bools"; + "boolsimplifier" = dontDistribute super."boolsimplifier"; + "boomange" = dontDistribute super."boomange"; + "boombox" = dontDistribute super."boombox"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "bot" = dontDistribute super."bot"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; + "bowntz" = dontDistribute super."bowntz"; + "bpann" = dontDistribute super."bpann"; + "braid" = dontDistribute super."braid"; + "brainfuck" = dontDistribute super."brainfuck"; + "brainfuck-monad" = dontDistribute super."brainfuck-monad"; + "brainfuck-tut" = dontDistribute super."brainfuck-tut"; + "break" = dontDistribute super."break"; + "breakout" = dontDistribute super."breakout"; + "breve" = dontDistribute super."breve"; + "brians-brain" = dontDistribute super."brians-brain"; + "brillig" = dontDistribute super."brillig"; + "broccoli" = dontDistribute super."broccoli"; + "broker-haskell" = dontDistribute super."broker-haskell"; + "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson-generic" = dontDistribute super."bson-generic"; + "bson-generics" = dontDistribute super."bson-generics"; + "bson-mapping" = dontDistribute super."bson-mapping"; + "bspack" = dontDistribute super."bspack"; + "bsparse" = dontDistribute super."bsparse"; + "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; + "buffer-pipe" = dontDistribute super."buffer-pipe"; + "buffon" = dontDistribute super."buffon"; + "bugzilla" = dontDistribute super."bugzilla"; + "buildable" = dontDistribute super."buildable"; + "buildbox" = dontDistribute super."buildbox"; + "buildbox-tools" = dontDistribute super."buildbox-tools"; + "buildwrapper" = dontDistribute super."buildwrapper"; + "bullet" = dontDistribute super."bullet"; + "burst-detection" = dontDistribute super."burst-detection"; + "bus-pirate" = dontDistribute super."bus-pirate"; + "buster" = dontDistribute super."buster"; + "buster-gtk" = dontDistribute super."buster-gtk"; + "buster-network" = dontDistribute super."buster-network"; + "butterflies" = dontDistribute super."butterflies"; + "bv" = dontDistribute super."bv"; + "byline" = dontDistribute super."byline"; + "bytable" = dontDistribute super."bytable"; + "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-class" = dontDistribute super."bytestring-class"; + "bytestring-csv" = dontDistribute super."bytestring-csv"; + "bytestring-delta" = dontDistribute super."bytestring-delta"; + "bytestring-from" = dontDistribute super."bytestring-from"; + "bytestring-nums" = dontDistribute super."bytestring-nums"; + "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-rematch" = dontDistribute super."bytestring-rematch"; + "bytestring-short" = dontDistribute super."bytestring-short"; + "bytestring-show" = dontDistribute super."bytestring-show"; + "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder"; + "bytestringparser" = dontDistribute super."bytestringparser"; + "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary"; + "bytestringreadp" = dontDistribute super."bytestringreadp"; + "c-dsl" = dontDistribute super."c-dsl"; + "c-io" = dontDistribute super."c-io"; + "c-storable-deriving" = dontDistribute super."c-storable-deriving"; + "c0check" = dontDistribute super."c0check"; + "c0parser" = dontDistribute super."c0parser"; + "c10k" = dontDistribute super."c10k"; + "c2hsc" = dontDistribute super."c2hsc"; + "cab" = dontDistribute super."cab"; + "cabal-audit" = dontDistribute super."cabal-audit"; + "cabal-bounds" = dontDistribute super."cabal-bounds"; + "cabal-cargs" = dontDistribute super."cabal-cargs"; + "cabal-constraints" = dontDistribute super."cabal-constraints"; + "cabal-db" = dontDistribute super."cabal-db"; + "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; + "cabal-dev" = dontDistribute super."cabal-dev"; + "cabal-dir" = dontDistribute super."cabal-dir"; + "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags"; + "cabal-ghci" = dontDistribute super."cabal-ghci"; + "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; + "cabal-info" = dontDistribute super."cabal-info"; + "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; + "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; + "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; + "cabal-lenses" = dontDistribute super."cabal-lenses"; + "cabal-macosx" = dontDistribute super."cabal-macosx"; + "cabal-meta" = dontDistribute super."cabal-meta"; + "cabal-mon" = dontDistribute super."cabal-mon"; + "cabal-nirvana" = dontDistribute super."cabal-nirvana"; + "cabal-progdeps" = dontDistribute super."cabal-progdeps"; + "cabal-query" = dontDistribute super."cabal-query"; + "cabal-scripts" = dontDistribute super."cabal-scripts"; + "cabal-setup" = dontDistribute super."cabal-setup"; + "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-test" = dontDistribute super."cabal-test"; + "cabal-test-bin" = dontDistribute super."cabal-test-bin"; + "cabal-test-compat" = dontDistribute super."cabal-test-compat"; + "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck"; + "cabal-uninstall" = dontDistribute super."cabal-uninstall"; + "cabal-upload" = dontDistribute super."cabal-upload"; + "cabal2arch" = dontDistribute super."cabal2arch"; + "cabal2doap" = dontDistribute super."cabal2doap"; + "cabal2ebuild" = dontDistribute super."cabal2ebuild"; + "cabal2ghci" = dontDistribute super."cabal2ghci"; + "cabal2nix" = dontDistribute super."cabal2nix"; + "cabal2spec" = dontDistribute super."cabal2spec"; + "cabalQuery" = dontDistribute super."cabalQuery"; + "cabalg" = dontDistribute super."cabalg"; + "cabalgraph" = dontDistribute super."cabalgraph"; + "cabalmdvrpm" = dontDistribute super."cabalmdvrpm"; + "cabalrpmdeps" = dontDistribute super."cabalrpmdeps"; + "cabalvchk" = dontDistribute super."cabalvchk"; + "cabin" = dontDistribute super."cabin"; + "cabocha" = dontDistribute super."cabocha"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = doDistribute super."cacophony_0_4_0"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "cairo-appbase" = dontDistribute super."cairo-appbase"; + "cake" = dontDistribute super."cake"; + "cake3" = dontDistribute super."cake3"; + "cakyrespa" = dontDistribute super."cakyrespa"; + "cal3d" = dontDistribute super."cal3d"; + "cal3d-examples" = dontDistribute super."cal3d-examples"; + "cal3d-opengl" = dontDistribute super."cal3d-opengl"; + "calc" = dontDistribute super."calc"; + "caldims" = dontDistribute super."caldims"; + "caledon" = dontDistribute super."caledon"; + "call" = dontDistribute super."call"; + "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; + "camh" = dontDistribute super."camh"; + "campfire" = dontDistribute super."campfire"; + "canonical-filepath" = dontDistribute super."canonical-filepath"; + "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; + "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; + "cantor" = dontDistribute super."cantor"; + "cao" = dontDistribute super."cao"; + "cap" = dontDistribute super."cap"; + "capped-list" = dontDistribute super."capped-list"; + "capri" = dontDistribute super."capri"; + "car-pool" = dontDistribute super."car-pool"; + "caramia" = dontDistribute super."caramia"; + "carboncopy" = dontDistribute super."carboncopy"; + "carettah" = dontDistribute super."carettah"; + "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; + "casadi-bindings" = dontDistribute super."casadi-bindings"; + "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; + "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; + "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal"; + "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface"; + "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; + "cascading" = dontDistribute super."cascading"; + "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "casr-logbook" = dontDistribute super."casr-logbook"; + "cassandra-cql" = dontDistribute super."cassandra-cql"; + "cassandra-thrift" = dontDistribute super."cassandra-thrift"; + "cassava-conduit" = dontDistribute super."cassava-conduit"; + "cassava-streams" = dontDistribute super."cassava-streams"; + "cassette" = dontDistribute super."cassette"; + "cassy" = dontDistribute super."cassy"; + "castle" = dontDistribute super."castle"; + "casui" = dontDistribute super."casui"; + "catamorphism" = dontDistribute super."catamorphism"; + "catch-fd" = dontDistribute super."catch-fd"; + "categorical-algebra" = dontDistribute super."categorical-algebra"; + "categories" = dontDistribute super."categories"; + "category-extras" = dontDistribute super."category-extras"; + "category-traced" = dontDistribute super."category-traced"; + "cayley-dickson" = dontDistribute super."cayley-dickson"; + "cblrepo" = dontDistribute super."cblrepo"; + "cci" = dontDistribute super."cci"; + "ccnx" = dontDistribute super."ccnx"; + "cctools-workqueue" = dontDistribute super."cctools-workqueue"; + "cedict" = dontDistribute super."cedict"; + "cef" = dontDistribute super."cef"; + "ceilometer-common" = dontDistribute super."ceilometer-common"; + "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; + "cereal-derive" = dontDistribute super."cereal-derive"; + "cereal-enumerator" = dontDistribute super."cereal-enumerator"; + "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi" = doDistribute super."cgi_3001_2_2_3"; + "cgi-undecidable" = dontDistribute super."cgi-undecidable"; + "cgi-utils" = dontDistribute super."cgi-utils"; + "cgrep" = dontDistribute super."cgrep"; + "chain-codes" = dontDistribute super."chain-codes"; + "chalk" = dontDistribute super."chalk"; + "chalkboard" = dontDistribute super."chalkboard"; + "chalkboard-viewer" = dontDistribute super."chalkboard-viewer"; + "chalmers-lava2000" = dontDistribute super."chalmers-lava2000"; + "chan-split" = dontDistribute super."chan-split"; + "change-monger" = dontDistribute super."change-monger"; + "charade" = dontDistribute super."charade"; + "charsetdetect" = dontDistribute super."charsetdetect"; + "chart-histogram" = dontDistribute super."chart-histogram"; + "chaselev-deque" = dontDistribute super."chaselev-deque"; + "chatter" = dontDistribute super."chatter"; + "chatty" = dontDistribute super."chatty"; + "chatty-text" = dontDistribute super."chatty-text"; + "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; + "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; + "check-pvp" = dontDistribute super."check-pvp"; + "checked" = dontDistribute super."checked"; + "chell-hunit" = dontDistribute super."chell-hunit"; + "chesshs" = dontDistribute super."chesshs"; + "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; + "chp" = dontDistribute super."chp"; + "chp-mtl" = dontDistribute super."chp-mtl"; + "chp-plus" = dontDistribute super."chp-plus"; + "chp-spec" = dontDistribute super."chp-spec"; + "chp-transformers" = dontDistribute super."chp-transformers"; + "chronograph" = dontDistribute super."chronograph"; + "chu2" = dontDistribute super."chu2"; + "chuchu" = dontDistribute super."chuchu"; + "chunks" = dontDistribute super."chunks"; + "chunky" = dontDistribute super."chunky"; + "church-list" = dontDistribute super."church-list"; + "cil" = dontDistribute super."cil"; + "cinvoke" = dontDistribute super."cinvoke"; + "cio" = dontDistribute super."cio"; + "cipher-rc5" = dontDistribute super."cipher-rc5"; + "ciphersaber2" = dontDistribute super."ciphersaber2"; + "circ" = dontDistribute super."circ"; + "cirru-parser" = dontDistribute super."cirru-parser"; + "citation-resolve" = dontDistribute super."citation-resolve"; + "citeproc-hs" = dontDistribute super."citeproc-hs"; + "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter"; + "cityhash" = dontDistribute super."cityhash"; + "cjk" = dontDistribute super."cjk"; + "clac" = dontDistribute super."clac"; + "clafer" = dontDistribute super."clafer"; + "claferIG" = dontDistribute super."claferIG"; + "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; + "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; + "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_6_11"; + "clash-lib" = doDistribute super."clash-lib_0_6_11"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-vhdl" = doDistribute super."clash-vhdl_0_6_8"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; + "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; + "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "clocked" = dontDistribute super."clocked"; + "clogparse" = dontDistribute super."clogparse"; + "clone-all" = dontDistribute super."clone-all"; + "closure" = dontDistribute super."closure"; + "cloud-haskell" = dontDistribute super."cloud-haskell"; + "cloudfront-signer" = dontDistribute super."cloudfront-signer"; + "cloudyfs" = dontDistribute super."cloudyfs"; + "cltw" = dontDistribute super."cltw"; + "clua" = dontDistribute super."clua"; + "clumpiness" = dontDistribute super."clumpiness"; + "cluss" = dontDistribute super."cluss"; + "clustertools" = dontDistribute super."clustertools"; + "clutterhs" = dontDistribute super."clutterhs"; + "cmaes" = dontDistribute super."cmaes"; + "cmath" = dontDistribute super."cmath"; + "cmathml3" = dontDistribute super."cmathml3"; + "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs-browser" = dontDistribute super."cmdargs-browser"; + "cmdlib" = dontDistribute super."cmdlib"; + "cmdtheline" = dontDistribute super."cmdtheline"; + "cml" = dontDistribute super."cml"; + "cmonad" = dontDistribute super."cmonad"; + "cmu" = dontDistribute super."cmu"; + "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; + "cndict" = dontDistribute super."cndict"; + "codec" = dontDistribute super."codec"; + "codec-libevent" = dontDistribute super."codec-libevent"; + "codec-mbox" = dontDistribute super."codec-mbox"; + "codecov-haskell" = dontDistribute super."codecov-haskell"; + "codemonitor" = dontDistribute super."codemonitor"; + "codepad" = dontDistribute super."codepad"; + "codo-notation" = dontDistribute super."codo-notation"; + "cofunctor" = dontDistribute super."cofunctor"; + "cognimeta-utils" = dontDistribute super."cognimeta-utils"; + "coinbase-exchange" = dontDistribute super."coinbase-exchange"; + "colada" = dontDistribute super."colada"; + "colchis" = dontDistribute super."colchis"; + "collada-output" = dontDistribute super."collada-output"; + "collada-types" = dontDistribute super."collada-types"; + "collapse-util" = dontDistribute super."collapse-util"; + "collection-json" = dontDistribute super."collection-json"; + "collections" = dontDistribute super."collections"; + "collections-api" = dontDistribute super."collections-api"; + "collections-base-instances" = dontDistribute super."collections-base-instances"; + "colock" = dontDistribute super."colock"; + "colorize-haskell" = dontDistribute super."colorize-haskell"; + "colors" = dontDistribute super."colors"; + "coltrane" = dontDistribute super."coltrane"; + "com" = dontDistribute super."com"; + "combinat" = dontDistribute super."combinat"; + "combinat-diagrams" = dontDistribute super."combinat-diagrams"; + "combinator-interactive" = dontDistribute super."combinator-interactive"; + "combinatorial-problems" = dontDistribute super."combinatorial-problems"; + "combinatorics" = dontDistribute super."combinatorics"; + "combobuffer" = dontDistribute super."combobuffer"; + "comfort-graph" = dontDistribute super."comfort-graph"; + "command" = dontDistribute super."command"; + "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; + "commodities" = dontDistribute super."commodities"; + "commsec" = dontDistribute super."commsec"; + "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; + "comonad-extras" = dontDistribute super."comonad-extras"; + "comonad-random" = dontDistribute super."comonad-random"; + "compact-map" = dontDistribute super."compact-map"; + "compact-socket" = dontDistribute super."compact-socket"; + "compact-string" = dontDistribute super."compact-string"; + "compact-string-fix" = dontDistribute super."compact-string-fix"; + "compare-type" = dontDistribute super."compare-type"; + "compdata-automata" = dontDistribute super."compdata-automata"; + "compdata-dags" = dontDistribute super."compdata-dags"; + "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = dontDistribute super."compensated"; + "competition" = dontDistribute super."competition"; + "compilation" = dontDistribute super."compilation"; + "complex-generic" = dontDistribute super."complex-generic"; + "complex-integrate" = dontDistribute super."complex-integrate"; + "complexity" = dontDistribute super."complexity"; + "compose-ltr" = dontDistribute super."compose-ltr"; + "compose-trans" = dontDistribute super."compose-trans"; + "compression" = dontDistribute super."compression"; + "compstrat" = dontDistribute super."compstrat"; + "comptrans" = dontDistribute super."comptrans"; + "computational-algebra" = dontDistribute super."computational-algebra"; + "computations" = dontDistribute super."computations"; + "conceit" = dontDistribute super."conceit"; + "concorde" = dontDistribute super."concorde"; + "concraft" = dontDistribute super."concraft"; + "concraft-hr" = dontDistribute super."concraft-hr"; + "concraft-pl" = dontDistribute super."concraft-pl"; + "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser"; + "concrete-typerep" = dontDistribute super."concrete-typerep"; + "concurrent-barrier" = dontDistribute super."concurrent-barrier"; + "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = dontDistribute super."concurrent-extra"; + "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-sa" = dontDistribute super."concurrent-sa"; + "concurrent-split" = dontDistribute super."concurrent-split"; + "concurrent-state" = dontDistribute super."concurrent-state"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; + "concurrentoutput" = dontDistribute super."concurrentoutput"; + "cond" = dontDistribute super."cond"; + "condor" = dontDistribute super."condor"; + "condorcet" = dontDistribute super."condorcet"; + "conductive-base" = dontDistribute super."conductive-base"; + "conductive-clock" = dontDistribute super."conductive-clock"; + "conductive-hsc3" = dontDistribute super."conductive-hsc3"; + "conductive-song" = dontDistribute super."conductive-song"; + "conduit-audio" = dontDistribute super."conduit-audio"; + "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; + "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; + "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; + "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; + "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; + "config-select" = dontDistribute super."config-select"; + "config-value" = dontDistribute super."config-value"; + "configifier" = dontDistribute super."configifier"; + "configuration" = dontDistribute super."configuration"; + "configuration-tools" = dontDistribute super."configuration-tools"; + "confsolve" = dontDistribute super."confsolve"; + "congruence-relation" = dontDistribute super."congruence-relation"; + "conjugateGradient" = dontDistribute super."conjugateGradient"; + "conjure" = dontDistribute super."conjure"; + "conlogger" = dontDistribute super."conlogger"; + "connection-pool" = dontDistribute super."connection-pool"; + "consistent" = dontDistribute super."consistent"; + "console-program" = dontDistribute super."console-program"; + "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; + "constrained-categories" = dontDistribute super."constrained-categories"; + "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; + "constructible" = dontDistribute super."constructible"; + "constructive-algebra" = dontDistribute super."constructive-algebra"; + "consumers" = dontDistribute super."consumers"; + "container" = dontDistribute super."container"; + "container-classes" = dontDistribute super."container-classes"; + "containers-benchmark" = dontDistribute super."containers-benchmark"; + "containers-deepseq" = dontDistribute super."containers-deepseq"; + "context-free-grammar" = dontDistribute super."context-free-grammar"; + "context-stack" = dontDistribute super."context-stack"; + "continue" = dontDistribute super."continue"; + "continued-fractions" = dontDistribute super."continued-fractions"; + "continuum" = dontDistribute super."continuum"; + "continuum-client" = dontDistribute super."continuum-client"; + "control-event" = dontDistribute super."control-event"; + "control-monad-attempt" = dontDistribute super."control-monad-attempt"; + "control-monad-exception" = dontDistribute super."control-monad-exception"; + "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd"; + "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf"; + "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl"; + "control-monad-failure" = dontDistribute super."control-monad-failure"; + "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl"; + "control-monad-omega" = dontDistribute super."control-monad-omega"; + "control-monad-queue" = dontDistribute super."control-monad-queue"; + "control-timeout" = dontDistribute super."control-timeout"; + "contstuff" = dontDistribute super."contstuff"; + "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf"; + "contstuff-transformers" = dontDistribute super."contstuff-transformers"; + "converge" = dontDistribute super."converge"; + "conversion" = dontDistribute super."conversion"; + "conversion-bytestring" = dontDistribute super."conversion-bytestring"; + "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive"; + "conversion-text" = dontDistribute super."conversion-text"; + "convert" = dontDistribute super."convert"; + "convertible-ascii" = dontDistribute super."convertible-ascii"; + "convertible-text" = dontDistribute super."convertible-text"; + "cookbook" = dontDistribute super."cookbook"; + "coordinate" = dontDistribute super."coordinate"; + "copilot" = dontDistribute super."copilot"; + "copilot-c99" = dontDistribute super."copilot-c99"; + "copilot-cbmc" = dontDistribute super."copilot-cbmc"; + "copilot-core" = dontDistribute super."copilot-core"; + "copilot-language" = dontDistribute super."copilot-language"; + "copilot-libraries" = dontDistribute super."copilot-libraries"; + "copilot-sbv" = dontDistribute super."copilot-sbv"; + "copilot-theorem" = dontDistribute super."copilot-theorem"; + "copr" = dontDistribute super."copr"; + "core" = dontDistribute super."core"; + "core-haskell" = dontDistribute super."core-haskell"; + "corebot-bliki" = dontDistribute super."corebot-bliki"; + "coroutine-enumerator" = dontDistribute super."coroutine-enumerator"; + "coroutine-iteratee" = dontDistribute super."coroutine-iteratee"; + "coroutine-object" = dontDistribute super."coroutine-object"; + "couch-hs" = dontDistribute super."couch-hs"; + "couch-simple" = dontDistribute super."couch-simple"; + "couchdb-conduit" = dontDistribute super."couchdb-conduit"; + "couchdb-enumerator" = dontDistribute super."couchdb-enumerator"; + "count" = dontDistribute super."count"; + "countable" = dontDistribute super."countable"; + "counter" = dontDistribute super."counter"; + "court" = dontDistribute super."court"; + "coverage" = dontDistribute super."coverage"; + "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; + "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; + "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; + "cpsa" = dontDistribute super."cpsa"; + "cpuid" = dontDistribute super."cpuid"; + "cpuperf" = dontDistribute super."cpuperf"; + "cpython" = dontDistribute super."cpython"; + "cqrs" = dontDistribute super."cqrs"; + "cqrs-core" = dontDistribute super."cqrs-core"; + "cqrs-example" = dontDistribute super."cqrs-example"; + "cqrs-memory" = dontDistribute super."cqrs-memory"; + "cqrs-postgresql" = dontDistribute super."cqrs-postgresql"; + "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3"; + "cqrs-test" = dontDistribute super."cqrs-test"; + "cqrs-testkit" = dontDistribute super."cqrs-testkit"; + "cqrs-types" = dontDistribute super."cqrs-types"; + "cr" = dontDistribute super."cr"; + "crack" = dontDistribute super."crack"; + "craftwerk" = dontDistribute super."craftwerk"; + "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; + "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "crc16" = dontDistribute super."crc16"; + "crc16-table" = dontDistribute super."crc16-table"; + "creatur" = dontDistribute super."creatur"; + "crf-chain1" = dontDistribute super."crf-chain1"; + "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained"; + "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; + "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; + "critbit" = dontDistribute super."critbit"; + "criterion-plus" = dontDistribute super."criterion-plus"; + "criterion-to-html" = dontDistribute super."criterion-to-html"; + "crockford" = dontDistribute super."crockford"; + "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; + "cron-compat" = dontDistribute super."cron-compat"; + "cruncher-types" = dontDistribute super."cruncher-types"; + "crunghc" = dontDistribute super."crunghc"; + "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks"; + "crypto-classical" = dontDistribute super."crypto-classical"; + "crypto-conduit" = dontDistribute super."crypto-conduit"; + "crypto-enigma" = dontDistribute super."crypto-enigma"; + "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; + "crypto-random-effect" = dontDistribute super."crypto-random-effect"; + "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; + "cryptsy-api" = dontDistribute super."cryptsy-api"; + "crystalfontz" = dontDistribute super."crystalfontz"; + "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; + "csound-catalog" = dontDistribute super."csound-catalog"; + "csound-expression" = dontDistribute super."csound-expression"; + "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic"; + "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes"; + "csound-expression-typed" = dontDistribute super."csound-expression-typed"; + "csound-sampler" = dontDistribute super."csound-sampler"; + "csp" = dontDistribute super."csp"; + "cspmchecker" = dontDistribute super."cspmchecker"; + "css" = dontDistribute super."css"; + "csv-enumerator" = dontDistribute super."csv-enumerator"; + "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-to-qif" = dontDistribute super."csv-to-qif"; + "ctemplate" = dontDistribute super."ctemplate"; + "ctkl" = dontDistribute super."ctkl"; + "ctpl" = dontDistribute super."ctpl"; + "cube" = dontDistribute super."cube"; + "cubical" = dontDistribute super."cubical"; + "cubicbezier" = dontDistribute super."cubicbezier"; + "cublas" = dontDistribute super."cublas"; + "cuboid" = dontDistribute super."cuboid"; + "cuda" = dontDistribute super."cuda"; + "cudd" = dontDistribute super."cudd"; + "cufft" = dontDistribute super."cufft"; + "curl-aeson" = dontDistribute super."curl-aeson"; + "curlhs" = dontDistribute super."curlhs"; + "currency" = dontDistribute super."currency"; + "current-locale" = dontDistribute super."current-locale"; + "curry-base" = dontDistribute super."curry-base"; + "curry-frontend" = dontDistribute super."curry-frontend"; + "cursedcsv" = dontDistribute super."cursedcsv"; + "curve25519" = dontDistribute super."curve25519"; + "curves" = dontDistribute super."curves"; + "custom-prelude" = dontDistribute super."custom-prelude"; + "cv-combinators" = dontDistribute super."cv-combinators"; + "cyclotomic" = dontDistribute super."cyclotomic"; + "cypher" = dontDistribute super."cypher"; + "d-bus" = dontDistribute super."d-bus"; + "d3js" = dontDistribute super."d3js"; + "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; + "daemons" = dontDistribute super."daemons"; + "dag" = dontDistribute super."dag"; + "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; + "dao" = dontDistribute super."dao"; + "dapi" = dontDistribute super."dapi"; + "darcs-benchmark" = dontDistribute super."darcs-benchmark"; + "darcs-beta" = dontDistribute super."darcs-beta"; + "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; + "darcs-cabalized" = dontDistribute super."darcs-cabalized"; + "darcs-fastconvert" = dontDistribute super."darcs-fastconvert"; + "darcs-graph" = dontDistribute super."darcs-graph"; + "darcs-monitor" = dontDistribute super."darcs-monitor"; + "darcs-scripts" = dontDistribute super."darcs-scripts"; + "darcs2dot" = dontDistribute super."darcs2dot"; + "darcsden" = dontDistribute super."darcsden"; + "darcswatch" = dontDistribute super."darcswatch"; + "darkplaces-demo" = dontDistribute super."darkplaces-demo"; + "darkplaces-rcon" = dontDistribute super."darkplaces-rcon"; + "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util"; + "darkplaces-text" = dontDistribute super."darkplaces-text"; + "dash-haskell" = dontDistribute super."dash-haskell"; + "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib"; + "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd"; + "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf"; + "data-accessor-template" = dontDistribute super."data-accessor-template"; + "data-accessor-transformers" = dontDistribute super."data-accessor-transformers"; + "data-aviary" = dontDistribute super."data-aviary"; + "data-base" = dontDistribute super."data-base"; + "data-bword" = dontDistribute super."data-bword"; + "data-carousel" = dontDistribute super."data-carousel"; + "data-category" = dontDistribute super."data-category"; + "data-cell" = dontDistribute super."data-cell"; + "data-checked" = dontDistribute super."data-checked"; + "data-clist" = dontDistribute super."data-clist"; + "data-concurrent-queue" = dontDistribute super."data-concurrent-queue"; + "data-construction" = dontDistribute super."data-construction"; + "data-cycle" = dontDistribute super."data-cycle"; + "data-default-extra" = dontDistribute super."data-default-extra"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; + "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; + "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; + "data-default-instances-text" = dontDistribute super."data-default-instances-text"; + "data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers"; + "data-default-instances-vector" = dontDistribute super."data-default-instances-vector"; + "data-dispersal" = dontDistribute super."data-dispersal"; + "data-dword" = dontDistribute super."data-dword"; + "data-easy" = dontDistribute super."data-easy"; + "data-embed" = dontDistribute super."data-embed"; + "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-interval" = dontDistribute super."data-interval"; + "data-ivar" = dontDistribute super."data-ivar"; + "data-json-token" = dontDistribute super."data-json-token"; + "data-kiln" = dontDistribute super."data-kiln"; + "data-layer" = dontDistribute super."data-layer"; + "data-layout" = dontDistribute super."data-layout"; + "data-lens" = dontDistribute super."data-lens"; + "data-lens-fd" = dontDistribute super."data-lens-fd"; + "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-template" = dontDistribute super."data-lens-template"; + "data-list-sequences" = dontDistribute super."data-list-sequences"; + "data-map-multikey" = dontDistribute super."data-map-multikey"; + "data-named" = dontDistribute super."data-named"; + "data-nat" = dontDistribute super."data-nat"; + "data-object" = dontDistribute super."data-object"; + "data-object-json" = dontDistribute super."data-object-json"; + "data-object-yaml" = dontDistribute super."data-object-yaml"; + "data-or" = dontDistribute super."data-or"; + "data-partition" = dontDistribute super."data-partition"; + "data-pprint" = dontDistribute super."data-pprint"; + "data-quotientref" = dontDistribute super."data-quotientref"; + "data-r-tree" = dontDistribute super."data-r-tree"; + "data-ref" = dontDistribute super."data-ref"; + "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; + "data-result" = dontDistribute super."data-result"; + "data-rev" = dontDistribute super."data-rev"; + "data-rope" = dontDistribute super."data-rope"; + "data-rtuple" = dontDistribute super."data-rtuple"; + "data-size" = dontDistribute super."data-size"; + "data-spacepart" = dontDistribute super."data-spacepart"; + "data-store" = dontDistribute super."data-store"; + "data-stringmap" = dontDistribute super."data-stringmap"; + "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-tensor" = dontDistribute super."data-tensor"; + "data-textual" = dontDistribute super."data-textual"; + "data-timeout" = dontDistribute super."data-timeout"; + "data-transform" = dontDistribute super."data-transform"; + "data-treify" = dontDistribute super."data-treify"; + "data-type" = dontDistribute super."data-type"; + "data-util" = dontDistribute super."data-util"; + "data-variant" = dontDistribute super."data-variant"; + "database-migrate" = dontDistribute super."database-migrate"; + "database-study" = dontDistribute super."database-study"; + "dataenc" = dontDistribute super."dataenc"; + "dataflow" = dontDistribute super."dataflow"; + "datalog" = dontDistribute super."datalog"; + "datapacker" = dontDistribute super."datapacker"; + "dataurl" = dontDistribute super."dataurl"; + "date-cache" = dontDistribute super."date-cache"; + "dates" = dontDistribute super."dates"; + "datetime" = dontDistribute super."datetime"; + "datetime-sb" = dontDistribute super."datetime-sb"; + "dawdle" = dontDistribute super."dawdle"; + "dawg" = dontDistribute super."dawg"; + "dbcleaner" = dontDistribute super."dbcleaner"; + "dbf" = dontDistribute super."dbf"; + "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = doDistribute super."dbmigrations_1_0"; + "dbus-client" = dontDistribute super."dbus-client"; + "dbus-core" = dontDistribute super."dbus-core"; + "dbus-qq" = dontDistribute super."dbus-qq"; + "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; + "dclabel" = dontDistribute super."dclabel"; + "dclabel-eci11" = dontDistribute super."dclabel-eci11"; + "ddc-base" = dontDistribute super."ddc-base"; + "ddc-build" = dontDistribute super."ddc-build"; + "ddc-code" = dontDistribute super."ddc-code"; + "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-eval" = dontDistribute super."ddc-core-eval"; + "ddc-core-flow" = dontDistribute super."ddc-core-flow"; + "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; + "ddc-core-salt" = dontDistribute super."ddc-core-salt"; + "ddc-core-simpl" = dontDistribute super."ddc-core-simpl"; + "ddc-core-tetra" = dontDistribute super."ddc-core-tetra"; + "ddc-driver" = dontDistribute super."ddc-driver"; + "ddc-interface" = dontDistribute super."ddc-interface"; + "ddc-source-tetra" = dontDistribute super."ddc-source-tetra"; + "ddc-tools" = dontDistribute super."ddc-tools"; + "ddc-war" = dontDistribute super."ddc-war"; + "ddci-core" = dontDistribute super."ddci-core"; + "dead-code-detection" = dontDistribute super."dead-code-detection"; + "dead-simple-json" = dontDistribute super."dead-simple-json"; + "debian-binary" = dontDistribute super."debian-binary"; + "debian-build" = dontDistribute super."debian-build"; + "debug-diff" = dontDistribute super."debug-diff"; + "debug-time" = dontDistribute super."debug-time"; + "decepticons" = dontDistribute super."decepticons"; + "decode-utf8" = dontDistribute super."decode-utf8"; + "decoder-conduit" = dontDistribute super."decoder-conduit"; + "dedukti" = dontDistribute super."dedukti"; + "deepcontrol" = dontDistribute super."deepcontrol"; + "deeplearning-hs" = dontDistribute super."deeplearning-hs"; + "deepseq-bounded" = dontDistribute super."deepseq-bounded"; + "deepseq-magic" = dontDistribute super."deepseq-magic"; + "deepseq-th" = dontDistribute super."deepseq-th"; + "deepzoom" = dontDistribute super."deepzoom"; + "defargs" = dontDistribute super."defargs"; + "definitive-base" = dontDistribute super."definitive-base"; + "definitive-filesystem" = dontDistribute super."definitive-filesystem"; + "definitive-graphics" = dontDistribute super."definitive-graphics"; + "definitive-parser" = dontDistribute super."definitive-parser"; + "definitive-reactive" = dontDistribute super."definitive-reactive"; + "definitive-sound" = dontDistribute super."definitive-sound"; + "deiko-config" = dontDistribute super."deiko-config"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delimiter-separated" = dontDistribute super."delimiter-separated"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "dependent-state" = dontDistribute super."dependent-state"; + "depends" = dontDistribute super."depends"; + "dephd" = dontDistribute super."dephd"; + "dequeue" = dontDistribute super."dequeue"; + "derangement" = dontDistribute super."derangement"; + "derivation-trees" = dontDistribute super."derivation-trees"; + "derive-IG" = dontDistribute super."derive-IG"; + "derive-enumerable" = dontDistribute super."derive-enumerable"; + "derive-gadt" = dontDistribute super."derive-gadt"; + "derive-monoid" = dontDistribute super."derive-monoid"; + "derive-topdown" = dontDistribute super."derive-topdown"; + "derive-trie" = dontDistribute super."derive-trie"; + "deriving-compat" = dontDistribute super."deriving-compat"; + "derp" = dontDistribute super."derp"; + "derp-lib" = dontDistribute super."derp-lib"; + "descrilo" = dontDistribute super."descrilo"; + "despair" = dontDistribute super."despair"; + "deterministic-game-engine" = dontDistribute super."deterministic-game-engine"; + "detrospector" = dontDistribute super."detrospector"; + "deunicode" = dontDistribute super."deunicode"; + "devil" = dontDistribute super."devil"; + "dewdrop" = dontDistribute super."dewdrop"; + "dfrac" = dontDistribute super."dfrac"; + "dfsbuild" = dontDistribute super."dfsbuild"; + "dgim" = dontDistribute super."dgim"; + "dgs" = dontDistribute super."dgs"; + "dia-base" = dontDistribute super."dia-base"; + "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; + "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; + "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; + "diagrams-pdf" = dontDistribute super."diagrams-pdf"; + "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; + "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; + "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; + "dicom" = dontDistribute super."dicom"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; + "diff-parse" = dontDistribute super."diff-parse"; + "diffarray" = dontDistribute super."diffarray"; + "diffcabal" = dontDistribute super."diffcabal"; + "diffdump" = dontDistribute super."diffdump"; + "digamma" = dontDistribute super."digamma"; + "digest-pure" = dontDistribute super."digest-pure"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; + "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; + "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp"; + "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty"; + "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; + "digit" = dontDistribute super."digit"; + "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "dimensional-codata" = dontDistribute super."dimensional-codata"; + "dimensional-tf" = dontDistribute super."dimensional-tf"; + "dingo-core" = dontDistribute super."dingo-core"; + "dingo-example" = dontDistribute super."dingo-example"; + "dingo-widgets" = dontDistribute super."dingo-widgets"; + "diophantine" = dontDistribute super."diophantine"; + "diplomacy" = dontDistribute super."diplomacy"; + "diplomacy-server" = dontDistribute super."diplomacy-server"; + "direct-binary-files" = dontDistribute super."direct-binary-files"; + "direct-daemonize" = dontDistribute super."direct-daemonize"; + "direct-fastcgi" = dontDistribute super."direct-fastcgi"; + "direct-http" = dontDistribute super."direct-http"; + "direct-murmur-hash" = dontDistribute super."direct-murmur-hash"; + "direct-plugins" = dontDistribute super."direct-plugins"; + "directed-cubical" = dontDistribute super."directed-cubical"; + "directory-layout" = dontDistribute super."directory-layout"; + "directory-listing-webpage-parser" = dontDistribute super."directory-listing-webpage-parser"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discordian-calendar" = dontDistribute super."discordian-calendar"; + "discount" = dontDistribute super."discount"; + "discrete-space-map" = dontDistribute super."discrete-space-map"; + "discrimination" = dontDistribute super."discrimination"; + "disjoint-set" = dontDistribute super."disjoint-set"; + "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; + "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = doDistribute super."distributed-process_0_5_5_1"; + "distributed-process-async" = dontDistribute super."distributed-process-async"; + "distributed-process-azure" = dontDistribute super."distributed-process-azure"; + "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; + "distributed-process-ekg" = dontDistribute super."distributed-process-ekg"; + "distributed-process-execution" = dontDistribute super."distributed-process-execution"; + "distributed-process-extras" = dontDistribute super."distributed-process-extras"; + "distributed-process-lifted" = dontDistribute super."distributed-process-lifted"; + "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control"; + "distributed-process-p2p" = dontDistribute super."distributed-process-p2p"; + "distributed-process-platform" = dontDistribute super."distributed-process-platform"; + "distributed-process-registry" = dontDistribute super."distributed-process-registry"; + "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet"; + "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor"; + "distributed-process-task" = dontDistribute super."distributed-process-task"; + "distributed-process-tests" = dontDistribute super."distributed-process-tests"; + "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distribution" = dontDistribute super."distribution"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "djembe" = dontDistribute super."djembe"; + "djinn" = dontDistribute super."djinn"; + "djinn-th" = dontDistribute super."djinn-th"; + "dnscache" = dontDistribute super."dnscache"; + "dnsrbl" = dontDistribute super."dnsrbl"; + "dnssd" = dontDistribute super."dnssd"; + "doc-review" = dontDistribute super."doc-review"; + "doccheck" = dontDistribute super."doccheck"; + "docidx" = dontDistribute super."docidx"; + "docker" = dontDistribute super."docker"; + "dockercook" = dontDistribute super."dockercook"; + "doctest-discover" = dontDistribute super."doctest-discover"; + "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; + "doctest-prop" = dontDistribute super."doctest-prop"; + "dom-lt" = dontDistribute super."dom-lt"; + "dom-parser" = dontDistribute super."dom-parser"; + "dom-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download" = dontDistribute super."download"; + "download-curl" = dontDistribute super."download-curl"; + "download-media-content" = dontDistribute super."download-media-content"; + "dozenal" = dontDistribute super."dozenal"; + "dozens" = dontDistribute super."dozens"; + "dph-base" = dontDistribute super."dph-base"; + "dph-examples" = dontDistribute super."dph-examples"; + "dph-lifted-base" = dontDistribute super."dph-lifted-base"; + "dph-lifted-copy" = dontDistribute super."dph-lifted-copy"; + "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg"; + "dph-par" = dontDistribute super."dph-par"; + "dph-prim-interface" = dontDistribute super."dph-prim-interface"; + "dph-prim-par" = dontDistribute super."dph-prim-par"; + "dph-prim-seq" = dontDistribute super."dph-prim-seq"; + "dph-seq" = dontDistribute super."dph-seq"; + "dpkg" = dontDistribute super."dpkg"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; + "dropbox-sdk" = dontDistribute super."dropbox-sdk"; + "dropsolve" = dontDistribute super."dropsolve"; + "ds-kanren" = dontDistribute super."ds-kanren"; + "dsh-sql" = dontDistribute super."dsh-sql"; + "dsmc" = dontDistribute super."dsmc"; + "dsmc-tools" = dontDistribute super."dsmc-tools"; + "dson" = dontDistribute super."dson"; + "dson-parsec" = dontDistribute super."dson-parsec"; + "dsp" = dontDistribute super."dsp"; + "dstring" = dontDistribute super."dstring"; + "dtab" = dontDistribute super."dtab"; + "dtd" = dontDistribute super."dtd"; + "dtd-text" = dontDistribute super."dtd-text"; + "dtd-types" = dontDistribute super."dtd-types"; + "dtrace" = dontDistribute super."dtrace"; + "dtw" = dontDistribute super."dtw"; + "dump" = dontDistribute super."dump"; + "duplo" = dontDistribute super."duplo"; + "dvda" = dontDistribute super."dvda"; + "dvdread" = dontDistribute super."dvdread"; + "dvi-processing" = dontDistribute super."dvi-processing"; + "dvorak" = dontDistribute super."dvorak"; + "dwarf" = dontDistribute super."dwarf"; + "dwarf-el" = dontDistribute super."dwarf-el"; + "dwarfadt" = dontDistribute super."dwarfadt"; + "dx9base" = dontDistribute super."dx9base"; + "dx9d3d" = dontDistribute super."dx9d3d"; + "dx9d3dx" = dontDistribute super."dx9d3dx"; + "dynamic-cabal" = dontDistribute super."dynamic-cabal"; + "dynamic-graph" = dontDistribute super."dynamic-graph"; + "dynamic-linker-template" = dontDistribute super."dynamic-linker-template"; + "dynamic-loader" = dontDistribute super."dynamic-loader"; + "dynamic-mvector" = dontDistribute super."dynamic-mvector"; + "dynamic-object" = dontDistribute super."dynamic-object"; + "dynamic-plot" = dontDistribute super."dynamic-plot"; + "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynobud" = dontDistribute super."dynobud"; + "dywapitchtrack" = dontDistribute super."dywapitchtrack"; + "dzen-utils" = dontDistribute super."dzen-utils"; + "eager-sockets" = dontDistribute super."eager-sockets"; + "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; + "easyjson" = dontDistribute super."easyjson"; + "easyplot" = dontDistribute super."easyplot"; + "easyrender" = dontDistribute super."easyrender"; + "ebeats" = dontDistribute super."ebeats"; + "ebnf-bff" = dontDistribute super."ebnf-bff"; + "ec2-signature" = dontDistribute super."ec2-signature"; + "ecdsa" = dontDistribute super."ecdsa"; + "ecma262" = dontDistribute super."ecma262"; + "ecu" = dontDistribute super."ecu"; + "ed25519" = dontDistribute super."ed25519"; + "ed25519-donna" = dontDistribute super."ed25519-donna"; + "eddie" = dontDistribute super."eddie"; + "edenmodules" = dontDistribute super."edenmodules"; + "edenskel" = dontDistribute super."edenskel"; + "edentv" = dontDistribute super."edentv"; + "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "eithers" = dontDistribute super."eithers"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-log" = dontDistribute super."ekg-log"; + "ekg-push" = dontDistribute super."ekg-push"; + "ekg-rrd" = dontDistribute super."ekg-rrd"; + "ekg-statsd" = dontDistribute super."ekg-statsd"; + "electrum-mnemonic" = dontDistribute super."electrum-mnemonic"; + "elerea" = dontDistribute super."elerea"; + "elerea-examples" = dontDistribute super."elerea-examples"; + "elerea-sdl" = dontDistribute super."elerea-sdl"; + "elevator" = dontDistribute super."elevator"; + "elf" = dontDistribute super."elf"; + "elision" = dontDistribute super."elision"; + "elm-build-lib" = dontDistribute super."elm-build-lib"; + "elm-compiler" = dontDistribute super."elm-compiler"; + "elm-get" = dontDistribute super."elm-get"; + "elm-init" = dontDistribute super."elm-init"; + "elm-make" = dontDistribute super."elm-make"; + "elm-package" = dontDistribute super."elm-package"; + "elm-reactor" = dontDistribute super."elm-reactor"; + "elm-repl" = dontDistribute super."elm-repl"; + "elm-server" = dontDistribute super."elm-server"; + "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; + "elocrypt" = dontDistribute super."elocrypt"; + "emacs-keys" = dontDistribute super."emacs-keys"; + "email" = dontDistribute super."email"; + "email-header" = dontDistribute super."email-header"; + "email-postmark" = dontDistribute super."email-postmark"; + "email-validator" = dontDistribute super."email-validator"; + "embeddock" = dontDistribute super."embeddock"; + "embeddock-example" = dontDistribute super."embeddock-example"; + "embroidery" = dontDistribute super."embroidery"; + "emgm" = dontDistribute super."emgm"; + "empty" = dontDistribute super."empty"; + "encoding" = dontDistribute super."encoding"; + "endo" = dontDistribute super."endo"; + "engine-io-growler" = dontDistribute super."engine-io-growler"; + "engine-io-snap" = dontDistribute super."engine-io-snap"; + "engineering-units" = dontDistribute super."engineering-units"; + "enumerable" = dontDistribute super."enumerable"; + "enumerate" = dontDistribute super."enumerate"; + "enumeration" = dontDistribute super."enumeration"; + "enumerator-fd" = dontDistribute super."enumerator-fd"; + "enumerator-tf" = dontDistribute super."enumerator-tf"; + "enumfun" = dontDistribute super."enumfun"; + "enummapmap" = dontDistribute super."enummapmap"; + "enummapset" = dontDistribute super."enummapset"; + "enummapset-th" = dontDistribute super."enummapset-th"; + "enumset" = dontDistribute super."enumset"; + "env-parser" = dontDistribute super."env-parser"; + "envparse" = dontDistribute super."envparse"; + "epanet-haskell" = dontDistribute super."epanet-haskell"; + "epass" = dontDistribute super."epass"; + "epic" = dontDistribute super."epic"; + "epoll" = dontDistribute super."epoll"; + "eprocess" = dontDistribute super."eprocess"; + "epub" = dontDistribute super."epub"; + "epub-metadata" = dontDistribute super."epub-metadata"; + "epub-tools" = dontDistribute super."epub-tools"; + "epubname" = dontDistribute super."epubname"; + "equal-files" = dontDistribute super."equal-files"; + "equational-reasoning" = dontDistribute super."equational-reasoning"; + "erd" = dontDistribute super."erd"; + "erf-native" = dontDistribute super."erf-native"; + "erlang" = dontDistribute super."erlang"; + "eros" = dontDistribute super."eros"; + "eros-client" = dontDistribute super."eros-client"; + "eros-http" = dontDistribute super."eros-http"; + "errno" = dontDistribute super."errno"; + "error-analyze" = dontDistribute super."error-analyze"; + "error-continuations" = dontDistribute super."error-continuations"; + "error-list" = dontDistribute super."error-list"; + "error-loc" = dontDistribute super."error-loc"; + "error-location" = dontDistribute super."error-location"; + "error-message" = dontDistribute super."error-message"; + "error-util" = dontDistribute super."error-util"; + "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; + "ersatz" = dontDistribute super."ersatz"; + "ersatz-toysat" = dontDistribute super."ersatz-toysat"; + "ert" = dontDistribute super."ert"; + "esotericbot" = dontDistribute super."esotericbot"; + "ess" = dontDistribute super."ess"; + "estimator" = dontDistribute super."estimator"; + "estimators" = dontDistribute super."estimators"; + "estreps" = dontDistribute super."estreps"; + "eternal" = dontDistribute super."eternal"; + "ether" = doDistribute super."ether_0_3_1_1"; + "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; + "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; + "ethereum-rlp" = dontDistribute super."ethereum-rlp"; + "ety" = dontDistribute super."ety"; + "euler" = dontDistribute super."euler"; + "euphoria" = dontDistribute super."euphoria"; + "eurofxref" = dontDistribute super."eurofxref"; + "event-driven" = dontDistribute super."event-driven"; + "event-handlers" = dontDistribute super."event-handlers"; + "event-list" = dontDistribute super."event-list"; + "event-monad" = dontDistribute super."event-monad"; + "eventloop" = dontDistribute super."eventloop"; + "eventstore" = doDistribute super."eventstore_0_10_0_2"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exception-hierarchy" = dontDistribute super."exception-hierarchy"; + "exception-mailer" = dontDistribute super."exception-mailer"; + "exception-monads-fd" = dontDistribute super."exception-monads-fd"; + "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exception-mtl" = dontDistribute super."exception-mtl"; + "exherbo-cabal" = dontDistribute super."exherbo-cabal"; + "exif" = dontDistribute super."exif"; + "exinst" = dontDistribute super."exinst"; + "exinst-aeson" = dontDistribute super."exinst-aeson"; + "exinst-bytes" = dontDistribute super."exinst-bytes"; + "exinst-deepseq" = dontDistribute super."exinst-deepseq"; + "exinst-hashable" = dontDistribute super."exinst-hashable"; + "existential" = dontDistribute super."existential"; + "exists" = dontDistribute super."exists"; + "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; + "exp-pairs" = dontDistribute super."exp-pairs"; + "expand" = dontDistribute super."expand"; + "expat-enumerator" = dontDistribute super."expat-enumerator"; + "expiring-mvar" = dontDistribute super."expiring-mvar"; + "explain" = dontDistribute super."explain"; + "explicit-determinant" = dontDistribute super."explicit-determinant"; + "explicit-iomodes" = dontDistribute super."explicit-iomodes"; + "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring"; + "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text"; + "explicit-sharing" = dontDistribute super."explicit-sharing"; + "explore" = dontDistribute super."explore"; + "exposed-containers" = dontDistribute super."exposed-containers"; + "expression-parser" = dontDistribute super."expression-parser"; + "extcore" = dontDistribute super."extcore"; + "extemp" = dontDistribute super."extemp"; + "extended-categories" = dontDistribute super."extended-categories"; + "extended-reals" = dontDistribute super."extended-reals"; + "extensible" = dontDistribute super."extensible"; + "extensible-data" = dontDistribute super."extensible-data"; + "external-sort" = dontDistribute super."external-sort"; + "extractelf" = dontDistribute super."extractelf"; + "ez-couch" = dontDistribute super."ez-couch"; + "faceted" = dontDistribute super."faceted"; + "factory" = dontDistribute super."factory"; + "factual-api" = dontDistribute super."factual-api"; + "fad" = dontDistribute super."fad"; + "failable-list" = dontDistribute super."failable-list"; + "failure" = dontDistribute super."failure"; + "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; + "faker" = dontDistribute super."faker"; + "falling-turnip" = dontDistribute super."falling-turnip"; + "fallingblocks" = dontDistribute super."fallingblocks"; + "family-tree" = dontDistribute super."family-tree"; + "fast-digits" = dontDistribute super."fast-digits"; + "fast-math" = dontDistribute super."fast-math"; + "fast-tags" = dontDistribute super."fast-tags"; + "fast-tagsoup" = dontDistribute super."fast-tagsoup"; + "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fastbayes" = dontDistribute super."fastbayes"; + "fastcgi" = dontDistribute super."fastcgi"; + "fastedit" = dontDistribute super."fastedit"; + "fastirc" = dontDistribute super."fastirc"; + "fault-tree" = dontDistribute super."fault-tree"; + "fay-geoposition" = dontDistribute super."fay-geoposition"; + "fay-hsx" = dontDistribute super."fay-hsx"; + "fay-ref" = dontDistribute super."fay-ref"; + "fca" = dontDistribute super."fca"; + "fcache" = dontDistribute super."fcache"; + "fcd" = dontDistribute super."fcd"; + "fckeditor" = dontDistribute super."fckeditor"; + "fclabels-monadlib" = dontDistribute super."fclabels-monadlib"; + "fdo-trash" = dontDistribute super."fdo-trash"; + "fec" = dontDistribute super."fec"; + "fedora-packages" = dontDistribute super."fedora-packages"; + "feed-cli" = dontDistribute super."feed-cli"; + "feed-collect" = dontDistribute super."feed-collect"; + "feed-crawl" = dontDistribute super."feed-crawl"; + "feed-translator" = dontDistribute super."feed-translator"; + "feed2lj" = dontDistribute super."feed2lj"; + "feed2twitter" = dontDistribute super."feed2twitter"; + "feldspar-compiler" = dontDistribute super."feldspar-compiler"; + "feldspar-language" = dontDistribute super."feldspar-language"; + "feldspar-signal" = dontDistribute super."feldspar-signal"; + "fen2s" = dontDistribute super."fen2s"; + "fences" = dontDistribute super."fences"; + "fenfire" = dontDistribute super."fenfire"; + "fez-conf" = dontDistribute super."fez-conf"; + "ffeed" = dontDistribute super."ffeed"; + "fficxx" = dontDistribute super."fficxx"; + "fficxx-runtime" = dontDistribute super."fficxx-runtime"; + "ffmpeg-light" = dontDistribute super."ffmpeg-light"; + "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; + "fgl-visualize" = dontDistribute super."fgl-visualize"; + "fibon" = dontDistribute super."fibon"; + "fibonacci" = dontDistribute super."fibonacci"; + "fields" = dontDistribute super."fields"; + "fields-json" = dontDistribute super."fields-json"; + "fieldwise" = dontDistribute super."fieldwise"; + "fig" = dontDistribute super."fig"; + "file-collection" = dontDistribute super."file-collection"; + "file-command-qq" = dontDistribute super."file-command-qq"; + "filediff" = dontDistribute super."filediff"; + "filepath-io-access" = dontDistribute super."filepath-io-access"; + "filepather" = dontDistribute super."filepather"; + "filestore" = dontDistribute super."filestore"; + "filesystem-conduit" = dontDistribute super."filesystem-conduit"; + "filesystem-enumerator" = dontDistribute super."filesystem-enumerator"; + "filesystem-trees" = dontDistribute super."filesystem-trees"; + "filtrable" = dontDistribute super."filtrable"; + "final" = dontDistribute super."final"; + "find-clumpiness" = dontDistribute super."find-clumpiness"; + "find-conduit" = dontDistribute super."find-conduit"; + "fingertree-tf" = dontDistribute super."fingertree-tf"; + "finite-field" = dontDistribute super."finite-field"; + "finite-typelits" = dontDistribute super."finite-typelits"; + "first-and-last" = dontDistribute super."first-and-last"; + "first-class-patterns" = dontDistribute super."first-class-patterns"; + "firstify" = dontDistribute super."firstify"; + "fishfood" = dontDistribute super."fishfood"; + "fit" = dontDistribute super."fit"; + "fitsio" = dontDistribute super."fitsio"; + "fix-imports" = dontDistribute super."fix-imports"; + "fix-parser-simple" = dontDistribute super."fix-parser-simple"; + "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit"; + "fixed-length" = dontDistribute super."fixed-length"; + "fixed-point" = dontDistribute super."fixed-point"; + "fixed-point-vector" = dontDistribute super."fixed-point-vector"; + "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space"; + "fixed-precision" = dontDistribute super."fixed-precision"; + "fixed-storable-array" = dontDistribute super."fixed-storable-array"; + "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; + "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixedprec" = dontDistribute super."fixedprec"; + "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; + "fixfile" = dontDistribute super."fixfile"; + "fixhs" = dontDistribute super."fixhs"; + "fixplate" = dontDistribute super."fixplate"; + "fixpoint" = dontDistribute super."fixpoint"; + "fixtime" = dontDistribute super."fixtime"; + "fizz-buzz" = dontDistribute super."fizz-buzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "flat-mcmc" = dontDistribute super."flat-mcmc"; + "flat-tex" = dontDistribute super."flat-tex"; + "flexible-time" = dontDistribute super."flexible-time"; + "flexible-unlit" = dontDistribute super."flexible-unlit"; + "flexiwrap" = dontDistribute super."flexiwrap"; + "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck"; + "flickr" = dontDistribute super."flickr"; + "flippers" = dontDistribute super."flippers"; + "flite" = dontDistribute super."flite"; + "flo" = dontDistribute super."flo"; + "float-binstring" = dontDistribute super."float-binstring"; + "floating-bits" = dontDistribute super."floating-bits"; + "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; + "flow2dot" = dontDistribute super."flow2dot"; + "flowdock-api" = dontDistribute super."flowdock-api"; + "flowdock-rest" = dontDistribute super."flowdock-rest"; + "flower" = dontDistribute super."flower"; + "flowlocks-framework" = dontDistribute super."flowlocks-framework"; + "flowsim" = dontDistribute super."flowsim"; + "fltkhs" = dontDistribute super."fltkhs"; + "fltkhs-demos" = dontDistribute super."fltkhs-demos"; + "fltkhs-fluid-demos" = dontDistribute super."fltkhs-fluid-demos"; + "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples"; + "fltkhs-hello-world" = dontDistribute super."fltkhs-hello-world"; + "fluent-logger" = dontDistribute super."fluent-logger"; + "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; + "fluidsynth" = dontDistribute super."fluidsynth"; + "fmark" = dontDistribute super."fmark"; + "fn" = doDistribute super."fn_0_2_0_2"; + "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; + "fold-debounce" = dontDistribute super."fold-debounce"; + "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl-incremental" = dontDistribute super."foldl-incremental"; + "foldl-transduce" = dontDistribute super."foldl-transduce"; + "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; + "folds" = dontDistribute super."folds"; + "folds-common" = dontDistribute super."folds-common"; + "follower" = dontDistribute super."follower"; + "foma" = dontDistribute super."foma"; + "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6"; + "foo" = dontDistribute super."foo"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "fordo" = dontDistribute super."fordo"; + "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; + "foreign-var" = dontDistribute super."foreign-var"; + "forger" = dontDistribute super."forger"; + "forkable-monad" = dontDistribute super."forkable-monad"; + "formal" = dontDistribute super."formal"; + "format" = dontDistribute super."format"; + "format-status" = dontDistribute super."format-status"; + "formattable" = dontDistribute super."formattable"; + "forml" = dontDistribute super."forml"; + "formlets" = dontDistribute super."formlets"; + "formlets-hsp" = dontDistribute super."formlets-hsp"; + "formura" = dontDistribute super."formura"; + "forth-hll" = dontDistribute super."forth-hll"; + "foscam-directory" = dontDistribute super."foscam-directory"; + "foscam-filename" = dontDistribute super."foscam-filename"; + "foscam-sort" = dontDistribute super."foscam-sort"; + "fountain" = dontDistribute super."fountain"; + "fpco-api" = dontDistribute super."fpco-api"; + "fpipe" = dontDistribute super."fpipe"; + "fpnla" = dontDistribute super."fpnla"; + "fpnla-examples" = dontDistribute super."fpnla-examples"; + "fptest" = dontDistribute super."fptest"; + "fquery" = dontDistribute super."fquery"; + "fractal" = dontDistribute super."fractal"; + "fractals" = dontDistribute super."fractals"; + "fraction" = dontDistribute super."fraction"; + "frag" = dontDistribute super."frag"; + "frame" = dontDistribute super."frame"; + "frame-markdown" = dontDistribute super."frame-markdown"; + "franchise" = dontDistribute super."franchise"; + "free-concurrent" = dontDistribute super."free-concurrent"; + "free-functors" = dontDistribute super."free-functors"; + "free-game" = dontDistribute super."free-game"; + "free-http" = dontDistribute super."free-http"; + "free-operational" = dontDistribute super."free-operational"; + "free-theorems" = dontDistribute super."free-theorems"; + "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples"; + "free-theorems-seq" = dontDistribute super."free-theorems-seq"; + "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui"; + "free-theorems-webui" = dontDistribute super."free-theorems-webui"; + "free-vl" = dontDistribute super."free-vl"; + "freekick2" = dontDistribute super."freekick2"; + "freer" = dontDistribute super."freer"; + "freesect" = dontDistribute super."freesect"; + "freesound" = dontDistribute super."freesound"; + "freetype-simple" = dontDistribute super."freetype-simple"; + "freetype2" = dontDistribute super."freetype2"; + "fresh" = dontDistribute super."fresh"; + "friday" = dontDistribute super."friday"; + "friday-devil" = dontDistribute super."friday-devil"; + "friday-juicypixels" = dontDistribute super."friday-juicypixels"; + "friday-scale-dct" = dontDistribute super."friday-scale-dct"; + "friendly-time" = dontDistribute super."friendly-time"; + "frown" = dontDistribute super."frown"; + "frp-arduino" = dontDistribute super."frp-arduino"; + "frpnow" = dontDistribute super."frpnow"; + "frpnow-gloss" = dontDistribute super."frpnow-gloss"; + "frpnow-gtk" = dontDistribute super."frpnow-gtk"; + "frquotes" = dontDistribute super."frquotes"; + "fs-events" = dontDistribute super."fs-events"; + "fsharp" = dontDistribute super."fsharp"; + "fsmActions" = dontDistribute super."fsmActions"; + "fst" = dontDistribute super."fst"; + "fsutils" = dontDistribute super."fsutils"; + "fswatcher" = dontDistribute super."fswatcher"; + "ftdi" = dontDistribute super."ftdi"; + "ftp-conduit" = dontDistribute super."ftp-conduit"; + "ftphs" = dontDistribute super."ftphs"; + "ftree" = dontDistribute super."ftree"; + "ftshell" = dontDistribute super."ftshell"; + "fugue" = dontDistribute super."fugue"; + "full-sessions" = dontDistribute super."full-sessions"; + "full-text-search" = dontDistribute super."full-text-search"; + "fullstop" = dontDistribute super."fullstop"; + "funbot" = dontDistribute super."funbot"; + "funbot-client" = dontDistribute super."funbot-client"; + "funbot-ext-events" = dontDistribute super."funbot-ext-events"; + "funbot-git-hook" = dontDistribute super."funbot-git-hook"; + "funcons-tools" = dontDistribute super."funcons-tools"; + "function-combine" = dontDistribute super."function-combine"; + "function-instances-algebra" = dontDistribute super."function-instances-algebra"; + "functional-arrow" = dontDistribute super."functional-arrow"; + "functional-kmp" = dontDistribute super."functional-kmp"; + "functor-apply" = dontDistribute super."functor-apply"; + "functor-combo" = dontDistribute super."functor-combo"; + "functor-infix" = dontDistribute super."functor-infix"; + "functor-monadic" = dontDistribute super."functor-monadic"; + "functor-utils" = dontDistribute super."functor-utils"; + "functorm" = dontDistribute super."functorm"; + "functors" = dontDistribute super."functors"; + "funion" = dontDistribute super."funion"; + "funpat" = dontDistribute super."funpat"; + "funsat" = dontDistribute super."funsat"; + "fusion" = dontDistribute super."fusion"; + "futun" = dontDistribute super."futun"; + "future" = dontDistribute super."future"; + "future-resource" = dontDistribute super."future-resource"; + "fuzzy" = dontDistribute super."fuzzy"; + "fuzzy-timings" = dontDistribute super."fuzzy-timings"; + "fuzzytime" = dontDistribute super."fuzzytime"; + "fwgl" = dontDistribute super."fwgl"; + "fwgl-glfw" = dontDistribute super."fwgl-glfw"; + "fwgl-javascript" = dontDistribute super."fwgl-javascript"; + "g-npm" = dontDistribute super."g-npm"; + "gact" = dontDistribute super."gact"; + "game-of-life" = dontDistribute super."game-of-life"; + "game-probability" = dontDistribute super."game-probability"; + "game-tree" = dontDistribute super."game-tree"; + "gameclock" = dontDistribute super."gameclock"; + "gamma" = dontDistribute super."gamma"; + "gang-of-threads" = dontDistribute super."gang-of-threads"; + "garepinoh" = dontDistribute super."garepinoh"; + "garsia-wachs" = dontDistribute super."garsia-wachs"; + "gbu" = dontDistribute super."gbu"; + "gc" = dontDistribute super."gc"; + "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai"; + "gconf" = dontDistribute super."gconf"; + "gdiff" = dontDistribute super."gdiff"; + "gdiff-ig" = dontDistribute super."gdiff-ig"; + "gdiff-th" = dontDistribute super."gdiff-th"; + "gdo" = dontDistribute super."gdo"; + "gearbox" = dontDistribute super."gearbox"; + "geek" = dontDistribute super."geek"; + "geek-server" = dontDistribute super."geek-server"; + "gelatin" = dontDistribute super."gelatin"; + "gemstone" = dontDistribute super."gemstone"; + "gencheck" = dontDistribute super."gencheck"; + "gender" = dontDistribute super."gender"; + "genders" = dontDistribute super."genders"; + "general-prelude" = dontDistribute super."general-prelude"; + "generator" = dontDistribute super."generator"; + "generators" = dontDistribute super."generators"; + "generic-accessors" = dontDistribute super."generic-accessors"; + "generic-binary" = dontDistribute super."generic-binary"; + "generic-church" = dontDistribute super."generic-church"; + "generic-deepseq" = dontDistribute super."generic-deepseq"; + "generic-deriving" = doDistribute super."generic-deriving_1_9_0"; + "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "generic-server" = dontDistribute super."generic-server"; + "generic-storable" = dontDistribute super."generic-storable"; + "generic-tree" = dontDistribute super."generic-tree"; + "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; + "genericserialize" = dontDistribute super."genericserialize"; + "genetics" = dontDistribute super."genetics"; + "geni-gui" = dontDistribute super."geni-gui"; + "geni-util" = dontDistribute super."geni-util"; + "geniconvert" = dontDistribute super."geniconvert"; + "genifunctors" = dontDistribute super."genifunctors"; + "geniplate" = dontDistribute super."geniplate"; + "geniserver" = dontDistribute super."geniserver"; + "genprog" = dontDistribute super."genprog"; + "gentlemark" = dontDistribute super."gentlemark"; + "geo-resolver" = dontDistribute super."geo-resolver"; + "geo-uk" = dontDistribute super."geo-uk"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geom2d" = dontDistribute super."geom2d"; + "getemx" = dontDistribute super."getemx"; + "getflag" = dontDistribute super."getflag"; + "getopt-simple" = dontDistribute super."getopt-simple"; + "gf" = dontDistribute super."gf"; + "ggtsTC" = dontDistribute super."ggtsTC"; + "ghc-core" = dontDistribute super."ghc-core"; + "ghc-core-html" = dontDistribute super."ghc-core-html"; + "ghc-datasize" = dontDistribute super."ghc-datasize"; + "ghc-dump-tree" = dontDistribute super."ghc-dump-tree"; + "ghc-dup" = dontDistribute super."ghc-dup"; + "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; + "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; + "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-imported-from" = dontDistribute super."ghc-imported-from"; + "ghc-make" = dontDistribute super."ghc-make"; + "ghc-man-completion" = dontDistribute super."ghc-man-completion"; + "ghc-options" = dontDistribute super."ghc-options"; + "ghc-parmake" = dontDistribute super."ghc-parmake"; + "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; + "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; + "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; + "ghc-server" = dontDistribute super."ghc-server"; + "ghc-simple" = dontDistribute super."ghc-simple"; + "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; + "ghc-syb" = dontDistribute super."ghc-syb"; + "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-vis" = dontDistribute super."ghc-vis"; + "ghci-diagrams" = dontDistribute super."ghci-diagrams"; + "ghci-haskeline" = dontDistribute super."ghci-haskeline"; + "ghci-lib" = dontDistribute super."ghci-lib"; + "ghci-ng" = dontDistribute super."ghci-ng"; + "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; + "ghcjs-dom" = dontDistribute super."ghcjs-dom"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gi-atk" = dontDistribute super."gi-atk"; + "gi-cairo" = dontDistribute super."gi-cairo"; + "gi-gdk" = dontDistribute super."gi-gdk"; + "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf"; + "gi-gio" = dontDistribute super."gi-gio"; + "gi-girepository" = dontDistribute super."gi-girepository"; + "gi-glib" = dontDistribute super."gi-glib"; + "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gtk" = dontDistribute super."gi-gtk"; + "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; + "gi-notify" = dontDistribute super."gi-notify"; + "gi-pango" = dontDistribute super."gi-pango"; + "gi-poppler" = dontDistribute super."gi-poppler"; + "gi-soup" = dontDistribute super."gi-soup"; + "gi-vte" = dontDistribute super."gi-vte"; + "gi-webkit" = dontDistribute super."gi-webkit"; + "gi-webkit2" = dontDistribute super."gi-webkit2"; + "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "gimlh" = dontDistribute super."gimlh"; + "ginger" = dontDistribute super."ginger"; + "ginsu" = dontDistribute super."ginsu"; + "giphy-api" = dontDistribute super."giphy-api"; + "gist" = dontDistribute super."gist"; + "git-all" = dontDistribute super."git-all"; + "git-annex" = doDistribute super."git-annex_6_20160114"; + "git-checklist" = dontDistribute super."git-checklist"; + "git-date" = dontDistribute super."git-date"; + "git-embed" = dontDistribute super."git-embed"; + "git-freq" = dontDistribute super."git-freq"; + "git-gpush" = dontDistribute super."git-gpush"; + "git-jump" = dontDistribute super."git-jump"; + "git-monitor" = dontDistribute super."git-monitor"; + "git-object" = dontDistribute super."git-object"; + "git-repair" = dontDistribute super."git-repair"; + "git-sanity" = dontDistribute super."git-sanity"; + "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; + "gitcache" = dontDistribute super."gitcache"; + "gitdo" = dontDistribute super."gitdo"; + "github-backup" = dontDistribute super."github-backup"; + "github-post-receive" = dontDistribute super."github-post-receive"; + "github-utils" = dontDistribute super."github-utils"; + "gitignore" = dontDistribute super."gitignore"; + "gitit" = dontDistribute super."gitit"; + "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; + "gitlib-cross" = dontDistribute super."gitlib-cross"; + "gitlib-s3" = dontDistribute super."gitlib-s3"; + "gitlib-sample" = dontDistribute super."gitlib-sample"; + "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; + "gl-capture" = dontDistribute super."gl-capture"; + "glade" = dontDistribute super."glade"; + "gladexml-accessor" = dontDistribute super."gladexml-accessor"; + "glambda" = dontDistribute super."glambda"; + "glapp" = dontDistribute super."glapp"; + "glasso" = dontDistribute super."glasso"; + "glicko" = dontDistribute super."glicko"; + "glider-nlp" = dontDistribute super."glider-nlp"; + "glintcollider" = dontDistribute super."glintcollider"; + "gll" = dontDistribute super."gll"; + "global" = dontDistribute super."global"; + "global-config" = dontDistribute super."global-config"; + "global-lock" = dontDistribute super."global-lock"; + "global-variables" = dontDistribute super."global-variables"; + "glome-hs" = dontDistribute super."glome-hs"; + "gloss" = dontDistribute super."gloss"; + "gloss-accelerate" = dontDistribute super."gloss-accelerate"; + "gloss-algorithms" = dontDistribute super."gloss-algorithms"; + "gloss-banana" = dontDistribute super."gloss-banana"; + "gloss-devil" = dontDistribute super."gloss-devil"; + "gloss-examples" = dontDistribute super."gloss-examples"; + "gloss-game" = dontDistribute super."gloss-game"; + "gloss-juicy" = dontDistribute super."gloss-juicy"; + "gloss-raster" = dontDistribute super."gloss-raster"; + "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate"; + "gloss-rendering" = dontDistribute super."gloss-rendering"; + "gloss-sodium" = dontDistribute super."gloss-sodium"; + "glpk-hs" = dontDistribute super."glpk-hs"; + "glue" = dontDistribute super."glue"; + "glue-common" = dontDistribute super."glue-common"; + "glue-core" = dontDistribute super."glue-core"; + "glue-ekg" = dontDistribute super."glue-ekg"; + "glue-example" = dontDistribute super."glue-example"; + "gluturtle" = dontDistribute super."gluturtle"; + "gmap" = dontDistribute super."gmap"; + "gmndl" = dontDistribute super."gmndl"; + "gnome-desktop" = dontDistribute super."gnome-desktop"; + "gnome-keyring" = dontDistribute super."gnome-keyring"; + "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gogol" = dontDistribute super."gogol"; + "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer"; + "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller"; + "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer"; + "gogol-admin-directory" = dontDistribute super."gogol-admin-directory"; + "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration"; + "gogol-admin-reports" = dontDistribute super."gogol-admin-reports"; + "gogol-adsense" = dontDistribute super."gogol-adsense"; + "gogol-adsense-host" = dontDistribute super."gogol-adsense-host"; + "gogol-affiliates" = dontDistribute super."gogol-affiliates"; + "gogol-analytics" = dontDistribute super."gogol-analytics"; + "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise"; + "gogol-android-publisher" = dontDistribute super."gogol-android-publisher"; + "gogol-appengine" = dontDistribute super."gogol-appengine"; + "gogol-apps-activity" = dontDistribute super."gogol-apps-activity"; + "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar"; + "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing"; + "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller"; + "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks"; + "gogol-appstate" = dontDistribute super."gogol-appstate"; + "gogol-autoscaler" = dontDistribute super."gogol-autoscaler"; + "gogol-bigquery" = dontDistribute super."gogol-bigquery"; + "gogol-billing" = dontDistribute super."gogol-billing"; + "gogol-blogger" = dontDistribute super."gogol-blogger"; + "gogol-books" = dontDistribute super."gogol-books"; + "gogol-civicinfo" = dontDistribute super."gogol-civicinfo"; + "gogol-classroom" = dontDistribute super."gogol-classroom"; + "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-dictionary" = dontDistribute super."google-dictionary"; + "google-drive" = dontDistribute super."google-drive"; + "google-html5-slide" = dontDistribute super."google-html5-slide"; + "google-mail-filters" = dontDistribute super."google-mail-filters"; + "google-oauth2" = dontDistribute super."google-oauth2"; + "google-search" = dontDistribute super."google-search"; + "googleplus" = dontDistribute super."googleplus"; + "googlepolyline" = dontDistribute super."googlepolyline"; + "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; + "gpah" = dontDistribute super."gpah"; + "gpcsets" = dontDistribute super."gpcsets"; + "gpolyline" = dontDistribute super."gpolyline"; + "gps" = dontDistribute super."gps"; + "gps2htmlReport" = dontDistribute super."gps2htmlReport"; + "gpx-conduit" = dontDistribute super."gpx-conduit"; + "graceful" = dontDistribute super."graceful"; + "grammar-combinators" = dontDistribute super."grammar-combinators"; + "grapefruit-examples" = dontDistribute super."grapefruit-examples"; + "grapefruit-frp" = dontDistribute super."grapefruit-frp"; + "grapefruit-records" = dontDistribute super."grapefruit-records"; + "grapefruit-ui" = dontDistribute super."grapefruit-ui"; + "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk"; + "graph-core" = doDistribute super."graph-core_0_2_2_0"; + "graph-generators" = dontDistribute super."graph-generators"; + "graph-matchings" = dontDistribute super."graph-matchings"; + "graph-rewriting" = dontDistribute super."graph-rewriting"; + "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl"; + "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl"; + "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope"; + "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout"; + "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski"; + "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies"; + "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs"; + "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww"; + "graph-serialize" = dontDistribute super."graph-serialize"; + "graph-utils" = dontDistribute super."graph-utils"; + "graph-visit" = dontDistribute super."graph-visit"; + "graphbuilder" = dontDistribute super."graphbuilder"; + "graphene" = dontDistribute super."graphene"; + "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators"; + "graphics-formats-collada" = dontDistribute super."graphics-formats-collada"; + "graphicsFormats" = dontDistribute super."graphicsFormats"; + "graphicstools" = dontDistribute super."graphicstools"; + "graphmod" = dontDistribute super."graphmod"; + "graphql" = dontDistribute super."graphql"; + "graphtype" = dontDistribute super."graphtype"; + "grasp" = dontDistribute super."grasp"; + "gray-code" = dontDistribute super."gray-code"; + "gray-extended" = dontDistribute super."gray-extended"; + "graylog" = dontDistribute super."graylog"; + "greencard" = dontDistribute super."greencard"; + "greencard-lib" = dontDistribute super."greencard-lib"; + "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; + "greplicate" = dontDistribute super."greplicate"; + "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; + "gridland" = dontDistribute super."gridland"; + "grm" = dontDistribute super."grm"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; + "groundhog-inspector" = dontDistribute super."groundhog-inspector"; + "group-with" = dontDistribute super."group-with"; + "groupoid" = dontDistribute super."groupoid"; + "gruff" = dontDistribute super."gruff"; + "gruff-examples" = dontDistribute super."gruff-examples"; + "gsc-weighting" = dontDistribute super."gsc-weighting"; + "gsl-random" = dontDistribute super."gsl-random"; + "gsl-random-fu" = dontDistribute super."gsl-random-fu"; + "gsmenu" = dontDistribute super."gsmenu"; + "gstreamer" = dontDistribute super."gstreamer"; + "gt-tools" = dontDistribute super."gt-tools"; + "gtfs" = dontDistribute super."gtfs"; + "gtk-helpers" = dontDistribute super."gtk-helpers"; + "gtk-jsinput" = dontDistribute super."gtk-jsinput"; + "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; + "gtk-mac-integration" = dontDistribute super."gtk-mac-integration"; + "gtk-serialized-event" = dontDistribute super."gtk-serialized-event"; + "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view"; + "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list"; + "gtk-toy" = dontDistribute super."gtk-toy"; + "gtk-traymanager" = dontDistribute super."gtk-traymanager"; + "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade"; + "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib"; + "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs"; + "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk"; + "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext"; + "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2"; + "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; + "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; + "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; + "gtkglext" = dontDistribute super."gtkglext"; + "gtkimageview" = dontDistribute super."gtkimageview"; + "gtkrsync" = dontDistribute super."gtkrsync"; + "gtksourceview2" = dontDistribute super."gtksourceview2"; + "gtksourceview3" = dontDistribute super."gtksourceview3"; + "guarded-rewriting" = dontDistribute super."guarded-rewriting"; + "guess-combinator" = dontDistribute super."guess-combinator"; + "gulcii" = dontDistribute super."gulcii"; + "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis"; + "gyah-bin" = dontDistribute super."gyah-bin"; + "h-booru" = dontDistribute super."h-booru"; + "h-gpgme" = dontDistribute super."h-gpgme"; + "h2048" = dontDistribute super."h2048"; + "hArduino" = dontDistribute super."hArduino"; + "hBDD" = dontDistribute super."hBDD"; + "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD"; + "hBDD-CUDD" = dontDistribute super."hBDD-CUDD"; + "hCsound" = dontDistribute super."hCsound"; + "hDFA" = dontDistribute super."hDFA"; + "hF2" = dontDistribute super."hF2"; + "hGelf" = dontDistribute super."hGelf"; + "hLLVM" = dontDistribute super."hLLVM"; + "hMollom" = dontDistribute super."hMollom"; + "hPDB-examples" = dontDistribute super."hPDB-examples"; + "hPushover" = dontDistribute super."hPushover"; + "hR" = dontDistribute super."hR"; + "hRESP" = dontDistribute super."hRESP"; + "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; + "hSimpleDB" = dontDistribute super."hSimpleDB"; + "hTalos" = dontDistribute super."hTalos"; + "hTensor" = dontDistribute super."hTensor"; + "hVOIDP" = dontDistribute super."hVOIDP"; + "hXmixer" = dontDistribute super."hXmixer"; + "haar" = dontDistribute super."haar"; + "hacanon-light" = dontDistribute super."hacanon-light"; + "hack" = dontDistribute super."hack"; + "hack-contrib" = dontDistribute super."hack-contrib"; + "hack-contrib-press" = dontDistribute super."hack-contrib-press"; + "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack"; + "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi"; + "hack-handler-cgi" = dontDistribute super."hack-handler-cgi"; + "hack-handler-epoll" = dontDistribute super."hack-handler-epoll"; + "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp"; + "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi"; + "hack-handler-happstack" = dontDistribute super."hack-handler-happstack"; + "hack-handler-hyena" = dontDistribute super."hack-handler-hyena"; + "hack-handler-kibro" = dontDistribute super."hack-handler-kibro"; + "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver"; + "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath"; + "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession"; + "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip"; + "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp"; + "hack2" = dontDistribute super."hack2"; + "hack2-contrib" = dontDistribute super."hack2-contrib"; + "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra"; + "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server"; + "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http"; + "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server"; + "hack2-handler-warp" = dontDistribute super."hack2-handler-warp"; + "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; + "hackage-diff" = dontDistribute super."hackage-diff"; + "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-proxy" = dontDistribute super."hackage-proxy"; + "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; + "hackage-security" = dontDistribute super."hackage-security"; + "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; + "hackage-server" = dontDistribute super."hackage-server"; + "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage2hwn" = dontDistribute super."hackage2hwn"; + "hackage2twitter" = dontDistribute super."hackage2twitter"; + "hackager" = dontDistribute super."hackager"; + "hackernews" = dontDistribute super."hackernews"; + "hackertyper" = dontDistribute super."hackertyper"; + "hackport" = dontDistribute super."hackport"; + "hactor" = dontDistribute super."hactor"; + "hactors" = dontDistribute super."hactors"; + "haddock" = dontDistribute super."haddock"; + "haddock-leksah" = dontDistribute super."haddock-leksah"; + "hadoop-formats" = dontDistribute super."hadoop-formats"; + "hadoop-rpc" = dontDistribute super."hadoop-rpc"; + "hadoop-tools" = dontDistribute super."hadoop-tools"; + "haeredes" = dontDistribute super."haeredes"; + "haggis" = dontDistribute super."haggis"; + "haha" = dontDistribute super."haha"; + "hahp" = dontDistribute super."hahp"; + "haiji" = dontDistribute super."haiji"; + "hailgun" = dontDistribute super."hailgun"; + "hailgun-send" = dontDistribute super."hailgun-send"; + "hails" = dontDistribute super."hails"; + "hails-bin" = dontDistribute super."hails-bin"; + "hairy" = dontDistribute super."hairy"; + "hakaru" = dontDistribute super."hakaru"; + "hake" = dontDistribute super."hake"; + "hakismet" = dontDistribute super."hakismet"; + "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; + "hakyll-R" = dontDistribute super."hakyll-R"; + "hakyll-agda" = dontDistribute super."hakyll-agda"; + "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; + "hakyll-contrib" = dontDistribute super."hakyll-contrib"; + "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation"; + "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; + "hakyll-convert" = dontDistribute super."hakyll-convert"; + "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; + "hakyll-sass" = dontDistribute super."hakyll-sass"; + "halberd" = dontDistribute super."halberd"; + "halfs" = dontDistribute super."halfs"; + "halipeto" = dontDistribute super."halipeto"; + "halive" = dontDistribute super."halive"; + "halma" = dontDistribute super."halma"; + "haltavista" = dontDistribute super."haltavista"; + "hamid" = dontDistribute super."hamid"; + "hampp" = dontDistribute super."hampp"; + "hamtmap" = dontDistribute super."hamtmap"; + "hamusic" = dontDistribute super."hamusic"; + "handa-gdata" = dontDistribute super."handa-gdata"; + "handa-geodata" = dontDistribute super."handa-geodata"; + "handa-opengl" = dontDistribute super."handa-opengl"; + "handle-like" = dontDistribute super."handle-like"; + "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; + "hangman" = dontDistribute super."hangman"; + "hannahci" = dontDistribute super."hannahci"; + "hans" = dontDistribute super."hans"; + "hans-pcap" = dontDistribute super."hans-pcap"; + "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; + "happindicator" = dontDistribute super."happindicator"; + "happindicator3" = dontDistribute super."happindicator3"; + "happraise" = dontDistribute super."happraise"; + "happs-hsp" = dontDistribute super."happs-hsp"; + "happs-hsp-template" = dontDistribute super."happs-hsp-template"; + "happs-tutorial" = dontDistribute super."happs-tutorial"; + "happstack" = dontDistribute super."happstack"; + "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = doDistribute super."happstack-authenticate_2_3_4"; + "happstack-contrib" = dontDistribute super."happstack-contrib"; + "happstack-data" = dontDistribute super."happstack-data"; + "happstack-dlg" = dontDistribute super."happstack-dlg"; + "happstack-facebook" = dontDistribute super."happstack-facebook"; + "happstack-fastcgi" = dontDistribute super."happstack-fastcgi"; + "happstack-fay" = dontDistribute super."happstack-fay"; + "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax"; + "happstack-foundation" = dontDistribute super."happstack-foundation"; + "happstack-hamlet" = dontDistribute super."happstack-hamlet"; + "happstack-heist" = dontDistribute super."happstack-heist"; + "happstack-helpers" = dontDistribute super."happstack-helpers"; + "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate"; + "happstack-ixset" = dontDistribute super."happstack-ixset"; + "happstack-lite" = dontDistribute super."happstack-lite"; + "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; + "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; + "happstack-state" = dontDistribute super."happstack-state"; + "happstack-static-routing" = dontDistribute super."happstack-static-routing"; + "happstack-util" = dontDistribute super."happstack-util"; + "happstack-yui" = dontDistribute super."happstack-yui"; + "happy-meta" = dontDistribute super."happy-meta"; + "happybara" = dontDistribute super."happybara"; + "happybara-webkit" = dontDistribute super."happybara-webkit"; + "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "har" = dontDistribute super."har"; + "harchive" = dontDistribute super."harchive"; + "hardware-edsl" = dontDistribute super."hardware-edsl"; + "hark" = dontDistribute super."hark"; + "harmony" = dontDistribute super."harmony"; + "haroonga" = dontDistribute super."haroonga"; + "haroonga-httpd" = dontDistribute super."haroonga-httpd"; + "harpy" = dontDistribute super."harpy"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "hascat" = dontDistribute super."hascat"; + "hascat-lib" = dontDistribute super."hascat-lib"; + "hascat-setup" = dontDistribute super."hascat-setup"; + "hascat-system" = dontDistribute super."hascat-system"; + "hash" = dontDistribute super."hash"; + "hashable-generics" = dontDistribute super."hashable-generics"; + "hashabler" = dontDistribute super."hashabler"; + "hashed-storage" = dontDistribute super."hashed-storage"; + "hashids" = dontDistribute super."hashids"; + "hashring" = dontDistribute super."hashring"; + "hashtables-plus" = dontDistribute super."hashtables-plus"; + "hasim" = dontDistribute super."hasim"; + "hask" = dontDistribute super."hask"; + "hask-home" = dontDistribute super."hask-home"; + "haskades" = dontDistribute super."haskades"; + "haskakafka" = dontDistribute super."haskakafka"; + "haskanoid" = dontDistribute super."haskanoid"; + "haskarrow" = dontDistribute super."haskarrow"; + "haskbot-core" = dontDistribute super."haskbot-core"; + "haskdeep" = dontDistribute super."haskdeep"; + "haskdogs" = dontDistribute super."haskdogs"; + "haskeem" = dontDistribute super."haskeem"; + "haskeline" = doDistribute super."haskeline_0_7_2_2"; + "haskeline-class" = dontDistribute super."haskeline-class"; + "haskell-aliyun" = dontDistribute super."haskell-aliyun"; + "haskell-awk" = dontDistribute super."haskell-awk"; + "haskell-bcrypt" = dontDistribute super."haskell-bcrypt"; + "haskell-brainfuck" = dontDistribute super."haskell-brainfuck"; + "haskell-cnc" = dontDistribute super."haskell-cnc"; + "haskell-coffee" = dontDistribute super."haskell-coffee"; + "haskell-compression" = dontDistribute super."haskell-compression"; + "haskell-course-preludes" = dontDistribute super."haskell-course-preludes"; + "haskell-docs" = dontDistribute super."haskell-docs"; + "haskell-exp-parser" = dontDistribute super."haskell-exp-parser"; + "haskell-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-gi" = dontDistribute super."haskell-gi"; + "haskell-gi-base" = dontDistribute super."haskell-gi-base"; + "haskell-import-graph" = dontDistribute super."haskell-import-graph"; + "haskell-in-space" = dontDistribute super."haskell-in-space"; + "haskell-kubernetes" = dontDistribute super."haskell-kubernetes"; + "haskell-modbus" = dontDistribute super."haskell-modbus"; + "haskell-mpfr" = dontDistribute super."haskell-mpfr"; + "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = dontDistribute super."haskell-names"; + "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; + "haskell-platform-test" = dontDistribute super."haskell-platform-test"; + "haskell-plot" = dontDistribute super."haskell-plot"; + "haskell-qrencode" = dontDistribute super."haskell-qrencode"; + "haskell-read-editor" = dontDistribute super."haskell-read-editor"; + "haskell-reflect" = dontDistribute super."haskell-reflect"; + "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; + "haskell-token-utils" = dontDistribute super."haskell-token-utils"; + "haskell-tor" = dontDistribute super."haskell-tor"; + "haskell-type-exts" = dontDistribute super."haskell-type-exts"; + "haskell-typescript" = dontDistribute super."haskell-typescript"; + "haskell-tyrant" = dontDistribute super."haskell-tyrant"; + "haskell-updater" = dontDistribute super."haskell-updater"; + "haskell-xmpp" = dontDistribute super."haskell-xmpp"; + "haskell2010" = dontDistribute super."haskell2010"; + "haskell98" = dontDistribute super."haskell98"; + "haskell98libraries" = dontDistribute super."haskell98libraries"; + "haskelldb" = dontDistribute super."haskelldb"; + "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc"; + "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl"; + "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf"; + "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers"; + "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted"; + "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic"; + "haskelldb-flat" = dontDistribute super."haskelldb-flat"; + "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc"; + "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql"; + "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc"; + "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql"; + "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3"; + "haskelldb-hsql" = dontDistribute super."haskelldb-hsql"; + "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql"; + "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc"; + "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle"; + "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql"; + "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite"; + "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3"; + "haskelldb-th" = dontDistribute super."haskelldb-th"; + "haskelldb-wx" = dontDistribute super."haskelldb-wx"; + "haskellscrabble" = dontDistribute super."haskellscrabble"; + "haskellscript" = dontDistribute super."haskellscript"; + "haskelm" = dontDistribute super."haskelm"; + "haskgame" = dontDistribute super."haskgame"; + "haskheap" = dontDistribute super."haskheap"; + "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_6_0_0"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-core" = dontDistribute super."haskoin-core"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-node" = dontDistribute super."haskoin-node"; + "haskoin-protocol" = dontDistribute super."haskoin-protocol"; + "haskoin-script" = dontDistribute super."haskoin-script"; + "haskoin-util" = dontDistribute super."haskoin-util"; + "haskoin-wallet" = dontDistribute super."haskoin-wallet"; + "haskoon" = dontDistribute super."haskoon"; + "haskoon-httpspec" = dontDistribute super."haskoon-httpspec"; + "haskoon-salvia" = dontDistribute super."haskoon-salvia"; + "haskore" = dontDistribute super."haskore"; + "haskore-realtime" = dontDistribute super."haskore-realtime"; + "haskore-supercollider" = dontDistribute super."haskore-supercollider"; + "haskore-synthesizer" = dontDistribute super."haskore-synthesizer"; + "haskore-vintage" = dontDistribute super."haskore-vintage"; + "hasktags" = dontDistribute super."hasktags"; + "haslo" = dontDistribute super."haslo"; + "hasloGUI" = dontDistribute super."hasloGUI"; + "hasparql-client" = dontDistribute super."hasparql-client"; + "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_19_6"; + "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative"; + "hasql-pool" = dontDistribute super."hasql-pool"; + "hasql-postgres" = dontDistribute super."hasql-postgres"; + "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; + "hasql-th" = dontDistribute super."hasql-th"; + "hasql-transaction" = dontDistribute super."hasql-transaction"; + "hastache-aeson" = dontDistribute super."hastache-aeson"; + "haste" = dontDistribute super."haste"; + "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-markup" = dontDistribute super."haste-markup"; + "haste-perch" = dontDistribute super."haste-perch"; + "hastily" = dontDistribute super."hastily"; + "hat" = dontDistribute super."hat"; + "hatex-guide" = dontDistribute super."hatex-guide"; + "hath" = dontDistribute super."hath"; + "hatt" = dontDistribute super."hatt"; + "haverer" = dontDistribute super."haverer"; + "hawitter" = dontDistribute super."hawitter"; + "haxl-amazonka" = dontDistribute super."haxl-amazonka"; + "haxl-facebook" = dontDistribute super."haxl-facebook"; + "haxparse" = dontDistribute super."haxparse"; + "haxr" = doDistribute super."haxr_3000_11_1_3"; + "haxr-th" = dontDistribute super."haxr-th"; + "haxy" = dontDistribute super."haxy"; + "hayland" = dontDistribute super."hayland"; + "hayoo-cli" = dontDistribute super."hayoo-cli"; + "hback" = dontDistribute super."hback"; + "hbayes" = dontDistribute super."hbayes"; + "hbb" = dontDistribute super."hbb"; + "hbcd" = dontDistribute super."hbcd"; + "hbeat" = dontDistribute super."hbeat"; + "hblas" = dontDistribute super."hblas"; + "hblock" = dontDistribute super."hblock"; + "hbro" = dontDistribute super."hbro"; + "hbro-contrib" = dontDistribute super."hbro-contrib"; + "hburg" = dontDistribute super."hburg"; + "hcc" = dontDistribute super."hcc"; + "hcg-minus" = dontDistribute super."hcg-minus"; + "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo"; + "hcheat" = dontDistribute super."hcheat"; + "hchesslib" = dontDistribute super."hchesslib"; + "hcltest" = dontDistribute super."hcltest"; + "hcoap" = dontDistribute super."hcoap"; + "hcron" = dontDistribute super."hcron"; + "hcube" = dontDistribute super."hcube"; + "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; + "hdbc-aeson" = dontDistribute super."hdbc-aeson"; + "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; + "hdbc-tuple" = dontDistribute super."hdbc-tuple"; + "hdbi" = dontDistribute super."hdbi"; + "hdbi-conduit" = dontDistribute super."hdbi-conduit"; + "hdbi-postgresql" = dontDistribute super."hdbi-postgresql"; + "hdbi-sqlite" = dontDistribute super."hdbi-sqlite"; + "hdbi-tests" = dontDistribute super."hdbi-tests"; + "hdf" = dontDistribute super."hdf"; + "hdigest" = dontDistribute super."hdigest"; + "hdirect" = dontDistribute super."hdirect"; + "hdis86" = dontDistribute super."hdis86"; + "hdiscount" = dontDistribute super."hdiscount"; + "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; + "hdph" = dontDistribute super."hdph"; + "hdph-closure" = dontDistribute super."hdph-closure"; + "hdr-histogram" = dontDistribute super."hdr-histogram"; + "headergen" = dontDistribute super."headergen"; + "heapsort" = dontDistribute super."heapsort"; + "hecc" = dontDistribute super."hecc"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-pile" = dontDistribute super."hedis-pile"; + "hedis-simple" = dontDistribute super."hedis-simple"; + "hedis-tags" = dontDistribute super."hedis-tags"; + "hedn" = dontDistribute super."hedn"; + "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; + "heist-aeson" = dontDistribute super."heist-aeson"; + "heist-async" = dontDistribute super."heist-async"; + "helics" = dontDistribute super."helics"; + "helics-wai" = dontDistribute super."helics-wai"; + "helisp" = dontDistribute super."helisp"; + "helium" = dontDistribute super."helium"; + "helix" = dontDistribute super."helix"; + "hell" = dontDistribute super."hell"; + "hellage" = dontDistribute super."hellage"; + "hellnet" = dontDistribute super."hellnet"; + "hello" = dontDistribute super."hello"; + "helm" = dontDistribute super."helm"; + "help-esb" = dontDistribute super."help-esb"; + "hemkay" = dontDistribute super."hemkay"; + "hemkay-core" = dontDistribute super."hemkay-core"; + "hemokit" = dontDistribute super."hemokit"; + "hen" = dontDistribute super."hen"; + "henet" = dontDistribute super."henet"; + "hepevt" = dontDistribute super."hepevt"; + "her-lexer" = dontDistribute super."her-lexer"; + "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; + "herbalizer" = dontDistribute super."herbalizer"; + "herf-time" = dontDistribute super."herf-time"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets"; + "heroku" = dontDistribute super."heroku"; + "heroku-persistent" = dontDistribute super."heroku-persistent"; + "herringbone" = dontDistribute super."herringbone"; + "herringbone-embed" = dontDistribute super."herringbone-embed"; + "herringbone-wai" = dontDistribute super."herringbone-wai"; + "hesh" = dontDistribute super."hesh"; + "hesql" = dontDistribute super."hesql"; + "hetero-map" = dontDistribute super."hetero-map"; + "hetris" = dontDistribute super."hetris"; + "heukarya" = dontDistribute super."heukarya"; + "hevolisa" = dontDistribute super."hevolisa"; + "hevolisa-dph" = dontDistribute super."hevolisa-dph"; + "hexdump" = dontDistribute super."hexdump"; + "hexif" = dontDistribute super."hexif"; + "hexpat-iteratee" = dontDistribute super."hexpat-iteratee"; + "hexpat-lens" = dontDistribute super."hexpat-lens"; + "hexpat-pickle" = dontDistribute super."hexpat-pickle"; + "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic"; + "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup"; + "hexpr" = dontDistribute super."hexpr"; + "hexquote" = dontDistribute super."hexquote"; + "heyefi" = dontDistribute super."heyefi"; + "hfann" = dontDistribute super."hfann"; + "hfd" = dontDistribute super."hfd"; + "hfiar" = dontDistribute super."hfiar"; + "hfmt" = dontDistribute super."hfmt"; + "hfoil" = dontDistribute super."hfoil"; + "hformat" = dontDistribute super."hformat"; + "hfov" = dontDistribute super."hfov"; + "hfractal" = dontDistribute super."hfractal"; + "hfusion" = dontDistribute super."hfusion"; + "hg-buildpackage" = dontDistribute super."hg-buildpackage"; + "hgal" = dontDistribute super."hgal"; + "hgalib" = dontDistribute super."hgalib"; + "hgdbmi" = dontDistribute super."hgdbmi"; + "hgearman" = dontDistribute super."hgearman"; + "hgen" = dontDistribute super."hgen"; + "hgeometric" = dontDistribute super."hgeometric"; + "hgeometry" = dontDistribute super."hgeometry"; + "hgithub" = dontDistribute super."hgithub"; + "hgl-example" = dontDistribute super."hgl-example"; + "hgom" = dontDistribute super."hgom"; + "hgopher" = dontDistribute super."hgopher"; + "hgrev" = dontDistribute super."hgrev"; + "hgrib" = dontDistribute super."hgrib"; + "hharp" = dontDistribute super."hharp"; + "hi" = dontDistribute super."hi"; + "hi3status" = dontDistribute super."hi3status"; + "hiccup" = dontDistribute super."hiccup"; + "hichi" = dontDistribute super."hichi"; + "hieraclus" = dontDistribute super."hieraclus"; + "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; + "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions"; + "hierarchy" = dontDistribute super."hierarchy"; + "hiernotify" = dontDistribute super."hiernotify"; + "highWaterMark" = dontDistribute super."highWaterMark"; + "higher-leveldb" = dontDistribute super."higher-leveldb"; + "higherorder" = dontDistribute super."higherorder"; + "highlight-versions" = dontDistribute super."highlight-versions"; + "highlighter" = dontDistribute super."highlighter"; + "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; + "hills" = dontDistribute super."hills"; + "himerge" = dontDistribute super."himerge"; + "himg" = dontDistribute super."himg"; + "himpy" = dontDistribute super."himpy"; + "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; + "hinduce-classifier" = dontDistribute super."hinduce-classifier"; + "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; + "hinduce-examples" = dontDistribute super."hinduce-examples"; + "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinquire" = dontDistribute super."hinquire"; + "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_3"; + "hint-server" = dontDistribute super."hint-server"; + "hinvaders" = dontDistribute super."hinvaders"; + "hinze-streams" = dontDistribute super."hinze-streams"; + "hip" = dontDistribute super."hip"; + "hipbot" = dontDistribute super."hipbot"; + "hipchat-hs" = dontDistribute super."hipchat-hs"; + "hipe" = dontDistribute super."hipe"; + "hips" = dontDistribute super."hips"; + "hircules" = dontDistribute super."hircules"; + "hirt" = dontDistribute super."hirt"; + "hissmetrics" = dontDistribute super."hissmetrics"; + "hist-pl" = dontDistribute super."hist-pl"; + "hist-pl-dawg" = dontDistribute super."hist-pl-dawg"; + "hist-pl-fusion" = dontDistribute super."hist-pl-fusion"; + "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon"; + "hist-pl-lmf" = dontDistribute super."hist-pl-lmf"; + "hist-pl-transliter" = dontDistribute super."hist-pl-transliter"; + "hist-pl-types" = dontDistribute super."hist-pl-types"; + "histogram-fill-binary" = dontDistribute super."histogram-fill-binary"; + "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal"; + "historian" = dontDistribute super."historian"; + "hjcase" = dontDistribute super."hjcase"; + "hjpath" = dontDistribute super."hjpath"; + "hjs" = dontDistribute super."hjs"; + "hjson" = dontDistribute super."hjson"; + "hjson-query" = dontDistribute super."hjson-query"; + "hjsonpointer" = dontDistribute super."hjsonpointer"; + "hjsonschema" = dontDistribute super."hjsonschema"; + "hkdf" = dontDistribute super."hkdf"; + "hlatex" = dontDistribute super."hlatex"; + "hlbfgsb" = dontDistribute super."hlbfgsb"; + "hlcm" = dontDistribute super."hlcm"; + "hleap" = dontDistribute super."hleap"; + "hledger-chart" = dontDistribute super."hledger-chart"; + "hledger-diff" = dontDistribute super."hledger-diff"; + "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlogger" = dontDistribute super."hlogger"; + "hlongurl" = dontDistribute super."hlongurl"; + "hls" = dontDistribute super."hls"; + "hlwm" = dontDistribute super."hlwm"; + "hly" = dontDistribute super."hly"; + "hmark" = dontDistribute super."hmark"; + "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-repa" = dontDistribute super."hmatrix-repa"; + "hmatrix-special" = dontDistribute super."hmatrix-special"; + "hmatrix-static" = dontDistribute super."hmatrix-static"; + "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc"; + "hmatrix-syntax" = dontDistribute super."hmatrix-syntax"; + "hmatrix-tests" = dontDistribute super."hmatrix-tests"; + "hmeap" = dontDistribute super."hmeap"; + "hmeap-utils" = dontDistribute super."hmeap-utils"; + "hmemdb" = dontDistribute super."hmemdb"; + "hmenu" = dontDistribute super."hmenu"; + "hmidi" = dontDistribute super."hmidi"; + "hmk" = dontDistribute super."hmk"; + "hmm" = dontDistribute super."hmm"; + "hmm-hmatrix" = dontDistribute super."hmm-hmatrix"; + "hmp3" = dontDistribute super."hmp3"; + "hmpfr" = dontDistribute super."hmpfr"; + "hmt" = dontDistribute super."hmt"; + "hmt-diagrams" = dontDistribute super."hmt-diagrams"; + "hmumps" = dontDistribute super."hmumps"; + "hnetcdf" = dontDistribute super."hnetcdf"; + "hnix" = dontDistribute super."hnix"; + "hnn" = dontDistribute super."hnn"; + "hnop" = dontDistribute super."hnop"; + "ho-rewriting" = dontDistribute super."ho-rewriting"; + "hoauth" = dontDistribute super."hoauth"; + "hob" = dontDistribute super."hob"; + "hobbes" = dontDistribute super."hobbes"; + "hobbits" = dontDistribute super."hobbits"; + "hoe" = dontDistribute super."hoe"; + "hofix-mtl" = dontDistribute super."hofix-mtl"; + "hog" = dontDistribute super."hog"; + "hogg" = dontDistribute super."hogg"; + "hogre" = dontDistribute super."hogre"; + "hogre-examples" = dontDistribute super."hogre-examples"; + "hois" = dontDistribute super."hois"; + "hoist-error" = dontDistribute super."hoist-error"; + "hold-em" = dontDistribute super."hold-em"; + "hole" = dontDistribute super."hole"; + "holey-format" = dontDistribute super."holey-format"; + "homeomorphic" = dontDistribute super."homeomorphic"; + "hommage" = dontDistribute super."hommage"; + "hommage-ds" = dontDistribute super."hommage-ds"; + "homplexity" = dontDistribute super."homplexity"; + "honi" = dontDistribute super."honi"; + "honk" = dontDistribute super."honk"; + "hoobuddy" = dontDistribute super."hoobuddy"; + "hood" = dontDistribute super."hood"; + "hood-off" = dontDistribute super."hood-off"; + "hood2" = dontDistribute super."hood2"; + "hoodie" = dontDistribute super."hoodie"; + "hoodle" = dontDistribute super."hoodle"; + "hoodle-builder" = dontDistribute super."hoodle-builder"; + "hoodle-core" = dontDistribute super."hoodle-core"; + "hoodle-extra" = dontDistribute super."hoodle-extra"; + "hoodle-parser" = dontDistribute super."hoodle-parser"; + "hoodle-publish" = dontDistribute super."hoodle-publish"; + "hoodle-render" = dontDistribute super."hoodle-render"; + "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle-index" = dontDistribute super."hoogle-index"; + "hooks-dir" = dontDistribute super."hooks-dir"; + "hoovie" = dontDistribute super."hoovie"; + "hopencc" = dontDistribute super."hopencc"; + "hopencl" = dontDistribute super."hopencl"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "hoppy-generator" = dontDistribute super."hoppy-generator"; + "hoppy-runtime" = dontDistribute super."hoppy-runtime"; + "hoppy-std" = dontDistribute super."hoppy-std"; + "hops" = dontDistribute super."hops"; + "hoq" = dontDistribute super."hoq"; + "horizon" = dontDistribute super."horizon"; + "hosc" = dontDistribute super."hosc"; + "hosc-json" = dontDistribute super."hosc-json"; + "hosc-utils" = dontDistribute super."hosc-utils"; + "hosts-server" = dontDistribute super."hosts-server"; + "hothasktags" = dontDistribute super."hothasktags"; + "hotswap" = dontDistribute super."hotswap"; + "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "hp2any-core" = dontDistribute super."hp2any-core"; + "hp2any-graph" = dontDistribute super."hp2any-graph"; + "hp2any-manager" = dontDistribute super."hp2any-manager"; + "hp2html" = dontDistribute super."hp2html"; + "hp2pretty" = dontDistribute super."hp2pretty"; + "hpack" = dontDistribute super."hpack"; + "hpaco" = dontDistribute super."hpaco"; + "hpaco-lib" = dontDistribute super."hpaco-lib"; + "hpage" = dontDistribute super."hpage"; + "hpapi" = dontDistribute super."hpapi"; + "hpaste" = dontDistribute super."hpaste"; + "hpasteit" = dontDistribute super."hpasteit"; + "hpc-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; + "hplayground" = dontDistribute super."hplayground"; + "hplaylist" = dontDistribute super."hplaylist"; + "hpodder" = dontDistribute super."hpodder"; + "hpp" = dontDistribute super."hpp"; + "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; + "hprotoc-fork" = dontDistribute super."hprotoc-fork"; + "hps" = dontDistribute super."hps"; + "hps-cairo" = dontDistribute super."hps-cairo"; + "hps-kmeans" = dontDistribute super."hps-kmeans"; + "hpuz" = dontDistribute super."hpuz"; + "hpygments" = dontDistribute super."hpygments"; + "hpylos" = dontDistribute super."hpylos"; + "hpyrg" = dontDistribute super."hpyrg"; + "hquantlib" = dontDistribute super."hquantlib"; + "hquery" = dontDistribute super."hquery"; + "hranker" = dontDistribute super."hranker"; + "hreader" = dontDistribute super."hreader"; + "hricket" = dontDistribute super."hricket"; + "hruby" = dontDistribute super."hruby"; + "hs-GeoIP" = dontDistribute super."hs-GeoIP"; + "hs-blake2" = dontDistribute super."hs-blake2"; + "hs-captcha" = dontDistribute super."hs-captcha"; + "hs-carbon" = dontDistribute super."hs-carbon"; + "hs-carbon-examples" = dontDistribute super."hs-carbon-examples"; + "hs-cdb" = dontDistribute super."hs-cdb"; + "hs-dotnet" = dontDistribute super."hs-dotnet"; + "hs-duktape" = dontDistribute super."hs-duktape"; + "hs-excelx" = dontDistribute super."hs-excelx"; + "hs-ffmpeg" = dontDistribute super."hs-ffmpeg"; + "hs-fltk" = dontDistribute super."hs-fltk"; + "hs-gchart" = dontDistribute super."hs-gchart"; + "hs-gen-iface" = dontDistribute super."hs-gen-iface"; + "hs-gizapp" = dontDistribute super."hs-gizapp"; + "hs-inspector" = dontDistribute super."hs-inspector"; + "hs-java" = dontDistribute super."hs-java"; + "hs-json-rpc" = dontDistribute super."hs-json-rpc"; + "hs-logo" = dontDistribute super."hs-logo"; + "hs-mesos" = dontDistribute super."hs-mesos"; + "hs-nombre-generator" = dontDistribute super."hs-nombre-generator"; + "hs-pgms" = dontDistribute super."hs-pgms"; + "hs-php-session" = dontDistribute super."hs-php-session"; + "hs-pkg-config" = dontDistribute super."hs-pkg-config"; + "hs-pkpass" = dontDistribute super."hs-pkpass"; + "hs-re" = dontDistribute super."hs-re"; + "hs-scrape" = dontDistribute super."hs-scrape"; + "hs-twitter" = dontDistribute super."hs-twitter"; + "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver"; + "hs-vcard" = dontDistribute super."hs-vcard"; + "hs2048" = dontDistribute super."hs2048"; + "hs2bf" = dontDistribute super."hs2bf"; + "hs2dot" = dontDistribute super."hs2dot"; + "hsConfigure" = dontDistribute super."hsConfigure"; + "hsSqlite3" = dontDistribute super."hsSqlite3"; + "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsay" = dontDistribute super."hsay"; + "hsb2hs" = dontDistribute super."hsb2hs"; + "hsbackup" = dontDistribute super."hsbackup"; + "hsbencher" = dontDistribute super."hsbencher"; + "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed"; + "hsbencher-fusion" = dontDistribute super."hsbencher-fusion"; + "hsc2hs" = dontDistribute super."hsc2hs"; + "hsc3" = dontDistribute super."hsc3"; + "hsc3-auditor" = dontDistribute super."hsc3-auditor"; + "hsc3-cairo" = dontDistribute super."hsc3-cairo"; + "hsc3-data" = dontDistribute super."hsc3-data"; + "hsc3-db" = dontDistribute super."hsc3-db"; + "hsc3-dot" = dontDistribute super."hsc3-dot"; + "hsc3-forth" = dontDistribute super."hsc3-forth"; + "hsc3-graphs" = dontDistribute super."hsc3-graphs"; + "hsc3-lang" = dontDistribute super."hsc3-lang"; + "hsc3-lisp" = dontDistribute super."hsc3-lisp"; + "hsc3-plot" = dontDistribute super."hsc3-plot"; + "hsc3-process" = dontDistribute super."hsc3-process"; + "hsc3-rec" = dontDistribute super."hsc3-rec"; + "hsc3-rw" = dontDistribute super."hsc3-rw"; + "hsc3-server" = dontDistribute super."hsc3-server"; + "hsc3-sf" = dontDistribute super."hsc3-sf"; + "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile"; + "hsc3-unsafe" = dontDistribute super."hsc3-unsafe"; + "hsc3-utils" = dontDistribute super."hsc3-utils"; + "hscamwire" = dontDistribute super."hscamwire"; + "hscassandra" = dontDistribute super."hscassandra"; + "hscd" = dontDistribute super."hscd"; + "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; + "hscope" = dontDistribute super."hscope"; + "hscrtmpl" = dontDistribute super."hscrtmpl"; + "hscuid" = dontDistribute super."hscuid"; + "hscurses" = dontDistribute super."hscurses"; + "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex"; + "hsdev" = dontDistribute super."hsdev"; + "hsdif" = dontDistribute super."hsdif"; + "hsdip" = dontDistribute super."hsdip"; + "hsdns" = dontDistribute super."hsdns"; + "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsemail-ns" = dontDistribute super."hsemail-ns"; + "hsenv" = dontDistribute super."hsenv"; + "hserv" = dontDistribute super."hserv"; + "hset" = dontDistribute super."hset"; + "hsfacter" = dontDistribute super."hsfacter"; + "hsfcsh" = dontDistribute super."hsfcsh"; + "hsfilt" = dontDistribute super."hsfilt"; + "hsgnutls" = dontDistribute super."hsgnutls"; + "hsgnutls-yj" = dontDistribute super."hsgnutls-yj"; + "hsgsom" = dontDistribute super."hsgsom"; + "hsgtd" = dontDistribute super."hsgtd"; + "hsharc" = dontDistribute super."hsharc"; + "hsilop" = dontDistribute super."hsilop"; + "hsimport" = dontDistribute super."hsimport"; + "hsini" = dontDistribute super."hsini"; + "hskeleton" = dontDistribute super."hskeleton"; + "hslackbuilder" = dontDistribute super."hslackbuilder"; + "hslibsvm" = dontDistribute super."hslibsvm"; + "hslinks" = dontDistribute super."hslinks"; + "hslogger-reader" = dontDistribute super."hslogger-reader"; + "hslogger-template" = dontDistribute super."hslogger-template"; + "hslogger4j" = dontDistribute super."hslogger4j"; + "hslogstash" = dontDistribute super."hslogstash"; + "hsmagick" = dontDistribute super."hsmagick"; + "hsmisc" = dontDistribute super."hsmisc"; + "hsmtpclient" = dontDistribute super."hsmtpclient"; + "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector"; + "hsnock" = dontDistribute super."hsnock"; + "hsnoise" = dontDistribute super."hsnoise"; + "hsns" = dontDistribute super."hsns"; + "hsnsq" = dontDistribute super."hsnsq"; + "hsntp" = dontDistribute super."hsntp"; + "hsoptions" = dontDistribute super."hsoptions"; + "hsp-cgi" = dontDistribute super."hsp-cgi"; + "hsparklines" = dontDistribute super."hsparklines"; + "hsparql" = dontDistribute super."hsparql"; + "hspear" = dontDistribute super."hspear"; + "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; + "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; + "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-experimental" = dontDistribute super."hspec-experimental"; + "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-monad-control" = dontDistribute super."hspec-monad-control"; + "hspec-server" = dontDistribute super."hspec-server"; + "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; + "hspec-test-framework" = dontDistribute super."hspec-test-framework"; + "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; + "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_5"; + "hspec2" = dontDistribute super."hspec2"; + "hspr-sh" = dontDistribute super."hspr-sh"; + "hspread" = dontDistribute super."hspread"; + "hspresent" = dontDistribute super."hspresent"; + "hsprocess" = dontDistribute super."hsprocess"; + "hsql" = dontDistribute super."hsql"; + "hsql-mysql" = dontDistribute super."hsql-mysql"; + "hsql-odbc" = dontDistribute super."hsql-odbc"; + "hsql-postgresql" = dontDistribute super."hsql-postgresql"; + "hsql-sqlite3" = dontDistribute super."hsql-sqlite3"; + "hsqml" = dontDistribute super."hsqml"; + "hsqml-datamodel" = dontDistribute super."hsqml-datamodel"; + "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl"; + "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris"; + "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes"; + "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; + "hsqml-morris" = dontDistribute super."hsqml-morris"; + "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; + "hsshellscript" = dontDistribute super."hsshellscript"; + "hssourceinfo" = dontDistribute super."hssourceinfo"; + "hssqlppp" = dontDistribute super."hssqlppp"; + "hstats" = dontDistribute super."hstats"; + "hstest" = dontDistribute super."hstest"; + "hstidy" = dontDistribute super."hstidy"; + "hstorchat" = dontDistribute super."hstorchat"; + "hstradeking" = dontDistribute super."hstradeking"; + "hstyle" = dontDistribute super."hstyle"; + "hstzaar" = dontDistribute super."hstzaar"; + "hsubconvert" = dontDistribute super."hsubconvert"; + "hsverilog" = dontDistribute super."hsverilog"; + "hswip" = dontDistribute super."hswip"; + "hsx" = dontDistribute super."hsx"; + "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsyscall" = dontDistribute super."hsyscall"; + "hszephyr" = dontDistribute super."hszephyr"; + "htags" = dontDistribute super."htags"; + "htar" = dontDistribute super."htar"; + "htiled" = dontDistribute super."htiled"; + "htime" = dontDistribute super."htime"; + "html-email-validate" = dontDistribute super."html-email-validate"; + "html-entities" = dontDistribute super."html-entities"; + "html-kure" = dontDistribute super."html-kure"; + "html-minimalist" = dontDistribute super."html-minimalist"; + "html-rules" = dontDistribute super."html-rules"; + "html-tokenizer" = dontDistribute super."html-tokenizer"; + "html-truncate" = dontDistribute super."html-truncate"; + "html2hamlet" = dontDistribute super."html2hamlet"; + "html5-entity" = dontDistribute super."html5-entity"; + "htodo" = dontDistribute super."htodo"; + "htoml" = dontDistribute super."htoml"; + "htrace" = dontDistribute super."htrace"; + "hts" = dontDistribute super."hts"; + "htsn" = dontDistribute super."htsn"; + "htsn-common" = dontDistribute super."htsn-common"; + "htsn-import" = dontDistribute super."htsn-import"; + "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client-auth" = dontDistribute super."http-client-auth"; + "http-client-conduit" = dontDistribute super."http-client-conduit"; + "http-client-lens" = dontDistribute super."http-client-lens"; + "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; + "http-client-streams" = dontDistribute super."http-client-streams"; + "http-conduit-browser" = dontDistribute super."http-conduit-browser"; + "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-encodings" = dontDistribute super."http-encodings"; + "http-enumerator" = dontDistribute super."http-enumerator"; + "http-kinder" = dontDistribute super."http-kinder"; + "http-kit" = dontDistribute super."http-kit"; + "http-listen" = dontDistribute super."http-listen"; + "http-monad" = dontDistribute super."http-monad"; + "http-proxy" = dontDistribute super."http-proxy"; + "http-querystring" = dontDistribute super."http-querystring"; + "http-server" = dontDistribute super."http-server"; + "http-shed" = dontDistribute super."http-shed"; + "http-test" = dontDistribute super."http-test"; + "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_4_5"; + "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; + "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; + "httpspec" = dontDistribute super."httpspec"; + "htune" = dontDistribute super."htune"; + "htzaar" = dontDistribute super."htzaar"; + "hub" = dontDistribute super."hub"; + "hubigraph" = dontDistribute super."hubigraph"; + "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; + "huffman" = dontDistribute super."huffman"; + "hugs2yc" = dontDistribute super."hugs2yc"; + "hulk" = dontDistribute super."hulk"; + "hums" = dontDistribute super."hums"; + "hunch" = dontDistribute super."hunch"; + "hunit-gui" = dontDistribute super."hunit-gui"; + "hunit-parsec" = dontDistribute super."hunit-parsec"; + "hunit-rematch" = dontDistribute super."hunit-rematch"; + "hunp" = dontDistribute super."hunp"; + "hunt-searchengine" = dontDistribute super."hunt-searchengine"; + "hunt-server" = dontDistribute super."hunt-server"; + "hunt-server-cli" = dontDistribute super."hunt-server-cli"; + "hurdle" = dontDistribute super."hurdle"; + "husk-scheme" = dontDistribute super."husk-scheme"; + "husk-scheme-libs" = dontDistribute super."husk-scheme-libs"; + "husky" = dontDistribute super."husky"; + "hutton" = dontDistribute super."hutton"; + "huttons-razor" = dontDistribute super."huttons-razor"; + "huzzy" = dontDistribute super."huzzy"; + "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hws" = dontDistribute super."hws"; + "hwsl2" = dontDistribute super."hwsl2"; + "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; + "hwsl2-reducers" = dontDistribute super."hwsl2-reducers"; + "hx" = dontDistribute super."hx"; + "hxmppc" = dontDistribute super."hxmppc"; + "hxournal" = dontDistribute super."hxournal"; + "hxt-binary" = dontDistribute super."hxt-binary"; + "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-extras" = dontDistribute super."hxt-extras"; + "hxt-filter" = dontDistribute super."hxt-filter"; + "hxt-xpath" = dontDistribute super."hxt-xpath"; + "hxt-xslt" = dontDistribute super."hxt-xslt"; + "hxthelper" = dontDistribute super."hxthelper"; + "hxweb" = dontDistribute super."hxweb"; + "hyahtzee" = dontDistribute super."hyahtzee"; + "hyakko" = dontDistribute super."hyakko"; + "hybrid" = dontDistribute super."hybrid"; + "hydra-hs" = dontDistribute super."hydra-hs"; + "hydra-print" = dontDistribute super."hydra-print"; + "hydrogen" = dontDistribute super."hydrogen"; + "hydrogen-cli" = dontDistribute super."hydrogen-cli"; + "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args"; + "hydrogen-data" = dontDistribute super."hydrogen-data"; + "hydrogen-multimap" = dontDistribute super."hydrogen-multimap"; + "hydrogen-parsing" = dontDistribute super."hydrogen-parsing"; + "hydrogen-prelude" = dontDistribute super."hydrogen-prelude"; + "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec"; + "hydrogen-syntax" = dontDistribute super."hydrogen-syntax"; + "hydrogen-util" = dontDistribute super."hydrogen-util"; + "hydrogen-version" = dontDistribute super."hydrogen-version"; + "hyena" = dontDistribute super."hyena"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; + "hzk" = dontDistribute super."hzk"; + "i18n" = dontDistribute super."i18n"; + "iCalendar" = dontDistribute super."iCalendar"; + "iException" = dontDistribute super."iException"; + "iap-verifier" = dontDistribute super."iap-verifier"; + "ib-api" = dontDistribute super."ib-api"; + "iban" = dontDistribute super."iban"; + "ibus-hs" = dontDistribute super."ibus-hs"; + "ideas" = dontDistribute super."ideas"; + "ideas-math" = dontDistribute super."ideas-math"; + "idempotent" = dontDistribute super."idempotent"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "idris" = dontDistribute super."idris"; + "ieee" = dontDistribute super."ieee"; + "ieee-utils" = dontDistribute super."ieee-utils"; + "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix"; + "ieee754-parser" = dontDistribute super."ieee754-parser"; + "ifcxt" = dontDistribute super."ifcxt"; + "iff" = dontDistribute super."iff"; + "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_8_3_0"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "illuminate" = dontDistribute super."illuminate"; + "image-type" = dontDistribute super."image-type"; + "imagefilters" = dontDistribute super."imagefilters"; + "imagemagick" = dontDistribute super."imagemagick"; + "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; + "imapget" = dontDistribute super."imapget"; + "imbib" = dontDistribute super."imbib"; + "imgurder" = dontDistribute super."imgurder"; + "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; + "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; + "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; + "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; + "implicit-params" = dontDistribute super."implicit-params"; + "imports" = dontDistribute super."imports"; + "impossible" = dontDistribute super."impossible"; + "improve" = dontDistribute super."improve"; + "inc-ref" = dontDistribute super."inc-ref"; + "inch" = dontDistribute super."inch"; + "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-sat-solver" = dontDistribute super."incremental-sat-solver"; + "increments" = dontDistribute super."increments"; + "indentation" = dontDistribute super."indentation"; + "indentparser" = dontDistribute super."indentparser"; + "index-core" = dontDistribute super."index-core"; + "indexed" = dontDistribute super."indexed"; + "indexed-do-notation" = dontDistribute super."indexed-do-notation"; + "indexed-extras" = dontDistribute super."indexed-extras"; + "indexed-free" = dontDistribute super."indexed-free"; + "indian-language-font-converter" = dontDistribute super."indian-language-font-converter"; + "indices" = dontDistribute super."indices"; + "indieweb-algorithms" = dontDistribute super."indieweb-algorithms"; + "inf-interval" = dontDistribute super."inf-interval"; + "infer-upstream" = dontDistribute super."infer-upstream"; + "infernu" = dontDistribute super."infernu"; + "infinite-search" = dontDistribute super."infinite-search"; + "infinity" = dontDistribute super."infinity"; + "infix" = dontDistribute super."infix"; + "inflist" = dontDistribute super."inflist"; + "influxdb" = dontDistribute super."influxdb"; + "informative" = dontDistribute super."informative"; + "inilist" = dontDistribute super."inilist"; + "inject" = dontDistribute super."inject"; + "inject-function" = dontDistribute super."inject-function"; + "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; + "inserts" = dontDistribute super."inserts"; + "inspection-proxy" = dontDistribute super."inspection-proxy"; + "instant-aeson" = dontDistribute super."instant-aeson"; + "instant-bytes" = dontDistribute super."instant-bytes"; + "instant-deepseq" = dontDistribute super."instant-deepseq"; + "instant-generics" = dontDistribute super."instant-generics"; + "instant-hashable" = dontDistribute super."instant-hashable"; + "instant-zipper" = dontDistribute super."instant-zipper"; + "instinct" = dontDistribute super."instinct"; + "instrument-chord" = dontDistribute super."instrument-chord"; + "int-cast" = dontDistribute super."int-cast"; + "integer-pure" = dontDistribute super."integer-pure"; + "intel-aes" = dontDistribute super."intel-aes"; + "interchangeable" = dontDistribute super."interchangeable"; + "interleavableGen" = dontDistribute super."interleavableGen"; + "interleavableIO" = dontDistribute super."interleavableIO"; + "interleave" = dontDistribute super."interleave"; + "interlude" = dontDistribute super."interlude"; + "intern" = dontDistribute super."intern"; + "internetmarke" = dontDistribute super."internetmarke"; + "interpol" = dontDistribute super."interpol"; + "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; + "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; + "interpolation" = dontDistribute super."interpolation"; + "intricacy" = dontDistribute super."intricacy"; + "intset" = dontDistribute super."intset"; + "invertible-syntax" = dontDistribute super."invertible-syntax"; + "io-capture" = dontDistribute super."io-capture"; + "io-reactive" = dontDistribute super."io-reactive"; + "io-streams-http" = dontDistribute super."io-streams-http"; + "io-throttle" = dontDistribute super."io-throttle"; + "ioctl" = dontDistribute super."ioctl"; + "ioref-stable" = dontDistribute super."ioref-stable"; + "iothread" = dontDistribute super."iothread"; + "iotransaction" = dontDistribute super."iotransaction"; + "ip-quoter" = dontDistribute super."ip-quoter"; + "ipatch" = dontDistribute super."ipatch"; + "ipc" = dontDistribute super."ipc"; + "ipcvar" = dontDistribute super."ipcvar"; + "ipopt-hs" = dontDistribute super."ipopt-hs"; + "ipprint" = dontDistribute super."ipprint"; + "iptables-helpers" = dontDistribute super."iptables-helpers"; + "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; + "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-core" = dontDistribute super."irc-core"; + "irc-dcc" = dontDistribute super."irc-dcc"; + "irc-fun-bot" = dontDistribute super."irc-fun-bot"; + "irc-fun-client" = dontDistribute super."irc-fun-client"; + "irc-fun-color" = dontDistribute super."irc-fun-color"; + "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; + "ircbot" = dontDistribute super."ircbot"; + "ircbouncer" = dontDistribute super."ircbouncer"; + "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; + "iron-mq" = dontDistribute super."iron-mq"; + "ironforge" = dontDistribute super."ironforge"; + "is" = dontDistribute super."is"; + "isdicom" = dontDistribute super."isdicom"; + "isevaluated" = dontDistribute super."isevaluated"; + "isiz" = dontDistribute super."isiz"; + "ismtp" = dontDistribute super."ismtp"; + "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; + "isohunt" = dontDistribute super."isohunt"; + "itanium-abi" = dontDistribute super."itanium-abi"; + "iter-stats" = dontDistribute super."iter-stats"; + "iterIO" = dontDistribute super."iterIO"; + "iteratee" = dontDistribute super."iteratee"; + "iteratee-compress" = dontDistribute super."iteratee-compress"; + "iteratee-mtl" = dontDistribute super."iteratee-mtl"; + "iteratee-parsec" = dontDistribute super."iteratee-parsec"; + "iteratee-stm" = dontDistribute super."iteratee-stm"; + "iterio-server" = dontDistribute super."iterio-server"; + "ivar-simple" = dontDistribute super."ivar-simple"; + "ivor" = dontDistribute super."ivor"; + "ivory" = dontDistribute super."ivory"; + "ivory-backend-c" = dontDistribute super."ivory-backend-c"; + "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-examples" = dontDistribute super."ivory-examples"; + "ivory-hw" = dontDistribute super."ivory-hw"; + "ivory-opts" = dontDistribute super."ivory-opts"; + "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-stdlib" = dontDistribute super."ivory-stdlib"; + "ivy-web" = dontDistribute super."ivy-web"; + "ixdopp" = dontDistribute super."ixdopp"; + "ixmonad" = dontDistribute super."ixmonad"; + "iyql" = dontDistribute super."iyql"; + "j2hs" = dontDistribute super."j2hs"; + "ja-base-extra" = dontDistribute super."ja-base-extra"; + "jack" = dontDistribute super."jack"; + "jack-bindings" = dontDistribute super."jack-bindings"; + "jackminimix" = dontDistribute super."jackminimix"; + "jacobi-roots" = dontDistribute super."jacobi-roots"; + "jail" = dontDistribute super."jail"; + "jailbreak-cabal" = dontDistribute super."jailbreak-cabal"; + "jalaali" = dontDistribute super."jalaali"; + "jalla" = dontDistribute super."jalla"; + "jammittools" = dontDistribute super."jammittools"; + "jarfind" = dontDistribute super."jarfind"; + "java-bridge" = dontDistribute super."java-bridge"; + "java-bridge-extras" = dontDistribute super."java-bridge-extras"; + "java-character" = dontDistribute super."java-character"; + "java-poker" = dontDistribute super."java-poker"; + "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; + "javasf" = dontDistribute super."javasf"; + "javav" = dontDistribute super."javav"; + "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; + "jdi" = dontDistribute super."jdi"; + "jespresso" = dontDistribute super."jespresso"; + "jobqueue" = dontDistribute super."jobqueue"; + "join" = dontDistribute super."join"; + "joinlist" = dontDistribute super."joinlist"; + "jonathanscard" = dontDistribute super."jonathanscard"; + "jort" = dontDistribute super."jort"; + "jose" = dontDistribute super."jose"; + "jpeg" = dontDistribute super."jpeg"; + "js-good-parts" = dontDistribute super."js-good-parts"; + "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-hello" = dontDistribute super."jsaddle-hello"; + "jsc" = dontDistribute super."jsc"; + "jsmw" = dontDistribute super."jsmw"; + "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; + "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_11"; + "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; + "json-enumerator" = dontDistribute super."json-enumerator"; + "json-extra" = dontDistribute super."json-extra"; + "json-fu" = dontDistribute super."json-fu"; + "json-litobj" = dontDistribute super."json-litobj"; + "json-pointer" = dontDistribute super."json-pointer"; + "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; + "json-python" = dontDistribute super."json-python"; + "json-qq" = dontDistribute super."json-qq"; + "json-rpc" = dontDistribute super."json-rpc"; + "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-sop" = dontDistribute super."json-sop"; + "json-state" = dontDistribute super."json-state"; + "json-stream" = dontDistribute super."json-stream"; + "json-togo" = dontDistribute super."json-togo"; + "json-tools" = dontDistribute super."json-tools"; + "json-types" = dontDistribute super."json-types"; + "json2" = dontDistribute super."json2"; + "json2-hdbc" = dontDistribute super."json2-hdbc"; + "json2-types" = dontDistribute super."json2-types"; + "json2yaml" = dontDistribute super."json2yaml"; + "jsonresume" = dontDistribute super."jsonresume"; + "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit"; + "jsonschema-gen" = dontDistribute super."jsonschema-gen"; + "jsonsql" = dontDistribute super."jsonsql"; + "jsontsv" = dontDistribute super."jsontsv"; + "jspath" = dontDistribute super."jspath"; + "judy" = dontDistribute super."judy"; + "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; + "jumpthefive" = dontDistribute super."jumpthefive"; + "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; + "kademlia" = dontDistribute super."kademlia"; + "kafka-client" = dontDistribute super."kafka-client"; + "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; + "kansas-lava" = dontDistribute super."kansas-lava"; + "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; + "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; + "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; + "karakuri" = dontDistribute super."karakuri"; + "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; + "katt" = dontDistribute super."katt"; + "kazura-queue" = dontDistribute super."kazura-queue"; + "kbq-gu" = dontDistribute super."kbq-gu"; + "kd-tree" = dontDistribute super."kd-tree"; + "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; + "keera-callbacks" = dontDistribute super."keera-callbacks"; + "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; + "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; + "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk"; + "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel"; + "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel"; + "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config"; + "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk"; + "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view"; + "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk"; + "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs"; + "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk"; + "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network"; + "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling"; + "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx"; + "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa"; + "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses"; + "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "krpc" = dontDistribute super."krpc"; + "ks-test" = dontDistribute super."ks-test"; + "ktx" = dontDistribute super."ktx"; + "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate"; + "kyotocabinet" = dontDistribute super."kyotocabinet"; + "l-bfgs-b" = dontDistribute super."l-bfgs-b"; + "labeled-graph" = dontDistribute super."labeled-graph"; + "labeled-tree" = dontDistribute super."labeled-tree"; + "laborantin-hs" = dontDistribute super."laborantin-hs"; + "labyrinth" = dontDistribute super."labyrinth"; + "labyrinth-server" = dontDistribute super."labyrinth-server"; + "lackey" = dontDistribute super."lackey"; + "lagrangian" = dontDistribute super."lagrangian"; + "laika" = dontDistribute super."laika"; + "lambda-ast" = dontDistribute super."lambda-ast"; + "lambda-bridge" = dontDistribute super."lambda-bridge"; + "lambda-canvas" = dontDistribute super."lambda-canvas"; + "lambda-devs" = dontDistribute super."lambda-devs"; + "lambda-options" = dontDistribute super."lambda-options"; + "lambda-placeholders" = dontDistribute super."lambda-placeholders"; + "lambda-toolbox" = dontDistribute super."lambda-toolbox"; + "lambda2js" = dontDistribute super."lambda2js"; + "lambdaBase" = dontDistribute super."lambdaBase"; + "lambdaFeed" = dontDistribute super."lambdaFeed"; + "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = dontDistribute super."lambdabot"; + "lambdabot-core" = dontDistribute super."lambdabot-core"; + "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins"; + "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins"; + "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins"; + "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins"; + "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins"; + "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins"; + "lambdabot-trusted" = dontDistribute super."lambdabot-trusted"; + "lambdabot-utils" = dontDistribute super."lambdabot-utils"; + "lambdacat" = dontDistribute super."lambdacat"; + "lambdacms-core" = dontDistribute super."lambdacms-core"; + "lambdacms-media" = dontDistribute super."lambdacms-media"; + "lambdacube" = dontDistribute super."lambdacube"; + "lambdacube-bullet" = dontDistribute super."lambdacube-bullet"; + "lambdacube-compiler" = dontDistribute super."lambdacube-compiler"; + "lambdacube-core" = dontDistribute super."lambdacube-core"; + "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; + "lambdacube-engine" = dontDistribute super."lambdacube-engine"; + "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = dontDistribute super."lambdacube-gl"; + "lambdacube-ir" = dontDistribute super."lambdacube-ir"; + "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; + "lambdatwit" = dontDistribute super."lambdatwit"; + "lambdiff" = dontDistribute super."lambdiff"; + "lame-tester" = dontDistribute super."lame-tester"; + "language-asn1" = dontDistribute super."language-asn1"; + "language-bash" = dontDistribute super."language-bash"; + "language-boogie" = dontDistribute super."language-boogie"; + "language-c-comments" = dontDistribute super."language-c-comments"; + "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = dontDistribute super."language-c-quote"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "language-dot" = dontDistribute super."language-dot"; + "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; + "language-eiffel" = dontDistribute super."language-eiffel"; + "language-fortran" = dontDistribute super."language-fortran"; + "language-gcl" = dontDistribute super."language-gcl"; + "language-go" = dontDistribute super."language-go"; + "language-guess" = dontDistribute super."language-guess"; + "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; + "language-kort" = dontDistribute super."language-kort"; + "language-lua" = dontDistribute super."language-lua"; + "language-lua-qq" = dontDistribute super."language-lua-qq"; + "language-mixal" = dontDistribute super."language-mixal"; + "language-objc" = dontDistribute super."language-objc"; + "language-openscad" = dontDistribute super."language-openscad"; + "language-pig" = dontDistribute super."language-pig"; + "language-puppet" = dontDistribute super."language-puppet"; + "language-python" = dontDistribute super."language-python"; + "language-python-colour" = dontDistribute super."language-python-colour"; + "language-python-test" = dontDistribute super."language-python-test"; + "language-qux" = dontDistribute super."language-qux"; + "language-sh" = dontDistribute super."language-sh"; + "language-slice" = dontDistribute super."language-slice"; + "language-spelling" = dontDistribute super."language-spelling"; + "language-sqlite" = dontDistribute super."language-sqlite"; + "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; + "language-typescript" = dontDistribute super."language-typescript"; + "language-vhdl" = dontDistribute super."language-vhdl"; + "lat" = dontDistribute super."lat"; + "latest-npm-version" = dontDistribute super."latest-npm-version"; + "latex" = dontDistribute super."latex"; + "launchpad-control" = dontDistribute super."launchpad-control"; + "lax" = dontDistribute super."lax"; + "layers" = dontDistribute super."layers"; + "layers-game" = dontDistribute super."layers-game"; + "layout" = dontDistribute super."layout"; + "layout-bootstrap" = dontDistribute super."layout-bootstrap"; + "lazy-io" = dontDistribute super."lazy-io"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysmallcheck" = dontDistribute super."lazysmallcheck"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "leksah" = dontDistribute super."leksah"; + "leksah-server" = dontDistribute super."leksah-server"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; + "lens-properties" = dontDistribute super."lens-properties"; + "lens-sop" = dontDistribute super."lens-sop"; + "lens-text-encoding" = dontDistribute super."lens-text-encoding"; + "lens-time" = dontDistribute super."lens-time"; + "lens-tutorial" = dontDistribute super."lens-tutorial"; + "lens-utils" = dontDistribute super."lens-utils"; + "lenses" = dontDistribute super."lenses"; + "lensref" = dontDistribute super."lensref"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; + "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; + "levmar" = dontDistribute super."levmar"; + "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; + "lgtk" = dontDistribute super."lgtk"; + "lha" = dontDistribute super."lha"; + "lhae" = dontDistribute super."lhae"; + "lhc" = dontDistribute super."lhc"; + "lhe" = dontDistribute super."lhe"; + "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl"; + "lhs2html" = dontDistribute super."lhs2html"; + "lhslatex" = dontDistribute super."lhslatex"; + "libGenI" = dontDistribute super."libGenI"; + "libarchive-conduit" = dontDistribute super."libarchive-conduit"; + "libconfig" = dontDistribute super."libconfig"; + "libcspm" = dontDistribute super."libcspm"; + "libexpect" = dontDistribute super."libexpect"; + "libffi" = dontDistribute super."libffi"; + "libgraph" = dontDistribute super."libgraph"; + "libhbb" = dontDistribute super."libhbb"; + "libjenkins" = dontDistribute super."libjenkins"; + "liblastfm" = dontDistribute super."liblastfm"; + "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; + "libltdl" = dontDistribute super."libltdl"; + "libmpd" = dontDistribute super."libmpd"; + "libnvvm" = dontDistribute super."libnvvm"; + "liboleg" = dontDistribute super."liboleg"; + "libpafe" = dontDistribute super."libpafe"; + "libpq" = dontDistribute super."libpq"; + "librandomorg" = dontDistribute super."librandomorg"; + "libravatar" = dontDistribute super."libravatar"; + "libssh2" = dontDistribute super."libssh2"; + "libssh2-conduit" = dontDistribute super."libssh2-conduit"; + "libstackexchange" = dontDistribute super."libstackexchange"; + "libsystemd-daemon" = dontDistribute super."libsystemd-daemon"; + "libtagc" = dontDistribute super."libtagc"; + "libvirt-hs" = dontDistribute super."libvirt-hs"; + "libvorbis" = dontDistribute super."libvorbis"; + "libxls" = dontDistribute super."libxls"; + "libxml" = dontDistribute super."libxml"; + "libxml-enumerator" = dontDistribute super."libxml-enumerator"; + "libxslt" = dontDistribute super."libxslt"; + "life" = dontDistribute super."life"; + "lift-generics" = dontDistribute super."lift-generics"; + "lifted-threads" = dontDistribute super."lifted-threads"; + "lifter" = dontDistribute super."lifter"; + "ligature" = dontDistribute super."ligature"; + "ligd" = dontDistribute super."ligd"; + "lighttpd-conf" = dontDistribute super."lighttpd-conf"; + "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq"; + "lilypond" = dontDistribute super."lilypond"; + "limp" = dontDistribute super."limp"; + "limp-cbc" = dontDistribute super."limp-cbc"; + "lin-alg" = dontDistribute super."lin-alg"; + "linda" = dontDistribute super."linda"; + "lindenmayer" = dontDistribute super."lindenmayer"; + "line-break" = dontDistribute super."line-break"; + "line2pdf" = dontDistribute super."line2pdf"; + "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; + "linear-circuit" = dontDistribute super."linear-circuit"; + "linear-grammar" = dontDistribute super."linear-grammar"; + "linear-maps" = dontDistribute super."linear-maps"; + "linear-opengl" = dontDistribute super."linear-opengl"; + "linear-vect" = dontDistribute super."linear-vect"; + "linearEqSolver" = dontDistribute super."linearEqSolver"; + "linearscan" = dontDistribute super."linearscan"; + "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; + "linebreak" = dontDistribute super."linebreak"; + "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; + "linkchk" = dontDistribute super."linkchk"; + "linkcore" = dontDistribute super."linkcore"; + "linkedhashmap" = dontDistribute super."linkedhashmap"; + "linklater" = dontDistribute super."linklater"; + "linode" = dontDistribute super."linode"; + "linux-blkid" = dontDistribute super."linux-blkid"; + "linux-cgroup" = dontDistribute super."linux-cgroup"; + "linux-evdev" = dontDistribute super."linux-evdev"; + "linux-inotify" = dontDistribute super."linux-inotify"; + "linux-kmod" = dontDistribute super."linux-kmod"; + "linux-mount" = dontDistribute super."linux-mount"; + "linux-perf" = dontDistribute super."linux-perf"; + "linux-ptrace" = dontDistribute super."linux-ptrace"; + "linux-xattr" = dontDistribute super."linux-xattr"; + "linx-gateway" = dontDistribute super."linx-gateway"; + "lio" = dontDistribute super."lio"; + "lio-eci11" = dontDistribute super."lio-eci11"; + "lio-fs" = dontDistribute super."lio-fs"; + "lio-simple" = dontDistribute super."lio-simple"; + "lipsum-gen" = dontDistribute super."lipsum-gen"; + "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; + "liquidhaskell" = dontDistribute super."liquidhaskell"; + "lispparser" = dontDistribute super."lispparser"; + "list-extras" = dontDistribute super."list-extras"; + "list-grouping" = dontDistribute super."list-grouping"; + "list-mux" = dontDistribute super."list-mux"; + "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; + "list-t-html-parser" = dontDistribute super."list-t-html-parser"; + "list-t-http-client" = dontDistribute super."list-t-http-client"; + "list-t-libcurl" = dontDistribute super."list-t-libcurl"; + "list-t-text" = dontDistribute super."list-t-text"; + "list-tries" = dontDistribute super."list-tries"; + "list-zip-def" = dontDistribute super."list-zip-def"; + "listlike-instances" = dontDistribute super."listlike-instances"; + "lists" = dontDistribute super."lists"; + "listsafe" = dontDistribute super."listsafe"; + "lit" = dontDistribute super."lit"; + "literals" = dontDistribute super."literals"; + "live-sequencer" = dontDistribute super."live-sequencer"; + "ll-picosat" = dontDistribute super."ll-picosat"; + "llrbtree" = dontDistribute super."llrbtree"; + "llsd" = dontDistribute super."llsd"; + "llvm" = dontDistribute super."llvm"; + "llvm-analysis" = dontDistribute super."llvm-analysis"; + "llvm-base" = dontDistribute super."llvm-base"; + "llvm-base-types" = dontDistribute super."llvm-base-types"; + "llvm-base-util" = dontDistribute super."llvm-base-util"; + "llvm-data-interop" = dontDistribute super."llvm-data-interop"; + "llvm-extra" = dontDistribute super."llvm-extra"; + "llvm-ffi" = dontDistribute super."llvm-ffi"; + "llvm-general" = dontDistribute super."llvm-general"; + "llvm-general-pure" = dontDistribute super."llvm-general-pure"; + "llvm-general-quote" = dontDistribute super."llvm-general-quote"; + "llvm-ht" = dontDistribute super."llvm-ht"; + "llvm-pkg-config" = dontDistribute super."llvm-pkg-config"; + "llvm-pretty" = dontDistribute super."llvm-pretty"; + "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser"; + "llvm-tf" = dontDistribute super."llvm-tf"; + "llvm-tools" = dontDistribute super."llvm-tools"; + "lmdb" = dontDistribute super."lmdb"; + "lmonad" = dontDistribute super."lmonad"; + "lmonad-yesod" = dontDistribute super."lmonad-yesod"; + "loadavg" = dontDistribute super."loadavg"; + "local-address" = dontDistribute super."local-address"; + "local-search" = dontDistribute super."local-search"; + "located-base" = dontDistribute super."located-base"; + "locators" = dontDistribute super."locators"; + "loch" = dontDistribute super."loch"; + "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; + "lockfree-queue" = dontDistribute super."lockfree-queue"; + "log" = dontDistribute super."log"; + "log-effect" = dontDistribute super."log-effect"; + "log2json" = dontDistribute super."log2json"; + "logfloat" = dontDistribute super."logfloat"; + "logger" = dontDistribute super."logger"; + "logging" = dontDistribute super."logging"; + "logging-effect" = dontDistribute super."logging-effect"; + "logging-facade-journald" = dontDistribute super."logging-facade-journald"; + "logic-TPTP" = dontDistribute super."logic-TPTP"; + "logic-classes" = dontDistribute super."logic-classes"; + "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; + "logplex-parse" = dontDistribute super."logplex-parse"; + "logsink" = dontDistribute super."logsink"; + "lojban" = dontDistribute super."lojban"; + "lojbanParser" = dontDistribute super."lojbanParser"; + "lojbanXiragan" = dontDistribute super."lojbanXiragan"; + "lojysamban" = dontDistribute super."lojysamban"; + "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; + "loli" = dontDistribute super."loli"; + "lookup-tables" = dontDistribute super."lookup-tables"; + "loop-effin" = dontDistribute super."loop-effin"; + "loop-while" = dontDistribute super."loop-while"; + "loops" = dontDistribute super."loops"; + "loopy" = dontDistribute super."loopy"; + "lord" = dontDistribute super."lord"; + "lorem" = dontDistribute super."lorem"; + "loris" = dontDistribute super."loris"; + "loshadka" = dontDistribute super."loshadka"; + "lostcities" = dontDistribute super."lostcities"; + "lowgl" = dontDistribute super."lowgl"; + "lp-diagrams" = dontDistribute super."lp-diagrams"; + "lp-diagrams-svg" = dontDistribute super."lp-diagrams-svg"; + "ls-usb" = dontDistribute super."ls-usb"; + "lscabal" = dontDistribute super."lscabal"; + "lss" = dontDistribute super."lss"; + "lsystem" = dontDistribute super."lsystem"; + "ltk" = dontDistribute super."ltk"; + "ltl" = dontDistribute super."ltl"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luka" = dontDistribute super."luka"; + "luminance" = doDistribute super."luminance_0_9_1_2"; + "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; + "lushtags" = dontDistribute super."lushtags"; + "luthor" = dontDistribute super."luthor"; + "lvish" = dontDistribute super."lvish"; + "lvmlib" = dontDistribute super."lvmlib"; + "lvmrun" = dontDistribute super."lvmrun"; + "lxc" = dontDistribute super."lxc"; + "lye" = dontDistribute super."lye"; + "lz4" = dontDistribute super."lz4"; + "lzma" = dontDistribute super."lzma"; + "lzma-clib" = dontDistribute super."lzma-clib"; + "lzma-enumerator" = dontDistribute super."lzma-enumerator"; + "lzma-streams" = dontDistribute super."lzma-streams"; + "maam" = dontDistribute super."maam"; + "mac" = dontDistribute super."mac"; + "maccatcher" = dontDistribute super."maccatcher"; + "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; + "machines-zlib" = dontDistribute super."machines-zlib"; + "macho" = dontDistribute super."macho"; + "maclight" = dontDistribute super."maclight"; + "macosx-make-standalone" = dontDistribute super."macosx-make-standalone"; + "mage" = dontDistribute super."mage"; + "magico" = dontDistribute super."magico"; + "magma" = dontDistribute super."magma"; + "mahoro" = dontDistribute super."mahoro"; + "maid" = dontDistribute super."maid"; + "mailbox-count" = dontDistribute super."mailbox-count"; + "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; + "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = dontDistribute super."mainland-pretty"; + "majordomo" = dontDistribute super."majordomo"; + "majority" = dontDistribute super."majority"; + "make-hard-links" = dontDistribute super."make-hard-links"; + "make-package" = dontDistribute super."make-package"; + "makedo" = dontDistribute super."makedo"; + "manatee" = dontDistribute super."manatee"; + "manatee-all" = dontDistribute super."manatee-all"; + "manatee-anything" = dontDistribute super."manatee-anything"; + "manatee-browser" = dontDistribute super."manatee-browser"; + "manatee-core" = dontDistribute super."manatee-core"; + "manatee-curl" = dontDistribute super."manatee-curl"; + "manatee-editor" = dontDistribute super."manatee-editor"; + "manatee-filemanager" = dontDistribute super."manatee-filemanager"; + "manatee-imageviewer" = dontDistribute super."manatee-imageviewer"; + "manatee-ircclient" = dontDistribute super."manatee-ircclient"; + "manatee-mplayer" = dontDistribute super."manatee-mplayer"; + "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer"; + "manatee-processmanager" = dontDistribute super."manatee-processmanager"; + "manatee-reader" = dontDistribute super."manatee-reader"; + "manatee-template" = dontDistribute super."manatee-template"; + "manatee-terminal" = dontDistribute super."manatee-terminal"; + "manatee-welcome" = dontDistribute super."manatee-welcome"; + "mancala" = dontDistribute super."mancala"; + "mandulia" = dontDistribute super."mandulia"; + "manifold-random" = dontDistribute super."manifold-random"; + "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; + "marionetta" = dontDistribute super."marionetta"; + "markdown-kate" = dontDistribute super."markdown-kate"; + "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown2svg" = dontDistribute super."markdown2svg"; + "marked-pretty" = dontDistribute super."marked-pretty"; + "markov" = dontDistribute super."markov"; + "markov-chain" = dontDistribute super."markov-chain"; + "markov-processes" = dontDistribute super."markov-processes"; + "markup-preview" = dontDistribute super."markup-preview"; + "marmalade-upload" = dontDistribute super."marmalade-upload"; + "marquise" = dontDistribute super."marquise"; + "marxup" = dontDistribute super."marxup"; + "masakazu-bot" = dontDistribute super."masakazu-bot"; + "mastermind" = dontDistribute super."mastermind"; + "matchers" = dontDistribute super."matchers"; + "mathblog" = dontDistribute super."mathblog"; + "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; + "mathlink" = dontDistribute super."mathlink"; + "matlab" = dontDistribute super."matlab"; + "matrix-market" = dontDistribute super."matrix-market"; + "matrix-market-pure" = dontDistribute super."matrix-market-pure"; + "matsuri" = dontDistribute super."matsuri"; + "maude" = dontDistribute super."maude"; + "maxent" = dontDistribute super."maxent"; + "maxsharing" = dontDistribute super."maxsharing"; + "maybe-justify" = dontDistribute super."maybe-justify"; + "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; + "mbox-tools" = dontDistribute super."mbox-tools"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcpi" = dontDistribute super."mcpi"; + "mdapi" = dontDistribute super."mdapi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mdp" = dontDistribute super."mdp"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_3_0"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "melody" = dontDistribute super."melody"; + "memcache" = dontDistribute super."memcache"; + "memcache-conduit" = dontDistribute super."memcache-conduit"; + "memcache-haskell" = dontDistribute super."memcache-haskell"; + "memcached" = dontDistribute super."memcached"; + "memexml" = dontDistribute super."memexml"; + "memo-ptr" = dontDistribute super."memo-ptr"; + "memo-sqlite" = dontDistribute super."memo-sqlite"; + "memscript" = dontDistribute super."memscript"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "messente" = dontDistribute super."messente"; + "meta-misc" = dontDistribute super."meta-misc"; + "meta-par" = dontDistribute super."meta-par"; + "meta-par-accelerate" = dontDistribute super."meta-par-accelerate"; + "metadata" = dontDistribute super."metadata"; + "metamorphic" = dontDistribute super."metamorphic"; + "metaplug" = dontDistribute super."metaplug"; + "metric" = dontDistribute super."metric"; + "metricsd-client" = dontDistribute super."metricsd-client"; + "metronome" = dontDistribute super."metronome"; + "mezzolens" = dontDistribute super."mezzolens"; + "mfsolve" = dontDistribute super."mfsolve"; + "mgeneric" = dontDistribute super."mgeneric"; + "mi" = dontDistribute super."mi"; + "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = doDistribute super."microformats2-parser_1_0_1_3"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens-each" = dontDistribute super."microlens-each"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minilens" = dontDistribute super."minilens"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; + "modbus-tcp" = dontDistribute super."modbus-tcp"; + "modelicaparser" = dontDistribute super."modelicaparser"; + "modsplit" = dontDistribute super."modsplit"; + "modular-arithmetic" = dontDistribute super."modular-arithmetic"; + "modular-prelude" = dontDistribute super."modular-prelude"; + "modular-prelude-classy" = dontDistribute super."modular-prelude-classy"; + "module-management" = dontDistribute super."module-management"; + "modulespection" = dontDistribute super."modulespection"; + "modulo" = dontDistribute super."modulo"; + "moe" = dontDistribute super."moe"; + "mohws" = dontDistribute super."mohws"; + "monad-abort-fd" = dontDistribute super."monad-abort-fd"; + "monad-atom" = dontDistribute super."monad-atom"; + "monad-atom-simple" = dontDistribute super."monad-atom-simple"; + "monad-bool" = dontDistribute super."monad-bool"; + "monad-classes" = dontDistribute super."monad-classes"; + "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; + "monad-exception" = dontDistribute super."monad-exception"; + "monad-fork" = dontDistribute super."monad-fork"; + "monad-gen" = dontDistribute super."monad-gen"; + "monad-interleave" = dontDistribute super."monad-interleave"; + "monad-levels" = dontDistribute super."monad-levels"; + "monad-loops-stm" = dontDistribute super."monad-loops-stm"; + "monad-lrs" = dontDistribute super."monad-lrs"; + "monad-memo" = dontDistribute super."monad-memo"; + "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; + "monad-open" = dontDistribute super."monad-open"; + "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; + "monad-param" = dontDistribute super."monad-param"; + "monad-ran" = dontDistribute super."monad-ran"; + "monad-resumption" = dontDistribute super."monad-resumption"; + "monad-state" = dontDistribute super."monad-state"; + "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-stlike-io" = dontDistribute super."monad-stlike-io"; + "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; + "monad-supply" = dontDistribute super."monad-supply"; + "monad-task" = dontDistribute super."monad-task"; + "monad-tx" = dontDistribute super."monad-tx"; + "monad-unify" = dontDistribute super."monad-unify"; + "monad-wrap" = dontDistribute super."monad-wrap"; + "monadIO" = dontDistribute super."monadIO"; + "monadLib-compose" = dontDistribute super."monadLib-compose"; + "monadacme" = dontDistribute super."monadacme"; + "monadbi" = dontDistribute super."monadbi"; + "monadfibre" = dontDistribute super."monadfibre"; + "monadiccp" = dontDistribute super."monadiccp"; + "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; + "monadio-unwrappable" = dontDistribute super."monadio-unwrappable"; + "monadlist" = dontDistribute super."monadlist"; + "monadloc-pp" = dontDistribute super."monadloc-pp"; + "monadplus" = dontDistribute super."monadplus"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-owns" = dontDistribute super."monoid-owns"; + "monoid-record" = dontDistribute super."monoid-record"; + "monoid-statistics" = dontDistribute super."monoid-statistics"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidplus" = dontDistribute super."monoidplus"; + "monoids" = dontDistribute super."monoids"; + "monomorphic" = dontDistribute super."monomorphic"; + "montage" = dontDistribute super."montage"; + "montage-client" = dontDistribute super."montage-client"; + "monte-carlo" = dontDistribute super."monte-carlo"; + "moo" = dontDistribute super."moo"; + "moonshine" = dontDistribute super."moonshine"; + "morfette" = dontDistribute super."morfette"; + "morfeusz" = dontDistribute super."morfeusz"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; + "ms" = dontDistribute super."ms"; + "msgpack" = dontDistribute super."msgpack"; + "msgpack-aeson" = dontDistribute super."msgpack-aeson"; + "msgpack-idl" = dontDistribute super."msgpack-idl"; + "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; + "msu" = dontDistribute super."msu"; + "mtgoxapi" = dontDistribute super."mtgoxapi"; + "mtl-c" = dontDistribute super."mtl-c"; + "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-tf" = dontDistribute super."mtl-tf"; + "mtl-unleashed" = dontDistribute super."mtl-unleashed"; + "mtlparse" = dontDistribute super."mtlparse"; + "mtlx" = dontDistribute super."mtlx"; + "mtp" = dontDistribute super."mtp"; + "mtree" = dontDistribute super."mtree"; + "mucipher" = dontDistribute super."mucipher"; + "mudbath" = dontDistribute super."mudbath"; + "muesli" = dontDistribute super."muesli"; + "mueval" = dontDistribute super."mueval"; + "mulang" = dontDistribute super."mulang"; + "multext-east-msd" = dontDistribute super."multext-east-msd"; + "multi-cabal" = dontDistribute super."multi-cabal"; + "multiaddr" = dontDistribute super."multiaddr"; + "multifocal" = dontDistribute super."multifocal"; + "multihash" = dontDistribute super."multihash"; + "multipart-names" = dontDistribute super."multipart-names"; + "multipass" = dontDistribute super."multipass"; + "multiplate-simplified" = dontDistribute super."multiplate-simplified"; + "multiplicity" = dontDistribute super."multiplicity"; + "multirec" = dontDistribute super."multirec"; + "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; + "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset-comb" = dontDistribute super."multiset-comb"; + "multisetrewrite" = dontDistribute super."multisetrewrite"; + "multistate" = dontDistribute super."multistate"; + "muon" = dontDistribute super."muon"; + "murder" = dontDistribute super."murder"; + "murmur3" = dontDistribute super."murmur3"; + "murmurhash3" = dontDistribute super."murmurhash3"; + "music-articulation" = dontDistribute super."music-articulation"; + "music-diatonic" = dontDistribute super."music-diatonic"; + "music-dynamics" = dontDistribute super."music-dynamics"; + "music-dynamics-literal" = dontDistribute super."music-dynamics-literal"; + "music-graphics" = dontDistribute super."music-graphics"; + "music-parts" = dontDistribute super."music-parts"; + "music-pitch" = dontDistribute super."music-pitch"; + "music-pitch-literal" = dontDistribute super."music-pitch-literal"; + "music-preludes" = dontDistribute super."music-preludes"; + "music-score" = dontDistribute super."music-score"; + "music-sibelius" = dontDistribute super."music-sibelius"; + "music-suite" = dontDistribute super."music-suite"; + "music-util" = dontDistribute super."music-util"; + "musicbrainz-email" = dontDistribute super."musicbrainz-email"; + "musicxml" = dontDistribute super."musicxml"; + "musicxml2" = dontDistribute super."musicxml2"; + "mustache-haskell" = dontDistribute super."mustache-haskell"; + "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-iter" = dontDistribute super."mutable-iter"; + "mute-unmute" = dontDistribute super."mute-unmute"; + "mvc" = dontDistribute super."mvc"; + "mvc-updates" = dontDistribute super."mvc-updates"; + "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = doDistribute super."mwc-probability_1_0_3"; + "mwc-random-monad" = dontDistribute super."mwc-random-monad"; + "myTestlll" = dontDistribute super."myTestlll"; + "mybitcoin-sci" = dontDistribute super."mybitcoin-sci"; + "myo" = dontDistribute super."myo"; + "mysnapsession" = dontDistribute super."mysnapsession"; + "mysnapsession-example" = dontDistribute super."mysnapsession-example"; + "mysql-effect" = dontDistribute super."mysql-effect"; + "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi"; + "mysql-simple-typed" = dontDistribute super."mysql-simple-typed"; + "mzv" = dontDistribute super."mzv"; + "n-m" = dontDistribute super."n-m"; + "nagios-perfdata" = dontDistribute super."nagios-perfdata"; + "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg"; + "named-formlet" = dontDistribute super."named-formlet"; + "named-lock" = dontDistribute super."named-lock"; + "named-records" = dontDistribute super."named-records"; + "namelist" = dontDistribute super."namelist"; + "names" = dontDistribute super."names"; + "names-th" = dontDistribute super."names-th"; + "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; + "nano-hmac" = dontDistribute super."nano-hmac"; + "nano-md5" = dontDistribute super."nano-md5"; + "nanoAgda" = dontDistribute super."nanoAgda"; + "nanocurses" = dontDistribute super."nanocurses"; + "nanomsg" = dontDistribute super."nanomsg"; + "nanomsg-haskell" = dontDistribute super."nanomsg-haskell"; + "nanoparsec" = dontDistribute super."nanoparsec"; + "nanq" = dontDistribute super."nanq"; + "narc" = dontDistribute super."narc"; + "nat" = dontDistribute super."nat"; + "nats-queue" = dontDistribute super."nats-queue"; + "natural-number" = dontDistribute super."natural-number"; + "natural-numbers" = dontDistribute super."natural-numbers"; + "natural-transformation" = dontDistribute super."natural-transformation"; + "naturalcomp" = dontDistribute super."naturalcomp"; + "naturals" = dontDistribute super."naturals"; + "naver-translate" = dontDistribute super."naver-translate"; + "nbt" = dontDistribute super."nbt"; + "nc-indicators" = dontDistribute super."nc-indicators"; + "ncurses" = dontDistribute super."ncurses"; + "neat" = dontDistribute super."neat"; + "needle" = dontDistribute super."needle"; + "neet" = dontDistribute super."neet"; + "nehe-tuts" = dontDistribute super."nehe-tuts"; + "neil" = dontDistribute super."neil"; + "neither" = dontDistribute super."neither"; + "nemesis" = dontDistribute super."nemesis"; + "nemesis-titan" = dontDistribute super."nemesis-titan"; + "nerf" = dontDistribute super."nerf"; + "nero" = dontDistribute super."nero"; + "nero-wai" = dontDistribute super."nero-wai"; + "nero-warp" = dontDistribute super."nero-warp"; + "nested-routes" = dontDistribute super."nested-routes"; + "nested-sets" = dontDistribute super."nested-sets"; + "nestedmap" = dontDistribute super."nestedmap"; + "net-concurrent" = dontDistribute super."net-concurrent"; + "netclock" = dontDistribute super."netclock"; + "netcore" = dontDistribute super."netcore"; + "netlines" = dontDistribute super."netlines"; + "netlink" = dontDistribute super."netlink"; + "netlist" = dontDistribute super."netlist"; + "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl"; + "netpbm" = dontDistribute super."netpbm"; + "netrc" = dontDistribute super."netrc"; + "netspec" = dontDistribute super."netspec"; + "netstring-enumerator" = dontDistribute super."netstring-enumerator"; + "nettle-frp" = dontDistribute super."nettle-frp"; + "nettle-netkit" = dontDistribute super."nettle-netkit"; + "nettle-openflow" = dontDistribute super."nettle-openflow"; + "netwire" = dontDistribute super."netwire"; + "netwire-input" = dontDistribute super."netwire-input"; + "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; + "network-address" = dontDistribute super."network-address"; + "network-api-support" = dontDistribute super."network-api-support"; + "network-bitcoin" = dontDistribute super."network-bitcoin"; + "network-builder" = dontDistribute super."network-builder"; + "network-bytestring" = dontDistribute super."network-bytestring"; + "network-conduit" = dontDistribute super."network-conduit"; + "network-connection" = dontDistribute super."network-connection"; + "network-data" = dontDistribute super."network-data"; + "network-dbus" = dontDistribute super."network-dbus"; + "network-dns" = dontDistribute super."network-dns"; + "network-enumerator" = dontDistribute super."network-enumerator"; + "network-fancy" = dontDistribute super."network-fancy"; + "network-interfacerequest" = dontDistribute super."network-interfacerequest"; + "network-ip" = dontDistribute super."network-ip"; + "network-metrics" = dontDistribute super."network-metrics"; + "network-minihttp" = dontDistribute super."network-minihttp"; + "network-msg" = dontDistribute super."network-msg"; + "network-netpacket" = dontDistribute super."network-netpacket"; + "network-pgi" = dontDistribute super."network-pgi"; + "network-rpca" = dontDistribute super."network-rpca"; + "network-server" = dontDistribute super."network-server"; + "network-service" = dontDistribute super."network-service"; + "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; + "network-simple-tls" = dontDistribute super."network-simple-tls"; + "network-socket-options" = dontDistribute super."network-socket-options"; + "network-stream" = dontDistribute super."network-stream"; + "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport-amqp" = dontDistribute super."network-transport-amqp"; + "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; + "network-uri-static" = dontDistribute super."network-uri-static"; + "network-wai-router" = dontDistribute super."network-wai-router"; + "network-websocket" = dontDistribute super."network-websocket"; + "networked-game" = dontDistribute super."networked-game"; + "newports" = dontDistribute super."newports"; + "newsynth" = dontDistribute super."newsynth"; + "newt" = dontDistribute super."newt"; + "newtype-deriving" = dontDistribute super."newtype-deriving"; + "newtype-th" = dontDistribute super."newtype-th"; + "newtyper" = dontDistribute super."newtyper"; + "nextstep-plist" = dontDistribute super."nextstep-plist"; + "nf" = dontDistribute super."nf"; + "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; + "nibblestring" = dontDistribute super."nibblestring"; + "nicify" = dontDistribute super."nicify"; + "nicify-lib" = dontDistribute super."nicify-lib"; + "nicovideo-translator" = dontDistribute super."nicovideo-translator"; + "nikepub" = dontDistribute super."nikepub"; + "nimber" = dontDistribute super."nimber"; + "nist-beacon" = dontDistribute super."nist-beacon"; + "nitro" = dontDistribute super."nitro"; + "nix-eval" = dontDistribute super."nix-eval"; + "nixfromnpm" = dontDistribute super."nixfromnpm"; + "nixos-types" = dontDistribute super."nixos-types"; + "nkjp" = dontDistribute super."nkjp"; + "nlp-scores" = dontDistribute super."nlp-scores"; + "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts"; + "nm" = dontDistribute super."nm"; + "nme" = dontDistribute super."nme"; + "nntp" = dontDistribute super."nntp"; + "no-buffering-workaround" = dontDistribute super."no-buffering-workaround"; + "no-role-annots" = dontDistribute super."no-role-annots"; + "nofib-analyse" = dontDistribute super."nofib-analyse"; + "nofib-analyze" = dontDistribute super."nofib-analyze"; + "noise" = dontDistribute super."noise"; + "non-empty" = dontDistribute super."non-empty"; + "non-negative" = dontDistribute super."non-negative"; + "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; + "nonfree" = dontDistribute super."nonfree"; + "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; + "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; + "noodle" = dontDistribute super."noodle"; + "normaldistribution" = dontDistribute super."normaldistribution"; + "not-gloss" = dontDistribute super."not-gloss"; + "not-gloss-examples" = dontDistribute super."not-gloss-examples"; + "not-in-base" = dontDistribute super."not-in-base"; + "notcpp" = dontDistribute super."notcpp"; + "notmuch-haskell" = dontDistribute super."notmuch-haskell"; + "notmuch-web" = dontDistribute super."notmuch-web"; + "notzero" = dontDistribute super."notzero"; + "np-extras" = dontDistribute super."np-extras"; + "np-linear" = dontDistribute super."np-linear"; + "nptools" = dontDistribute super."nptools"; + "nth-prime" = dontDistribute super."nth-prime"; + "nthable" = dontDistribute super."nthable"; + "ntp-control" = dontDistribute super."ntp-control"; + "null-canvas" = dontDistribute super."null-canvas"; + "nullary" = dontDistribute super."nullary"; + "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; + "numbering" = dontDistribute super."numbering"; + "numerals" = dontDistribute super."numerals"; + "numerals-base" = dontDistribute super."numerals-base"; + "numeric-limits" = dontDistribute super."numeric-limits"; + "numeric-prelude" = dontDistribute super."numeric-prelude"; + "numeric-qq" = dontDistribute super."numeric-qq"; + "numeric-quest" = dontDistribute super."numeric-quest"; + "numeric-ranges" = dontDistribute super."numeric-ranges"; + "numeric-tools" = dontDistribute super."numeric-tools"; + "numericpeano" = dontDistribute super."numericpeano"; + "nums" = dontDistribute super."nums"; + "numtype" = dontDistribute super."numtype"; + "numtype-tf" = dontDistribute super."numtype-tf"; + "nurbs" = dontDistribute super."nurbs"; + "nvim-hs" = dontDistribute super."nvim-hs"; + "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib"; + "nyan" = dontDistribute super."nyan"; + "nylas" = dontDistribute super."nylas"; + "nymphaea" = dontDistribute super."nymphaea"; + "oanda-rest-api" = dontDistribute super."oanda-rest-api"; + "oauthenticated" = dontDistribute super."oauthenticated"; + "obdd" = dontDistribute super."obdd"; + "oberon0" = dontDistribute super."oberon0"; + "obj" = dontDistribute super."obj"; + "objectid" = dontDistribute super."objectid"; + "objective" = doDistribute super."objective_1_0_5"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octane" = dontDistribute super."octane"; + "octohat" = dontDistribute super."octohat"; + "octopus" = dontDistribute super."octopus"; + "oculus" = dontDistribute super."oculus"; + "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = dontDistribute super."oeis"; + "off-simple" = dontDistribute super."off-simple"; + "ohloh-hs" = dontDistribute super."ohloh-hs"; + "oi" = dontDistribute super."oi"; + "oidc-client" = dontDistribute super."oidc-client"; + "ois-input-manager" = dontDistribute super."ois-input-manager"; + "old-version" = dontDistribute super."old-version"; + "olwrapper" = dontDistribute super."olwrapper"; + "omaketex" = dontDistribute super."omaketex"; + "omega" = dontDistribute super."omega"; + "omnicodec" = dontDistribute super."omnicodec"; + "on-a-horse" = dontDistribute super."on-a-horse"; + "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "one-liner" = dontDistribute super."one-liner"; + "one-time-password" = dontDistribute super."one-time-password"; + "oneOfN" = dontDistribute super."oneOfN"; + "oneormore" = dontDistribute super."oneormore"; + "only" = dontDistribute super."only"; + "onu-course" = dontDistribute super."onu-course"; + "opaleye-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = dontDistribute super."opaleye-trans"; + "open-haddock" = dontDistribute super."open-haddock"; + "open-pandoc" = dontDistribute super."open-pandoc"; + "open-symbology" = dontDistribute super."open-symbology"; + "open-typerep" = dontDistribute super."open-typerep"; + "open-union" = dontDistribute super."open-union"; + "open-witness" = dontDistribute super."open-witness"; + "opencog-atomspace" = dontDistribute super."opencog-atomspace"; + "opencv-raw" = dontDistribute super."opencv-raw"; + "opendatatable" = dontDistribute super."opendatatable"; + "openexchangerates" = dontDistribute super."openexchangerates"; + "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; + "opengl-spacenavigator" = dontDistribute super."opengl-spacenavigator"; + "opengles" = dontDistribute super."opengles"; + "openid" = dontDistribute super."openid"; + "openpgp" = dontDistribute super."openpgp"; + "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; + "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; + "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "openssh-github-keys" = dontDistribute super."openssh-github-keys"; + "openssl-createkey" = dontDistribute super."openssl-createkey"; + "opentheory" = dontDistribute super."opentheory"; + "opentheory-bits" = dontDistribute super."opentheory-bits"; + "opentheory-byte" = dontDistribute super."opentheory-byte"; + "opentheory-char" = dontDistribute super."opentheory-char"; + "opentheory-divides" = dontDistribute super."opentheory-divides"; + "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci"; + "opentheory-parser" = dontDistribute super."opentheory-parser"; + "opentheory-prime" = dontDistribute super."opentheory-prime"; + "opentheory-primitive" = dontDistribute super."opentheory-primitive"; + "opentheory-probability" = dontDistribute super."opentheory-probability"; + "opentheory-stream" = dontDistribute super."opentheory-stream"; + "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; + "operational-extra" = dontDistribute super."operational-extra"; + "opml" = dontDistribute super."opml"; + "opml-conduit" = doDistribute super."opml-conduit_0_4_0_1"; + "opn" = dontDistribute super."opn"; + "optimal-blocks" = dontDistribute super."optimal-blocks"; + "optimization" = dontDistribute super."optimization"; + "optimusprime" = dontDistribute super."optimusprime"; + "option" = dontDistribute super."option"; + "optional" = dontDistribute super."optional"; + "options-time" = dontDistribute super."options-time"; + "optparse-declarative" = dontDistribute super."optparse-declarative"; + "optparse-generic" = dontDistribute super."optparse-generic"; + "orc" = dontDistribute super."orc"; + "orchestrate" = dontDistribute super."orchestrate"; + "orchid" = dontDistribute super."orchid"; + "orchid-demo" = dontDistribute super."orchid-demo"; + "ord-adhoc" = dontDistribute super."ord-adhoc"; + "order-maintenance" = dontDistribute super."order-maintenance"; + "order-statistic-tree" = dontDistribute super."order-statistic-tree"; + "order-statistics" = dontDistribute super."order-statistics"; + "ordered" = dontDistribute super."ordered"; + "orders" = dontDistribute super."orders"; + "ordrea" = dontDistribute super."ordrea"; + "organize-imports" = dontDistribute super."organize-imports"; + "orgmode" = dontDistribute super."orgmode"; + "orgmode-parse" = dontDistribute super."orgmode-parse"; + "origami" = dontDistribute super."origami"; + "os-release" = dontDistribute super."os-release"; + "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; + "osm-download" = dontDistribute super."osm-download"; + "oso2pdf" = dontDistribute super."oso2pdf"; + "osx-ar" = dontDistribute super."osx-ar"; + "ot" = dontDistribute super."ot"; + "ottparse-pretty" = dontDistribute super."ottparse-pretty"; + "overloaded-records" = dontDistribute super."overloaded-records"; + "overture" = dontDistribute super."overture"; + "pack" = dontDistribute super."pack"; + "package-o-tron" = dontDistribute super."package-o-tron"; + "package-vt" = dontDistribute super."package-vt"; + "packdeps" = dontDistribute super."packdeps"; + "packed-dawg" = dontDistribute super."packed-dawg"; + "packedstring" = dontDistribute super."packedstring"; + "packer" = dontDistribute super."packer"; + "packman" = dontDistribute super."packman"; + "packunused" = dontDistribute super."packunused"; + "pacman-memcache" = dontDistribute super."pacman-memcache"; + "padKONTROL" = dontDistribute super."padKONTROL"; + "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_6"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_9"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-include" = dontDistribute super."pandoc-include"; + "pandoc-japanese-filters" = dontDistribute super."pandoc-japanese-filters"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "papillon" = dontDistribute super."papillon"; + "pappy" = dontDistribute super."pappy"; + "para" = dontDistribute super."para"; + "paragon" = dontDistribute super."paragon"; + "parallel-tasks" = dontDistribute super."parallel-tasks"; + "parallel-tree-search" = dontDistribute super."parallel-tree-search"; + "parameterized-data" = dontDistribute super."parameterized-data"; + "parco" = dontDistribute super."parco"; + "parco-attoparsec" = dontDistribute super."parco-attoparsec"; + "parco-parsec" = dontDistribute super."parco-parsec"; + "parcom-lib" = dontDistribute super."parcom-lib"; + "parconc-examples" = dontDistribute super."parconc-examples"; + "parport" = dontDistribute super."parport"; + "parse-dimacs" = dontDistribute super."parse-dimacs"; + "parse-help" = dontDistribute super."parse-help"; + "parsec-extra" = dontDistribute super."parsec-extra"; + "parsec-numbers" = dontDistribute super."parsec-numbers"; + "parsec-parsers" = dontDistribute super."parsec-parsers"; + "parsec-permutation" = dontDistribute super."parsec-permutation"; + "parsec-tagsoup" = dontDistribute super."parsec-tagsoup"; + "parsec-trace" = dontDistribute super."parsec-trace"; + "parsec-utils" = dontDistribute super."parsec-utils"; + "parsec1" = dontDistribute super."parsec1"; + "parsec2" = dontDistribute super."parsec2"; + "parsec3" = dontDistribute super."parsec3"; + "parsec3-numbers" = dontDistribute super."parsec3-numbers"; + "parsedate" = dontDistribute super."parsedate"; + "parsek" = dontDistribute super."parsek"; + "parsely" = dontDistribute super."parsely"; + "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; + "parsergen" = dontDistribute super."parsergen"; + "parsestar" = dontDistribute super."parsestar"; + "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; + "partial" = dontDistribute super."partial"; + "partial-lens" = dontDistribute super."partial-lens"; + "partial-uri" = dontDistribute super."partial-uri"; + "partly" = dontDistribute super."partly"; + "passage" = dontDistribute super."passage"; + "passwords" = dontDistribute super."passwords"; + "pastis" = dontDistribute super."pastis"; + "pasty" = dontDistribute super."pasty"; + "patch-combinators" = dontDistribute super."patch-combinators"; + "patch-image" = dontDistribute super."patch-image"; + "path-io" = doDistribute super."path-io_0_2_0"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "patronscraper" = dontDistribute super."patronscraper"; + "patterns" = dontDistribute super."patterns"; + "paymill" = dontDistribute super."paymill"; + "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops"; + "paypal-api" = dontDistribute super."paypal-api"; + "pb" = dontDistribute super."pb"; + "pbc4hs" = dontDistribute super."pbc4hs"; + "pbkdf" = dontDistribute super."pbkdf"; + "pcap-conduit" = dontDistribute super."pcap-conduit"; + "pcap-enumerator" = dontDistribute super."pcap-enumerator"; + "pcd-loader" = dontDistribute super."pcd-loader"; + "pcf" = dontDistribute super."pcf"; + "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; + "pcre-less" = dontDistribute super."pcre-less"; + "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; + "pdf2line" = dontDistribute super."pdf2line"; + "pdfsplit" = dontDistribute super."pdfsplit"; + "pdynload" = dontDistribute super."pdynload"; + "peakachu" = dontDistribute super."peakachu"; + "peano" = dontDistribute super."peano"; + "peano-inf" = dontDistribute super."peano-inf"; + "pec" = dontDistribute super."pec"; + "pecoff" = dontDistribute super."pecoff"; + "peg" = dontDistribute super."peg"; + "peggy" = dontDistribute super."peggy"; + "pell" = dontDistribute super."pell"; + "penn-treebank" = dontDistribute super."penn-treebank"; + "penny" = dontDistribute super."penny"; + "penny-bin" = dontDistribute super."penny-bin"; + "penny-lib" = dontDistribute super."penny-lib"; + "peparser" = dontDistribute super."peparser"; + "perceptron" = dontDistribute super."perceptron"; + "perdure" = dontDistribute super."perdure"; + "period" = dontDistribute super."period"; + "perm" = dontDistribute super."perm"; + "permutation" = dontDistribute super."permutation"; + "permute" = dontDistribute super."permute"; + "persist2er" = dontDistribute super."persist2er"; + "persistable-record" = dontDistribute super."persistable-record"; + "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-equivalence" = dontDistribute super."persistent-equivalence"; + "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; + "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; + "persistent-iproute" = dontDistribute super."persistent-iproute"; + "persistent-map" = dontDistribute super."persistent-map"; + "persistent-odbc" = dontDistribute super."persistent-odbc"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-vector" = dontDistribute super."persistent-vector"; + "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; + "persona" = dontDistribute super."persona"; + "persona-idp" = dontDistribute super."persona-idp"; + "pesca" = dontDistribute super."pesca"; + "peyotls" = dontDistribute super."peyotls"; + "peyotls-codec" = dontDistribute super."peyotls-codec"; + "pez" = dontDistribute super."pez"; + "pg-harness" = dontDistribute super."pg-harness"; + "pg-harness-client" = dontDistribute super."pg-harness-client"; + "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pgdl" = dontDistribute super."pgdl"; + "pgm" = dontDistribute super."pgm"; + "pgsql-simple" = dontDistribute super."pgsql-simple"; + "pgstream" = dontDistribute super."pgstream"; + "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; + "phone-numbers" = dontDistribute super."phone-numbers"; + "phone-push" = dontDistribute super."phone-push"; + "phonetic-code" = dontDistribute super."phonetic-code"; + "phooey" = dontDistribute super."phooey"; + "photoname" = dontDistribute super."photoname"; + "phraskell" = dontDistribute super."phraskell"; + "phybin" = dontDistribute super."phybin"; + "pi-calculus" = dontDistribute super."pi-calculus"; + "pia-forward" = dontDistribute super."pia-forward"; + "pianola" = dontDistribute super."pianola"; + "picologic" = dontDistribute super."picologic"; + "picosat" = dontDistribute super."picosat"; + "piet" = dontDistribute super."piet"; + "piki" = dontDistribute super."piki"; + "pinboard" = dontDistribute super."pinboard"; + "pinchot" = doDistribute super."pinchot_0_6_0_0"; + "pipe-enumerator" = dontDistribute super."pipe-enumerator"; + "pipeclip" = dontDistribute super."pipeclip"; + "pipes-async" = dontDistribute super."pipes-async"; + "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-bzip" = dontDistribute super."pipes-bzip"; + "pipes-cacophony" = doDistribute super."pipes-cacophony_0_1_3"; + "pipes-cellular" = dontDistribute super."pipes-cellular"; + "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; + "pipes-cereal" = dontDistribute super."pipes-cereal"; + "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-conduit" = dontDistribute super."pipes-conduit"; + "pipes-core" = dontDistribute super."pipes-core"; + "pipes-courier" = dontDistribute super."pipes-courier"; + "pipes-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-network-tls" = dontDistribute super."pipes-network-tls"; + "pipes-p2p" = dontDistribute super."pipes-p2p"; + "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; + "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; + "pipes-vector" = dontDistribute super."pipes-vector"; + "pipes-websockets" = dontDistribute super."pipes-websockets"; + "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; + "pipes-zlib" = dontDistribute super."pipes-zlib"; + "pisigma" = dontDistribute super."pisigma"; + "pit" = dontDistribute super."pit"; + "pitchtrack" = dontDistribute super."pitchtrack"; + "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs7" = dontDistribute super."pkcs7"; + "pkggraph" = dontDistribute super."pkggraph"; + "pktree" = dontDistribute super."pktree"; + "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; + "planar-graph" = dontDistribute super."planar-graph"; + "plat" = dontDistribute super."plat"; + "playlists" = dontDistribute super."playlists"; + "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; + "plivo" = dontDistribute super."plivo"; + "plot-lab" = dontDistribute super."plot-lab"; + "plotfont" = dontDistribute super."plotfont"; + "plotserver-api" = dontDistribute super."plotserver-api"; + "plugins" = dontDistribute super."plugins"; + "plugins-auto" = dontDistribute super."plugins-auto"; + "plugins-multistage" = dontDistribute super."plugins-multistage"; + "plumbers" = dontDistribute super."plumbers"; + "ply-loader" = dontDistribute super."ply-loader"; + "png-file" = dontDistribute super."png-file"; + "pngload" = dontDistribute super."pngload"; + "pngload-fixed" = dontDistribute super."pngload-fixed"; + "pnm" = dontDistribute super."pnm"; + "pocket-dns" = dontDistribute super."pocket-dns"; + "pointfree" = dontDistribute super."pointfree"; + "pointful" = dontDistribute super."pointful"; + "pointless-fun" = dontDistribute super."pointless-fun"; + "pointless-haskell" = dontDistribute super."pointless-haskell"; + "pointless-lenses" = dontDistribute super."pointless-lenses"; + "pointless-rewrite" = dontDistribute super."pointless-rewrite"; + "poker-eval" = dontDistribute super."poker-eval"; + "pokitdok" = dontDistribute super."pokitdok"; + "polar" = dontDistribute super."polar"; + "polar-configfile" = dontDistribute super."polar-configfile"; + "polar-shader" = dontDistribute super."polar-shader"; + "polh-lexicon" = dontDistribute super."polh-lexicon"; + "polimorf" = dontDistribute super."polimorf"; + "poll" = dontDistribute super."poll"; + "poly-control" = dontDistribute super."poly-control"; + "polyToMonoid" = dontDistribute super."polyToMonoid"; + "polymap" = dontDistribute super."polymap"; + "polynom" = dontDistribute super."polynom"; + "polynomial" = dontDistribute super."polynomial"; + "polynomials-bernstein" = dontDistribute super."polynomials-bernstein"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "ponder" = dontDistribute super."ponder"; + "pong-server" = dontDistribute super."pong-server"; + "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver"; + "pontarius-xmpp" = dontDistribute super."pontarius-xmpp"; + "pontarius-xpmn" = dontDistribute super."pontarius-xpmn"; + "pony" = dontDistribute super."pony"; + "pool" = dontDistribute super."pool"; + "pool-conduit" = dontDistribute super."pool-conduit"; + "pooled-io" = dontDistribute super."pooled-io"; + "pop3-client" = dontDistribute super."pop3-client"; + "popenhs" = dontDistribute super."popenhs"; + "poppler" = dontDistribute super."poppler"; + "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache"; + "portable-lines" = dontDistribute super."portable-lines"; + "portaudio" = dontDistribute super."portaudio"; + "porte" = dontDistribute super."porte"; + "porter" = dontDistribute super."porter"; + "ports" = dontDistribute super."ports"; + "ports-tools" = dontDistribute super."ports-tools"; + "positive" = dontDistribute super."positive"; + "posix-acl" = dontDistribute super."posix-acl"; + "posix-escape" = dontDistribute super."posix-escape"; + "posix-filelock" = dontDistribute super."posix-filelock"; + "posix-paths" = dontDistribute super."posix-paths"; + "posix-pty" = dontDistribute super."posix-pty"; + "posix-timer" = dontDistribute super."posix-timer"; + "posix-waitpid" = dontDistribute super."posix-waitpid"; + "possible" = dontDistribute super."possible"; + "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9"; + "postgresql-config" = dontDistribute super."postgresql-config"; + "postgresql-connector" = dontDistribute super."postgresql-connector"; + "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; + "postgresql-cube" = dontDistribute super."postgresql-cube"; + "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; + "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; + "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; + "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; + "postgresql-typed" = dontDistribute super."postgresql-typed"; + "postgrest" = dontDistribute super."postgrest"; + "postie" = dontDistribute super."postie"; + "postmark" = dontDistribute super."postmark"; + "postmaster" = dontDistribute super."postmaster"; + "potato-tool" = dontDistribute super."potato-tool"; + "potrace" = dontDistribute super."potrace"; + "potrace-diagrams" = dontDistribute super."potrace-diagrams"; + "powermate" = dontDistribute super."powermate"; + "powerpc" = dontDistribute super."powerpc"; + "ppm" = dontDistribute super."ppm"; + "pqc" = dontDistribute super."pqc"; + "pqueue-mtl" = dontDistribute super."pqueue-mtl"; + "practice-room" = dontDistribute super."practice-room"; + "precis" = dontDistribute super."precis"; + "predicates" = dontDistribute super."predicates"; + "prednote-test" = dontDistribute super."prednote-test"; + "prefork" = dontDistribute super."prefork"; + "pregame" = dontDistribute super."pregame"; + "prelude-edsl" = dontDistribute super."prelude-edsl"; + "prelude-generalize" = dontDistribute super."prelude-generalize"; + "prelude-plus" = dontDistribute super."prelude-plus"; + "prelude-prime" = dontDistribute super."prelude-prime"; + "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = dontDistribute super."present"; + "press" = dontDistribute super."press"; + "presto-hdbc" = dontDistribute super."presto-hdbc"; + "prettify" = dontDistribute super."prettify"; + "pretty-compact" = dontDistribute super."pretty-compact"; + "pretty-error" = dontDistribute super."pretty-error"; + "pretty-hex" = dontDistribute super."pretty-hex"; + "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-sop" = dontDistribute super."pretty-sop"; + "pretty-tree" = dontDistribute super."pretty-tree"; + "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-uniq" = dontDistribute super."prim-uniq"; + "primitive-simd" = dontDistribute super."primitive-simd"; + "primula-board" = dontDistribute super."primula-board"; + "primula-bot" = dontDistribute super."primula-bot"; + "print-debugger" = dontDistribute super."print-debugger"; + "printf-mauke" = dontDistribute super."printf-mauke"; + "printxosd" = dontDistribute super."printxosd"; + "priority-queue" = dontDistribute super."priority-queue"; + "priority-sync" = dontDistribute super."priority-sync"; + "privileged-concurrency" = dontDistribute super."privileged-concurrency"; + "prizm" = dontDistribute super."prizm"; + "probability" = dontDistribute super."probability"; + "probable" = dontDistribute super."probable"; + "proc" = dontDistribute super."proc"; + "process-conduit" = dontDistribute super."process-conduit"; + "process-extras" = doDistribute super."process-extras_0_3_3_7"; + "process-iterio" = dontDistribute super."process-iterio"; + "process-leksah" = dontDistribute super."process-leksah"; + "process-listlike" = dontDistribute super."process-listlike"; + "process-progress" = dontDistribute super."process-progress"; + "process-qq" = dontDistribute super."process-qq"; + "process-streaming" = dontDistribute super."process-streaming"; + "processing" = dontDistribute super."processing"; + "processor-creative-kit" = dontDistribute super."processor-creative-kit"; + "procrastinating-structure" = dontDistribute super."procrastinating-structure"; + "procrastinating-variable" = dontDistribute super."procrastinating-variable"; + "procstat" = dontDistribute super."procstat"; + "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3_1"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "profiteur" = dontDistribute super."profiteur"; + "progress" = dontDistribute super."progress"; + "progressbar" = dontDistribute super."progressbar"; + "progression" = dontDistribute super."progression"; + "progressive" = dontDistribute super."progressive"; + "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; + "projection" = dontDistribute super."projection"; + "prolog" = dontDistribute super."prolog"; + "prolog-graph" = dontDistribute super."prolog-graph"; + "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; + "promise" = dontDistribute super."promise"; + "promises" = dontDistribute super."promises"; + "propane" = dontDistribute super."propane"; + "propellor" = dontDistribute super."propellor"; + "properties" = dontDistribute super."properties"; + "property-list" = dontDistribute super."property-list"; + "proplang" = dontDistribute super."proplang"; + "props" = dontDistribute super."props"; + "prosper" = dontDistribute super."prosper"; + "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; + "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; + "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "proton-haskell" = dontDistribute super."proton-haskell"; + "prototype" = dontDistribute super."prototype"; + "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = doDistribute super."psc-ide_0_5_0"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; + "publicsuffixlist" = dontDistribute super."publicsuffixlist"; + "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; + "pubnub" = dontDistribute super."pubnub"; + "pubsub" = dontDistribute super."pubsub"; + "puffytools" = dontDistribute super."puffytools"; + "pugixml" = dontDistribute super."pugixml"; + "pugs-DrIFT" = dontDistribute super."pugs-DrIFT"; + "pugs-HsSyck" = dontDistribute super."pugs-HsSyck"; + "pugs-compat" = dontDistribute super."pugs-compat"; + "pugs-hsregex" = dontDistribute super."pugs-hsregex"; + "pulse-simple" = dontDistribute super."pulse-simple"; + "punkt" = dontDistribute super."punkt"; + "punycode" = dontDistribute super."punycode"; + "puppetresources" = dontDistribute super."puppetresources"; + "pure-fft" = dontDistribute super."pure-fft"; + "pure-priority-queue" = dontDistribute super."pure-priority-queue"; + "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; + "pure-zlib" = dontDistribute super."pure-zlib"; + "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; + "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "push-notify" = dontDistribute super."push-notify"; + "push-notify-ccs" = dontDistribute super."push-notify-ccs"; + "push-notify-general" = dontDistribute super."push-notify-general"; + "pusher-haskell" = dontDistribute super."pusher-haskell"; + "pushme" = dontDistribute super."pushme"; + "putlenses" = dontDistribute super."putlenses"; + "puzzle-draw" = dontDistribute super."puzzle-draw"; + "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline"; + "pvd" = dontDistribute super."pvd"; + "pwstore-cli" = dontDistribute super."pwstore-cli"; + "pxsl-tools" = dontDistribute super."pxsl-tools"; + "pyffi" = dontDistribute super."pyffi"; + "pyfi" = dontDistribute super."pyfi"; + "python-pickle" = dontDistribute super."python-pickle"; + "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator"; + "qd" = dontDistribute super."qd"; + "qd-vec" = dontDistribute super."qd-vec"; + "qed" = dontDistribute super."qed"; + "qhull-simple" = dontDistribute super."qhull-simple"; + "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "qudb" = dontDistribute super."qudb"; + "quenya-verb" = dontDistribute super."quenya-verb"; + "querystring-pickle" = dontDistribute super."querystring-pickle"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quick-schema" = dontDistribute super."quick-schema"; + "quickcheck-poly" = dontDistribute super."quickcheck-poly"; + "quickcheck-properties" = dontDistribute super."quickcheck-properties"; + "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; + "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad"; + "quickcheck-regex" = dontDistribute super."quickcheck-regex"; + "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng"; + "quickcheck-rematch" = dontDistribute super."quickcheck-rematch"; + "quickcheck-script" = dontDistribute super."quickcheck-script"; + "quickcheck-simple" = dontDistribute super."quickcheck-simple"; + "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "quicktest" = dontDistribute super."quicktest"; + "quickwebapp" = dontDistribute super."quickwebapp"; + "quiver" = dontDistribute super."quiver"; + "quiver-bytestring" = dontDistribute super."quiver-bytestring"; + "quiver-cell" = dontDistribute super."quiver-cell"; + "quiver-csv" = dontDistribute super."quiver-csv"; + "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-http" = dontDistribute super."quiver-http"; + "quoridor-hs" = dontDistribute super."quoridor-hs"; + "qux" = dontDistribute super."qux"; + "rabocsv2qif" = dontDistribute super."rabocsv2qif"; + "rad" = dontDistribute super."rad"; + "radian" = dontDistribute super."radian"; + "radium" = dontDistribute super."radium"; + "radium-formula-parser" = dontDistribute super."radium-formula-parser"; + "radix" = dontDistribute super."radix"; + "rados-haskell" = dontDistribute super."rados-haskell"; + "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-tree" = dontDistribute super."random-tree"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratel" = dontDistribute super."ratel"; + "ratel-wai" = dontDistribute super."ratel-wai"; + "ratio-int" = dontDistribute super."ratio-int"; + "raven-haskell" = dontDistribute super."raven-haskell"; + "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "rawstring-qm" = dontDistribute super."rawstring-qm"; + "razom-text-util" = dontDistribute super."razom-text-util"; + "rbr" = dontDistribute super."rbr"; + "rclient" = dontDistribute super."rclient"; + "rcu" = dontDistribute super."rcu"; + "rdf4h" = dontDistribute super."rdf4h"; + "rdioh" = dontDistribute super."rdioh"; + "rdtsc" = dontDistribute super."rdtsc"; + "rdtsc-enolan" = dontDistribute super."rdtsc-enolan"; + "re2" = dontDistribute super."re2"; + "react-flux" = dontDistribute super."react-flux"; + "react-haskell" = dontDistribute super."react-haskell"; + "reaction-logic" = dontDistribute super."reaction-logic"; + "reactive" = dontDistribute super."reactive"; + "reactive-bacon" = dontDistribute super."reactive-bacon"; + "reactive-balsa" = dontDistribute super."reactive-balsa"; + "reactive-banana" = dontDistribute super."reactive-banana"; + "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl"; + "reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2"; + "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny"; + "reactive-banana-wx" = dontDistribute super."reactive-banana-wx"; + "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip"; + "reactive-glut" = dontDistribute super."reactive-glut"; + "reactive-haskell" = dontDistribute super."reactive-haskell"; + "reactive-io" = dontDistribute super."reactive-io"; + "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; + "reactor" = dontDistribute super."reactor"; + "read-bounded" = dontDistribute super."read-bounded"; + "readline-statevar" = dontDistribute super."readline-statevar"; + "readpyc" = dontDistribute super."readpyc"; + "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; + "reasonable-lens" = dontDistribute super."reasonable-lens"; + "reasonable-operational" = dontDistribute super."reasonable-operational"; + "rebase" = dontDistribute super."rebase"; + "recaptcha" = dontDistribute super."recaptcha"; + "record" = dontDistribute super."record"; + "record-aeson" = dontDistribute super."record-aeson"; + "record-gl" = dontDistribute super."record-gl"; + "record-preprocessor" = dontDistribute super."record-preprocessor"; + "record-syntax" = dontDistribute super."record-syntax"; + "records" = dontDistribute super."records"; + "records-th" = dontDistribute super."records-th"; + "recursive-line-count" = dontDistribute super."recursive-line-count"; + "redHandlers" = dontDistribute super."redHandlers"; + "reddit" = dontDistribute super."reddit"; + "redis" = dontDistribute super."redis"; + "redis-hs" = dontDistribute super."redis-hs"; + "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-simple" = dontDistribute super."redis-simple"; + "redo" = dontDistribute super."redo"; + "reedsolomon" = dontDistribute super."reedsolomon"; + "reenact" = dontDistribute super."reenact"; + "reexport-crypto-random" = dontDistribute super."reexport-crypto-random"; + "ref" = dontDistribute super."ref"; + "ref-mtl" = dontDistribute super."ref-mtl"; + "ref-tf" = dontDistribute super."ref-tf"; + "refcount" = dontDistribute super."refcount"; + "reference" = dontDistribute super."reference"; + "references" = dontDistribute super."references"; + "refh" = dontDistribute super."refh"; + "refined" = dontDistribute super."refined"; + "reflection-extras" = dontDistribute super."reflection-extras"; + "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; + "reflex" = dontDistribute super."reflex"; + "reflex-animation" = dontDistribute super."reflex-animation"; + "reflex-dom" = dontDistribute super."reflex-dom"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; + "regex-deriv" = dontDistribute super."regex-deriv"; + "regex-dfa" = dontDistribute super."regex-dfa"; + "regex-easy" = dontDistribute super."regex-easy"; + "regex-genex" = dontDistribute super."regex-genex"; + "regex-parsec" = dontDistribute super."regex-parsec"; + "regex-pderiv" = dontDistribute super."regex-pderiv"; + "regex-posix-unittest" = dontDistribute super."regex-posix-unittest"; + "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes"; + "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter"; + "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; + "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; + "regex-tre" = dontDistribute super."regex-tre"; + "regex-xmlschema" = dontDistribute super."regex-xmlschema"; + "regexchar" = dontDistribute super."regexchar"; + "regexdot" = dontDistribute super."regexdot"; + "regexp-tries" = dontDistribute super."regexp-tries"; + "regexpr" = dontDistribute super."regexpr"; + "regexpr-symbolic" = dontDistribute super."regexpr-symbolic"; + "regexqq" = dontDistribute super."regexqq"; + "regional-pointers" = dontDistribute super."regional-pointers"; + "regions" = dontDistribute super."regions"; + "regions-monadsfd" = dontDistribute super."regions-monadsfd"; + "regions-monadstf" = dontDistribute super."regions-monadstf"; + "regions-mtl" = dontDistribute super."regions-mtl"; + "regress" = dontDistribute super."regress"; + "regular" = dontDistribute super."regular"; + "regular-extras" = dontDistribute super."regular-extras"; + "regular-web" = dontDistribute super."regular-web"; + "regular-xmlpickler" = dontDistribute super."regular-xmlpickler"; + "reheat" = dontDistribute super."reheat"; + "rehoo" = dontDistribute super."rehoo"; + "rei" = dontDistribute super."rei"; + "reified-records" = dontDistribute super."reified-records"; + "reify" = dontDistribute super."reify"; + "relacion" = dontDistribute super."relacion"; + "relation" = dontDistribute super."relation"; + "relational-postgresql8" = dontDistribute super."relational-postgresql8"; + "relational-query" = dontDistribute super."relational-query"; + "relational-query-HDBC" = dontDistribute super."relational-query-HDBC"; + "relational-record" = dontDistribute super."relational-record"; + "relational-record-examples" = dontDistribute super."relational-record-examples"; + "relational-schemas" = dontDistribute super."relational-schemas"; + "relative-date" = dontDistribute super."relative-date"; + "relit" = dontDistribute super."relit"; + "rematch" = dontDistribute super."rematch"; + "rematch-text" = dontDistribute super."rematch-text"; + "remote" = dontDistribute super."remote"; + "remote-debugger" = dontDistribute super."remote-debugger"; + "remote-json" = dontDistribute super."remote-json"; + "remote-json-client" = dontDistribute super."remote-json-client"; + "remote-json-server" = dontDistribute super."remote-json-server"; + "remote-monad" = dontDistribute super."remote-monad"; + "remotion" = dontDistribute super."remotion"; + "renderable" = dontDistribute super."renderable"; + "reord" = dontDistribute super."reord"; + "reorderable" = dontDistribute super."reorderable"; + "repa-array" = dontDistribute super."repa-array"; + "repa-bytestring" = dontDistribute super."repa-bytestring"; + "repa-convert" = dontDistribute super."repa-convert"; + "repa-eval" = dontDistribute super."repa-eval"; + "repa-examples" = dontDistribute super."repa-examples"; + "repa-fftw" = dontDistribute super."repa-fftw"; + "repa-flow" = dontDistribute super."repa-flow"; + "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; + "repa-plugin" = dontDistribute super."repa-plugin"; + "repa-scalar" = dontDistribute super."repa-scalar"; + "repa-series" = dontDistribute super."repa-series"; + "repa-sndfile" = dontDistribute super."repa-sndfile"; + "repa-stream" = dontDistribute super."repa-stream"; + "repa-v4l2" = dontDistribute super."repa-v4l2"; + "repl" = dontDistribute super."repl"; + "repl-toolkit" = dontDistribute super."repl-toolkit"; + "repline" = dontDistribute super."repline"; + "repo-based-blog" = dontDistribute super."repo-based-blog"; + "repr" = dontDistribute super."repr"; + "repr-tree-syb" = dontDistribute super."repr-tree-syb"; + "representable-functors" = dontDistribute super."representable-functors"; + "representable-profunctors" = dontDistribute super."representable-profunctors"; + "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; + "request-monad" = dontDistribute super."request-monad"; + "reserve" = dontDistribute super."reserve"; + "resistor-cube" = dontDistribute super."resistor-cube"; + "resource-effect" = dontDistribute super."resource-effect"; + "resource-embed" = dontDistribute super."resource-embed"; + "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-pool-monad" = dontDistribute super."resource-pool-monad"; + "resource-simple" = dontDistribute super."resource-simple"; + "respond" = dontDistribute super."respond"; + "rest-core" = doDistribute super."rest-core_0_37"; + "rest-example" = dontDistribute super."rest-example"; + "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "restful-snap" = dontDistribute super."restful-snap"; + "restricted-workers" = dontDistribute super."restricted-workers"; + "restyle" = dontDistribute super."restyle"; + "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb-model" = dontDistribute super."rethinkdb-model"; + "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retryer" = dontDistribute super."retryer"; + "revdectime" = dontDistribute super."revdectime"; + "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-geocoding" = dontDistribute super."reverse-geocoding"; + "reversi" = dontDistribute super."reversi"; + "rewrite" = dontDistribute super."rewrite"; + "rewriting" = dontDistribute super."rewriting"; + "rex" = dontDistribute super."rex"; + "rezoom" = dontDistribute super."rezoom"; + "rfc3339" = dontDistribute super."rfc3339"; + "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; + "richreports" = dontDistribute super."richreports"; + "riemann" = dontDistribute super."riemann"; + "riff" = dontDistribute super."riff"; + "ring-buffer" = dontDistribute super."ring-buffer"; + "riot" = dontDistribute super."riot"; + "ripple" = dontDistribute super."ripple"; + "ripple-federation" = dontDistribute super."ripple-federation"; + "risc386" = dontDistribute super."risc386"; + "rivers" = dontDistribute super."rivers"; + "rivet" = dontDistribute super."rivet"; + "rivet-core" = dontDistribute super."rivet-core"; + "rivet-migration" = dontDistribute super."rivet-migration"; + "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; + "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; + "rmonad" = dontDistribute super."rmonad"; + "rncryptor" = dontDistribute super."rncryptor"; + "rng-utils" = dontDistribute super."rng-utils"; + "robin" = dontDistribute super."robin"; + "robot" = dontDistribute super."robot"; + "robots-txt" = dontDistribute super."robots-txt"; + "rocksdb-haskell" = dontDistribute super."rocksdb-haskell"; + "roguestar" = dontDistribute super."roguestar"; + "roguestar-engine" = dontDistribute super."roguestar-engine"; + "roguestar-gl" = dontDistribute super."roguestar-gl"; + "roguestar-glut" = dontDistribute super."roguestar-glut"; + "rollbar" = dontDistribute super."rollbar"; + "roller" = dontDistribute super."roller"; + "rolling-queue" = dontDistribute super."rolling-queue"; + "roman-numerals" = dontDistribute super."roman-numerals"; + "romkan" = dontDistribute super."romkan"; + "roots" = dontDistribute super."roots"; + "rope" = dontDistribute super."rope"; + "rosa" = dontDistribute super."rosa"; + "rose-trie" = dontDistribute super."rose-trie"; + "roshask" = dontDistribute super."roshask"; + "rosso" = dontDistribute super."rosso"; + "rot13" = dontDistribute super."rot13"; + "rotating-log" = dontDistribute super."rotating-log"; + "rounding" = dontDistribute super."rounding"; + "roundtrip" = dontDistribute super."roundtrip"; + "roundtrip-aeson" = dontDistribute super."roundtrip-aeson"; + "roundtrip-string" = dontDistribute super."roundtrip-string"; + "roundtrip-xml" = dontDistribute super."roundtrip-xml"; + "route-generator" = dontDistribute super."route-generator"; + "route-planning" = dontDistribute super."route-planning"; + "rowrecord" = dontDistribute super."rowrecord"; + "rpc" = dontDistribute super."rpc"; + "rpc-framework" = dontDistribute super."rpc-framework"; + "rpf" = dontDistribute super."rpf"; + "rpm" = dontDistribute super."rpm"; + "rsagl" = dontDistribute super."rsagl"; + "rsagl-frp" = dontDistribute super."rsagl-frp"; + "rsagl-math" = dontDistribute super."rsagl-math"; + "rspp" = dontDistribute super."rspp"; + "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; + "rss2irc" = dontDistribute super."rss2irc"; + "rtcm" = dontDistribute super."rtcm"; + "rtld" = dontDistribute super."rtld"; + "rtlsdr" = dontDistribute super."rtlsdr"; + "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; + "rtorrent-state" = dontDistribute super."rtorrent-state"; + "rubberband" = dontDistribute super."rubberband"; + "ruby-marshal" = dontDistribute super."ruby-marshal"; + "ruby-qq" = dontDistribute super."ruby-qq"; + "ruff" = dontDistribute super."ruff"; + "ruler" = dontDistribute super."ruler"; + "ruler-core" = dontDistribute super."ruler-core"; + "rungekutta" = dontDistribute super."rungekutta"; + "runghc" = dontDistribute super."runghc"; + "rwlock" = dontDistribute super."rwlock"; + "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; + "safe-access" = dontDistribute super."safe-access"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-length" = dontDistribute super."safe-length"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "sampling" = dontDistribute super."sampling"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandlib" = dontDistribute super."sandlib"; + "sarasvati" = dontDistribute super."sarasvati"; + "sasl" = dontDistribute super."sasl"; + "sat" = dontDistribute super."sat"; + "sat-micro-hs" = dontDistribute super."sat-micro-hs"; + "satchmo" = dontDistribute super."satchmo"; + "satchmo-backends" = dontDistribute super."satchmo-backends"; + "satchmo-examples" = dontDistribute super."satchmo-examples"; + "satchmo-funsat" = dontDistribute super."satchmo-funsat"; + "satchmo-minisat" = dontDistribute super."satchmo-minisat"; + "satchmo-toysat" = dontDistribute super."satchmo-toysat"; + "sbp" = dontDistribute super."sbp"; + "sbvPlugin" = dontDistribute super."sbvPlugin"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "scalpel" = doDistribute super."scalpel_0_2_1_1"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scat" = dontDistribute super."scat"; + "scc" = dontDistribute super."scc"; + "scenegraph" = dontDistribute super."scenegraph"; + "scgi" = dontDistribute super."scgi"; + "schedevr" = dontDistribute super."schedevr"; + "schedule-planner" = dontDistribute super."schedule-planner"; + "schedyield" = dontDistribute super."schedyield"; + "scholdoc" = dontDistribute super."scholdoc"; + "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc"; + "scholdoc-texmath" = dontDistribute super."scholdoc-texmath"; + "scholdoc-types" = dontDistribute super."scholdoc-types"; + "schonfinkeling" = dontDistribute super."schonfinkeling"; + "sci-ratio" = dontDistribute super."sci-ratio"; + "science-constants" = dontDistribute super."science-constants"; + "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scion" = dontDistribute super."scion"; + "scion-browser" = dontDistribute super."scion-browser"; + "scons2dot" = dontDistribute super."scons2dot"; + "scope" = dontDistribute super."scope"; + "scope-cairo" = dontDistribute super."scope-cairo"; + "scottish" = dontDistribute super."scottish"; + "scotty" = doDistribute super."scotty_0_10_2"; + "scotty-binding-play" = dontDistribute super."scotty-binding-play"; + "scotty-blaze" = dontDistribute super."scotty-blaze"; + "scotty-cookie" = dontDistribute super."scotty-cookie"; + "scotty-fay" = dontDistribute super."scotty-fay"; + "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-rest" = dontDistribute super."scotty-rest"; + "scotty-session" = dontDistribute super."scotty-session"; + "scotty-tls" = dontDistribute super."scotty-tls"; + "scp-streams" = dontDistribute super."scp-streams"; + "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrobble" = dontDistribute super."scrobble"; + "scroll" = dontDistribute super."scroll"; + "scrz" = dontDistribute super."scrz"; + "scyther-proof" = dontDistribute super."scyther-proof"; + "sde-solver" = dontDistribute super."sde-solver"; + "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; + "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; + "sdl2-compositor" = dontDistribute super."sdl2-compositor"; + "sdl2-image" = dontDistribute super."sdl2-image"; + "sdl2-ttf" = dontDistribute super."sdl2-ttf"; + "sdnv" = dontDistribute super."sdnv"; + "sdr" = dontDistribute super."sdr"; + "seacat" = dontDistribute super."seacat"; + "seal-module" = dontDistribute super."seal-module"; + "search" = dontDistribute super."search"; + "sec" = dontDistribute super."sec"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; + "secret-santa" = dontDistribute super."secret-santa"; + "secret-sharing" = dontDistribute super."secret-sharing"; + "secrm" = dontDistribute super."secrm"; + "secure-sockets" = dontDistribute super."secure-sockets"; + "sednaDBXML" = dontDistribute super."sednaDBXML"; + "select" = dontDistribute super."select"; + "selectors" = dontDistribute super."selectors"; + "selenium" = dontDistribute super."selenium"; + "selenium-server" = dontDistribute super."selenium-server"; + "selfrestart" = dontDistribute super."selfrestart"; + "selinux" = dontDistribute super."selinux"; + "semaphore-plus" = dontDistribute super."semaphore-plus"; + "semi-iso" = dontDistribute super."semi-iso"; + "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; + "semigroups-actions" = dontDistribute super."semigroups-actions"; + "semiring" = dontDistribute super."semiring"; + "semiring-simple" = dontDistribute super."semiring-simple"; + "semver-range" = dontDistribute super."semver-range"; + "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; + "sensenet" = dontDistribute super."sensenet"; + "sentry" = dontDistribute super."sentry"; + "senza" = dontDistribute super."senza"; + "separated" = dontDistribute super."separated"; + "seqaid" = dontDistribute super."seqaid"; + "seqid" = dontDistribute super."seqid"; + "seqid-streams" = dontDistribute super."seqid-streams"; + "seqloc-datafiles" = dontDistribute super."seqloc-datafiles"; + "sequence" = dontDistribute super."sequence"; + "sequent-core" = dontDistribute super."sequent-core"; + "sequential-index" = dontDistribute super."sequential-index"; + "sequor" = dontDistribute super."sequor"; + "serial" = dontDistribute super."serial"; + "serial-test-generators" = dontDistribute super."serial-test-generators"; + "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; + "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; + "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; + "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; + "servant-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pandoc" = dontDistribute super."servant-pandoc"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-response" = dontDistribute super."servant-response"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; + "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-extra" = doDistribute super."set-extra_1_3_2"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setgame" = dontDistribute super."setgame"; + "setops" = dontDistribute super."setops"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-grammar" = dontDistribute super."sexp-grammar"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shake-persist" = dontDistribute super."shake-persist"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-babel" = dontDistribute super."shakespeare-babel"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "sharc-timbre" = dontDistribute super."sharc-timbre"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "shivers-cfg" = dontDistribute super."shivers-cfg"; + "shoap" = dontDistribute super."shoap"; + "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; + "shorten-strings" = dontDistribute super."shorten-strings"; + "show" = dontDistribute super."show"; + "show-type" = dontDistribute super."show-type"; + "showdown" = dontDistribute super."showdown"; + "shpider" = dontDistribute super."shpider"; + "shplit" = dontDistribute super."shplit"; + "shqq" = dontDistribute super."shqq"; + "shuffle" = dontDistribute super."shuffle"; + "sieve" = dontDistribute super."sieve"; + "sifflet" = dontDistribute super."sifflet"; + "sifflet-lib" = dontDistribute super."sifflet-lib"; + "sign" = dontDistribute super."sign"; + "signals" = dontDistribute super."signals"; + "signed-multiset" = dontDistribute super."signed-multiset"; + "simd" = dontDistribute super."simd"; + "simgi" = dontDistribute super."simgi"; + "simple-actors" = dontDistribute super."simple-actors"; + "simple-atom" = dontDistribute super."simple-atom"; + "simple-bluetooth" = dontDistribute super."simple-bluetooth"; + "simple-c-value" = dontDistribute super."simple-c-value"; + "simple-conduit" = dontDistribute super."simple-conduit"; + "simple-config" = dontDistribute super."simple-config"; + "simple-css" = dontDistribute super."simple-css"; + "simple-eval" = dontDistribute super."simple-eval"; + "simple-firewire" = dontDistribute super."simple-firewire"; + "simple-form" = dontDistribute super."simple-form"; + "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm"; + "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr"; + "simple-get-opt" = dontDistribute super."simple-get-opt"; + "simple-index" = dontDistribute super."simple-index"; + "simple-log" = dontDistribute super."simple-log"; + "simple-log-syslog" = dontDistribute super."simple-log-syslog"; + "simple-neural-networks" = dontDistribute super."simple-neural-networks"; + "simple-nix" = dontDistribute super."simple-nix"; + "simple-observer" = dontDistribute super."simple-observer"; + "simple-pascal" = dontDistribute super."simple-pascal"; + "simple-pipe" = dontDistribute super."simple-pipe"; + "simple-rope" = dontDistribute super."simple-rope"; + "simple-server" = dontDistribute super."simple-server"; + "simple-sessions" = dontDistribute super."simple-sessions"; + "simple-sql-parser" = dontDistribute super."simple-sql-parser"; + "simple-stacked-vm" = dontDistribute super."simple-stacked-vm"; + "simple-tabular" = dontDistribute super."simple-tabular"; + "simple-vec3" = dontDistribute super."simple-vec3"; + "simpleargs" = dontDistribute super."simpleargs"; + "simpleirc" = dontDistribute super."simpleirc"; + "simpleirc-lens" = dontDistribute super."simpleirc-lens"; + "simplenote" = dontDistribute super."simplenote"; + "simpleprelude" = dontDistribute super."simpleprelude"; + "simplesmtpclient" = dontDistribute super."simplesmtpclient"; + "simplessh" = dontDistribute super."simplessh"; + "simplest-sqlite" = dontDistribute super."simplest-sqlite"; + "simplex" = dontDistribute super."simplex"; + "simplex-basic" = dontDistribute super."simplex-basic"; + "simseq" = dontDistribute super."simseq"; + "simtreelo" = dontDistribute super."simtreelo"; + "sindre" = dontDistribute super."sindre"; + "singleton-nats" = dontDistribute super."singleton-nats"; + "sink" = dontDistribute super."sink"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "sized" = dontDistribute super."sized"; + "sized-types" = dontDistribute super."sized-types"; + "sized-vector" = dontDistribute super."sized-vector"; + "sizes" = dontDistribute super."sizes"; + "sjsp" = dontDistribute super."sjsp"; + "skeleton" = dontDistribute super."skeleton"; + "skell" = dontDistribute super."skell"; + "skemmtun" = dontDistribute super."skemmtun"; + "skype4hs" = dontDistribute super."skype4hs"; + "skypelogexport" = dontDistribute super."skypelogexport"; + "slack" = dontDistribute super."slack"; + "slack-api" = dontDistribute super."slack-api"; + "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "sleep" = dontDistribute super."sleep"; + "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; + "slidemews" = dontDistribute super."slidemews"; + "sloane" = dontDistribute super."sloane"; + "slot-lambda" = dontDistribute super."slot-lambda"; + "sloth" = dontDistribute super."sloth"; + "smallarray" = dontDistribute super."smallarray"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "smt-lib" = dontDistribute super."smt-lib"; + "smtlib2" = dontDistribute super."smtlib2"; + "smtp-mail-ng" = dontDistribute super."smtp-mail-ng"; + "smtp2mta" = dontDistribute super."smtp2mta"; + "smtps-gmail" = dontDistribute super."smtps-gmail"; + "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; + "snap-accept" = dontDistribute super."snap-accept"; + "snap-app" = dontDistribute super."snap-app"; + "snap-auth-cli" = dontDistribute super."snap-auth-cli"; + "snap-blaze" = dontDistribute super."snap-blaze"; + "snap-blaze-clay" = dontDistribute super."snap-blaze-clay"; + "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities"; + "snap-cors" = dontDistribute super."snap-cors"; + "snap-elm" = dontDistribute super."snap-elm"; + "snap-error-collector" = dontDistribute super."snap-error-collector"; + "snap-extras" = dontDistribute super."snap-extras"; + "snap-language" = dontDistribute super."snap-language"; + "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic"; + "snap-loader-static" = dontDistribute super."snap-loader-static"; + "snap-predicates" = dontDistribute super."snap-predicates"; + "snap-testing" = dontDistribute super."snap-testing"; + "snap-utils" = dontDistribute super."snap-utils"; + "snap-web-routes" = dontDistribute super."snap-web-routes"; + "snaplet-acid-state" = dontDistribute super."snaplet-acid-state"; + "snaplet-actionlog" = dontDistribute super."snaplet-actionlog"; + "snaplet-amqp" = dontDistribute super."snaplet-amqp"; + "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid"; + "snaplet-coffee" = dontDistribute super."snaplet-coffee"; + "snaplet-css-min" = dontDistribute super."snaplet-css-min"; + "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; + "snaplet-hasql" = dontDistribute super."snaplet-hasql"; + "snaplet-haxl" = dontDistribute super."snaplet-haxl"; + "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; + "snaplet-hslogger" = dontDistribute super."snaplet-hslogger"; + "snaplet-i18n" = dontDistribute super."snaplet-i18n"; + "snaplet-influxdb" = dontDistribute super."snaplet-influxdb"; + "snaplet-lss" = dontDistribute super."snaplet-lss"; + "snaplet-mandrill" = dontDistribute super."snaplet-mandrill"; + "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB"; + "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic"; + "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple"; + "snaplet-oauth" = dontDistribute super."snaplet-oauth"; + "snaplet-persistent" = dontDistribute super."snaplet-persistent"; + "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple"; + "snaplet-postmark" = dontDistribute super."snaplet-postmark"; + "snaplet-purescript" = dontDistribute super."snaplet-purescript"; + "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha"; + "snaplet-redis" = dontDistribute super."snaplet-redis"; + "snaplet-redson" = dontDistribute super."snaplet-redson"; + "snaplet-rest" = dontDistribute super."snaplet-rest"; + "snaplet-riak" = dontDistribute super."snaplet-riak"; + "snaplet-sass" = dontDistribute super."snaplet-sass"; + "snaplet-sedna" = dontDistribute super."snaplet-sedna"; + "snaplet-ses-html" = dontDistribute super."snaplet-ses-html"; + "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple"; + "snaplet-stripe" = dontDistribute super."snaplet-stripe"; + "snaplet-tasks" = dontDistribute super."snaplet-tasks"; + "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions"; + "snaplet-wordpress" = dontDistribute super."snaplet-wordpress"; + "snappy" = dontDistribute super."snappy"; + "snappy-conduit" = dontDistribute super."snappy-conduit"; + "snappy-framing" = dontDistribute super."snappy-framing"; + "snappy-iteratee" = dontDistribute super."snappy-iteratee"; + "sndfile-enumerators" = dontDistribute super."sndfile-enumerators"; + "sneakyterm" = dontDistribute super."sneakyterm"; + "sneathlane-haste" = dontDistribute super."sneathlane-haste"; + "snippet-extractor" = dontDistribute super."snippet-extractor"; + "snm" = dontDistribute super."snm"; + "snow-white" = dontDistribute super."snow-white"; + "snowball" = dontDistribute super."snowball"; + "snowglobe" = dontDistribute super."snowglobe"; + "sock2stream" = dontDistribute super."sock2stream"; + "sockaddr" = dontDistribute super."sockaddr"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "socketson" = dontDistribute super."socketson"; + "soegtk" = dontDistribute super."soegtk"; + "sonic-visualiser" = dontDistribute super."sonic-visualiser"; + "sophia" = dontDistribute super."sophia"; + "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; + "sorted" = dontDistribute super."sorted"; + "sorting" = dontDistribute super."sorting"; + "sorty" = dontDistribute super."sorty"; + "sound-collage" = dontDistribute super."sound-collage"; + "sounddelay" = dontDistribute super."sounddelay"; + "source-code-server" = dontDistribute super."source-code-server"; + "sousit" = dontDistribute super."sousit"; + "sox" = dontDistribute super."sox"; + "soxlib" = dontDistribute super."soxlib"; + "soyuz" = dontDistribute super."soyuz"; + "spacefill" = dontDistribute super."spacefill"; + "spacepart" = dontDistribute super."spacepart"; + "spaceprobe" = dontDistribute super."spaceprobe"; + "spanout" = dontDistribute super."spanout"; + "sparse" = dontDistribute super."sparse"; + "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; + "sparsebit" = dontDistribute super."sparsebit"; + "sparsecheck" = dontDistribute super."sparsecheck"; + "sparser" = dontDistribute super."sparser"; + "spata" = dontDistribute super."spata"; + "spatial-math" = dontDistribute super."spatial-math"; + "spawn" = dontDistribute super."spawn"; + "spe" = dontDistribute super."spe"; + "special-functors" = dontDistribute super."special-functors"; + "special-keys" = dontDistribute super."special-keys"; + "specialize-th" = dontDistribute super."specialize-th"; + "species" = dontDistribute super."species"; + "speculation-transformers" = dontDistribute super."speculation-transformers"; + "spelling-suggest" = dontDistribute super."spelling-suggest"; + "sphero" = dontDistribute super."sphero"; + "sphinx-cli" = dontDistribute super."sphinx-cli"; + "spice" = dontDistribute super."spice"; + "spike" = dontDistribute super."spike"; + "spine" = dontDistribute super."spine"; + "spir-v" = dontDistribute super."spir-v"; + "splay" = dontDistribute super."splay"; + "splaytree" = dontDistribute super."splaytree"; + "spline3" = dontDistribute super."spline3"; + "splines" = dontDistribute super."splines"; + "split-channel" = dontDistribute super."split-channel"; + "split-record" = dontDistribute super."split-record"; + "split-tchan" = dontDistribute super."split-tchan"; + "splitter" = dontDistribute super."splitter"; + "splot" = dontDistribute super."splot"; + "spool" = dontDistribute super."spool"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "spsa" = dontDistribute super."spsa"; + "spy" = dontDistribute super."spy"; + "sql-simple" = dontDistribute super."sql-simple"; + "sql-simple-mysql" = dontDistribute super."sql-simple-mysql"; + "sql-simple-pool" = dontDistribute super."sql-simple-pool"; + "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql"; + "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite"; + "sql-words" = dontDistribute super."sql-words"; + "sqlite" = dontDistribute super."sqlite"; + "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed"; + "sqlvalue-list" = dontDistribute super."sqlvalue-list"; + "squeeze" = dontDistribute super."squeeze"; + "sr-extra" = dontDistribute super."sr-extra"; + "srcinst" = dontDistribute super."srcinst"; + "srec" = dontDistribute super."srec"; + "sscgi" = dontDistribute super."sscgi"; + "ssh" = dontDistribute super."ssh"; + "sshd-lint" = dontDistribute super."sshd-lint"; + "sshtun" = dontDistribute super."sshtun"; + "sssp" = dontDistribute super."sssp"; + "sstable" = dontDistribute super."sstable"; + "ssv" = dontDistribute super."ssv"; + "stable-heap" = dontDistribute super."stable-heap"; + "stable-maps" = dontDistribute super."stable-maps"; + "stable-marriage" = dontDistribute super."stable-marriage"; + "stable-memo" = dontDistribute super."stable-memo"; + "stable-tree" = dontDistribute super."stable-tree"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; + "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; + "standalone-haddock" = dontDistribute super."standalone-haddock"; + "star-to-star" = dontDistribute super."star-to-star"; + "star-to-star-contra" = dontDistribute super."star-to-star-contra"; + "starling" = dontDistribute super."starling"; + "starrover2" = dontDistribute super."starrover2"; + "stash" = dontDistribute super."stash"; + "state" = dontDistribute super."state"; + "state-record" = dontDistribute super."state-record"; + "statechart" = dontDistribute super."statechart"; + "stateful-mtl" = dontDistribute super."stateful-mtl"; + "statethread" = dontDistribute super."statethread"; + "statgrab" = dontDistribute super."statgrab"; + "static-hash" = dontDistribute super."static-hash"; + "static-resources" = dontDistribute super."static-resources"; + "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; + "statistics-fusion" = dontDistribute super."statistics-fusion"; + "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; + "stats" = dontDistribute super."stats"; + "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; + "statsd-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; + "stm-firehose" = dontDistribute super."stm-firehose"; + "stm-io-hooks" = dontDistribute super."stm-io-hooks"; + "stm-lifted" = dontDistribute super."stm-lifted"; + "stm-linkedlist" = dontDistribute super."stm-linkedlist"; + "stm-orelse-io" = dontDistribute super."stm-orelse-io"; + "stm-promise" = dontDistribute super."stm-promise"; + "stm-queue-extras" = dontDistribute super."stm-queue-extras"; + "stm-sbchan" = dontDistribute super."stm-sbchan"; + "stm-split" = dontDistribute super."stm-split"; + "stm-tlist" = dontDistribute super."stm-tlist"; + "stmcontrol" = dontDistribute super."stmcontrol"; + "stomp-conduit" = dontDistribute super."stomp-conduit"; + "stomp-patterns" = dontDistribute super."stomp-patterns"; + "stomp-queue" = dontDistribute super."stomp-queue"; + "stompl" = dontDistribute super."stompl"; + "stopwatch" = dontDistribute super."stopwatch"; + "storable" = dontDistribute super."storable"; + "storable-record" = dontDistribute super."storable-record"; + "storable-static-array" = dontDistribute super."storable-static-array"; + "storable-tuple" = dontDistribute super."storable-tuple"; + "storablevector" = dontDistribute super."storablevector"; + "storablevector-carray" = dontDistribute super."storablevector-carray"; + "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; + "str" = dontDistribute super."str"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "strict-base-types" = doDistribute super."strict-base-types_0_4_0"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin"; + "strict-identity" = dontDistribute super."strict-identity"; + "strict-io" = dontDistribute super."strict-io"; + "strictify" = dontDistribute super."strictify"; + "strictly" = dontDistribute super."strictly"; + "string" = dontDistribute super."string"; + "string-conv" = dontDistribute super."string-conv"; + "string-convert" = dontDistribute super."string-convert"; + "string-quote" = dontDistribute super."string-quote"; + "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; + "stringlike" = dontDistribute super."stringlike"; + "stringprep" = dontDistribute super."stringprep"; + "strings" = dontDistribute super."strings"; + "stringtable-atom" = dontDistribute super."stringtable-atom"; + "strio" = dontDistribute super."strio"; + "stripe" = dontDistribute super."stripe"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; + "strive" = dontDistribute super."strive"; + "strptime" = dontDistribute super."strptime"; + "structs" = dontDistribute super."structs"; + "structural-induction" = dontDistribute super."structural-induction"; + "structured-haskell-mode" = dontDistribute super."structured-haskell-mode"; + "structured-mongoDB" = dontDistribute super."structured-mongoDB"; + "structures" = dontDistribute super."structures"; + "stunclient" = dontDistribute super."stunclient"; + "stunts" = dontDistribute super."stunts"; + "stylized" = dontDistribute super."stylized"; + "sub-state" = dontDistribute super."sub-state"; + "subhask" = dontDistribute super."subhask"; + "subleq-toolchain" = dontDistribute super."subleq-toolchain"; + "subnet" = dontDistribute super."subnet"; + "subtitleParser" = dontDistribute super."subtitleParser"; + "subtitles" = dontDistribute super."subtitles"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sump" = dontDistribute super."sump"; + "sundown" = dontDistribute super."sundown"; + "sunlight" = dontDistribute super."sunlight"; + "sunroof-compiler" = dontDistribute super."sunroof-compiler"; + "sunroof-examples" = dontDistribute super."sunroof-examples"; + "sunroof-server" = dontDistribute super."sunroof-server"; + "super-user-spark" = dontDistribute super."super-user-spark"; + "supercollider-ht" = dontDistribute super."supercollider-ht"; + "supercollider-midi" = dontDistribute super."supercollider-midi"; + "superdoc" = dontDistribute super."superdoc"; + "supero" = dontDistribute super."supero"; + "supervisor" = dontDistribute super."supervisor"; + "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; + "svg2q" = dontDistribute super."svg2q"; + "svgcairo" = dontDistribute super."svgcairo"; + "svgutils" = dontDistribute super."svgutils"; + "svm" = dontDistribute super."svm"; + "svm-light-utils" = dontDistribute super."svm-light-utils"; + "svm-simple" = dontDistribute super."svm-simple"; + "svndump" = dontDistribute super."svndump"; + "swagger2" = doDistribute super."swagger2_1_2_1"; + "swapper" = dontDistribute super."swapper"; + "swearjure" = dontDistribute super."swearjure"; + "swf" = dontDistribute super."swf"; + "swift-lda" = dontDistribute super."swift-lda"; + "swish" = dontDistribute super."swish"; + "sws" = dontDistribute super."sws"; + "syb-extras" = dontDistribute super."syb-extras"; + "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; + "sylvia" = dontDistribute super."sylvia"; + "sym" = dontDistribute super."sym"; + "sym-plot" = dontDistribute super."sym-plot"; + "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; + "sync" = dontDistribute super."sync"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "t-regex" = dontDistribute super."t-regex"; + "ta" = dontDistribute super."ta"; + "table" = dontDistribute super."table"; + "table-tennis" = dontDistribute super."table-tennis"; + "tableaux" = dontDistribute super."tableaux"; + "tables" = dontDistribute super."tables"; + "tablestorage" = dontDistribute super."tablestorage"; + "tabloid" = dontDistribute super."tabloid"; + "taffybar" = dontDistribute super."taffybar"; + "tag-bits" = dontDistribute super."tag-bits"; + "tag-stream" = dontDistribute super."tag-stream"; + "tagchup" = dontDistribute super."tagchup"; + "tagged-exception-core" = dontDistribute super."tagged-exception-core"; + "tagged-list" = dontDistribute super."tagged-list"; + "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; + "tagged-transformer" = dontDistribute super."tagged-transformer"; + "tagging" = dontDistribute super."tagging"; + "taggy" = dontDistribute super."taggy"; + "taggy-lens" = dontDistribute super."taggy-lens"; + "taglib" = dontDistribute super."taglib"; + "taglib-api" = dontDistribute super."taglib-api"; + "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_8"; + "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "takahashi" = dontDistribute super."takahashi"; + "takusen-oracle" = dontDistribute super."takusen-oracle"; + "tamarin-prover" = dontDistribute super."tamarin-prover"; + "tamarin-prover-term" = dontDistribute super."tamarin-prover-term"; + "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; + "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; + "tamper" = dontDistribute super."tamper"; + "target" = dontDistribute super."target"; + "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; + "taskpool" = dontDistribute super."taskpool"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; + "tasty-integrate" = dontDistribute super."tasty-integrate"; + "tasty-laws" = dontDistribute super."tasty-laws"; + "tasty-lens" = dontDistribute super."tasty-lens"; + "tasty-program" = dontDistribute super."tasty-program"; + "tateti-tateti" = dontDistribute super."tateti-tateti"; + "tau" = dontDistribute super."tau"; + "tbox" = dontDistribute super."tbox"; + "tcache-AWS" = dontDistribute super."tcache-AWS"; + "tccli" = dontDistribute super."tccli"; + "tce-conf" = dontDistribute super."tce-conf"; + "tconfig" = dontDistribute super."tconfig"; + "tcp" = dontDistribute super."tcp"; + "tdd-util" = dontDistribute super."tdd-util"; + "tdoc" = dontDistribute super."tdoc"; + "teams" = dontDistribute super."teams"; + "teeth" = dontDistribute super."teeth"; + "telegram" = dontDistribute super."telegram"; + "telegram-api" = dontDistribute super."telegram-api"; + "teleport" = dontDistribute super."teleport"; + "template-default" = dontDistribute super."template-default"; + "template-haskell-util" = dontDistribute super."template-haskell-util"; + "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; + "templatepg" = dontDistribute super."templatepg"; + "templater" = dontDistribute super."templater"; + "tempodb" = dontDistribute super."tempodb"; + "temporal-csound" = dontDistribute super."temporal-csound"; + "temporal-media" = dontDistribute super."temporal-media"; + "temporal-music-notation" = dontDistribute super."temporal-music-notation"; + "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo"; + "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western"; + "temporary-resourcet" = dontDistribute super."temporary-resourcet"; + "tempus" = dontDistribute super."tempus"; + "tempus-fugit" = dontDistribute super."tempus-fugit"; + "tensor" = dontDistribute super."tensor"; + "term-rewriting" = dontDistribute super."term-rewriting"; + "termbox-bindings" = dontDistribute super."termbox-bindings"; + "termination-combinators" = dontDistribute super."termination-combinators"; + "terminfo" = doDistribute super."terminfo_0_4_0_2"; + "terminfo-hs" = dontDistribute super."terminfo-hs"; + "termplot" = dontDistribute super."termplot"; + "terntup" = dontDistribute super."terntup"; + "terrahs" = dontDistribute super."terrahs"; + "tersmu" = dontDistribute super."tersmu"; + "test-framework-doctest" = dontDistribute super."test-framework-doctest"; + "test-framework-golden" = dontDistribute super."test-framework-golden"; + "test-framework-program" = dontDistribute super."test-framework-program"; + "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck"; + "test-framework-sandbox" = dontDistribute super."test-framework-sandbox"; + "test-framework-skip" = dontDistribute super."test-framework-skip"; + "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat"; + "test-invariant" = dontDistribute super."test-invariant"; + "test-pkg" = dontDistribute super."test-pkg"; + "test-sandbox" = dontDistribute super."test-sandbox"; + "test-sandbox-compose" = dontDistribute super."test-sandbox-compose"; + "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit"; + "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; + "test-shouldbe" = dontDistribute super."test-shouldbe"; + "testPkg" = dontDistribute super."testPkg"; + "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; + "testloop" = dontDistribute super."testloop"; + "testpack" = dontDistribute super."testpack"; + "testpattern" = dontDistribute super."testpattern"; + "testrunner" = dontDistribute super."testrunner"; + "tetris" = dontDistribute super."tetris"; + "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4_2"; + "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; + "text-and-plots" = dontDistribute super."text-and-plots"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-ldap" = dontDistribute super."text-ldap"; + "text-locale-encoding" = dontDistribute super."text-locale-encoding"; + "text-normal" = dontDistribute super."text-normal"; + "text-position" = dontDistribute super."text-position"; + "text-postgresql" = dontDistribute super."text-postgresql"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-region" = dontDistribute super."text-region"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "text-show-instances" = dontDistribute super."text-show-instances"; + "text-stream-decode" = dontDistribute super."text-stream-decode"; + "text-utf7" = dontDistribute super."text-utf7"; + "text-xml-generic" = dontDistribute super."text-xml-generic"; + "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text1" = dontDistribute super."text1"; + "textPlot" = dontDistribute super."textPlot"; + "textmatetags" = dontDistribute super."textmatetags"; + "textocat-api" = dontDistribute super."textocat-api"; + "texts" = dontDistribute super."texts"; + "textual" = dontDistribute super."textual"; + "tfp" = dontDistribute super."tfp"; + "tfp-th" = dontDistribute super."tfp-th"; + "tftp" = dontDistribute super."tftp"; + "tga" = dontDistribute super."tga"; + "th-alpha" = dontDistribute super."th-alpha"; + "th-build" = dontDistribute super."th-build"; + "th-cas" = dontDistribute super."th-cas"; + "th-context" = dontDistribute super."th-context"; + "th-fold" = dontDistribute super."th-fold"; + "th-inline-io-action" = dontDistribute super."th-inline-io-action"; + "th-instance-reification" = dontDistribute super."th-instance-reification"; + "th-instances" = dontDistribute super."th-instances"; + "th-kinds" = dontDistribute super."th-kinds"; + "th-kinds-fork" = dontDistribute super."th-kinds-fork"; + "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-printf" = dontDistribute super."th-printf"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "thespian" = dontDistribute super."thespian"; + "theta-functions" = dontDistribute super."theta-functions"; + "thih" = dontDistribute super."thih"; + "thimk" = dontDistribute super."thimk"; + "thorn" = dontDistribute super."thorn"; + "thread-local-storage" = dontDistribute super."thread-local-storage"; + "threadPool" = dontDistribute super."threadPool"; + "threadmanager" = dontDistribute super."threadmanager"; + "threads-pool" = dontDistribute super."threads-pool"; + "threads-supervisor" = dontDistribute super."threads-supervisor"; + "threadscope" = dontDistribute super."threadscope"; + "threefish" = dontDistribute super."threefish"; + "threepenny-gui" = dontDistribute super."threepenny-gui"; + "thrift" = dontDistribute super."thrift"; + "thrist" = dontDistribute super."thrist"; + "throttle" = dontDistribute super."throttle"; + "thumbnail" = dontDistribute super."thumbnail"; + "tianbar" = dontDistribute super."tianbar"; + "tic-tac-toe" = dontDistribute super."tic-tac-toe"; + "tickle" = dontDistribute super."tickle"; + "tictactoe3d" = dontDistribute super."tictactoe3d"; + "tidal" = dontDistribute super."tidal"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "tidal-vis" = dontDistribute super."tidal-vis"; + "tie-knot" = dontDistribute super."tie-knot"; + "tiempo" = dontDistribute super."tiempo"; + "tiger" = dontDistribute super."tiger"; + "tight-apply" = dontDistribute super."tight-apply"; + "tightrope" = dontDistribute super."tightrope"; + "tighttp" = dontDistribute super."tighttp"; + "tilings" = dontDistribute super."tilings"; + "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; + "time-extras" = dontDistribute super."time-extras"; + "time-exts" = dontDistribute super."time-exts"; + "time-http" = dontDistribute super."time-http"; + "time-interval" = dontDistribute super."time-interval"; + "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; + "time-patterns" = dontDistribute super."time-patterns"; + "time-qq" = dontDistribute super."time-qq"; + "time-recurrence" = dontDistribute super."time-recurrence"; + "time-series" = dontDistribute super."time-series"; + "time-w3c" = dontDistribute super."time-w3c"; + "timecalc" = dontDistribute super."timecalc"; + "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; + "timemap" = dontDistribute super."timemap"; + "timeout" = dontDistribute super."timeout"; + "timeout-control" = dontDistribute super."timeout-control"; + "timeout-with-results" = dontDistribute super."timeout-with-results"; + "timeparsers" = dontDistribute super."timeparsers"; + "timeplot" = dontDistribute super."timeplot"; + "timers" = dontDistribute super."timers"; + "timers-updatable" = dontDistribute super."timers-updatable"; + "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; + "timestamper" = dontDistribute super."timestamper"; + "timezone-olson-th" = dontDistribute super."timezone-olson-th"; + "timing-convenience" = dontDistribute super."timing-convenience"; + "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; + "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; + "tip-lib" = dontDistribute super."tip-lib"; + "tiphys" = dontDistribute super."tiphys"; + "titlecase" = dontDistribute super."titlecase"; + "tkhs" = dontDistribute super."tkhs"; + "tkyprof" = dontDistribute super."tkyprof"; + "tld" = dontDistribute super."tld"; + "tls-extra" = dontDistribute super."tls-extra"; + "tmpl" = dontDistribute super."tmpl"; + "tn" = dontDistribute super."tn"; + "tnet" = dontDistribute super."tnet"; + "to-haskell" = dontDistribute super."to-haskell"; + "to-string-class" = dontDistribute super."to-string-class"; + "to-string-instances" = dontDistribute super."to-string-instances"; + "todos" = dontDistribute super."todos"; + "tofromxml" = dontDistribute super."tofromxml"; + "toilet" = dontDistribute super."toilet"; + "tokenify" = dontDistribute super."tokenify"; + "tokenize" = dontDistribute super."tokenize"; + "toktok" = dontDistribute super."toktok"; + "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell"; + "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell"; + "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal"; + "toml" = dontDistribute super."toml"; + "toolshed" = dontDistribute super."toolshed"; + "topkata" = dontDistribute super."topkata"; + "torch" = dontDistribute super."torch"; + "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; + "total-map" = dontDistribute super."total-map"; + "total-maps" = dontDistribute super."total-maps"; + "touched" = dontDistribute super."touched"; + "toysolver" = dontDistribute super."toysolver"; + "tpdb" = dontDistribute super."tpdb"; + "trace" = dontDistribute super."trace"; + "trace-call" = dontDistribute super."trace-call"; + "trace-function-call" = dontDistribute super."trace-function-call"; + "traced" = dontDistribute super."traced"; + "tracer" = dontDistribute super."tracer"; + "tracker" = dontDistribute super."tracker"; + "trajectory" = dontDistribute super."trajectory"; + "transactional-events" = dontDistribute super."transactional-events"; + "transf" = dontDistribute super."transf"; + "transformations" = dontDistribute super."transformations"; + "transformers-abort" = dontDistribute super."transformers-abort"; + "transformers-compose" = dontDistribute super."transformers-compose"; + "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-free" = dontDistribute super."transformers-free"; + "transformers-runnable" = dontDistribute super."transformers-runnable"; + "transformers-supply" = dontDistribute super."transformers-supply"; + "transient" = dontDistribute super."transient"; + "translatable-intset" = dontDistribute super."translatable-intset"; + "translate" = dontDistribute super."translate"; + "travis" = dontDistribute super."travis"; + "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; + "trawl" = dontDistribute super."trawl"; + "traypoweroff" = dontDistribute super."traypoweroff"; + "tree-fun" = dontDistribute super."tree-fun"; + "tree-monad" = dontDistribute super."tree-monad"; + "treemap-html" = dontDistribute super."treemap-html"; + "treemap-html-tools" = dontDistribute super."treemap-html-tools"; + "treersec" = dontDistribute super."treersec"; + "treeviz" = dontDistribute super."treeviz"; + "tremulous-query" = dontDistribute super."tremulous-query"; + "trhsx" = dontDistribute super."trhsx"; + "triangulation" = dontDistribute super."triangulation"; + "trimpolya" = dontDistribute super."trimpolya"; + "tripLL" = dontDistribute super."tripLL"; + "trivia" = dontDistribute super."trivia"; + "trivial-constraint" = dontDistribute super."trivial-constraint"; + "tropical" = dontDistribute super."tropical"; + "truelevel" = dontDistribute super."truelevel"; + "trurl" = dontDistribute super."trurl"; + "truthful" = dontDistribute super."truthful"; + "tsession" = dontDistribute super."tsession"; + "tsession-happstack" = dontDistribute super."tsession-happstack"; + "tskiplist" = dontDistribute super."tskiplist"; + "tslib" = dontDistribute super."tslib"; + "tslogger" = dontDistribute super."tslogger"; + "tsp-viz" = dontDistribute super."tsp-viz"; + "tsparse" = dontDistribute super."tsparse"; + "tst" = dontDistribute super."tst"; + "tsvsql" = dontDistribute super."tsvsql"; + "tttool" = doDistribute super."tttool_1_5_1"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple" = dontDistribute super."tuple"; + "tuple-gen" = dontDistribute super."tuple-gen"; + "tuple-generic" = dontDistribute super."tuple-generic"; + "tuple-hlist" = dontDistribute super."tuple-hlist"; + "tuple-lenses" = dontDistribute super."tuple-lenses"; + "tuple-morph" = dontDistribute super."tuple-morph"; + "tupleinstances" = dontDistribute super."tupleinstances"; + "turing" = dontDistribute super."turing"; + "turing-music" = dontDistribute super."turing-music"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "turtle-options" = dontDistribute super."turtle-options"; + "tweak" = dontDistribute super."tweak"; + "twee" = dontDistribute super."twee"; + "twentefp" = dontDistribute super."twentefp"; + "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; + "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees"; + "twentefp-graphs" = dontDistribute super."twentefp-graphs"; + "twentefp-number" = dontDistribute super."twentefp-number"; + "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; + "twentefp-trees" = dontDistribute super."twentefp-trees"; + "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; + "twhs" = dontDistribute super."twhs"; + "twidge" = dontDistribute super."twidge"; + "twilight-stm" = dontDistribute super."twilight-stm"; + "twilio" = dontDistribute super."twilio"; + "twill" = dontDistribute super."twill"; + "twiml" = dontDistribute super."twiml"; + "twine" = dontDistribute super."twine"; + "twisty" = dontDistribute super."twisty"; + "twitch" = dontDistribute super."twitch"; + "twitter" = dontDistribute super."twitter"; + "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "tx" = dontDistribute super."tx"; + "txt-sushi" = dontDistribute super."txt-sushi"; + "txt2rtf" = dontDistribute super."txt2rtf"; + "txtblk" = dontDistribute super."txtblk"; + "ty" = dontDistribute super."ty"; + "typalyze" = dontDistribute super."typalyze"; + "type-booleans" = dontDistribute super."type-booleans"; + "type-cache" = dontDistribute super."type-cache"; + "type-cereal" = dontDistribute super."type-cereal"; + "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; + "type-digits" = dontDistribute super."type-digits"; + "type-equality" = dontDistribute super."type-equality"; + "type-equality-check" = dontDistribute super."type-equality-check"; + "type-fun" = dontDistribute super."type-fun"; + "type-functions" = dontDistribute super."type-functions"; + "type-hint" = dontDistribute super."type-hint"; + "type-int" = dontDistribute super."type-int"; + "type-iso" = dontDistribute super."type-iso"; + "type-level" = dontDistribute super."type-level"; + "type-level-bst" = dontDistribute super."type-level-bst"; + "type-level-natural-number" = dontDistribute super."type-level-natural-number"; + "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction"; + "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; + "type-level-sets" = dontDistribute super."type-level-sets"; + "type-level-tf" = dontDistribute super."type-level-tf"; + "type-natural" = dontDistribute super."type-natural"; + "type-ord" = dontDistribute super."type-ord"; + "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; + "type-prelude" = dontDistribute super."type-prelude"; + "type-settheory" = dontDistribute super."type-settheory"; + "type-spine" = dontDistribute super."type-spine"; + "type-structure" = dontDistribute super."type-structure"; + "type-sub-th" = dontDistribute super."type-sub-th"; + "type-unary" = dontDistribute super."type-unary"; + "typeable-th" = dontDistribute super."typeable-th"; + "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; + "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; + "typedquery" = dontDistribute super."typedquery"; + "typehash" = dontDistribute super."typehash"; + "typelevel" = dontDistribute super."typelevel"; + "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typeof" = dontDistribute super."typeof"; + "typeparams" = dontDistribute super."typeparams"; + "typesafe-endian" = dontDistribute super."typesafe-endian"; + "typescript-docs" = dontDistribute super."typescript-docs"; + "typical" = dontDistribute super."typical"; + "typography-geometry" = dontDistribute super."typography-geometry"; + "uAgda" = dontDistribute super."uAgda"; + "ua-parser" = dontDistribute super."ua-parser"; + "uacpid" = dontDistribute super."uacpid"; + "uberlast" = dontDistribute super."uberlast"; + "uconv" = dontDistribute super."uconv"; + "udbus" = dontDistribute super."udbus"; + "udbus-model" = dontDistribute super."udbus-model"; + "udcode" = dontDistribute super."udcode"; + "udev" = dontDistribute super."udev"; + "uhc-light" = dontDistribute super."uhc-light"; + "uhc-util" = dontDistribute super."uhc-util"; + "uhexdump" = dontDistribute super."uhexdump"; + "uhttpc" = dontDistribute super."uhttpc"; + "ui-command" = dontDistribute super."ui-command"; + "uid" = dontDistribute super."uid"; + "una" = dontDistribute super."una"; + "unagi-chan" = dontDistribute super."unagi-chan"; + "unagi-streams" = dontDistribute super."unagi-streams"; + "unamb" = dontDistribute super."unamb"; + "unamb-custom" = dontDistribute super."unamb-custom"; + "unbound" = dontDistribute super."unbound"; + "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; + "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; + "unfoldable" = dontDistribute super."unfoldable"; + "ungadtagger" = dontDistribute super."ungadtagger"; + "uni-events" = dontDistribute super."uni-events"; + "uni-graphs" = dontDistribute super."uni-graphs"; + "uni-htk" = dontDistribute super."uni-htk"; + "uni-posixutil" = dontDistribute super."uni-posixutil"; + "uni-reactor" = dontDistribute super."uni-reactor"; + "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph"; + "uni-util" = dontDistribute super."uni-util"; + "unicode" = dontDistribute super."unicode"; + "unicode-names" = dontDistribute super."unicode-names"; + "unicode-normalization" = dontDistribute super."unicode-normalization"; + "unicode-prelude" = dontDistribute super."unicode-prelude"; + "unicode-properties" = dontDistribute super."unicode-properties"; + "unicode-show" = dontDistribute super."unicode-show"; + "unicode-symbols" = dontDistribute super."unicode-symbols"; + "unicoder" = dontDistribute super."unicoder"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; + "union-find-array" = dontDistribute super."union-find-array"; + "union-map" = dontDistribute super."union-map"; + "unique" = dontDistribute super."unique"; + "unique-logic" = dontDistribute super."unique-logic"; + "unique-logic-tf" = dontDistribute super."unique-logic-tf"; + "uniqueid" = dontDistribute super."uniqueid"; + "unit" = dontDistribute super."unit"; + "units" = dontDistribute super."units"; + "units-attoparsec" = dontDistribute super."units-attoparsec"; + "units-defs" = dontDistribute super."units-defs"; + "units-parser" = dontDistribute super."units-parser"; + "unittyped" = dontDistribute super."unittyped"; + "universal-binary" = dontDistribute super."universal-binary"; + "universe-th" = dontDistribute super."universe-th"; + "unix-fcntl" = dontDistribute super."unix-fcntl"; + "unix-handle" = dontDistribute super."unix-handle"; + "unix-io-extra" = dontDistribute super."unix-io-extra"; + "unix-memory" = dontDistribute super."unix-memory"; + "unix-process-conduit" = dontDistribute super."unix-process-conduit"; + "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = dontDistribute super."unlambda"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; + "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; + "unpack-funcs" = dontDistribute super."unpack-funcs"; + "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; + "unsafe" = dontDistribute super."unsafe"; + "unsafe-promises" = dontDistribute super."unsafe-promises"; + "unsafely" = dontDistribute super."unsafely"; + "unsafeperformst" = dontDistribute super."unsafeperformst"; + "unscramble" = dontDistribute super."unscramble"; + "unusable-pkg" = dontDistribute super."unusable-pkg"; + "uom-plugin" = dontDistribute super."uom-plugin"; + "up" = dontDistribute super."up"; + "up-grade" = dontDistribute super."up-grade"; + "uploadcare" = dontDistribute super."uploadcare"; + "upskirt" = dontDistribute super."upskirt"; + "ureader" = dontDistribute super."ureader"; + "urembed" = dontDistribute super."urembed"; + "uri" = dontDistribute super."uri"; + "uri-bytestring" = doDistribute super."uri-bytestring_0_1_9_2"; + "uri-conduit" = dontDistribute super."uri-conduit"; + "uri-enumerator" = dontDistribute super."uri-enumerator"; + "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; + "uri-template" = dontDistribute super."uri-template"; + "url-generic" = dontDistribute super."url-generic"; + "urlcheck" = dontDistribute super."urlcheck"; + "urldecode" = dontDistribute super."urldecode"; + "urldisp-happstack" = dontDistribute super."urldisp-happstack"; + "urlencoded" = dontDistribute super."urlencoded"; + "urn" = dontDistribute super."urn"; + "urxml" = dontDistribute super."urxml"; + "usb" = dontDistribute super."usb"; + "usb-enumerator" = dontDistribute super."usb-enumerator"; + "usb-hid" = dontDistribute super."usb-hid"; + "usb-id-database" = dontDistribute super."usb-id-database"; + "usb-iteratee" = dontDistribute super."usb-iteratee"; + "usb-safe" = dontDistribute super."usb-safe"; + "users" = doDistribute super."users_0_4_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; + "users-test" = doDistribute super."users-test_0_4_0_0"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uulib" = dontDistribute super."uulib"; + "uvector" = dontDistribute super."uvector"; + "uvector-algorithms" = dontDistribute super."uvector-algorithms"; + "uxadt" = dontDistribute super."uxadt"; + "uzbl-with-source" = dontDistribute super."uzbl-with-source"; + "v4l2" = dontDistribute super."v4l2"; + "v4l2-examples" = dontDistribute super."v4l2-examples"; + "vacuum" = dontDistribute super."vacuum"; + "vacuum-cairo" = dontDistribute super."vacuum-cairo"; + "vacuum-graphviz" = dontDistribute super."vacuum-graphviz"; + "vacuum-opengl" = dontDistribute super."vacuum-opengl"; + "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph"; + "vado" = dontDistribute super."vado"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validated-literals" = dontDistribute super."validated-literals"; + "validations" = dontDistribute super."validations"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vcsgui" = dontDistribute super."vcsgui"; + "vcswrapper" = dontDistribute super."vcswrapper"; + "vect" = dontDistribute super."vect"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector-binary" = dontDistribute super."vector-binary"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "vector-functorlazy" = dontDistribute super."vector-functorlazy"; + "vector-heterogenous" = dontDistribute super."vector-heterogenous"; + "vector-instances-collections" = dontDistribute super."vector-instances-collections"; + "vector-mmap" = dontDistribute super."vector-mmap"; + "vector-random" = dontDistribute super."vector-random"; + "vector-read-instances" = dontDistribute super."vector-read-instances"; + "vector-sized" = dontDistribute super."vector-sized"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-space-points" = dontDistribute super."vector-space-points"; + "vector-static" = dontDistribute super."vector-static"; + "vector-strategies" = dontDistribute super."vector-strategies"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "versions" = dontDistribute super."versions"; + "vhdl" = dontDistribute super."vhdl"; + "views" = dontDistribute super."views"; + "vigilance" = dontDistribute super."vigilance"; + "vimeta" = dontDistribute super."vimeta"; + "vimus" = dontDistribute super."vimus"; + "vintage-basic" = dontDistribute super."vintage-basic"; + "vinyl-gl" = dontDistribute super."vinyl-gl"; + "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; + "vinyl-utils" = dontDistribute super."vinyl-utils"; + "vinyl-vectors" = dontDistribute super."vinyl-vectors"; + "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; + "vision" = dontDistribute super."vision"; + "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; + "visual-prof" = dontDistribute super."visual-prof"; + "vivid" = dontDistribute super."vivid"; + "vk-aws-route53" = dontDistribute super."vk-aws-route53"; + "vk-posix-pty" = dontDistribute super."vk-posix-pty"; + "vocabulary-kadma" = dontDistribute super."vocabulary-kadma"; + "vorbiscomment" = dontDistribute super."vorbiscomment"; + "vowpal-utils" = dontDistribute super."vowpal-utils"; + "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty-examples" = dontDistribute super."vty-examples"; + "vty-menu" = dontDistribute super."vty-menu"; + "vty-ui" = dontDistribute super."vty-ui"; + "vty-ui-extras" = dontDistribute super."vty-ui-extras"; + "vulkan" = dontDistribute super."vulkan"; + "wacom-daemon" = dontDistribute super."wacom-daemon"; + "waddle" = dontDistribute super."waddle"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_14_1"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; + "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; + "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; + "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; + "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; + "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; + "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; + "wai-middleware-route" = dontDistribute super."wai-middleware-route"; + "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-request-spec" = dontDistribute super."wai-request-spec"; + "wai-responsible" = dontDistribute super."wai-responsible"; + "wai-router" = dontDistribute super."wai-router"; + "wai-session-alt" = dontDistribute super."wai-session-alt"; + "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; + "wai-static-cache" = dontDistribute super."wai-static-cache"; + "wai-static-pages" = dontDistribute super."wai-static-pages"; + "wai-test" = dontDistribute super."wai-test"; + "wai-thrift" = dontDistribute super."wai-thrift"; + "wai-throttler" = dontDistribute super."wai-throttler"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_2_2"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "wavesurfer" = dontDistribute super."wavesurfer"; + "wavy" = dontDistribute super."wavy"; + "wcwidth" = dontDistribute super."wcwidth"; + "weather-api" = dontDistribute super."weather-api"; + "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell"; + "web-css" = dontDistribute super."web-css"; + "web-encodings" = dontDistribute super."web-encodings"; + "web-mongrel2" = dontDistribute super."web-mongrel2"; + "web-page" = dontDistribute super."web-page"; + "web-routes-mtl" = dontDistribute super."web-routes-mtl"; + "web-routes-quasi" = dontDistribute super."web-routes-quasi"; + "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-transformers" = dontDistribute super."web-routes-transformers"; + "webapi" = dontDistribute super."webapi"; + "webapp" = dontDistribute super."webapp"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_1"; + "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; + "webidl" = dontDistribute super."webidl"; + "webify" = dontDistribute super."webify"; + "webkit" = dontDistribute super."webkit"; + "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore"; + "webkitgtk3" = dontDistribute super."webkitgtk3"; + "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore"; + "webrtc-vad" = dontDistribute super."webrtc-vad"; + "webserver" = dontDistribute super."webserver"; + "websnap" = dontDistribute super."websnap"; + "webwire" = dontDistribute super."webwire"; + "wedding-announcement" = dontDistribute super."wedding-announcement"; + "wedged" = dontDistribute super."wedged"; + "weighted-regexp" = dontDistribute super."weighted-regexp"; + "weighted-search" = dontDistribute super."weighted-search"; + "welshy" = dontDistribute super."welshy"; + "werewolf" = dontDistribute super."werewolf"; + "wheb-mongo" = dontDistribute super."wheb-mongo"; + "wheb-redis" = dontDistribute super."wheb-redis"; + "wheb-strapped" = dontDistribute super."wheb-strapped"; + "while-lang-parser" = dontDistribute super."while-lang-parser"; + "whim" = dontDistribute super."whim"; + "whiskers" = dontDistribute super."whiskers"; + "whitespace" = dontDistribute super."whitespace"; + "whois" = dontDistribute super."whois"; + "why3" = dontDistribute super."why3"; + "wigner-symbols" = dontDistribute super."wigner-symbols"; + "wikipedia4epub" = dontDistribute super."wikipedia4epub"; + "win-hp-path" = dontDistribute super."win-hp-path"; + "windowslive" = dontDistribute super."windowslive"; + "winerror" = dontDistribute super."winerror"; + "winio" = dontDistribute super."winio"; + "wiring" = dontDistribute super."wiring"; + "with-location" = doDistribute super."with-location_0_0_0"; + "witness" = dontDistribute super."witness"; + "witty" = dontDistribute super."witty"; + "wkt" = dontDistribute super."wkt"; + "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm"; + "wlc-hs" = dontDistribute super."wlc-hs"; + "wobsurv" = dontDistribute super."wobsurv"; + "woffex" = dontDistribute super."woffex"; + "wol" = dontDistribute super."wol"; + "wolf" = dontDistribute super."wolf"; + "woot" = dontDistribute super."woot"; + "word24" = dontDistribute super."word24"; + "wordcloud" = dontDistribute super."wordcloud"; + "wordexp" = dontDistribute super."wordexp"; + "words" = dontDistribute super."words"; + "wordsearch" = dontDistribute super."wordsearch"; + "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; + "wp-archivebot" = dontDistribute super."wp-archivebot"; + "wraparound" = dontDistribute super."wraparound"; + "wraxml" = dontDistribute super."wraxml"; + "wreq-sb" = dontDistribute super."wreq-sb"; + "wright" = dontDistribute super."wright"; + "wsdl" = dontDistribute super."wsdl"; + "wsedit" = dontDistribute super."wsedit"; + "wtk" = dontDistribute super."wtk"; + "wtk-gtk" = dontDistribute super."wtk-gtk"; + "wumpus-basic" = dontDistribute super."wumpus-basic"; + "wumpus-core" = dontDistribute super."wumpus-core"; + "wumpus-drawing" = dontDistribute super."wumpus-drawing"; + "wumpus-microprint" = dontDistribute super."wumpus-microprint"; + "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = dontDistribute super."wuss"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdg-userdirs" = dontDistribute super."xdg-userdirs"; + "xdot" = dontDistribute super."xdot"; + "xfconf" = dontDistribute super."xfconf"; + "xhaskell-library" = dontDistribute super."xhaskell-library"; + "xhb" = dontDistribute super."xhb"; + "xhb-atom-cache" = dontDistribute super."xhb-atom-cache"; + "xhb-ewmh" = dontDistribute super."xhb-ewmh"; + "xhtml" = doDistribute super."xhtml_3000_2_1"; + "xhtml-combinators" = dontDistribute super."xhtml-combinators"; + "xilinx-lava" = dontDistribute super."xilinx-lava"; + "xine" = dontDistribute super."xine"; + "xing-api" = dontDistribute super."xing-api"; + "xinput-conduit" = dontDistribute super."xinput-conduit"; + "xkbcommon" = dontDistribute super."xkbcommon"; + "xkcd" = dontDistribute super."xkcd"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-enumerator" = dontDistribute super."xml-enumerator"; + "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; + "xml-extractors" = dontDistribute super."xml-extractors"; + "xml-helpers" = dontDistribute super."xml-helpers"; + "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens"; + "xml-monad" = dontDistribute super."xml-monad"; + "xml-parsec" = dontDistribute super."xml-parsec"; + "xml-picklers" = dontDistribute super."xml-picklers"; + "xml-pipe" = dontDistribute super."xml-pipe"; + "xml-prettify" = dontDistribute super."xml-prettify"; + "xml-push" = dontDistribute super."xml-push"; + "xml-query" = dontDistribute super."xml-query"; + "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit"; + "xml-query-xml-types" = dontDistribute super."xml-query-xml-types"; + "xml2html" = dontDistribute super."xml2html"; + "xml2json" = dontDistribute super."xml2json"; + "xml2x" = dontDistribute super."xml2x"; + "xmltv" = dontDistribute super."xmltv"; + "xmms2-client" = dontDistribute super."xmms2-client"; + "xmms2-client-glib" = dontDistribute super."xmms2-client-glib"; + "xmobar" = dontDistribute super."xmobar"; + "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch"; + "xmonad-contrib" = dontDistribute super."xmonad-contrib"; + "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch"; + "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl"; + "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper"; + "xmonad-eval" = dontDistribute super."xmonad-eval"; + "xmonad-extras" = dontDistribute super."xmonad-extras"; + "xmonad-screenshot" = dontDistribute super."xmonad-screenshot"; + "xmonad-utils" = dontDistribute super."xmonad-utils"; + "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper"; + "xmonad-windownames" = dontDistribute super."xmonad-windownames"; + "xmpipe" = dontDistribute super."xmpipe"; + "xorshift" = dontDistribute super."xorshift"; + "xosd" = dontDistribute super."xosd"; + "xournal-builder" = dontDistribute super."xournal-builder"; + "xournal-convert" = dontDistribute super."xournal-convert"; + "xournal-parser" = dontDistribute super."xournal-parser"; + "xournal-render" = dontDistribute super."xournal-render"; + "xournal-types" = dontDistribute super."xournal-types"; + "xsact" = dontDistribute super."xsact"; + "xsd" = dontDistribute super."xsd"; + "xsha1" = dontDistribute super."xsha1"; + "xslt" = dontDistribute super."xslt"; + "xtc" = dontDistribute super."xtc"; + "xtest" = dontDistribute super."xtest"; + "xturtle" = dontDistribute super."xturtle"; + "xxhash" = dontDistribute super."xxhash"; + "y0l0bot" = dontDistribute super."y0l0bot"; + "yabi" = dontDistribute super."yabi"; + "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; + "yahoo-web-search" = dontDistribute super."yahoo-web-search"; + "yajl" = dontDistribute super."yajl"; + "yajl-enumerator" = dontDistribute super."yajl-enumerator"; + "yall" = dontDistribute super."yall"; + "yamemo" = dontDistribute super."yamemo"; + "yaml-config" = dontDistribute super."yaml-config"; + "yaml-light-lens" = dontDistribute super."yaml-light-lens"; + "yaml-rpc" = dontDistribute super."yaml-rpc"; + "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty"; + "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap"; + "yaml-union" = dontDistribute super."yaml-union"; + "yaml2owl" = dontDistribute super."yaml2owl"; + "yamlkeysdiff" = dontDistribute super."yamlkeysdiff"; + "yampa-canvas" = dontDistribute super."yampa-canvas"; + "yampa-glfw" = dontDistribute super."yampa-glfw"; + "yampa-glut" = dontDistribute super."yampa-glut"; + "yampa2048" = dontDistribute super."yampa2048"; + "yaop" = dontDistribute super."yaop"; + "yap" = dontDistribute super."yap"; + "yarr" = dontDistribute super."yarr"; + "yarr-image-io" = dontDistribute super."yarr-image-io"; + "yate" = dontDistribute super."yate"; + "yavie" = dontDistribute super."yavie"; + "ycextra" = dontDistribute super."ycextra"; + "yeganesh" = dontDistribute super."yeganesh"; + "yeller" = dontDistribute super."yeller"; + "yeshql" = dontDistribute super."yeshql"; + "yesod-angular" = dontDistribute super."yesod-angular"; + "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; + "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; + "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; + "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_1_7"; + "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; + "yesod-comments" = dontDistribute super."yesod-comments"; + "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; + "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-crud" = dontDistribute super."yesod-crud"; + "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; + "yesod-csp" = dontDistribute super."yesod-csp"; + "yesod-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-json" = dontDistribute super."yesod-json"; + "yesod-links" = dontDistribute super."yesod-links"; + "yesod-lucid" = dontDistribute super."yesod-lucid"; + "yesod-markdown" = dontDistribute super."yesod-markdown"; + "yesod-media-simple" = dontDistribute super."yesod-media-simple"; + "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5"; + "yesod-paginate" = dontDistribute super."yesod-paginate"; + "yesod-pagination" = dontDistribute super."yesod-pagination"; + "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-platform" = dontDistribute super."yesod-platform"; + "yesod-pnotify" = dontDistribute super."yesod-pnotify"; + "yesod-pure" = dontDistribute super."yesod-pure"; + "yesod-purescript" = dontDistribute super."yesod-purescript"; + "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; + "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; + "yesod-routes" = dontDistribute super."yesod-routes"; + "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; + "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript"; + "yesod-rst" = dontDistribute super."yesod-rst"; + "yesod-s3" = dontDistribute super."yesod-s3"; + "yesod-sass" = dontDistribute super."yesod-sass"; + "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test-json" = dontDistribute super."yesod-test-json"; + "yesod-tls" = dontDistribute super."yesod-tls"; + "yesod-transloadit" = dontDistribute super."yesod-transloadit"; + "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; + "yesod-worker" = dontDistribute super."yesod-worker"; + "yet-another-logger" = dontDistribute super."yet-another-logger"; + "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_3"; + "yi-contrib" = dontDistribute super."yi-contrib"; + "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; + "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-monokai" = dontDistribute super."yi-monokai"; + "yi-snippet" = dontDistribute super."yi-snippet"; + "yi-solarized" = dontDistribute super."yi-solarized"; + "yi-spolsky" = dontDistribute super."yi-spolsky"; + "yi-vty" = dontDistribute super."yi-vty"; + "yices" = dontDistribute super."yices"; + "yices-easy" = dontDistribute super."yices-easy"; + "yices-painless" = dontDistribute super."yices-painless"; + "yjftp" = dontDistribute super."yjftp"; + "yjftp-libs" = dontDistribute super."yjftp-libs"; + "yjsvg" = dontDistribute super."yjsvg"; + "yjtools" = dontDistribute super."yjtools"; + "yocto" = dontDistribute super."yocto"; + "yoctoparsec" = dontDistribute super."yoctoparsec"; + "yoko" = dontDistribute super."yoko"; + "york-lava" = dontDistribute super."york-lava"; + "youtube" = dontDistribute super."youtube"; + "yql" = dontDistribute super."yql"; + "yst" = dontDistribute super."yst"; + "yuiGrid" = dontDistribute super."yuiGrid"; + "yuuko" = dontDistribute super."yuuko"; + "yxdb-utils" = dontDistribute super."yxdb-utils"; + "z3" = dontDistribute super."z3"; + "zalgo" = dontDistribute super."zalgo"; + "zampolit" = dontDistribute super."zampolit"; + "zasni-gerna" = dontDistribute super."zasni-gerna"; + "zcache" = dontDistribute super."zcache"; + "zenc" = dontDistribute super."zenc"; + "zendesk-api" = dontDistribute super."zendesk-api"; + "zeno" = dontDistribute super."zeno"; + "zerobin" = dontDistribute super."zerobin"; + "zeromq-haskell" = dontDistribute super."zeromq-haskell"; + "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; + "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; + "zeroth" = dontDistribute super."zeroth"; + "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; + "zip" = dontDistribute super."zip"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipkin" = dontDistribute super."zipkin"; + "zipper" = dontDistribute super."zipper"; + "zippers" = dontDistribute super."zippers"; + "zippo" = dontDistribute super."zippo"; + "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zmcat" = dontDistribute super."zmcat"; + "zmidi-core" = dontDistribute super."zmidi-core"; + "zmidi-score" = dontDistribute super."zmidi-score"; + "zmqat" = dontDistribute super."zmqat"; + "zoneinfo" = dontDistribute super."zoneinfo"; + "zoom" = dontDistribute super."zoom"; + "zoom-cache" = dontDistribute super."zoom-cache"; + "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm"; + "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile"; + "zoom-refs" = dontDistribute super."zoom-refs"; + "zot" = dontDistribute super."zot"; + "zsh-battery" = dontDistribute super."zsh-battery"; + "ztail" = dontDistribute super."ztail"; + +} diff --git a/pkgs/development/haskell-modules/configuration-lts-5.9.nix b/pkgs/development/haskell-modules/configuration-lts-5.9.nix new file mode 100644 index 00000000000..86b1a521d58 --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-5.9.nix @@ -0,0 +1,7907 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # core libraries provided by the compiler + Cabal = null; + array = null; + base = null; + bin-package-db = null; + binary = null; + bytestring = null; + containers = null; + deepseq = null; + directory = null; + filepath = null; + ghc-prim = null; + hoopl = null; + hpc = null; + integer-gmp = null; + pretty = null; + process = null; + rts = null; + template-haskell = null; + time = null; + transformers = null; + unix = null; + + # lts-5.9 packages + "3d-graphics-examples" = dontDistribute super."3d-graphics-examples"; + "3dmodels" = dontDistribute super."3dmodels"; + "4Blocks" = dontDistribute super."4Blocks"; + "AAI" = dontDistribute super."AAI"; + "ABList" = dontDistribute super."ABList"; + "AC-Angle" = dontDistribute super."AC-Angle"; + "AC-Boolean" = dontDistribute super."AC-Boolean"; + "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform"; + "AC-Colour" = dontDistribute super."AC-Colour"; + "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK"; + "AC-HalfInteger" = dontDistribute super."AC-HalfInteger"; + "AC-MiniTest" = dontDistribute super."AC-MiniTest"; + "AC-PPM" = dontDistribute super."AC-PPM"; + "AC-Random" = dontDistribute super."AC-Random"; + "AC-Terminal" = dontDistribute super."AC-Terminal"; + "AC-VanillaArray" = dontDistribute super."AC-VanillaArray"; + "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy"; + "ACME" = dontDistribute super."ACME"; + "ADPfusion" = dontDistribute super."ADPfusion"; + "AERN-Basics" = dontDistribute super."AERN-Basics"; + "AERN-Net" = dontDistribute super."AERN-Net"; + "AERN-Real" = dontDistribute super."AERN-Real"; + "AERN-Real-Double" = dontDistribute super."AERN-Real-Double"; + "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval"; + "AERN-RnToRm" = dontDistribute super."AERN-RnToRm"; + "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot"; + "AES" = dontDistribute super."AES"; + "AGI" = dontDistribute super."AGI"; + "ALUT" = dontDistribute super."ALUT"; + "AMI" = dontDistribute super."AMI"; + "ANum" = dontDistribute super."ANum"; + "ASN1" = dontDistribute super."ASN1"; + "AVar" = dontDistribute super."AVar"; + "AWin32Console" = dontDistribute super."AWin32Console"; + "AbortT-monadstf" = dontDistribute super."AbortT-monadstf"; + "AbortT-mtl" = dontDistribute super."AbortT-mtl"; + "AbortT-transformers" = dontDistribute super."AbortT-transformers"; + "ActionKid" = dontDistribute super."ActionKid"; + "Adaptive" = dontDistribute super."Adaptive"; + "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade"; + "Advgame" = dontDistribute super."Advgame"; + "AesonBson" = dontDistribute super."AesonBson"; + "Agata" = dontDistribute super."Agata"; + "Agda-executable" = dontDistribute super."Agda-executable"; + "AhoCorasick" = dontDistribute super."AhoCorasick"; + "AlgorithmW" = dontDistribute super."AlgorithmW"; + "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms"; + "Allure" = dontDistribute super."Allure"; + "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter"; + "Animas" = dontDistribute super."Animas"; + "Annotations" = dontDistribute super."Annotations"; + "Ansi2Html" = dontDistribute super."Ansi2Html"; + "ApplePush" = dontDistribute super."ApplePush"; + "AppleScript" = dontDistribute super."AppleScript"; + "ApproxFun-hs" = dontDistribute super."ApproxFun-hs"; + "ArrayRef" = dontDistribute super."ArrayRef"; + "ArrowVHDL" = dontDistribute super."ArrowVHDL"; + "AspectAG" = dontDistribute super."AspectAG"; + "AttoBencode" = dontDistribute super."AttoBencode"; + "AttoJson" = dontDistribute super."AttoJson"; + "Attrac" = dontDistribute super."Attrac"; + "Aurochs" = dontDistribute super."Aurochs"; + "AutoForms" = dontDistribute super."AutoForms"; + "AvlTree" = dontDistribute super."AvlTree"; + "BASIC" = dontDistribute super."BASIC"; + "BCMtools" = dontDistribute super."BCMtools"; + "BNFC" = dontDistribute super."BNFC"; + "BNFC-meta" = dontDistribute super."BNFC-meta"; + "Baggins" = dontDistribute super."Baggins"; + "Bang" = dontDistribute super."Bang"; + "Barracuda" = dontDistribute super."Barracuda"; + "Befunge93" = dontDistribute super."Befunge93"; + "BenchmarkHistory" = dontDistribute super."BenchmarkHistory"; + "BerkeleyDB" = dontDistribute super."BerkeleyDB"; + "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; + "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BigPixel" = dontDistribute super."BigPixel"; + "Binpack" = dontDistribute super."Binpack"; + "Biobase" = dontDistribute super."Biobase"; + "BiobaseBlast" = dontDistribute super."BiobaseBlast"; + "BiobaseDotP" = dontDistribute super."BiobaseDotP"; + "BiobaseFR3D" = dontDistribute super."BiobaseFR3D"; + "BiobaseFasta" = dontDistribute super."BiobaseFasta"; + "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; + "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; + "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; + "BiobaseTurner" = dontDistribute super."BiobaseTurner"; + "BiobaseTypes" = dontDistribute super."BiobaseTypes"; + "BiobaseVienna" = dontDistribute super."BiobaseVienna"; + "BiobaseXNA" = dontDistribute super."BiobaseXNA"; + "BirdPP" = dontDistribute super."BirdPP"; + "BitSyntax" = dontDistribute super."BitSyntax"; + "Bitly" = dontDistribute super."Bitly"; + "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; + "BluePrintCSS" = dontDistribute super."BluePrintCSS"; + "Blueprint" = dontDistribute super."Blueprint"; + "Bookshelf" = dontDistribute super."Bookshelf"; + "Bravo" = dontDistribute super."Bravo"; + "BufferedSocket" = dontDistribute super."BufferedSocket"; + "Buster" = dontDistribute super."Buster"; + "CBOR" = dontDistribute super."CBOR"; + "CC-delcont" = dontDistribute super."CC-delcont"; + "CC-delcont-alt" = dontDistribute super."CC-delcont-alt"; + "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe"; + "CC-delcont-exc" = dontDistribute super."CC-delcont-exc"; + "CC-delcont-ref" = dontDistribute super."CC-delcont-ref"; + "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf"; + "CCA" = dontDistribute super."CCA"; + "CHXHtml" = dontDistribute super."CHXHtml"; + "CLASE" = dontDistribute super."CLASE"; + "CLI" = dontDistribute super."CLI"; + "CMCompare" = dontDistribute super."CMCompare"; + "CMQ" = dontDistribute super."CMQ"; + "COrdering" = dontDistribute super."COrdering"; + "CPBrainfuck" = dontDistribute super."CPBrainfuck"; + "CPL" = dontDistribute super."CPL"; + "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage"; + "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules"; + "CSPM-Frontend" = dontDistribute super."CSPM-Frontend"; + "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter"; + "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog"; + "CSPM-cspm" = dontDistribute super."CSPM-cspm"; + "CTRex" = dontDistribute super."CTRex"; + "CV" = dontDistribute super."CV"; + "CabalSearch" = dontDistribute super."CabalSearch"; + "Capabilities" = dontDistribute super."Capabilities"; + "Cardinality" = dontDistribute super."Cardinality"; + "CarneadesDSL" = dontDistribute super."CarneadesDSL"; + "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; + "Cascade" = dontDistribute super."Cascade"; + "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = dontDistribute super."Chart-diagrams"; + "Chart-gtk" = dontDistribute super."Chart-gtk"; + "Chart-simple" = dontDistribute super."Chart-simple"; + "CheatSheet" = dontDistribute super."CheatSheet"; + "Checked" = dontDistribute super."Checked"; + "Chitra" = dontDistribute super."Chitra"; + "ChristmasTree" = dontDistribute super."ChristmasTree"; + "CirruParser" = dontDistribute super."CirruParser"; + "ClassLaws" = dontDistribute super."ClassLaws"; + "ClassyPrelude" = dontDistribute super."ClassyPrelude"; + "Clean" = dontDistribute super."Clean"; + "Clipboard" = dontDistribute super."Clipboard"; + "Coadjute" = dontDistribute super."Coadjute"; + "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; + "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; + "Combinatorrent" = dontDistribute super."Combinatorrent"; + "Command" = dontDistribute super."Command"; + "Commando" = dontDistribute super."Commando"; + "ComonadSheet" = dontDistribute super."ComonadSheet"; + "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; + "Concurrential" = dontDistribute super."Concurrential"; + "Condor" = dontDistribute super."Condor"; + "ConfigFileTH" = dontDistribute super."ConfigFileTH"; + "Configger" = dontDistribute super."Configger"; + "Configurable" = dontDistribute super."Configurable"; + "ConsStream" = dontDistribute super."ConsStream"; + "Conscript" = dontDistribute super."Conscript"; + "ConstraintKinds" = dontDistribute super."ConstraintKinds"; + "Consumer" = dontDistribute super."Consumer"; + "ContArrow" = dontDistribute super."ContArrow"; + "ContextAlgebra" = dontDistribute super."ContextAlgebra"; + "Contract" = dontDistribute super."Contract"; + "Control-Engine" = dontDistribute super."Control-Engine"; + "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass"; + "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2"; + "CoreDump" = dontDistribute super."CoreDump"; + "CoreErlang" = dontDistribute super."CoreErlang"; + "CoreFoundation" = dontDistribute super."CoreFoundation"; + "Coroutine" = dontDistribute super."Coroutine"; + "CouchDB" = dontDistribute super."CouchDB"; + "Craft3e" = dontDistribute super."Craft3e"; + "Crypto" = dontDistribute super."Crypto"; + "CurryDB" = dontDistribute super."CurryDB"; + "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DBlimited" = dontDistribute super."DBlimited"; + "DBus" = dontDistribute super."DBus"; + "DCFL" = dontDistribute super."DCFL"; + "DMuCheck" = dontDistribute super."DMuCheck"; + "DOM" = dontDistribute super."DOM"; + "DP" = dontDistribute super."DP"; + "DPM" = dontDistribute super."DPM"; + "DSA" = dontDistribute super."DSA"; + "DSH" = dontDistribute super."DSH"; + "DSTM" = dontDistribute super."DSTM"; + "DTC" = dontDistribute super."DTC"; + "Dangerous" = dontDistribute super."Dangerous"; + "Dao" = dontDistribute super."Dao"; + "DarcsHelpers" = dontDistribute super."DarcsHelpers"; + "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent"; + "Data-Rope" = dontDistribute super."Data-Rope"; + "DataTreeView" = dontDistribute super."DataTreeView"; + "Deadpan-DDP" = dontDistribute super."Deadpan-DDP"; + "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers"; + "DecisionTree" = dontDistribute super."DecisionTree"; + "DeepArrow" = dontDistribute super."DeepArrow"; + "DefendTheKing" = dontDistribute super."DefendTheKing"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "DifferenceLogic" = dontDistribute super."DifferenceLogic"; + "DifferentialEvolution" = dontDistribute super."DifferentialEvolution"; + "Digit" = dontDistribute super."Digit"; + "DigitalOcean" = dontDistribute super."DigitalOcean"; + "DimensionalHash" = dontDistribute super."DimensionalHash"; + "DirectSound" = dontDistribute super."DirectSound"; + "DisTract" = dontDistribute super."DisTract"; + "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem"; + "Dish" = dontDistribute super."Dish"; + "Dist" = dontDistribute super."Dist"; + "DistanceTransform" = dontDistribute super."DistanceTransform"; + "DistanceUnits" = dontDistribute super."DistanceUnits"; + "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment"; + "DocTest" = dontDistribute super."DocTest"; + "Docs" = dontDistribute super."Docs"; + "DrHylo" = dontDistribute super."DrHylo"; + "DrIFT" = dontDistribute super."DrIFT"; + "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized"; + "Dung" = dontDistribute super."Dung"; + "Dust" = dontDistribute super."Dust"; + "Dust-crypto" = dontDistribute super."Dust-crypto"; + "Dust-tools" = dontDistribute super."Dust-tools"; + "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap"; + "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp"; + "DysFRP" = dontDistribute super."DysFRP"; + "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; + "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; + "EEConfig" = dontDistribute super."EEConfig"; + "EdisonAPI" = dontDistribute super."EdisonAPI"; + "EdisonCore" = dontDistribute super."EdisonCore"; + "EditTimeReport" = dontDistribute super."EditTimeReport"; + "EitherT" = dontDistribute super."EitherT"; + "Elm" = dontDistribute super."Elm"; + "Emping" = dontDistribute super."Emping"; + "Encode" = dontDistribute super."Encode"; + "EnumContainers" = dontDistribute super."EnumContainers"; + "EnumMap" = dontDistribute super."EnumMap"; + "Eq" = dontDistribute super."Eq"; + "EqualitySolver" = dontDistribute super."EqualitySolver"; + "EsounD" = dontDistribute super."EsounD"; + "EstProgress" = dontDistribute super."EstProgress"; + "EtaMOO" = dontDistribute super."EtaMOO"; + "Etage" = dontDistribute super."Etage"; + "Etage-Graph" = dontDistribute super."Etage-Graph"; + "Eternal10Seconds" = dontDistribute super."Eternal10Seconds"; + "Etherbunny" = dontDistribute super."Etherbunny"; + "EuroIT" = dontDistribute super."EuroIT"; + "Euterpea" = dontDistribute super."Euterpea"; + "EventSocket" = dontDistribute super."EventSocket"; + "Extra" = dontDistribute super."Extra"; + "FComp" = dontDistribute super."FComp"; + "FM-SBLEX" = dontDistribute super."FM-SBLEX"; + "FModExRaw" = dontDistribute super."FModExRaw"; + "FPretty" = dontDistribute super."FPretty"; + "FTGL" = dontDistribute super."FTGL"; + "FTGL-bytestring" = dontDistribute super."FTGL-bytestring"; + "FTPLine" = dontDistribute super."FTPLine"; + "Facts" = dontDistribute super."Facts"; + "FailureT" = dontDistribute super."FailureT"; + "FastxPipe" = dontDistribute super."FastxPipe"; + "FermatsLastMargin" = dontDistribute super."FermatsLastMargin"; + "FerryCore" = dontDistribute super."FerryCore"; + "Feval" = dontDistribute super."Feval"; + "FieldTrip" = dontDistribute super."FieldTrip"; + "FileManip" = dontDistribute super."FileManip"; + "FileManipCompat" = dontDistribute super."FileManipCompat"; + "FilePather" = dontDistribute super."FilePather"; + "FileSystem" = dontDistribute super."FileSystem"; + "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo"; + "Finance-Treasury" = dontDistribute super."Finance-Treasury"; + "FiniteMap" = dontDistribute super."FiniteMap"; + "FirstOrderTheory" = dontDistribute super."FirstOrderTheory"; + "FixedPoint-simple" = dontDistribute super."FixedPoint-simple"; + "Flippi" = dontDistribute super."Flippi"; + "Focus" = dontDistribute super."Focus"; + "Folly" = dontDistribute super."Folly"; + "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; + "ForkableT" = dontDistribute super."ForkableT"; + "FormalGrammars" = dontDistribute super."FormalGrammars"; + "Foster" = dontDistribute super."Foster"; + "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; + "Fractaler" = dontDistribute super."Fractaler"; + "Frank" = dontDistribute super."Frank"; + "FreeTypeGL" = dontDistribute super."FreeTypeGL"; + "FunGEn" = dontDistribute super."FunGEn"; + "Fungi" = dontDistribute super."Fungi"; + "GA" = dontDistribute super."GA"; + "GGg" = dontDistribute super."GGg"; + "GHood" = dontDistribute super."GHood"; + "GLFW" = dontDistribute super."GLFW"; + "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; + "GLFW-task" = dontDistribute super."GLFW-task"; + "GLHUI" = dontDistribute super."GLHUI"; + "GLM" = dontDistribute super."GLM"; + "GLMatrix" = dontDistribute super."GLMatrix"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad"; + "GTALib" = dontDistribute super."GTALib"; + "Gamgine" = dontDistribute super."Gamgine"; + "Ganymede" = dontDistribute super."Ganymede"; + "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration"; + "GeBoP" = dontDistribute super."GeBoP"; + "GenI" = dontDistribute super."GenI"; + "GenSmsPdu" = dontDistribute super."GenSmsPdu"; + "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe"; + "GenussFold" = dontDistribute super."GenussFold"; + "GeoIp" = dontDistribute super."GeoIp"; + "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage"; + "Geodetic" = dontDistribute super."Geodetic"; + "GeomPredicates" = dontDistribute super."GeomPredicates"; + "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE"; + "GiST" = dontDistribute super."GiST"; + "Gifcurry" = dontDistribute super."Gifcurry"; + "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "GlomeTrace" = dontDistribute super."GlomeTrace"; + "GlomeVec" = dontDistribute super."GlomeVec"; + "GlomeView" = dontDistribute super."GlomeView"; + "GoogleChart" = dontDistribute super."GoogleChart"; + "GoogleDirections" = dontDistribute super."GoogleDirections"; + "GoogleSB" = dontDistribute super."GoogleSB"; + "GoogleSuggest" = dontDistribute super."GoogleSuggest"; + "GoogleTranslate" = dontDistribute super."GoogleTranslate"; + "GotoT-transformers" = dontDistribute super."GotoT-transformers"; + "GrammarProducts" = dontDistribute super."GrammarProducts"; + "Graph500" = dontDistribute super."Graph500"; + "GraphHammer" = dontDistribute super."GraphHammer"; + "GraphHammer-examples" = dontDistribute super."GraphHammer-examples"; + "Graphalyze" = dontDistribute super."Graphalyze"; + "Grempa" = dontDistribute super."Grempa"; + "GroteTrap" = dontDistribute super."GroteTrap"; + "Grow" = dontDistribute super."Grow"; + "GrowlNotify" = dontDistribute super."GrowlNotify"; + "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics"; + "GtkGLTV" = dontDistribute super."GtkGLTV"; + "GtkTV" = dontDistribute super."GtkTV"; + "GuiHaskell" = dontDistribute super."GuiHaskell"; + "GuiTV" = dontDistribute super."GuiTV"; + "HARM" = dontDistribute super."HARM"; + "HAppS-Data" = dontDistribute super."HAppS-Data"; + "HAppS-IxSet" = dontDistribute super."HAppS-IxSet"; + "HAppS-Server" = dontDistribute super."HAppS-Server"; + "HAppS-State" = dontDistribute super."HAppS-State"; + "HAppS-Util" = dontDistribute super."HAppS-Util"; + "HAppSHelpers" = dontDistribute super."HAppSHelpers"; + "HCL" = dontDistribute super."HCL"; + "HCard" = dontDistribute super."HCard"; + "HDBC-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDBC-session" = dontDistribute super."HDBC-session"; + "HDRUtils" = dontDistribute super."HDRUtils"; + "HERA" = dontDistribute super."HERA"; + "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; + "HFuse" = dontDistribute super."HFuse"; + "HGL" = dontDistribute super."HGL"; + "HGamer3D" = dontDistribute super."HGamer3D"; + "HGamer3D-API" = dontDistribute super."HGamer3D-API"; + "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio"; + "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding"; + "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding"; + "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding"; + "HGamer3D-Common" = dontDistribute super."HGamer3D-Common"; + "HGamer3D-Data" = dontDistribute super."HGamer3D-Data"; + "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding"; + "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI"; + "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D"; + "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem"; + "HGamer3D-Network" = dontDistribute super."HGamer3D-Network"; + "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding"; + "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding"; + "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding"; + "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding"; + "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent"; + "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire"; + "HGraphStorage" = dontDistribute super."HGraphStorage"; + "HHDL" = dontDistribute super."HHDL"; + "HJScript" = dontDistribute super."HJScript"; + "HJVM" = dontDistribute super."HJVM"; + "HJavaScript" = dontDistribute super."HJavaScript"; + "HLearn-algebra" = dontDistribute super."HLearn-algebra"; + "HLearn-approximation" = dontDistribute super."HLearn-approximation"; + "HLearn-classification" = dontDistribute super."HLearn-classification"; + "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; + "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HListPP" = dontDistribute super."HListPP"; + "HLogger" = dontDistribute super."HLogger"; + "HMM" = dontDistribute super."HMM"; + "HMap" = dontDistribute super."HMap"; + "HNM" = dontDistribute super."HNM"; + "HODE" = dontDistribute super."HODE"; + "HOpenCV" = dontDistribute super."HOpenCV"; + "HPath" = dontDistribute super."HPath"; + "HPi" = dontDistribute super."HPi"; + "HPlot" = dontDistribute super."HPlot"; + "HPong" = dontDistribute super."HPong"; + "HROOT" = dontDistribute super."HROOT"; + "HROOT-core" = dontDistribute super."HROOT-core"; + "HROOT-graf" = dontDistribute super."HROOT-graf"; + "HROOT-hist" = dontDistribute super."HROOT-hist"; + "HROOT-io" = dontDistribute super."HROOT-io"; + "HROOT-math" = dontDistribute super."HROOT-math"; + "HRay" = dontDistribute super."HRay"; + "HSFFIG" = dontDistribute super."HSFFIG"; + "HSGEP" = dontDistribute super."HSGEP"; + "HSH" = dontDistribute super."HSH"; + "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSlippyMap" = dontDistribute super."HSlippyMap"; + "HSmarty" = dontDistribute super."HSmarty"; + "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; + "HSvm" = dontDistribute super."HSvm"; + "HTTP-Simple" = dontDistribute super."HTTP-Simple"; + "HTab" = dontDistribute super."HTab"; + "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit-Diff" = dontDistribute super."HUnit-Diff"; + "HUnit-Plus" = dontDistribute super."HUnit-Plus"; + "HUnit-approx" = dontDistribute super."HUnit-approx"; + "HXMPP" = dontDistribute super."HXMPP"; + "HXQ" = dontDistribute super."HXQ"; + "HaLeX" = dontDistribute super."HaLeX"; + "HaMinitel" = dontDistribute super."HaMinitel"; + "HaPy" = dontDistribute super."HaPy"; + "HaTeX-meta" = dontDistribute super."HaTeX-meta"; + "HaTeX-qq" = dontDistribute super."HaTeX-qq"; + "HaVSA" = dontDistribute super."HaVSA"; + "Hach" = dontDistribute super."Hach"; + "HackMail" = dontDistribute super."HackMail"; + "Haggressive" = dontDistribute super."Haggressive"; + "HandlerSocketClient" = dontDistribute super."HandlerSocketClient"; + "Hangman" = dontDistribute super."Hangman"; + "HarmTrace" = dontDistribute super."HarmTrace"; + "HarmTrace-Base" = dontDistribute super."HarmTrace-Base"; + "HasGP" = dontDistribute super."HasGP"; + "Haschoo" = dontDistribute super."Haschoo"; + "Hashell" = dontDistribute super."Hashell"; + "HaskRel" = dontDistribute super."HaskRel"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; + "Hawk" = dontDistribute super."Hawk"; + "Hayoo" = dontDistribute super."Hayoo"; + "Hclip" = dontDistribute super."Hclip"; + "Hedi" = dontDistribute super."Hedi"; + "HerbiePlugin" = dontDistribute super."HerbiePlugin"; + "Hermes" = dontDistribute super."Hermes"; + "Hieroglyph" = dontDistribute super."Hieroglyph"; + "HiggsSet" = dontDistribute super."HiggsSet"; + "Hipmunk" = dontDistribute super."Hipmunk"; + "HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; + "Hish" = dontDistribute super."Hish"; + "Histogram" = dontDistribute super."Histogram"; + "Hmpf" = dontDistribute super."Hmpf"; + "Hoed" = dontDistribute super."Hoed"; + "HoleyMonoid" = dontDistribute super."HoleyMonoid"; + "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution"; + "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce"; + "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine"; + "Holumbus-Storage" = dontDistribute super."Holumbus-Storage"; + "Homology" = dontDistribute super."Homology"; + "HongoDB" = dontDistribute super."HongoDB"; + "HostAndPort" = dontDistribute super."HostAndPort"; + "Hricket" = dontDistribute super."Hricket"; + "Hs2lib" = dontDistribute super."Hs2lib"; + "HsASA" = dontDistribute super."HsASA"; + "HsHaruPDF" = dontDistribute super."HsHaruPDF"; + "HsHyperEstraier" = dontDistribute super."HsHyperEstraier"; + "HsJudy" = dontDistribute super."HsJudy"; + "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system"; + "HsParrot" = dontDistribute super."HsParrot"; + "HsPerl5" = dontDistribute super."HsPerl5"; + "HsSVN" = dontDistribute super."HsSVN"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "HulkImport" = dontDistribute super."HulkImport"; + "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres"; + "IDynamic" = dontDistribute super."IDynamic"; + "IFS" = dontDistribute super."IFS"; + "INblobs" = dontDistribute super."INblobs"; + "IOR" = dontDistribute super."IOR"; + "IORefCAS" = dontDistribute super."IORefCAS"; + "IOSpec" = dontDistribute super."IOSpec"; + "IcoGrid" = dontDistribute super."IcoGrid"; + "Imlib" = dontDistribute super."Imlib"; + "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; + "IndentParser" = dontDistribute super."IndentParser"; + "IndexedList" = dontDistribute super."IndexedList"; + "InfixApplicative" = dontDistribute super."InfixApplicative"; + "Interpolation" = dontDistribute super."Interpolation"; + "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JunkDB" = dontDistribute super."JunkDB"; + "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; + "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables"; + "JustParse" = dontDistribute super."JustParse"; + "KMP" = dontDistribute super."KMP"; + "KSP" = dontDistribute super."KSP"; + "Kalman" = dontDistribute super."Kalman"; + "KdTree" = dontDistribute super."KdTree"; + "Ketchup" = dontDistribute super."Ketchup"; + "KiCS" = dontDistribute super."KiCS"; + "KiCS-debugger" = dontDistribute super."KiCS-debugger"; + "KiCS-prophecy" = dontDistribute super."KiCS-prophecy"; + "Kleislify" = dontDistribute super."Kleislify"; + "Konf" = dontDistribute super."Konf"; + "Kriens" = dontDistribute super."Kriens"; + "KyotoCabinet" = dontDistribute super."KyotoCabinet"; + "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; + "LDAP" = dontDistribute super."LDAP"; + "LRU" = dontDistribute super."LRU"; + "LTree" = dontDistribute super."LTree"; + "LambdaCalculator" = dontDistribute super."LambdaCalculator"; + "LambdaHack" = dontDistribute super."LambdaHack"; + "LambdaINet" = dontDistribute super."LambdaINet"; + "LambdaNet" = dontDistribute super."LambdaNet"; + "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; + "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdajudge" = dontDistribute super."Lambdajudge"; + "Lambdaya" = dontDistribute super."Lambdaya"; + "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; + "Lastik" = dontDistribute super."Lastik"; + "Lattices" = dontDistribute super."Lattices"; + "Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2"; + "LazyVault" = dontDistribute super."LazyVault"; + "Level0" = dontDistribute super."Level0"; + "LibClang" = dontDistribute super."LibClang"; + "Limit" = dontDistribute super."Limit"; + "LinearSplit" = dontDistribute super."LinearSplit"; + "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; + "LinkChecker" = dontDistribute super."LinkChecker"; + "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; + "ListZipper" = dontDistribute super."ListZipper"; + "Logic" = dontDistribute super."Logic"; + "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; + "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI"; + "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network"; + "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes"; + "LslPlus" = dontDistribute super."LslPlus"; + "Lucu" = dontDistribute super."Lucu"; + "MASMGen" = dontDistribute super."MASMGen"; + "MC-Fold-DP" = dontDistribute super."MC-Fold-DP"; + "MHask" = dontDistribute super."MHask"; + "MSQueue" = dontDistribute super."MSQueue"; + "MTGBuilder" = dontDistribute super."MTGBuilder"; + "MagicHaskeller" = dontDistribute super."MagicHaskeller"; + "MailchimpSimple" = dontDistribute super."MailchimpSimple"; + "MaybeT" = dontDistribute super."MaybeT"; + "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf"; + "MaybeT-transformers" = dontDistribute super."MaybeT-transformers"; + "MazesOfMonad" = dontDistribute super."MazesOfMonad"; + "MeanShift" = dontDistribute super."MeanShift"; + "Measure" = dontDistribute super."Measure"; + "MetaHDBC" = dontDistribute super."MetaHDBC"; + "MetaObject" = dontDistribute super."MetaObject"; + "Metrics" = dontDistribute super."Metrics"; + "Mhailist" = dontDistribute super."Mhailist"; + "Michelangelo" = dontDistribute super."Michelangelo"; + "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator"; + "MiniAgda" = dontDistribute super."MiniAgda"; + "MissingK" = dontDistribute super."MissingK"; + "MissingM" = dontDistribute super."MissingM"; + "MissingPy" = dontDistribute super."MissingPy"; + "Modulo" = dontDistribute super."Modulo"; + "Moe" = dontDistribute super."Moe"; + "MoeDict" = dontDistribute super."MoeDict"; + "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl"; + "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign"; + "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; + "MonadCompose" = dontDistribute super."MonadCompose"; + "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; + "MonadStack" = dontDistribute super."MonadStack"; + "Monadius" = dontDistribute super."Monadius"; + "Monaris" = dontDistribute super."Monaris"; + "Monatron" = dontDistribute super."Monatron"; + "Monatron-IO" = dontDistribute super."Monatron-IO"; + "Monocle" = dontDistribute super."Monocle"; + "MorseCode" = dontDistribute super."MorseCode"; + "MuCheck" = dontDistribute super."MuCheck"; + "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit"; + "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec"; + "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck"; + "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck"; + "Munkres" = dontDistribute super."Munkres"; + "Munkres-simple" = dontDistribute super."Munkres-simple"; + "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid"; + "MyPrimes" = dontDistribute super."MyPrimes"; + "NGrams" = dontDistribute super."NGrams"; + "NTRU" = dontDistribute super."NTRU"; + "NXT" = dontDistribute super."NXT"; + "NXTDSL" = dontDistribute super."NXTDSL"; + "NanoProlog" = dontDistribute super."NanoProlog"; + "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets"; + "NaturalSort" = dontDistribute super."NaturalSort"; + "NearContextAlgebra" = dontDistribute super."NearContextAlgebra"; + "Neks" = dontDistribute super."Neks"; + "NestedFunctor" = dontDistribute super."NestedFunctor"; + "NestedSampling" = dontDistribute super."NestedSampling"; + "NetSNMP" = dontDistribute super."NetSNMP"; + "NewBinary" = dontDistribute super."NewBinary"; + "Ninjas" = dontDistribute super."Ninjas"; + "NoSlow" = dontDistribute super."NoSlow"; + "NoTrace" = dontDistribute super."NoTrace"; + "Noise" = dontDistribute super."Noise"; + "Nomyx" = dontDistribute super."Nomyx"; + "Nomyx-Core" = dontDistribute super."Nomyx-Core"; + "Nomyx-Language" = dontDistribute super."Nomyx-Language"; + "Nomyx-Rules" = dontDistribute super."Nomyx-Rules"; + "Nomyx-Web" = dontDistribute super."Nomyx-Web"; + "NonEmpty" = dontDistribute super."NonEmpty"; + "NonEmptyList" = dontDistribute super."NonEmptyList"; + "NumLazyByteString" = dontDistribute super."NumLazyByteString"; + "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; + "Numbers" = dontDistribute super."Numbers"; + "Nussinov78" = dontDistribute super."Nussinov78"; + "Nutri" = dontDistribute super."Nutri"; + "OGL" = dontDistribute super."OGL"; + "OSM" = dontDistribute super."OSM"; + "OTP" = dontDistribute super."OTP"; + "Object" = dontDistribute super."Object"; + "ObjectIO" = dontDistribute super."ObjectIO"; + "Obsidian" = dontDistribute super."Obsidian"; + "OddWord" = dontDistribute super."OddWord"; + "Omega" = dontDistribute super."Omega"; + "OneTuple" = dontDistribute super."OneTuple"; + "OpenAFP" = dontDistribute super."OpenAFP"; + "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils"; + "OpenAL" = dontDistribute super."OpenAL"; + "OpenCL" = dontDistribute super."OpenCL"; + "OpenCLRaw" = dontDistribute super."OpenCLRaw"; + "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; + "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; + "OpenSCAD" = dontDistribute super."OpenSCAD"; + "OpenVG" = dontDistribute super."OpenVG"; + "OpenVGRaw" = dontDistribute super."OpenVGRaw"; + "Operads" = dontDistribute super."Operads"; + "OptDir" = dontDistribute super."OptDir"; + "OrPatterns" = dontDistribute super."OrPatterns"; + "OrchestrateDB" = dontDistribute super."OrchestrateDB"; + "OrderedBits" = dontDistribute super."OrderedBits"; + "Ordinals" = dontDistribute super."Ordinals"; + "PArrows" = dontDistribute super."PArrows"; + "PBKDF2" = dontDistribute super."PBKDF2"; + "PCLT" = dontDistribute super."PCLT"; + "PCLT-DB" = dontDistribute super."PCLT-DB"; + "PDBtools" = dontDistribute super."PDBtools"; + "PTQ" = dontDistribute super."PTQ"; + "PUH-Project" = dontDistribute super."PUH-Project"; + "PageIO" = dontDistribute super."PageIO"; + "Paillier" = dontDistribute super."Paillier"; + "PandocAgda" = dontDistribute super."PandocAgda"; + "Paraiso" = dontDistribute super."Paraiso"; + "Parry" = dontDistribute super."Parry"; + "ParsecTools" = dontDistribute super."ParsecTools"; + "ParserFunction" = dontDistribute super."ParserFunction"; + "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; + "PasswordGenerator" = dontDistribute super."PasswordGenerator"; + "PastePipe" = dontDistribute super."PastePipe"; + "Pathfinder" = dontDistribute super."Pathfinder"; + "Peano" = dontDistribute super."Peano"; + "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; + "PerfectHash" = dontDistribute super."PerfectHash"; + "PermuteEffects" = dontDistribute super."PermuteEffects"; + "Phsu" = dontDistribute super."Phsu"; + "Pipe" = dontDistribute super."Pipe"; + "Piso" = dontDistribute super."Piso"; + "PlayHangmanGame" = dontDistribute super."PlayHangmanGame"; + "PlayingCards" = dontDistribute super."PlayingCards"; + "Plot-ho-matic" = dontDistribute super."Plot-ho-matic"; + "PlslTools" = dontDistribute super."PlslTools"; + "Plural" = dontDistribute super."Plural"; + "Pollutocracy" = dontDistribute super."Pollutocracy"; + "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = dontDistribute super."PortMidi"; + "PostgreSQL" = dontDistribute super."PostgreSQL"; + "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; + "Printf-TH" = dontDistribute super."Printf-TH"; + "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; + "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; + "PropLogic" = dontDistribute super."PropLogic"; + "Proper" = dontDistribute super."Proper"; + "ProxN" = dontDistribute super."ProxN"; + "Pugs" = dontDistribute super."Pugs"; + "Pup-Events" = dontDistribute super."Pup-Events"; + "Pup-Events-Client" = dontDistribute super."Pup-Events-Client"; + "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo"; + "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; + "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; + "QIO" = dontDistribute super."QIO"; + "QuadEdge" = dontDistribute super."QuadEdge"; + "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; + "QuickAnnotate" = dontDistribute super."QuickAnnotate"; + "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; + "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; + "QuickCheck-safe" = dontDistribute super."QuickCheck-safe"; + "QuickPlot" = dontDistribute super."QuickPlot"; + "Quickson" = dontDistribute super."Quickson"; + "R-pandoc" = dontDistribute super."R-pandoc"; + "RANSAC" = dontDistribute super."RANSAC"; + "RBTree" = dontDistribute super."RBTree"; + "RESTng" = dontDistribute super."RESTng"; + "RFC1751" = dontDistribute super."RFC1751"; + "RJson" = dontDistribute super."RJson"; + "RMP" = dontDistribute super."RMP"; + "RNAFold" = dontDistribute super."RNAFold"; + "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; + "RNAdesign" = dontDistribute super."RNAdesign"; + "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = doDistribute super."RNAlien_1_0_0"; + "RNAwolf" = dontDistribute super."RNAwolf"; + "Raincat" = dontDistribute super."Raincat"; + "Random123" = dontDistribute super."Random123"; + "RandomDotOrg" = dontDistribute super."RandomDotOrg"; + "Randometer" = dontDistribute super."Randometer"; + "Range" = dontDistribute super."Range"; + "Ranged-sets" = dontDistribute super."Ranged-sets"; + "Ranka" = dontDistribute super."Ranka"; + "Rasenschach" = dontDistribute super."Rasenschach"; + "Redmine" = dontDistribute super."Redmine"; + "Ref" = dontDistribute super."Ref"; + "Referees" = dontDistribute super."Referees"; + "RepLib" = dontDistribute super."RepLib"; + "ReplicateEffects" = dontDistribute super."ReplicateEffects"; + "ReviewBoard" = dontDistribute super."ReviewBoard"; + "RichConditional" = dontDistribute super."RichConditional"; + "RollingDirectory" = dontDistribute super."RollingDirectory"; + "RoyalMonad" = dontDistribute super."RoyalMonad"; + "RxHaskell" = dontDistribute super."RxHaskell"; + "SBench" = dontDistribute super."SBench"; + "SConfig" = dontDistribute super."SConfig"; + "SDL" = dontDistribute super."SDL"; + "SDL-gfx" = dontDistribute super."SDL-gfx"; + "SDL-image" = dontDistribute super."SDL-image"; + "SDL-mixer" = dontDistribute super."SDL-mixer"; + "SDL-mpeg" = dontDistribute super."SDL-mpeg"; + "SDL-ttf" = dontDistribute super."SDL-ttf"; + "SDL2-ttf" = dontDistribute super."SDL2-ttf"; + "SFML" = dontDistribute super."SFML"; + "SFML-control" = dontDistribute super."SFML-control"; + "SFont" = dontDistribute super."SFont"; + "SG" = dontDistribute super."SG"; + "SGdemo" = dontDistribute super."SGdemo"; + "SHA2" = dontDistribute super."SHA2"; + "SMTPClient" = dontDistribute super."SMTPClient"; + "SNet" = dontDistribute super."SNet"; + "SQLDeps" = dontDistribute super."SQLDeps"; + "STL" = dontDistribute super."STL"; + "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = dontDistribute super."SVGFonts"; + "SVGPath" = dontDistribute super."SVGPath"; + "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; + "SableCC2Hs" = dontDistribute super."SableCC2Hs"; + "Safe" = dontDistribute super."Safe"; + "Salsa" = dontDistribute super."Salsa"; + "Saturnin" = dontDistribute super."Saturnin"; + "SciFlow" = dontDistribute super."SciFlow"; + "ScratchFs" = dontDistribute super."ScratchFs"; + "Scurry" = dontDistribute super."Scurry"; + "Semantique" = dontDistribute super."Semantique"; + "Semigroup" = dontDistribute super."Semigroup"; + "SeqAlign" = dontDistribute super."SeqAlign"; + "SessionLogger" = dontDistribute super."SessionLogger"; + "ShellCheck" = dontDistribute super."ShellCheck"; + "Shellac" = dontDistribute super."Shellac"; + "Shellac-compatline" = dontDistribute super."Shellac-compatline"; + "Shellac-editline" = dontDistribute super."Shellac-editline"; + "Shellac-haskeline" = dontDistribute super."Shellac-haskeline"; + "Shellac-readline" = dontDistribute super."Shellac-readline"; + "ShowF" = dontDistribute super."ShowF"; + "Shrub" = dontDistribute super."Shrub"; + "Shu-thing" = dontDistribute super."Shu-thing"; + "SimpleAES" = dontDistribute super."SimpleAES"; + "SimpleEA" = dontDistribute super."SimpleEA"; + "SimpleGL" = dontDistribute super."SimpleGL"; + "SimpleH" = dontDistribute super."SimpleH"; + "SimpleLog" = dontDistribute super."SimpleLog"; + "SimpleServer" = dontDistribute super."SimpleServer"; + "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; + "Smooth" = dontDistribute super."Smooth"; + "SmtLib" = dontDistribute super."SmtLib"; + "Snusmumrik" = dontDistribute super."Snusmumrik"; + "SoOSiM" = dontDistribute super."SoOSiM"; + "SoccerFun" = dontDistribute super."SoccerFun"; + "SoccerFunGL" = dontDistribute super."SoccerFunGL"; + "Sonnex" = dontDistribute super."Sonnex"; + "SourceGraph" = dontDistribute super."SourceGraph"; + "Southpaw" = dontDistribute super."Southpaw"; + "SpaceInvaders" = dontDistribute super."SpaceInvaders"; + "SpacePrivateers" = dontDistribute super."SpacePrivateers"; + "SpinCounter" = dontDistribute super."SpinCounter"; + "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; + "SpreadsheetML" = dontDistribute super."SpreadsheetML"; + "Sprig" = dontDistribute super."Sprig"; + "Stasis" = dontDistribute super."Stasis"; + "StateVar-transformer" = dontDistribute super."StateVar-transformer"; + "StatisticalMethods" = dontDistribute super."StatisticalMethods"; + "Stomp" = dontDistribute super."Stomp"; + "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; + "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "StrappedTemplates" = dontDistribute super."StrappedTemplates"; + "StrategyLib" = dontDistribute super."StrategyLib"; + "Stream" = dontDistribute super."Stream"; + "StrictBench" = dontDistribute super."StrictBench"; + "SuffixStructures" = dontDistribute super."SuffixStructures"; + "SybWidget" = dontDistribute super."SybWidget"; + "SyntaxMacros" = dontDistribute super."SyntaxMacros"; + "Sysmon" = dontDistribute super."Sysmon"; + "TBC" = dontDistribute super."TBC"; + "TBit" = dontDistribute super."TBit"; + "THEff" = dontDistribute super."THEff"; + "TTTAS" = dontDistribute super."TTTAS"; + "TV" = dontDistribute super."TV"; + "TYB" = dontDistribute super."TYB"; + "TableAlgebra" = dontDistribute super."TableAlgebra"; + "Tables" = dontDistribute super."Tables"; + "Tablify" = dontDistribute super."Tablify"; + "Tainted" = dontDistribute super."Tainted"; + "Takusen" = dontDistribute super."Takusen"; + "Tape" = dontDistribute super."Tape"; + "TeaHS" = dontDistribute super."TeaHS"; + "Tensor" = dontDistribute super."Tensor"; + "TernaryTrees" = dontDistribute super."TernaryTrees"; + "TestExplode" = dontDistribute super."TestExplode"; + "Theora" = dontDistribute super."Theora"; + "Thingie" = dontDistribute super."Thingie"; + "ThreadObjects" = dontDistribute super."ThreadObjects"; + "Thrift" = dontDistribute super."Thrift"; + "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe"; + "TicTacToe" = dontDistribute super."TicTacToe"; + "TigerHash" = dontDistribute super."TigerHash"; + "TimePiece" = dontDistribute super."TimePiece"; + "TinyLaunchbury" = dontDistribute super."TinyLaunchbury"; + "TinyURL" = dontDistribute super."TinyURL"; + "Titim" = dontDistribute super."Titim"; + "Top" = dontDistribute super."Top"; + "Tournament" = dontDistribute super."Tournament"; + "TraceUtils" = dontDistribute super."TraceUtils"; + "TransformersStepByStep" = dontDistribute super."TransformersStepByStep"; + "Transhare" = dontDistribute super."Transhare"; + "TreeCounter" = dontDistribute super."TreeCounter"; + "TreeStructures" = dontDistribute super."TreeStructures"; + "TreeT" = dontDistribute super."TreeT"; + "Treiber" = dontDistribute super."Treiber"; + "TrendGraph" = dontDistribute super."TrendGraph"; + "TrieMap" = dontDistribute super."TrieMap"; + "Twofish" = dontDistribute super."Twofish"; + "TypeClass" = dontDistribute super."TypeClass"; + "TypeCompose" = dontDistribute super."TypeCompose"; + "TypeIlluminator" = dontDistribute super."TypeIlluminator"; + "TypeNat" = dontDistribute super."TypeNat"; + "TypingTester" = dontDistribute super."TypingTester"; + "UISF" = dontDistribute super."UISF"; + "UMM" = dontDistribute super."UMM"; + "URLT" = dontDistribute super."URLT"; + "URLb" = dontDistribute super."URLb"; + "UTFTConverter" = dontDistribute super."UTFTConverter"; + "Unique" = dontDistribute super."Unique"; + "Unixutils-shadow" = dontDistribute super."Unixutils-shadow"; + "Updater" = dontDistribute super."Updater"; + "UrlDisp" = dontDistribute super."UrlDisp"; + "Useful" = dontDistribute super."Useful"; + "UtilityTM" = dontDistribute super."UtilityTM"; + "VKHS" = dontDistribute super."VKHS"; + "Validation" = dontDistribute super."Validation"; + "Vec" = dontDistribute super."Vec"; + "Vec-Boolean" = dontDistribute super."Vec-Boolean"; + "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw"; + "Vec-Transform" = dontDistribute super."Vec-Transform"; + "VecN" = dontDistribute super."VecN"; + "Verba" = dontDistribute super."Verba"; + "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "Vulkan" = dontDistribute super."Vulkan"; + "WAVE" = dontDistribute super."WAVE"; + "WL500gPControl" = dontDistribute super."WL500gPControl"; + "WL500gPLib" = dontDistribute super."WL500gPLib"; + "WMSigner" = dontDistribute super."WMSigner"; + "WURFL" = dontDistribute super."WURFL"; + "WXDiffCtrl" = dontDistribute super."WXDiffCtrl"; + "WashNGo" = dontDistribute super."WashNGo"; + "WaveFront" = dontDistribute super."WaveFront"; + "Weather" = dontDistribute super."Weather"; + "WebBits" = dontDistribute super."WebBits"; + "WebBits-Html" = dontDistribute super."WebBits-Html"; + "WebBits-multiplate" = dontDistribute super."WebBits-multiplate"; + "WebCont" = dontDistribute super."WebCont"; + "WeberLogic" = dontDistribute super."WeberLogic"; + "Webrexp" = dontDistribute super."Webrexp"; + "Wheb" = dontDistribute super."Wheb"; + "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; + "Win32-errors" = dontDistribute super."Win32-errors"; + "Win32-junction-point" = dontDistribute super."Win32-junction-point"; + "Win32-security" = dontDistribute super."Win32-security"; + "Win32-services" = dontDistribute super."Win32-services"; + "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper"; + "Wired" = dontDistribute super."Wired"; + "WordAlignment" = dontDistribute super."WordAlignment"; + "WordNet" = dontDistribute super."WordNet"; + "WordNet-ghc74" = dontDistribute super."WordNet-ghc74"; + "Wordlint" = dontDistribute super."Wordlint"; + "WxGeneric" = dontDistribute super."WxGeneric"; + "X11-extras" = dontDistribute super."X11-extras"; + "X11-rm" = dontDistribute super."X11-rm"; + "X11-xdamage" = dontDistribute super."X11-xdamage"; + "X11-xfixes" = dontDistribute super."X11-xfixes"; + "X11-xft" = dontDistribute super."X11-xft"; + "X11-xshape" = dontDistribute super."X11-xshape"; + "XAttr" = dontDistribute super."XAttr"; + "XInput" = dontDistribute super."XInput"; + "XMMS" = dontDistribute super."XMMS"; + "XMPP" = dontDistribute super."XMPP"; + "XSaiga" = dontDistribute super."XSaiga"; + "Xec" = dontDistribute super."Xec"; + "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter"; + "Xorshift128Plus" = dontDistribute super."Xorshift128Plus"; + "YACPong" = dontDistribute super."YACPong"; + "YFrob" = dontDistribute super."YFrob"; + "Yablog" = dontDistribute super."Yablog"; + "YamlReference" = dontDistribute super."YamlReference"; + "Yampa-core" = dontDistribute super."Yampa-core"; + "Yocto" = dontDistribute super."Yocto"; + "Yogurt" = dontDistribute super."Yogurt"; + "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone"; + "ZEBEDDE" = dontDistribute super."ZEBEDDE"; + "ZFS" = dontDistribute super."ZFS"; + "ZMachine" = dontDistribute super."ZMachine"; + "ZipFold" = dontDistribute super."ZipFold"; + "ZipperAG" = dontDistribute super."ZipperAG"; + "Zora" = dontDistribute super."Zora"; + "Zwaluw" = dontDistribute super."Zwaluw"; + "a50" = dontDistribute super."a50"; + "abacate" = dontDistribute super."abacate"; + "abc-puzzle" = dontDistribute super."abc-puzzle"; + "abcBridge" = dontDistribute super."abcBridge"; + "abcnotation" = dontDistribute super."abcnotation"; + "abeson" = dontDistribute super."abeson"; + "abstract-deque-tests" = dontDistribute super."abstract-deque-tests"; + "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate"; + "abt" = dontDistribute super."abt"; + "ac-machine" = dontDistribute super."ac-machine"; + "ac-machine-conduit" = dontDistribute super."ac-machine-conduit"; + "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic"; + "accelerate-cublas" = dontDistribute super."accelerate-cublas"; + "accelerate-cuda" = dontDistribute super."accelerate-cuda"; + "accelerate-cufft" = dontDistribute super."accelerate-cufft"; + "accelerate-examples" = dontDistribute super."accelerate-examples"; + "accelerate-fft" = dontDistribute super."accelerate-fft"; + "accelerate-fftw" = dontDistribute super."accelerate-fftw"; + "accelerate-fourier" = dontDistribute super."accelerate-fourier"; + "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; + "accelerate-io" = dontDistribute super."accelerate-io"; + "accelerate-random" = dontDistribute super."accelerate-random"; + "accelerate-utility" = dontDistribute super."accelerate-utility"; + "accentuateus" = dontDistribute super."accentuateus"; + "access-time" = dontDistribute super."access-time"; + "acid-state-dist" = dontDistribute super."acid-state-dist"; + "acid-state-tls" = dontDistribute super."acid-state-tls"; + "acl2" = dontDistribute super."acl2"; + "acme-all-monad" = dontDistribute super."acme-all-monad"; + "acme-box" = dontDistribute super."acme-box"; + "acme-cadre" = dontDistribute super."acme-cadre"; + "acme-cofunctor" = dontDistribute super."acme-cofunctor"; + "acme-colosson" = dontDistribute super."acme-colosson"; + "acme-comonad" = dontDistribute super."acme-comonad"; + "acme-cutegirl" = dontDistribute super."acme-cutegirl"; + "acme-dont" = dontDistribute super."acme-dont"; + "acme-flipping-tables" = dontDistribute super."acme-flipping-tables"; + "acme-grawlix" = dontDistribute super."acme-grawlix"; + "acme-hq9plus" = dontDistribute super."acme-hq9plus"; + "acme-http" = dontDistribute super."acme-http"; + "acme-inator" = dontDistribute super."acme-inator"; + "acme-io" = dontDistribute super."acme-io"; + "acme-lolcat" = dontDistribute super."acme-lolcat"; + "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; + "acme-memorandom" = dontDistribute super."acme-memorandom"; + "acme-microwave" = dontDistribute super."acme-microwave"; + "acme-miscorder" = dontDistribute super."acme-miscorder"; + "acme-missiles" = dontDistribute super."acme-missiles"; + "acme-now" = dontDistribute super."acme-now"; + "acme-numbersystem" = dontDistribute super."acme-numbersystem"; + "acme-omitted" = dontDistribute super."acme-omitted"; + "acme-one" = dontDistribute super."acme-one"; + "acme-operators" = dontDistribute super."acme-operators"; + "acme-php" = dontDistribute super."acme-php"; + "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers"; + "acme-realworld" = dontDistribute super."acme-realworld"; + "acme-safe" = dontDistribute super."acme-safe"; + "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel"; + "acme-strfry" = dontDistribute super."acme-strfry"; + "acme-stringly-typed" = dontDistribute super."acme-stringly-typed"; + "acme-strtok" = dontDistribute super."acme-strtok"; + "acme-timemachine" = dontDistribute super."acme-timemachine"; + "acme-year" = dontDistribute super."acme-year"; + "acme-zero" = dontDistribute super."acme-zero"; + "activehs" = dontDistribute super."activehs"; + "activehs-base" = dontDistribute super."activehs-base"; + "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; + "actor" = dontDistribute super."actor"; + "adaptive-containers" = dontDistribute super."adaptive-containers"; + "adaptive-tuple" = dontDistribute super."adaptive-tuple"; + "adb" = dontDistribute super."adb"; + "adblock2privoxy" = dontDistribute super."adblock2privoxy"; + "addLicenseInfo" = dontDistribute super."addLicenseInfo"; + "adhoc-network" = dontDistribute super."adhoc-network"; + "adict" = dontDistribute super."adict"; + "adler32" = dontDistribute super."adler32"; + "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; + "adp-multi" = dontDistribute super."adp-multi"; + "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-lens" = dontDistribute super."aeson-lens"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-schema" = dontDistribute super."aeson-schema"; + "aeson-serialize" = dontDistribute super."aeson-serialize"; + "aeson-smart" = dontDistribute super."aeson-smart"; + "aeson-streams" = dontDistribute super."aeson-streams"; + "aeson-t" = dontDistribute super."aeson-t"; + "aeson-toolkit" = dontDistribute super."aeson-toolkit"; + "aeson-value-parser" = dontDistribute super."aeson-value-parser"; + "aeson-yak" = dontDistribute super."aeson-yak"; + "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc"; + "afis" = dontDistribute super."afis"; + "afv" = dontDistribute super."afv"; + "ag-pictgen" = dontDistribute super."ag-pictgen"; + "agda-server" = dontDistribute super."agda-server"; + "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; + "agum" = dontDistribute super."agum"; + "aig" = dontDistribute super."aig"; + "air" = dontDistribute super."air"; + "air-extra" = dontDistribute super."air-extra"; + "air-spec" = dontDistribute super."air-spec"; + "air-th" = dontDistribute super."air-th"; + "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; + "aivika" = dontDistribute super."aivika"; + "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-experiment" = dontDistribute super."aivika-experiment"; + "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; + "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; + "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams"; + "aivika-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "alea" = dontDistribute super."alea"; + "alex-meta" = dontDistribute super."alex-meta"; + "alfred" = dontDistribute super."alfred"; + "alga" = dontDistribute super."alga"; + "algebra" = dontDistribute super."algebra"; + "algebra-dag" = dontDistribute super."algebra-dag"; + "algebra-sql" = dontDistribute super."algebra-sql"; + "algebraic" = dontDistribute super."algebraic"; + "algebraic-classes" = dontDistribute super."algebraic-classes"; + "align" = dontDistribute super."align"; + "align-text" = dontDistribute super."align-text"; + "aligned-foreignptr" = dontDistribute super."aligned-foreignptr"; + "allocated-processor" = dontDistribute super."allocated-processor"; + "alloy" = dontDistribute super."alloy"; + "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd"; + "almost-fix" = dontDistribute super."almost-fix"; + "alms" = dontDistribute super."alms"; + "alpha" = dontDistribute super."alpha"; + "alpino-tools" = dontDistribute super."alpino-tools"; + "alsa" = dontDistribute super."alsa"; + "alsa-core" = dontDistribute super."alsa-core"; + "alsa-gui" = dontDistribute super."alsa-gui"; + "alsa-midi" = dontDistribute super."alsa-midi"; + "alsa-mixer" = dontDistribute super."alsa-mixer"; + "alsa-pcm" = dontDistribute super."alsa-pcm"; + "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests"; + "alsa-seq" = dontDistribute super."alsa-seq"; + "alsa-seq-tests" = dontDistribute super."alsa-seq-tests"; + "altcomposition" = dontDistribute super."altcomposition"; + "alternative-io" = dontDistribute super."alternative-io"; + "altfloat" = dontDistribute super."altfloat"; + "alure" = dontDistribute super."alure"; + "amazon-emailer" = dontDistribute super."amazon-emailer"; + "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; + "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; + "ampersand" = dontDistribute super."ampersand"; + "amqp-conduit" = dontDistribute super."amqp-conduit"; + "amrun" = dontDistribute super."amrun"; + "analyze-client" = dontDistribute super."analyze-client"; + "anansi" = dontDistribute super."anansi"; + "anansi-hscolour" = dontDistribute super."anansi-hscolour"; + "anansi-pandoc" = dontDistribute super."anansi-pandoc"; + "anatomy" = dontDistribute super."anatomy"; + "android" = dontDistribute super."android"; + "android-lint-summary" = dontDistribute super."android-lint-summary"; + "animalcase" = dontDistribute super."animalcase"; + "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; + "ansi-pretty" = dontDistribute super."ansi-pretty"; + "ansigraph" = dontDistribute super."ansigraph"; + "antagonist" = dontDistribute super."antagonist"; + "antfarm" = dontDistribute super."antfarm"; + "anticiv" = dontDistribute super."anticiv"; + "antigate" = dontDistribute super."antigate"; + "antimirov" = dontDistribute super."antimirov"; + "antiquoter" = dontDistribute super."antiquoter"; + "antisplice" = dontDistribute super."antisplice"; + "antlrc" = dontDistribute super."antlrc"; + "anydbm" = dontDistribute super."anydbm"; + "aosd" = dontDistribute super."aosd"; + "ap-reflect" = dontDistribute super."ap-reflect"; + "apache-md5" = dontDistribute super."apache-md5"; + "apelsin" = dontDistribute super."apelsin"; + "api-builder" = dontDistribute super."api-builder"; + "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; + "api-tools" = dontDistribute super."api-tools"; + "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; + "apiary-purescript" = dontDistribute super."apiary-purescript"; + "apis" = dontDistribute super."apis"; + "apotiki" = dontDistribute super."apotiki"; + "app-lens" = dontDistribute super."app-lens"; + "appc" = dontDistribute super."appc"; + "applicative-extras" = dontDistribute super."applicative-extras"; + "applicative-fail" = dontDistribute super."applicative-fail"; + "applicative-numbers" = dontDistribute super."applicative-numbers"; + "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-quoters" = dontDistribute super."applicative-quoters"; + "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; + "apportionment" = dontDistribute super."apportionment"; + "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate-equality" = dontDistribute super."approximate-equality"; + "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; + "arb-fft" = dontDistribute super."arb-fft"; + "arbb-vm" = dontDistribute super."arbb-vm"; + "archive" = dontDistribute super."archive"; + "archiver" = dontDistribute super."archiver"; + "archlinux" = dontDistribute super."archlinux"; + "archlinux-web" = dontDistribute super."archlinux-web"; + "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; + "arff" = dontDistribute super."arff"; + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon2" = dontDistribute super."argon2"; + "argparser" = dontDistribute super."argparser"; + "arguedit" = dontDistribute super."arguedit"; + "ariadne" = dontDistribute super."ariadne"; + "arion" = dontDistribute super."arion"; + "arith-encode" = dontDistribute super."arith-encode"; + "arithmatic" = dontDistribute super."arithmatic"; + "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = dontDistribute super."arithmoi"; + "armada" = dontDistribute super."armada"; + "arpa" = dontDistribute super."arpa"; + "array-forth" = dontDistribute super."array-forth"; + "array-memoize" = dontDistribute super."array-memoize"; + "array-primops" = dontDistribute super."array-primops"; + "array-utils" = dontDistribute super."array-utils"; + "arrow-improve" = dontDistribute super."arrow-improve"; + "arrowapply-utils" = dontDistribute super."arrowapply-utils"; + "arrowp" = dontDistribute super."arrowp"; + "arrows" = dontDistribute super."arrows"; + "artery" = dontDistribute super."artery"; + "arx" = dontDistribute super."arx"; + "arxiv" = dontDistribute super."arxiv"; + "ascetic" = dontDistribute super."ascetic"; + "ascii" = dontDistribute super."ascii"; + "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; + "asic" = dontDistribute super."asic"; + "asil" = dontDistribute super."asil"; + "asn1-data" = dontDistribute super."asn1-data"; + "asn1dump" = dontDistribute super."asn1dump"; + "assembler" = dontDistribute super."assembler"; + "assert" = dontDistribute super."assert"; + "assert-failure" = dontDistribute super."assert-failure"; + "assertions" = dontDistribute super."assertions"; + "assimp" = dontDistribute super."assimp"; + "astar" = dontDistribute super."astar"; + "astrds" = dontDistribute super."astrds"; + "astview" = dontDistribute super."astview"; + "astview-utils" = dontDistribute super."astview-utils"; + "async-extras" = dontDistribute super."async-extras"; + "async-manager" = dontDistribute super."async-manager"; + "async-pool" = dontDistribute super."async-pool"; + "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions"; + "aterm" = dontDistribute super."aterm"; + "aterm-utils" = dontDistribute super."aterm-utils"; + "atl" = dontDistribute super."atl"; + "atlassian-connect-core" = dontDistribute super."atlassian-connect-core"; + "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor"; + "atmos" = dontDistribute super."atmos"; + "atmos-dimensional" = dontDistribute super."atmos-dimensional"; + "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atom" = dontDistribute super."atom"; + "atom-basic" = dontDistribute super."atom-basic"; + "atom-conduit" = dontDistribute super."atom-conduit"; + "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; + "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; + "atomic-write" = dontDistribute super."atomic-write"; + "atomo" = dontDistribute super."atomo"; + "atp-haskell" = dontDistribute super."atp-haskell"; + "atrans" = dontDistribute super."atrans"; + "attempt" = dontDistribute super."attempt"; + "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec-arff" = dontDistribute super."attoparsec-arff"; + "attoparsec-binary" = dontDistribute super."attoparsec-binary"; + "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; + "attoparsec-csv" = dontDistribute super."attoparsec-csv"; + "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee"; + "attoparsec-parsec" = dontDistribute super."attoparsec-parsec"; + "attoparsec-text" = dontDistribute super."attoparsec-text"; + "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator"; + "attosplit" = dontDistribute super."attosplit"; + "atuin" = dontDistribute super."atuin"; + "audacity" = dontDistribute super."audacity"; + "audiovisual" = dontDistribute super."audiovisual"; + "augeas" = dontDistribute super."augeas"; + "augur" = dontDistribute super."augur"; + "aur" = dontDistribute super."aur"; + "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; + "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authinfo-hs" = dontDistribute super."authinfo-hs"; + "authoring" = dontDistribute super."authoring"; + "autoexporter" = dontDistribute super."autoexporter"; + "autonix-deps" = dontDistribute super."autonix-deps"; + "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; + "autoproc" = dontDistribute super."autoproc"; + "avahi" = dontDistribute super."avahi"; + "avatar-generator" = dontDistribute super."avatar-generator"; + "average" = dontDistribute super."average"; + "avl-static" = dontDistribute super."avl-static"; + "avr-shake" = dontDistribute super."avr-shake"; + "awesome-prelude" = dontDistribute super."awesome-prelude"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; + "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; + "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; + "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams"; + "aws-ec2" = dontDistribute super."aws-ec2"; + "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder"; + "aws-general" = dontDistribute super."aws-general"; + "aws-kinesis" = dontDistribute super."aws-kinesis"; + "aws-kinesis-client" = dontDistribute super."aws-kinesis-client"; + "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard"; + "aws-lambda" = dontDistribute super."aws-lambda"; + "aws-performance-tests" = dontDistribute super."aws-performance-tests"; + "aws-route53" = dontDistribute super."aws-route53"; + "aws-sdk" = dontDistribute super."aws-sdk"; + "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter"; + "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered"; + "aws-sign4" = dontDistribute super."aws-sign4"; + "aws-sns" = dontDistribute super."aws-sns"; + "azure-acs" = dontDistribute super."azure-acs"; + "azure-service-api" = dontDistribute super."azure-service-api"; + "azure-servicebus" = dontDistribute super."azure-servicebus"; + "azurify" = dontDistribute super."azurify"; + "b-tree" = dontDistribute super."b-tree"; + "babylon" = dontDistribute super."babylon"; + "backdropper" = dontDistribute super."backdropper"; + "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; + "backward-state" = dontDistribute super."backward-state"; + "bacteria" = dontDistribute super."bacteria"; + "bag" = dontDistribute super."bag"; + "bamboo" = dontDistribute super."bamboo"; + "bamboo-launcher" = dontDistribute super."bamboo-launcher"; + "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight"; + "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo"; + "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint"; + "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5"; + "bamse" = dontDistribute super."bamse"; + "bamstats" = dontDistribute super."bamstats"; + "bank-holiday-usa" = dontDistribute super."bank-holiday-usa"; + "banwords" = dontDistribute super."banwords"; + "barchart" = dontDistribute super."barchart"; + "barcodes-code128" = dontDistribute super."barcodes-code128"; + "barecheck" = dontDistribute super."barecheck"; + "barley" = dontDistribute super."barley"; + "barrie" = dontDistribute super."barrie"; + "barrier-monad" = dontDistribute super."barrier-monad"; + "base-generics" = dontDistribute super."base-generics"; + "base-io-access" = dontDistribute super."base-io-access"; + "base-prelude" = doDistribute super."base-prelude_0_1_21"; + "base32-bytestring" = dontDistribute super."base32-bytestring"; + "base58-bytestring" = dontDistribute super."base58-bytestring"; + "base58address" = dontDistribute super."base58address"; + "base64-conduit" = dontDistribute super."base64-conduit"; + "base91" = dontDistribute super."base91"; + "basex-client" = dontDistribute super."basex-client"; + "bash" = dontDistribute super."bash"; + "basic-lens" = dontDistribute super."basic-lens"; + "basic-sop" = dontDistribute super."basic-sop"; + "baskell" = dontDistribute super."baskell"; + "battlenet" = dontDistribute super."battlenet"; + "battlenet-yesod" = dontDistribute super."battlenet-yesod"; + "battleships" = dontDistribute super."battleships"; + "bayes-stack" = dontDistribute super."bayes-stack"; + "bbdb" = dontDistribute super."bbdb"; + "bbi" = dontDistribute super."bbi"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; + "beamable" = dontDistribute super."beamable"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; + "benchmark-function" = dontDistribute super."benchmark-function"; + "bencoding" = dontDistribute super."bencoding"; + "berkeleydb" = dontDistribute super."berkeleydb"; + "berp" = dontDistribute super."berp"; + "bert" = dontDistribute super."bert"; + "besout" = dontDistribute super."besout"; + "bet" = dontDistribute super."bet"; + "betacode" = dontDistribute super."betacode"; + "between" = dontDistribute super."between"; + "bf-cata" = dontDistribute super."bf-cata"; + "bff" = dontDistribute super."bff"; + "bff-mono" = dontDistribute super."bff-mono"; + "bgmax" = dontDistribute super."bgmax"; + "bgzf" = dontDistribute super."bgzf"; + "bibtex" = dontDistribute super."bibtex"; + "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; + "bidispec" = dontDistribute super."bidispec"; + "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; + "billboard-parser" = dontDistribute super."billboard-parser"; + "billeksah-forms" = dontDistribute super."billeksah-forms"; + "billeksah-main" = dontDistribute super."billeksah-main"; + "billeksah-main-static" = dontDistribute super."billeksah-main-static"; + "billeksah-pane" = dontDistribute super."billeksah-pane"; + "billeksah-services" = dontDistribute super."billeksah-services"; + "bimaps" = dontDistribute super."bimaps"; + "binary-bits" = dontDistribute super."binary-bits"; + "binary-communicator" = dontDistribute super."binary-communicator"; + "binary-derive" = dontDistribute super."binary-derive"; + "binary-enum" = dontDistribute super."binary-enum"; + "binary-file" = dontDistribute super."binary-file"; + "binary-generic" = dontDistribute super."binary-generic"; + "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-protocol" = dontDistribute super."binary-protocol"; + "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; + "binary-shared" = dontDistribute super."binary-shared"; + "binary-state" = dontDistribute super."binary-state"; + "binary-store" = dontDistribute super."binary-store"; + "binary-streams" = dontDistribute super."binary-streams"; + "binary-strict" = dontDistribute super."binary-strict"; + "binarydefer" = dontDistribute super."binarydefer"; + "bind-marshal" = dontDistribute super."bind-marshal"; + "binding-core" = dontDistribute super."binding-core"; + "binding-gtk" = dontDistribute super."binding-gtk"; + "binding-wx" = dontDistribute super."binding-wx"; + "bindings" = dontDistribute super."bindings"; + "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-K8055" = dontDistribute super."bindings-K8055"; + "bindings-apr" = dontDistribute super."bindings-apr"; + "bindings-apr-util" = dontDistribute super."bindings-apr-util"; + "bindings-audiofile" = dontDistribute super."bindings-audiofile"; + "bindings-bfd" = dontDistribute super."bindings-bfd"; + "bindings-cctools" = dontDistribute super."bindings-cctools"; + "bindings-codec2" = dontDistribute super."bindings-codec2"; + "bindings-common" = dontDistribute super."bindings-common"; + "bindings-dc1394" = dontDistribute super."bindings-dc1394"; + "bindings-directfb" = dontDistribute super."bindings-directfb"; + "bindings-eskit" = dontDistribute super."bindings-eskit"; + "bindings-fann" = dontDistribute super."bindings-fann"; + "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth"; + "bindings-friso" = dontDistribute super."bindings-friso"; + "bindings-glib" = dontDistribute super."bindings-glib"; + "bindings-gobject" = dontDistribute super."bindings-gobject"; + "bindings-gpgme" = dontDistribute super."bindings-gpgme"; + "bindings-gsl" = dontDistribute super."bindings-gsl"; + "bindings-gts" = dontDistribute super."bindings-gts"; + "bindings-hamlib" = dontDistribute super."bindings-hamlib"; + "bindings-hdf5" = dontDistribute super."bindings-hdf5"; + "bindings-levmar" = dontDistribute super."bindings-levmar"; + "bindings-libcddb" = dontDistribute super."bindings-libcddb"; + "bindings-libffi" = dontDistribute super."bindings-libffi"; + "bindings-libftdi" = dontDistribute super."bindings-libftdi"; + "bindings-librrd" = dontDistribute super."bindings-librrd"; + "bindings-libstemmer" = dontDistribute super."bindings-libstemmer"; + "bindings-libusb" = dontDistribute super."bindings-libusb"; + "bindings-libv4l2" = dontDistribute super."bindings-libv4l2"; + "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2"; + "bindings-lxc" = dontDistribute super."bindings-lxc"; + "bindings-mmap" = dontDistribute super."bindings-mmap"; + "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal"; + "bindings-nettle" = dontDistribute super."bindings-nettle"; + "bindings-parport" = dontDistribute super."bindings-parport"; + "bindings-portaudio" = dontDistribute super."bindings-portaudio"; + "bindings-potrace" = dontDistribute super."bindings-potrace"; + "bindings-ppdev" = dontDistribute super."bindings-ppdev"; + "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd"; + "bindings-sane" = dontDistribute super."bindings-sane"; + "bindings-sc3" = dontDistribute super."bindings-sc3"; + "bindings-sipc" = dontDistribute super."bindings-sipc"; + "bindings-sophia" = dontDistribute super."bindings-sophia"; + "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; + "bindings-svm" = dontDistribute super."bindings-svm"; + "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; + "binembed" = dontDistribute super."binembed"; + "binembed-example" = dontDistribute super."binembed-example"; + "bini" = dontDistribute super."bini"; + "bio" = dontDistribute super."bio"; + "biohazard" = dontDistribute super."biohazard"; + "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit"; + "biosff" = dontDistribute super."biosff"; + "biostockholm" = dontDistribute super."biostockholm"; + "bird" = dontDistribute super."bird"; + "bit-array" = dontDistribute super."bit-array"; + "bit-vector" = dontDistribute super."bit-vector"; + "bitarray" = dontDistribute super."bitarray"; + "bitcoin-rpc" = dontDistribute super."bitcoin-rpc"; + "bitly-cli" = dontDistribute super."bitly-cli"; + "bitmap" = dontDistribute super."bitmap"; + "bitmap-opengl" = dontDistribute super."bitmap-opengl"; + "bitmaps" = dontDistribute super."bitmaps"; + "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-conduit" = dontDistribute super."bits-conduit"; + "bits-extras" = dontDistribute super."bits-extras"; + "bitset" = dontDistribute super."bitset"; + "bitspeak" = dontDistribute super."bitspeak"; + "bitstream" = dontDistribute super."bitstream"; + "bitstring" = dontDistribute super."bitstring"; + "bittorrent" = dontDistribute super."bittorrent"; + "bitvec" = dontDistribute super."bitvec"; + "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; + "bk-tree" = dontDistribute super."bk-tree"; + "bkr" = dontDistribute super."bkr"; + "bktrees" = dontDistribute super."bktrees"; + "bla" = dontDistribute super."bla"; + "black-jewel" = dontDistribute super."black-jewel"; + "blacktip" = dontDistribute super."blacktip"; + "blakesum" = dontDistribute super."blakesum"; + "blakesum-demo" = dontDistribute super."blakesum-demo"; + "blas" = dontDistribute super."blas"; + "blas-hs" = dontDistribute super."blas-hs"; + "blatex" = dontDistribute super."blatex"; + "blaze" = dontDistribute super."blaze"; + "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; + "blaze-from-html" = dontDistribute super."blaze-from-html"; + "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; + "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat"; + "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; + "blaze-json" = dontDistribute super."blaze-json"; + "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-textual-native" = dontDistribute super."blaze-textual-native"; + "blazeMarker" = dontDistribute super."blazeMarker"; + "blink1" = dontDistribute super."blink1"; + "blip" = dontDistribute super."blip"; + "bliplib" = dontDistribute super."bliplib"; + "blocking-transactions" = dontDistribute super."blocking-transactions"; + "blogination" = dontDistribute super."blogination"; + "bloodhound" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloxorz" = dontDistribute super."bloxorz"; + "blubber" = dontDistribute super."blubber"; + "blubber-server" = dontDistribute super."blubber-server"; + "bluetile" = dontDistribute super."bluetile"; + "bluetileutils" = dontDistribute super."bluetileutils"; + "blunt" = dontDistribute super."blunt"; + "board-games" = dontDistribute super."board-games"; + "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; + "boolean-list" = dontDistribute super."boolean-list"; + "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; + "boolexpr" = dontDistribute super."boolexpr"; + "bools" = dontDistribute super."bools"; + "boolsimplifier" = dontDistribute super."boolsimplifier"; + "boomange" = dontDistribute super."boomange"; + "boombox" = dontDistribute super."boombox"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "bot" = dontDistribute super."bot"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; + "bowntz" = dontDistribute super."bowntz"; + "bpann" = dontDistribute super."bpann"; + "braid" = dontDistribute super."braid"; + "brainfuck" = dontDistribute super."brainfuck"; + "brainfuck-monad" = dontDistribute super."brainfuck-monad"; + "brainfuck-tut" = dontDistribute super."brainfuck-tut"; + "break" = dontDistribute super."break"; + "breakout" = dontDistribute super."breakout"; + "breve" = dontDistribute super."breve"; + "brians-brain" = dontDistribute super."brians-brain"; + "brillig" = dontDistribute super."brillig"; + "broccoli" = dontDistribute super."broccoli"; + "broker-haskell" = dontDistribute super."broker-haskell"; + "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson-generic" = dontDistribute super."bson-generic"; + "bson-generics" = dontDistribute super."bson-generics"; + "bson-mapping" = dontDistribute super."bson-mapping"; + "bspack" = dontDistribute super."bspack"; + "bsparse" = dontDistribute super."bsparse"; + "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; + "buffer-pipe" = dontDistribute super."buffer-pipe"; + "buffon" = dontDistribute super."buffon"; + "bugzilla" = dontDistribute super."bugzilla"; + "buildable" = dontDistribute super."buildable"; + "buildbox" = dontDistribute super."buildbox"; + "buildbox-tools" = dontDistribute super."buildbox-tools"; + "buildwrapper" = dontDistribute super."buildwrapper"; + "bullet" = dontDistribute super."bullet"; + "burst-detection" = dontDistribute super."burst-detection"; + "bus-pirate" = dontDistribute super."bus-pirate"; + "buster" = dontDistribute super."buster"; + "buster-gtk" = dontDistribute super."buster-gtk"; + "buster-network" = dontDistribute super."buster-network"; + "butterflies" = dontDistribute super."butterflies"; + "bv" = dontDistribute super."bv"; + "byline" = dontDistribute super."byline"; + "bytable" = dontDistribute super."bytable"; + "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-class" = dontDistribute super."bytestring-class"; + "bytestring-csv" = dontDistribute super."bytestring-csv"; + "bytestring-delta" = dontDistribute super."bytestring-delta"; + "bytestring-from" = dontDistribute super."bytestring-from"; + "bytestring-nums" = dontDistribute super."bytestring-nums"; + "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-rematch" = dontDistribute super."bytestring-rematch"; + "bytestring-short" = dontDistribute super."bytestring-short"; + "bytestring-show" = dontDistribute super."bytestring-show"; + "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder"; + "bytestringparser" = dontDistribute super."bytestringparser"; + "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary"; + "bytestringreadp" = dontDistribute super."bytestringreadp"; + "c-dsl" = dontDistribute super."c-dsl"; + "c-io" = dontDistribute super."c-io"; + "c-storable-deriving" = dontDistribute super."c-storable-deriving"; + "c0check" = dontDistribute super."c0check"; + "c0parser" = dontDistribute super."c0parser"; + "c10k" = dontDistribute super."c10k"; + "c2hsc" = dontDistribute super."c2hsc"; + "cab" = dontDistribute super."cab"; + "cabal-audit" = dontDistribute super."cabal-audit"; + "cabal-bounds" = dontDistribute super."cabal-bounds"; + "cabal-cargs" = dontDistribute super."cabal-cargs"; + "cabal-constraints" = dontDistribute super."cabal-constraints"; + "cabal-db" = dontDistribute super."cabal-db"; + "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; + "cabal-dev" = dontDistribute super."cabal-dev"; + "cabal-dir" = dontDistribute super."cabal-dir"; + "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags"; + "cabal-ghci" = dontDistribute super."cabal-ghci"; + "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; + "cabal-info" = dontDistribute super."cabal-info"; + "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; + "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; + "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; + "cabal-lenses" = dontDistribute super."cabal-lenses"; + "cabal-macosx" = dontDistribute super."cabal-macosx"; + "cabal-meta" = dontDistribute super."cabal-meta"; + "cabal-mon" = dontDistribute super."cabal-mon"; + "cabal-nirvana" = dontDistribute super."cabal-nirvana"; + "cabal-progdeps" = dontDistribute super."cabal-progdeps"; + "cabal-query" = dontDistribute super."cabal-query"; + "cabal-scripts" = dontDistribute super."cabal-scripts"; + "cabal-setup" = dontDistribute super."cabal-setup"; + "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-test" = dontDistribute super."cabal-test"; + "cabal-test-bin" = dontDistribute super."cabal-test-bin"; + "cabal-test-compat" = dontDistribute super."cabal-test-compat"; + "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck"; + "cabal-uninstall" = dontDistribute super."cabal-uninstall"; + "cabal-upload" = dontDistribute super."cabal-upload"; + "cabal2arch" = dontDistribute super."cabal2arch"; + "cabal2doap" = dontDistribute super."cabal2doap"; + "cabal2ebuild" = dontDistribute super."cabal2ebuild"; + "cabal2ghci" = dontDistribute super."cabal2ghci"; + "cabal2nix" = dontDistribute super."cabal2nix"; + "cabal2spec" = dontDistribute super."cabal2spec"; + "cabalQuery" = dontDistribute super."cabalQuery"; + "cabalg" = dontDistribute super."cabalg"; + "cabalgraph" = dontDistribute super."cabalgraph"; + "cabalmdvrpm" = dontDistribute super."cabalmdvrpm"; + "cabalrpmdeps" = dontDistribute super."cabalrpmdeps"; + "cabalvchk" = dontDistribute super."cabalvchk"; + "cabin" = dontDistribute super."cabin"; + "cabocha" = dontDistribute super."cabocha"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = doDistribute super."cacophony_0_4_0"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "cairo-appbase" = dontDistribute super."cairo-appbase"; + "cake" = dontDistribute super."cake"; + "cake3" = dontDistribute super."cake3"; + "cakyrespa" = dontDistribute super."cakyrespa"; + "cal3d" = dontDistribute super."cal3d"; + "cal3d-examples" = dontDistribute super."cal3d-examples"; + "cal3d-opengl" = dontDistribute super."cal3d-opengl"; + "calc" = dontDistribute super."calc"; + "caldims" = dontDistribute super."caldims"; + "caledon" = dontDistribute super."caledon"; + "call" = dontDistribute super."call"; + "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; + "camh" = dontDistribute super."camh"; + "campfire" = dontDistribute super."campfire"; + "canonical-filepath" = dontDistribute super."canonical-filepath"; + "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; + "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; + "cantor" = dontDistribute super."cantor"; + "cao" = dontDistribute super."cao"; + "cap" = dontDistribute super."cap"; + "capped-list" = dontDistribute super."capped-list"; + "capri" = dontDistribute super."capri"; + "car-pool" = dontDistribute super."car-pool"; + "caramia" = dontDistribute super."caramia"; + "carboncopy" = dontDistribute super."carboncopy"; + "carettah" = dontDistribute super."carettah"; + "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; + "casadi-bindings" = dontDistribute super."casadi-bindings"; + "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; + "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; + "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal"; + "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface"; + "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; + "cascading" = dontDistribute super."cascading"; + "case-conversion" = dontDistribute super."case-conversion"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "casr-logbook" = dontDistribute super."casr-logbook"; + "cassandra-cql" = dontDistribute super."cassandra-cql"; + "cassandra-thrift" = dontDistribute super."cassandra-thrift"; + "cassava-conduit" = dontDistribute super."cassava-conduit"; + "cassava-streams" = dontDistribute super."cassava-streams"; + "cassette" = dontDistribute super."cassette"; + "cassy" = dontDistribute super."cassy"; + "castle" = dontDistribute super."castle"; + "casui" = dontDistribute super."casui"; + "catamorphism" = dontDistribute super."catamorphism"; + "catch-fd" = dontDistribute super."catch-fd"; + "categorical-algebra" = dontDistribute super."categorical-algebra"; + "categories" = dontDistribute super."categories"; + "category-extras" = dontDistribute super."category-extras"; + "category-traced" = dontDistribute super."category-traced"; + "cayley-dickson" = dontDistribute super."cayley-dickson"; + "cblrepo" = dontDistribute super."cblrepo"; + "cci" = dontDistribute super."cci"; + "ccnx" = dontDistribute super."ccnx"; + "cctools-workqueue" = dontDistribute super."cctools-workqueue"; + "cedict" = dontDistribute super."cedict"; + "cef" = dontDistribute super."cef"; + "ceilometer-common" = dontDistribute super."ceilometer-common"; + "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; + "cereal-derive" = dontDistribute super."cereal-derive"; + "cereal-enumerator" = dontDistribute super."cereal-enumerator"; + "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi" = doDistribute super."cgi_3001_2_2_3"; + "cgi-undecidable" = dontDistribute super."cgi-undecidable"; + "cgi-utils" = dontDistribute super."cgi-utils"; + "cgrep" = dontDistribute super."cgrep"; + "chain-codes" = dontDistribute super."chain-codes"; + "chalk" = dontDistribute super."chalk"; + "chalkboard" = dontDistribute super."chalkboard"; + "chalkboard-viewer" = dontDistribute super."chalkboard-viewer"; + "chalmers-lava2000" = dontDistribute super."chalmers-lava2000"; + "chan-split" = dontDistribute super."chan-split"; + "change-monger" = dontDistribute super."change-monger"; + "charade" = dontDistribute super."charade"; + "charsetdetect" = dontDistribute super."charsetdetect"; + "chart-histogram" = dontDistribute super."chart-histogram"; + "chaselev-deque" = dontDistribute super."chaselev-deque"; + "chatter" = dontDistribute super."chatter"; + "chatty" = dontDistribute super."chatty"; + "chatty-text" = dontDistribute super."chatty-text"; + "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; + "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; + "check-pvp" = dontDistribute super."check-pvp"; + "checked" = dontDistribute super."checked"; + "chell-hunit" = dontDistribute super."chell-hunit"; + "chesshs" = dontDistribute super."chesshs"; + "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; + "chp" = dontDistribute super."chp"; + "chp-mtl" = dontDistribute super."chp-mtl"; + "chp-plus" = dontDistribute super."chp-plus"; + "chp-spec" = dontDistribute super."chp-spec"; + "chp-transformers" = dontDistribute super."chp-transformers"; + "chronograph" = dontDistribute super."chronograph"; + "chu2" = dontDistribute super."chu2"; + "chuchu" = dontDistribute super."chuchu"; + "chunks" = dontDistribute super."chunks"; + "chunky" = dontDistribute super."chunky"; + "church-list" = dontDistribute super."church-list"; + "cil" = dontDistribute super."cil"; + "cinvoke" = dontDistribute super."cinvoke"; + "cio" = dontDistribute super."cio"; + "cipher-rc5" = dontDistribute super."cipher-rc5"; + "ciphersaber2" = dontDistribute super."ciphersaber2"; + "circ" = dontDistribute super."circ"; + "cirru-parser" = dontDistribute super."cirru-parser"; + "citation-resolve" = dontDistribute super."citation-resolve"; + "citeproc-hs" = dontDistribute super."citeproc-hs"; + "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter"; + "cityhash" = dontDistribute super."cityhash"; + "cjk" = dontDistribute super."cjk"; + "clac" = dontDistribute super."clac"; + "clafer" = dontDistribute super."clafer"; + "claferIG" = dontDistribute super."claferIG"; + "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; + "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; + "clash" = dontDistribute super."clash"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; + "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; + "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "clocked" = dontDistribute super."clocked"; + "clogparse" = dontDistribute super."clogparse"; + "clone-all" = dontDistribute super."clone-all"; + "closure" = dontDistribute super."closure"; + "cloud-haskell" = dontDistribute super."cloud-haskell"; + "cloudfront-signer" = dontDistribute super."cloudfront-signer"; + "cloudyfs" = dontDistribute super."cloudyfs"; + "cltw" = dontDistribute super."cltw"; + "clua" = dontDistribute super."clua"; + "clumpiness" = dontDistribute super."clumpiness"; + "cluss" = dontDistribute super."cluss"; + "clustertools" = dontDistribute super."clustertools"; + "clutterhs" = dontDistribute super."clutterhs"; + "cmaes" = dontDistribute super."cmaes"; + "cmath" = dontDistribute super."cmath"; + "cmathml3" = dontDistribute super."cmathml3"; + "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs-browser" = dontDistribute super."cmdargs-browser"; + "cmdlib" = dontDistribute super."cmdlib"; + "cmdtheline" = dontDistribute super."cmdtheline"; + "cml" = dontDistribute super."cml"; + "cmonad" = dontDistribute super."cmonad"; + "cmu" = dontDistribute super."cmu"; + "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; + "cndict" = dontDistribute super."cndict"; + "codec" = dontDistribute super."codec"; + "codec-libevent" = dontDistribute super."codec-libevent"; + "codec-mbox" = dontDistribute super."codec-mbox"; + "codecov-haskell" = dontDistribute super."codecov-haskell"; + "codemonitor" = dontDistribute super."codemonitor"; + "codepad" = dontDistribute super."codepad"; + "codo-notation" = dontDistribute super."codo-notation"; + "cofunctor" = dontDistribute super."cofunctor"; + "cognimeta-utils" = dontDistribute super."cognimeta-utils"; + "coinbase-exchange" = dontDistribute super."coinbase-exchange"; + "colada" = dontDistribute super."colada"; + "colchis" = dontDistribute super."colchis"; + "collada-output" = dontDistribute super."collada-output"; + "collada-types" = dontDistribute super."collada-types"; + "collapse-util" = dontDistribute super."collapse-util"; + "collection-json" = dontDistribute super."collection-json"; + "collections" = dontDistribute super."collections"; + "collections-api" = dontDistribute super."collections-api"; + "collections-base-instances" = dontDistribute super."collections-base-instances"; + "colock" = dontDistribute super."colock"; + "colorize-haskell" = dontDistribute super."colorize-haskell"; + "colors" = dontDistribute super."colors"; + "coltrane" = dontDistribute super."coltrane"; + "com" = dontDistribute super."com"; + "combinat" = dontDistribute super."combinat"; + "combinat-diagrams" = dontDistribute super."combinat-diagrams"; + "combinator-interactive" = dontDistribute super."combinator-interactive"; + "combinatorial-problems" = dontDistribute super."combinatorial-problems"; + "combinatorics" = dontDistribute super."combinatorics"; + "combobuffer" = dontDistribute super."combobuffer"; + "comfort-graph" = dontDistribute super."comfort-graph"; + "command" = dontDistribute super."command"; + "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; + "commodities" = dontDistribute super."commodities"; + "commsec" = dontDistribute super."commsec"; + "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; + "comonad-extras" = dontDistribute super."comonad-extras"; + "comonad-random" = dontDistribute super."comonad-random"; + "compact-map" = dontDistribute super."compact-map"; + "compact-socket" = dontDistribute super."compact-socket"; + "compact-string" = dontDistribute super."compact-string"; + "compact-string-fix" = dontDistribute super."compact-string-fix"; + "compare-type" = dontDistribute super."compare-type"; + "compdata-automata" = dontDistribute super."compdata-automata"; + "compdata-dags" = dontDistribute super."compdata-dags"; + "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = dontDistribute super."compensated"; + "competition" = dontDistribute super."competition"; + "compilation" = dontDistribute super."compilation"; + "complex-generic" = dontDistribute super."complex-generic"; + "complex-integrate" = dontDistribute super."complex-integrate"; + "complexity" = dontDistribute super."complexity"; + "compose-ltr" = dontDistribute super."compose-ltr"; + "compose-trans" = dontDistribute super."compose-trans"; + "compression" = dontDistribute super."compression"; + "compstrat" = dontDistribute super."compstrat"; + "comptrans" = dontDistribute super."comptrans"; + "computational-algebra" = dontDistribute super."computational-algebra"; + "computations" = dontDistribute super."computations"; + "conceit" = dontDistribute super."conceit"; + "concorde" = dontDistribute super."concorde"; + "concraft" = dontDistribute super."concraft"; + "concraft-hr" = dontDistribute super."concraft-hr"; + "concraft-pl" = dontDistribute super."concraft-pl"; + "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser"; + "concrete-typerep" = dontDistribute super."concrete-typerep"; + "concurrent-barrier" = dontDistribute super."concurrent-barrier"; + "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = dontDistribute super."concurrent-extra"; + "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-sa" = dontDistribute super."concurrent-sa"; + "concurrent-split" = dontDistribute super."concurrent-split"; + "concurrent-state" = dontDistribute super."concurrent-state"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; + "concurrentoutput" = dontDistribute super."concurrentoutput"; + "cond" = dontDistribute super."cond"; + "condor" = dontDistribute super."condor"; + "condorcet" = dontDistribute super."condorcet"; + "conductive-base" = dontDistribute super."conductive-base"; + "conductive-clock" = dontDistribute super."conductive-clock"; + "conductive-hsc3" = dontDistribute super."conductive-hsc3"; + "conductive-song" = dontDistribute super."conductive-song"; + "conduit-audio" = dontDistribute super."conduit-audio"; + "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; + "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; + "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; + "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; + "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; + "config-select" = dontDistribute super."config-select"; + "config-value" = dontDistribute super."config-value"; + "configifier" = dontDistribute super."configifier"; + "configuration" = dontDistribute super."configuration"; + "configuration-tools" = dontDistribute super."configuration-tools"; + "confsolve" = dontDistribute super."confsolve"; + "congruence-relation" = dontDistribute super."congruence-relation"; + "conjugateGradient" = dontDistribute super."conjugateGradient"; + "conjure" = dontDistribute super."conjure"; + "conlogger" = dontDistribute super."conlogger"; + "connection-pool" = dontDistribute super."connection-pool"; + "consistent" = dontDistribute super."consistent"; + "console-program" = dontDistribute super."console-program"; + "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; + "constrained-categories" = dontDistribute super."constrained-categories"; + "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; + "constructible" = dontDistribute super."constructible"; + "constructive-algebra" = dontDistribute super."constructive-algebra"; + "consumers" = dontDistribute super."consumers"; + "container" = dontDistribute super."container"; + "container-classes" = dontDistribute super."container-classes"; + "containers-benchmark" = dontDistribute super."containers-benchmark"; + "containers-deepseq" = dontDistribute super."containers-deepseq"; + "context-free-grammar" = dontDistribute super."context-free-grammar"; + "context-stack" = dontDistribute super."context-stack"; + "continue" = dontDistribute super."continue"; + "continued-fractions" = dontDistribute super."continued-fractions"; + "continuum" = dontDistribute super."continuum"; + "continuum-client" = dontDistribute super."continuum-client"; + "control-event" = dontDistribute super."control-event"; + "control-monad-attempt" = dontDistribute super."control-monad-attempt"; + "control-monad-exception" = dontDistribute super."control-monad-exception"; + "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd"; + "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf"; + "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl"; + "control-monad-failure" = dontDistribute super."control-monad-failure"; + "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl"; + "control-monad-omega" = dontDistribute super."control-monad-omega"; + "control-monad-queue" = dontDistribute super."control-monad-queue"; + "control-timeout" = dontDistribute super."control-timeout"; + "contstuff" = dontDistribute super."contstuff"; + "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf"; + "contstuff-transformers" = dontDistribute super."contstuff-transformers"; + "converge" = dontDistribute super."converge"; + "conversion" = dontDistribute super."conversion"; + "conversion-bytestring" = dontDistribute super."conversion-bytestring"; + "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive"; + "conversion-text" = dontDistribute super."conversion-text"; + "convert" = dontDistribute super."convert"; + "convertible-ascii" = dontDistribute super."convertible-ascii"; + "convertible-text" = dontDistribute super."convertible-text"; + "cookbook" = dontDistribute super."cookbook"; + "coordinate" = dontDistribute super."coordinate"; + "copilot" = dontDistribute super."copilot"; + "copilot-c99" = dontDistribute super."copilot-c99"; + "copilot-cbmc" = dontDistribute super."copilot-cbmc"; + "copilot-core" = dontDistribute super."copilot-core"; + "copilot-language" = dontDistribute super."copilot-language"; + "copilot-libraries" = dontDistribute super."copilot-libraries"; + "copilot-sbv" = dontDistribute super."copilot-sbv"; + "copilot-theorem" = dontDistribute super."copilot-theorem"; + "copr" = dontDistribute super."copr"; + "core" = dontDistribute super."core"; + "core-haskell" = dontDistribute super."core-haskell"; + "corebot-bliki" = dontDistribute super."corebot-bliki"; + "coroutine-enumerator" = dontDistribute super."coroutine-enumerator"; + "coroutine-iteratee" = dontDistribute super."coroutine-iteratee"; + "coroutine-object" = dontDistribute super."coroutine-object"; + "couch-hs" = dontDistribute super."couch-hs"; + "couch-simple" = dontDistribute super."couch-simple"; + "couchdb-conduit" = dontDistribute super."couchdb-conduit"; + "couchdb-enumerator" = dontDistribute super."couchdb-enumerator"; + "count" = dontDistribute super."count"; + "countable" = dontDistribute super."countable"; + "counter" = dontDistribute super."counter"; + "court" = dontDistribute super."court"; + "coverage" = dontDistribute super."coverage"; + "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; + "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; + "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; + "cpsa" = dontDistribute super."cpsa"; + "cpuid" = dontDistribute super."cpuid"; + "cpuperf" = dontDistribute super."cpuperf"; + "cpython" = dontDistribute super."cpython"; + "cqrs" = dontDistribute super."cqrs"; + "cqrs-core" = dontDistribute super."cqrs-core"; + "cqrs-example" = dontDistribute super."cqrs-example"; + "cqrs-memory" = dontDistribute super."cqrs-memory"; + "cqrs-postgresql" = dontDistribute super."cqrs-postgresql"; + "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3"; + "cqrs-test" = dontDistribute super."cqrs-test"; + "cqrs-testkit" = dontDistribute super."cqrs-testkit"; + "cqrs-types" = dontDistribute super."cqrs-types"; + "cr" = dontDistribute super."cr"; + "crack" = dontDistribute super."crack"; + "craftwerk" = dontDistribute super."craftwerk"; + "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; + "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "crc16" = dontDistribute super."crc16"; + "crc16-table" = dontDistribute super."crc16-table"; + "creatur" = dontDistribute super."creatur"; + "crf-chain1" = dontDistribute super."crf-chain1"; + "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained"; + "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; + "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; + "critbit" = dontDistribute super."critbit"; + "criterion-plus" = dontDistribute super."criterion-plus"; + "criterion-to-html" = dontDistribute super."criterion-to-html"; + "crockford" = dontDistribute super."crockford"; + "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; + "cron-compat" = dontDistribute super."cron-compat"; + "cruncher-types" = dontDistribute super."cruncher-types"; + "crunghc" = dontDistribute super."crunghc"; + "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks"; + "crypto-classical" = dontDistribute super."crypto-classical"; + "crypto-conduit" = dontDistribute super."crypto-conduit"; + "crypto-enigma" = dontDistribute super."crypto-enigma"; + "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; + "crypto-random-effect" = dontDistribute super."crypto-random-effect"; + "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; + "cryptsy-api" = dontDistribute super."cryptsy-api"; + "crystalfontz" = dontDistribute super."crystalfontz"; + "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; + "csound-catalog" = dontDistribute super."csound-catalog"; + "csound-expression" = dontDistribute super."csound-expression"; + "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic"; + "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes"; + "csound-expression-typed" = dontDistribute super."csound-expression-typed"; + "csound-sampler" = dontDistribute super."csound-sampler"; + "csp" = dontDistribute super."csp"; + "cspmchecker" = dontDistribute super."cspmchecker"; + "css" = dontDistribute super."css"; + "csv-enumerator" = dontDistribute super."csv-enumerator"; + "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-to-qif" = dontDistribute super."csv-to-qif"; + "ctemplate" = dontDistribute super."ctemplate"; + "ctkl" = dontDistribute super."ctkl"; + "ctpl" = dontDistribute super."ctpl"; + "cube" = dontDistribute super."cube"; + "cubical" = dontDistribute super."cubical"; + "cubicbezier" = dontDistribute super."cubicbezier"; + "cublas" = dontDistribute super."cublas"; + "cuboid" = dontDistribute super."cuboid"; + "cuda" = dontDistribute super."cuda"; + "cudd" = dontDistribute super."cudd"; + "cufft" = dontDistribute super."cufft"; + "curl-aeson" = dontDistribute super."curl-aeson"; + "curlhs" = dontDistribute super."curlhs"; + "currency" = dontDistribute super."currency"; + "current-locale" = dontDistribute super."current-locale"; + "curry-base" = dontDistribute super."curry-base"; + "curry-frontend" = dontDistribute super."curry-frontend"; + "cursedcsv" = dontDistribute super."cursedcsv"; + "curve25519" = dontDistribute super."curve25519"; + "curves" = dontDistribute super."curves"; + "custom-prelude" = dontDistribute super."custom-prelude"; + "cv-combinators" = dontDistribute super."cv-combinators"; + "cyclotomic" = dontDistribute super."cyclotomic"; + "cypher" = dontDistribute super."cypher"; + "d-bus" = dontDistribute super."d-bus"; + "d3js" = dontDistribute super."d3js"; + "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; + "daemons" = dontDistribute super."daemons"; + "dag" = dontDistribute super."dag"; + "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; + "dao" = dontDistribute super."dao"; + "dapi" = dontDistribute super."dapi"; + "darcs-benchmark" = dontDistribute super."darcs-benchmark"; + "darcs-beta" = dontDistribute super."darcs-beta"; + "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; + "darcs-cabalized" = dontDistribute super."darcs-cabalized"; + "darcs-fastconvert" = dontDistribute super."darcs-fastconvert"; + "darcs-graph" = dontDistribute super."darcs-graph"; + "darcs-monitor" = dontDistribute super."darcs-monitor"; + "darcs-scripts" = dontDistribute super."darcs-scripts"; + "darcs2dot" = dontDistribute super."darcs2dot"; + "darcsden" = dontDistribute super."darcsden"; + "darcswatch" = dontDistribute super."darcswatch"; + "darkplaces-demo" = dontDistribute super."darkplaces-demo"; + "darkplaces-rcon" = dontDistribute super."darkplaces-rcon"; + "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util"; + "darkplaces-text" = dontDistribute super."darkplaces-text"; + "dash-haskell" = dontDistribute super."dash-haskell"; + "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib"; + "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd"; + "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf"; + "data-accessor-template" = dontDistribute super."data-accessor-template"; + "data-accessor-transformers" = dontDistribute super."data-accessor-transformers"; + "data-aviary" = dontDistribute super."data-aviary"; + "data-base" = dontDistribute super."data-base"; + "data-bword" = dontDistribute super."data-bword"; + "data-carousel" = dontDistribute super."data-carousel"; + "data-category" = dontDistribute super."data-category"; + "data-cell" = dontDistribute super."data-cell"; + "data-checked" = dontDistribute super."data-checked"; + "data-clist" = dontDistribute super."data-clist"; + "data-concurrent-queue" = dontDistribute super."data-concurrent-queue"; + "data-construction" = dontDistribute super."data-construction"; + "data-cycle" = dontDistribute super."data-cycle"; + "data-default-extra" = dontDistribute super."data-default-extra"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; + "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; + "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; + "data-default-instances-text" = dontDistribute super."data-default-instances-text"; + "data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers"; + "data-default-instances-vector" = dontDistribute super."data-default-instances-vector"; + "data-dispersal" = dontDistribute super."data-dispersal"; + "data-dword" = dontDistribute super."data-dword"; + "data-easy" = dontDistribute super."data-easy"; + "data-embed" = dontDistribute super."data-embed"; + "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-interval" = dontDistribute super."data-interval"; + "data-ivar" = dontDistribute super."data-ivar"; + "data-json-token" = dontDistribute super."data-json-token"; + "data-kiln" = dontDistribute super."data-kiln"; + "data-layer" = dontDistribute super."data-layer"; + "data-layout" = dontDistribute super."data-layout"; + "data-lens" = dontDistribute super."data-lens"; + "data-lens-fd" = dontDistribute super."data-lens-fd"; + "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-template" = dontDistribute super."data-lens-template"; + "data-list-sequences" = dontDistribute super."data-list-sequences"; + "data-map-multikey" = dontDistribute super."data-map-multikey"; + "data-named" = dontDistribute super."data-named"; + "data-nat" = dontDistribute super."data-nat"; + "data-object" = dontDistribute super."data-object"; + "data-object-json" = dontDistribute super."data-object-json"; + "data-object-yaml" = dontDistribute super."data-object-yaml"; + "data-or" = dontDistribute super."data-or"; + "data-partition" = dontDistribute super."data-partition"; + "data-pprint" = dontDistribute super."data-pprint"; + "data-quotientref" = dontDistribute super."data-quotientref"; + "data-r-tree" = dontDistribute super."data-r-tree"; + "data-ref" = dontDistribute super."data-ref"; + "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; + "data-result" = dontDistribute super."data-result"; + "data-rev" = dontDistribute super."data-rev"; + "data-rope" = dontDistribute super."data-rope"; + "data-rtuple" = dontDistribute super."data-rtuple"; + "data-size" = dontDistribute super."data-size"; + "data-spacepart" = dontDistribute super."data-spacepart"; + "data-store" = dontDistribute super."data-store"; + "data-stringmap" = dontDistribute super."data-stringmap"; + "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-tensor" = dontDistribute super."data-tensor"; + "data-textual" = dontDistribute super."data-textual"; + "data-timeout" = dontDistribute super."data-timeout"; + "data-transform" = dontDistribute super."data-transform"; + "data-treify" = dontDistribute super."data-treify"; + "data-type" = dontDistribute super."data-type"; + "data-util" = dontDistribute super."data-util"; + "data-variant" = dontDistribute super."data-variant"; + "database-migrate" = dontDistribute super."database-migrate"; + "database-study" = dontDistribute super."database-study"; + "dataenc" = dontDistribute super."dataenc"; + "dataflow" = dontDistribute super."dataflow"; + "datalog" = dontDistribute super."datalog"; + "datapacker" = dontDistribute super."datapacker"; + "dataurl" = dontDistribute super."dataurl"; + "date-cache" = dontDistribute super."date-cache"; + "dates" = dontDistribute super."dates"; + "datetime" = dontDistribute super."datetime"; + "datetime-sb" = dontDistribute super."datetime-sb"; + "dawdle" = dontDistribute super."dawdle"; + "dawg" = dontDistribute super."dawg"; + "dbcleaner" = dontDistribute super."dbcleaner"; + "dbf" = dontDistribute super."dbf"; + "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = doDistribute super."dbmigrations_1_0"; + "dbus-client" = dontDistribute super."dbus-client"; + "dbus-core" = dontDistribute super."dbus-core"; + "dbus-qq" = dontDistribute super."dbus-qq"; + "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; + "dclabel" = dontDistribute super."dclabel"; + "dclabel-eci11" = dontDistribute super."dclabel-eci11"; + "ddc-base" = dontDistribute super."ddc-base"; + "ddc-build" = dontDistribute super."ddc-build"; + "ddc-code" = dontDistribute super."ddc-code"; + "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-eval" = dontDistribute super."ddc-core-eval"; + "ddc-core-flow" = dontDistribute super."ddc-core-flow"; + "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; + "ddc-core-salt" = dontDistribute super."ddc-core-salt"; + "ddc-core-simpl" = dontDistribute super."ddc-core-simpl"; + "ddc-core-tetra" = dontDistribute super."ddc-core-tetra"; + "ddc-driver" = dontDistribute super."ddc-driver"; + "ddc-interface" = dontDistribute super."ddc-interface"; + "ddc-source-tetra" = dontDistribute super."ddc-source-tetra"; + "ddc-tools" = dontDistribute super."ddc-tools"; + "ddc-war" = dontDistribute super."ddc-war"; + "ddci-core" = dontDistribute super."ddci-core"; + "dead-code-detection" = dontDistribute super."dead-code-detection"; + "dead-simple-json" = dontDistribute super."dead-simple-json"; + "debian-binary" = dontDistribute super."debian-binary"; + "debian-build" = dontDistribute super."debian-build"; + "debug-diff" = dontDistribute super."debug-diff"; + "debug-time" = dontDistribute super."debug-time"; + "decepticons" = dontDistribute super."decepticons"; + "decode-utf8" = dontDistribute super."decode-utf8"; + "decoder-conduit" = dontDistribute super."decoder-conduit"; + "dedukti" = dontDistribute super."dedukti"; + "deepcontrol" = dontDistribute super."deepcontrol"; + "deeplearning-hs" = dontDistribute super."deeplearning-hs"; + "deepseq-bounded" = dontDistribute super."deepseq-bounded"; + "deepseq-magic" = dontDistribute super."deepseq-magic"; + "deepseq-th" = dontDistribute super."deepseq-th"; + "deepzoom" = dontDistribute super."deepzoom"; + "defargs" = dontDistribute super."defargs"; + "definitive-base" = dontDistribute super."definitive-base"; + "definitive-filesystem" = dontDistribute super."definitive-filesystem"; + "definitive-graphics" = dontDistribute super."definitive-graphics"; + "definitive-parser" = dontDistribute super."definitive-parser"; + "definitive-reactive" = dontDistribute super."definitive-reactive"; + "definitive-sound" = dontDistribute super."definitive-sound"; + "deiko-config" = dontDistribute super."deiko-config"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delimiter-separated" = dontDistribute super."delimiter-separated"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "dependent-state" = dontDistribute super."dependent-state"; + "depends" = dontDistribute super."depends"; + "dephd" = dontDistribute super."dephd"; + "dequeue" = dontDistribute super."dequeue"; + "derangement" = dontDistribute super."derangement"; + "derivation-trees" = dontDistribute super."derivation-trees"; + "derive-IG" = dontDistribute super."derive-IG"; + "derive-enumerable" = dontDistribute super."derive-enumerable"; + "derive-gadt" = dontDistribute super."derive-gadt"; + "derive-monoid" = dontDistribute super."derive-monoid"; + "derive-topdown" = dontDistribute super."derive-topdown"; + "derive-trie" = dontDistribute super."derive-trie"; + "deriving-compat" = dontDistribute super."deriving-compat"; + "derp" = dontDistribute super."derp"; + "derp-lib" = dontDistribute super."derp-lib"; + "descrilo" = dontDistribute super."descrilo"; + "despair" = dontDistribute super."despair"; + "deterministic-game-engine" = dontDistribute super."deterministic-game-engine"; + "detrospector" = dontDistribute super."detrospector"; + "deunicode" = dontDistribute super."deunicode"; + "devil" = dontDistribute super."devil"; + "dewdrop" = dontDistribute super."dewdrop"; + "dfrac" = dontDistribute super."dfrac"; + "dfsbuild" = dontDistribute super."dfsbuild"; + "dgim" = dontDistribute super."dgim"; + "dgs" = dontDistribute super."dgs"; + "dia-base" = dontDistribute super."dia-base"; + "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; + "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; + "diagrams-pdf" = dontDistribute super."diagrams-pdf"; + "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; + "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; + "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; + "dicom" = dontDistribute super."dicom"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; + "diff-parse" = dontDistribute super."diff-parse"; + "diffarray" = dontDistribute super."diffarray"; + "diffcabal" = dontDistribute super."diffcabal"; + "diffdump" = dontDistribute super."diffdump"; + "digamma" = dontDistribute super."digamma"; + "digest-pure" = dontDistribute super."digest-pure"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; + "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; + "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp"; + "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty"; + "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; + "digit" = dontDistribute super."digit"; + "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "dimensional-codata" = dontDistribute super."dimensional-codata"; + "dimensional-tf" = dontDistribute super."dimensional-tf"; + "dingo-core" = dontDistribute super."dingo-core"; + "dingo-example" = dontDistribute super."dingo-example"; + "dingo-widgets" = dontDistribute super."dingo-widgets"; + "diophantine" = dontDistribute super."diophantine"; + "diplomacy" = dontDistribute super."diplomacy"; + "diplomacy-server" = dontDistribute super."diplomacy-server"; + "direct-binary-files" = dontDistribute super."direct-binary-files"; + "direct-daemonize" = dontDistribute super."direct-daemonize"; + "direct-fastcgi" = dontDistribute super."direct-fastcgi"; + "direct-http" = dontDistribute super."direct-http"; + "direct-murmur-hash" = dontDistribute super."direct-murmur-hash"; + "direct-plugins" = dontDistribute super."direct-plugins"; + "directed-cubical" = dontDistribute super."directed-cubical"; + "directory-layout" = dontDistribute super."directory-layout"; + "directory-listing-webpage-parser" = dontDistribute super."directory-listing-webpage-parser"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discordian-calendar" = dontDistribute super."discordian-calendar"; + "discount" = dontDistribute super."discount"; + "discrete-space-map" = dontDistribute super."discrete-space-map"; + "discrimination" = dontDistribute super."discrimination"; + "disjoint-set" = dontDistribute super."disjoint-set"; + "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; + "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = doDistribute super."distributed-process_0_5_5_1"; + "distributed-process-async" = dontDistribute super."distributed-process-async"; + "distributed-process-azure" = dontDistribute super."distributed-process-azure"; + "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; + "distributed-process-ekg" = dontDistribute super."distributed-process-ekg"; + "distributed-process-execution" = dontDistribute super."distributed-process-execution"; + "distributed-process-extras" = dontDistribute super."distributed-process-extras"; + "distributed-process-lifted" = dontDistribute super."distributed-process-lifted"; + "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control"; + "distributed-process-p2p" = dontDistribute super."distributed-process-p2p"; + "distributed-process-platform" = dontDistribute super."distributed-process-platform"; + "distributed-process-registry" = dontDistribute super."distributed-process-registry"; + "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet"; + "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor"; + "distributed-process-task" = dontDistribute super."distributed-process-task"; + "distributed-process-tests" = dontDistribute super."distributed-process-tests"; + "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distribution" = dontDistribute super."distribution"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "djembe" = dontDistribute super."djembe"; + "djinn" = dontDistribute super."djinn"; + "djinn-th" = dontDistribute super."djinn-th"; + "dnscache" = dontDistribute super."dnscache"; + "dnsrbl" = dontDistribute super."dnsrbl"; + "dnssd" = dontDistribute super."dnssd"; + "doc-review" = dontDistribute super."doc-review"; + "doccheck" = dontDistribute super."doccheck"; + "docidx" = dontDistribute super."docidx"; + "docker" = dontDistribute super."docker"; + "dockercook" = dontDistribute super."dockercook"; + "doctest-discover" = dontDistribute super."doctest-discover"; + "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; + "doctest-prop" = dontDistribute super."doctest-prop"; + "dom-lt" = dontDistribute super."dom-lt"; + "dom-parser" = dontDistribute super."dom-parser"; + "dom-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download" = dontDistribute super."download"; + "download-curl" = dontDistribute super."download-curl"; + "download-media-content" = dontDistribute super."download-media-content"; + "dozenal" = dontDistribute super."dozenal"; + "dozens" = dontDistribute super."dozens"; + "dph-base" = dontDistribute super."dph-base"; + "dph-examples" = dontDistribute super."dph-examples"; + "dph-lifted-base" = dontDistribute super."dph-lifted-base"; + "dph-lifted-copy" = dontDistribute super."dph-lifted-copy"; + "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg"; + "dph-par" = dontDistribute super."dph-par"; + "dph-prim-interface" = dontDistribute super."dph-prim-interface"; + "dph-prim-par" = dontDistribute super."dph-prim-par"; + "dph-prim-seq" = dontDistribute super."dph-prim-seq"; + "dph-seq" = dontDistribute super."dph-seq"; + "dpkg" = dontDistribute super."dpkg"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; + "dropbox-sdk" = dontDistribute super."dropbox-sdk"; + "dropsolve" = dontDistribute super."dropsolve"; + "ds-kanren" = dontDistribute super."ds-kanren"; + "dsh-sql" = dontDistribute super."dsh-sql"; + "dsmc" = dontDistribute super."dsmc"; + "dsmc-tools" = dontDistribute super."dsmc-tools"; + "dson" = dontDistribute super."dson"; + "dson-parsec" = dontDistribute super."dson-parsec"; + "dsp" = dontDistribute super."dsp"; + "dstring" = dontDistribute super."dstring"; + "dtab" = dontDistribute super."dtab"; + "dtd" = dontDistribute super."dtd"; + "dtd-text" = dontDistribute super."dtd-text"; + "dtd-types" = dontDistribute super."dtd-types"; + "dtrace" = dontDistribute super."dtrace"; + "dtw" = dontDistribute super."dtw"; + "dump" = dontDistribute super."dump"; + "duplo" = dontDistribute super."duplo"; + "dvda" = dontDistribute super."dvda"; + "dvdread" = dontDistribute super."dvdread"; + "dvi-processing" = dontDistribute super."dvi-processing"; + "dvorak" = dontDistribute super."dvorak"; + "dwarf" = dontDistribute super."dwarf"; + "dwarf-el" = dontDistribute super."dwarf-el"; + "dwarfadt" = dontDistribute super."dwarfadt"; + "dx9base" = dontDistribute super."dx9base"; + "dx9d3d" = dontDistribute super."dx9d3d"; + "dx9d3dx" = dontDistribute super."dx9d3dx"; + "dynamic-cabal" = dontDistribute super."dynamic-cabal"; + "dynamic-graph" = dontDistribute super."dynamic-graph"; + "dynamic-linker-template" = dontDistribute super."dynamic-linker-template"; + "dynamic-loader" = dontDistribute super."dynamic-loader"; + "dynamic-mvector" = dontDistribute super."dynamic-mvector"; + "dynamic-object" = dontDistribute super."dynamic-object"; + "dynamic-plot" = dontDistribute super."dynamic-plot"; + "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynobud" = dontDistribute super."dynobud"; + "dywapitchtrack" = dontDistribute super."dywapitchtrack"; + "dzen-utils" = dontDistribute super."dzen-utils"; + "eager-sockets" = dontDistribute super."eager-sockets"; + "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; + "easyjson" = dontDistribute super."easyjson"; + "easyplot" = dontDistribute super."easyplot"; + "easyrender" = dontDistribute super."easyrender"; + "ebeats" = dontDistribute super."ebeats"; + "ebnf-bff" = dontDistribute super."ebnf-bff"; + "ec2-signature" = dontDistribute super."ec2-signature"; + "ecdsa" = dontDistribute super."ecdsa"; + "ecma262" = dontDistribute super."ecma262"; + "ecu" = dontDistribute super."ecu"; + "ed25519" = dontDistribute super."ed25519"; + "ed25519-donna" = dontDistribute super."ed25519-donna"; + "eddie" = dontDistribute super."eddie"; + "edenmodules" = dontDistribute super."edenmodules"; + "edenskel" = dontDistribute super."edenskel"; + "edentv" = dontDistribute super."edentv"; + "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "eithers" = dontDistribute super."eithers"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-log" = dontDistribute super."ekg-log"; + "ekg-push" = dontDistribute super."ekg-push"; + "ekg-rrd" = dontDistribute super."ekg-rrd"; + "ekg-statsd" = dontDistribute super."ekg-statsd"; + "electrum-mnemonic" = dontDistribute super."electrum-mnemonic"; + "elerea" = dontDistribute super."elerea"; + "elerea-examples" = dontDistribute super."elerea-examples"; + "elerea-sdl" = dontDistribute super."elerea-sdl"; + "elevator" = dontDistribute super."elevator"; + "elf" = dontDistribute super."elf"; + "elision" = dontDistribute super."elision"; + "elm-build-lib" = dontDistribute super."elm-build-lib"; + "elm-compiler" = dontDistribute super."elm-compiler"; + "elm-get" = dontDistribute super."elm-get"; + "elm-init" = dontDistribute super."elm-init"; + "elm-make" = dontDistribute super."elm-make"; + "elm-package" = dontDistribute super."elm-package"; + "elm-reactor" = dontDistribute super."elm-reactor"; + "elm-repl" = dontDistribute super."elm-repl"; + "elm-server" = dontDistribute super."elm-server"; + "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; + "elocrypt" = dontDistribute super."elocrypt"; + "emacs-keys" = dontDistribute super."emacs-keys"; + "email" = dontDistribute super."email"; + "email-header" = dontDistribute super."email-header"; + "email-postmark" = dontDistribute super."email-postmark"; + "email-validator" = dontDistribute super."email-validator"; + "embeddock" = dontDistribute super."embeddock"; + "embeddock-example" = dontDistribute super."embeddock-example"; + "embroidery" = dontDistribute super."embroidery"; + "emgm" = dontDistribute super."emgm"; + "empty" = dontDistribute super."empty"; + "encoding" = dontDistribute super."encoding"; + "endo" = dontDistribute super."endo"; + "engine-io-growler" = dontDistribute super."engine-io-growler"; + "engine-io-snap" = dontDistribute super."engine-io-snap"; + "engineering-units" = dontDistribute super."engineering-units"; + "enumerable" = dontDistribute super."enumerable"; + "enumerate" = dontDistribute super."enumerate"; + "enumeration" = dontDistribute super."enumeration"; + "enumerator-fd" = dontDistribute super."enumerator-fd"; + "enumerator-tf" = dontDistribute super."enumerator-tf"; + "enumfun" = dontDistribute super."enumfun"; + "enummapmap" = dontDistribute super."enummapmap"; + "enummapset" = dontDistribute super."enummapset"; + "enummapset-th" = dontDistribute super."enummapset-th"; + "enumset" = dontDistribute super."enumset"; + "env-parser" = dontDistribute super."env-parser"; + "envparse" = dontDistribute super."envparse"; + "epanet-haskell" = dontDistribute super."epanet-haskell"; + "epass" = dontDistribute super."epass"; + "epic" = dontDistribute super."epic"; + "epoll" = dontDistribute super."epoll"; + "eprocess" = dontDistribute super."eprocess"; + "epub" = dontDistribute super."epub"; + "epub-metadata" = dontDistribute super."epub-metadata"; + "epub-tools" = dontDistribute super."epub-tools"; + "epubname" = dontDistribute super."epubname"; + "equal-files" = dontDistribute super."equal-files"; + "equational-reasoning" = dontDistribute super."equational-reasoning"; + "erd" = dontDistribute super."erd"; + "erf-native" = dontDistribute super."erf-native"; + "erlang" = dontDistribute super."erlang"; + "eros" = dontDistribute super."eros"; + "eros-client" = dontDistribute super."eros-client"; + "eros-http" = dontDistribute super."eros-http"; + "errno" = dontDistribute super."errno"; + "error-analyze" = dontDistribute super."error-analyze"; + "error-continuations" = dontDistribute super."error-continuations"; + "error-list" = dontDistribute super."error-list"; + "error-loc" = dontDistribute super."error-loc"; + "error-location" = dontDistribute super."error-location"; + "error-message" = dontDistribute super."error-message"; + "error-util" = dontDistribute super."error-util"; + "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; + "ersatz" = dontDistribute super."ersatz"; + "ersatz-toysat" = dontDistribute super."ersatz-toysat"; + "ert" = dontDistribute super."ert"; + "esotericbot" = dontDistribute super."esotericbot"; + "ess" = dontDistribute super."ess"; + "estimator" = dontDistribute super."estimator"; + "estimators" = dontDistribute super."estimators"; + "estreps" = dontDistribute super."estreps"; + "eternal" = dontDistribute super."eternal"; + "ether" = doDistribute super."ether_0_3_1_1"; + "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; + "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; + "ethereum-rlp" = dontDistribute super."ethereum-rlp"; + "ety" = dontDistribute super."ety"; + "euler" = dontDistribute super."euler"; + "euphoria" = dontDistribute super."euphoria"; + "eurofxref" = dontDistribute super."eurofxref"; + "event-driven" = dontDistribute super."event-driven"; + "event-handlers" = dontDistribute super."event-handlers"; + "event-list" = dontDistribute super."event-list"; + "event-monad" = dontDistribute super."event-monad"; + "eventloop" = dontDistribute super."eventloop"; + "eventstore" = doDistribute super."eventstore_0_10_0_2"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exception-hierarchy" = dontDistribute super."exception-hierarchy"; + "exception-mailer" = dontDistribute super."exception-mailer"; + "exception-monads-fd" = dontDistribute super."exception-monads-fd"; + "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exception-mtl" = dontDistribute super."exception-mtl"; + "exherbo-cabal" = dontDistribute super."exherbo-cabal"; + "exif" = dontDistribute super."exif"; + "exinst" = dontDistribute super."exinst"; + "exinst-aeson" = dontDistribute super."exinst-aeson"; + "exinst-bytes" = dontDistribute super."exinst-bytes"; + "exinst-deepseq" = dontDistribute super."exinst-deepseq"; + "exinst-hashable" = dontDistribute super."exinst-hashable"; + "existential" = dontDistribute super."existential"; + "exists" = dontDistribute super."exists"; + "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; + "exp-pairs" = dontDistribute super."exp-pairs"; + "expand" = dontDistribute super."expand"; + "expat-enumerator" = dontDistribute super."expat-enumerator"; + "expiring-mvar" = dontDistribute super."expiring-mvar"; + "explain" = dontDistribute super."explain"; + "explicit-determinant" = dontDistribute super."explicit-determinant"; + "explicit-iomodes" = dontDistribute super."explicit-iomodes"; + "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring"; + "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text"; + "explicit-sharing" = dontDistribute super."explicit-sharing"; + "explore" = dontDistribute super."explore"; + "exposed-containers" = dontDistribute super."exposed-containers"; + "expression-parser" = dontDistribute super."expression-parser"; + "extcore" = dontDistribute super."extcore"; + "extemp" = dontDistribute super."extemp"; + "extended-categories" = dontDistribute super."extended-categories"; + "extended-reals" = dontDistribute super."extended-reals"; + "extensible" = dontDistribute super."extensible"; + "extensible-data" = dontDistribute super."extensible-data"; + "external-sort" = dontDistribute super."external-sort"; + "extractelf" = dontDistribute super."extractelf"; + "ez-couch" = dontDistribute super."ez-couch"; + "faceted" = dontDistribute super."faceted"; + "factory" = dontDistribute super."factory"; + "factual-api" = dontDistribute super."factual-api"; + "fad" = dontDistribute super."fad"; + "failable-list" = dontDistribute super."failable-list"; + "failure" = dontDistribute super."failure"; + "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; + "faker" = dontDistribute super."faker"; + "falling-turnip" = dontDistribute super."falling-turnip"; + "fallingblocks" = dontDistribute super."fallingblocks"; + "family-tree" = dontDistribute super."family-tree"; + "fast-digits" = dontDistribute super."fast-digits"; + "fast-math" = dontDistribute super."fast-math"; + "fast-tags" = dontDistribute super."fast-tags"; + "fast-tagsoup" = dontDistribute super."fast-tagsoup"; + "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fastbayes" = dontDistribute super."fastbayes"; + "fastcgi" = dontDistribute super."fastcgi"; + "fastedit" = dontDistribute super."fastedit"; + "fastirc" = dontDistribute super."fastirc"; + "fault-tree" = dontDistribute super."fault-tree"; + "fay-geoposition" = dontDistribute super."fay-geoposition"; + "fay-hsx" = dontDistribute super."fay-hsx"; + "fay-ref" = dontDistribute super."fay-ref"; + "fca" = dontDistribute super."fca"; + "fcache" = dontDistribute super."fcache"; + "fcd" = dontDistribute super."fcd"; + "fckeditor" = dontDistribute super."fckeditor"; + "fclabels-monadlib" = dontDistribute super."fclabels-monadlib"; + "fdo-trash" = dontDistribute super."fdo-trash"; + "fec" = dontDistribute super."fec"; + "fedora-packages" = dontDistribute super."fedora-packages"; + "feed-cli" = dontDistribute super."feed-cli"; + "feed-collect" = dontDistribute super."feed-collect"; + "feed-crawl" = dontDistribute super."feed-crawl"; + "feed-translator" = dontDistribute super."feed-translator"; + "feed2lj" = dontDistribute super."feed2lj"; + "feed2twitter" = dontDistribute super."feed2twitter"; + "feldspar-compiler" = dontDistribute super."feldspar-compiler"; + "feldspar-language" = dontDistribute super."feldspar-language"; + "feldspar-signal" = dontDistribute super."feldspar-signal"; + "fen2s" = dontDistribute super."fen2s"; + "fences" = dontDistribute super."fences"; + "fenfire" = dontDistribute super."fenfire"; + "fez-conf" = dontDistribute super."fez-conf"; + "ffeed" = dontDistribute super."ffeed"; + "fficxx" = dontDistribute super."fficxx"; + "fficxx-runtime" = dontDistribute super."fficxx-runtime"; + "ffmpeg-light" = dontDistribute super."ffmpeg-light"; + "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; + "fgl-visualize" = dontDistribute super."fgl-visualize"; + "fibon" = dontDistribute super."fibon"; + "fibonacci" = dontDistribute super."fibonacci"; + "fields" = dontDistribute super."fields"; + "fields-json" = dontDistribute super."fields-json"; + "fieldwise" = dontDistribute super."fieldwise"; + "fig" = dontDistribute super."fig"; + "file-collection" = dontDistribute super."file-collection"; + "file-command-qq" = dontDistribute super."file-command-qq"; + "filediff" = dontDistribute super."filediff"; + "filepath-io-access" = dontDistribute super."filepath-io-access"; + "filepather" = dontDistribute super."filepather"; + "filestore" = dontDistribute super."filestore"; + "filesystem-conduit" = dontDistribute super."filesystem-conduit"; + "filesystem-enumerator" = dontDistribute super."filesystem-enumerator"; + "filesystem-trees" = dontDistribute super."filesystem-trees"; + "filtrable" = dontDistribute super."filtrable"; + "final" = dontDistribute super."final"; + "find-clumpiness" = dontDistribute super."find-clumpiness"; + "find-conduit" = dontDistribute super."find-conduit"; + "fingertree-tf" = dontDistribute super."fingertree-tf"; + "finite-field" = dontDistribute super."finite-field"; + "finite-typelits" = dontDistribute super."finite-typelits"; + "first-and-last" = dontDistribute super."first-and-last"; + "first-class-patterns" = dontDistribute super."first-class-patterns"; + "firstify" = dontDistribute super."firstify"; + "fishfood" = dontDistribute super."fishfood"; + "fit" = dontDistribute super."fit"; + "fitsio" = dontDistribute super."fitsio"; + "fix-imports" = dontDistribute super."fix-imports"; + "fix-parser-simple" = dontDistribute super."fix-parser-simple"; + "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit"; + "fixed-length" = dontDistribute super."fixed-length"; + "fixed-point" = dontDistribute super."fixed-point"; + "fixed-point-vector" = dontDistribute super."fixed-point-vector"; + "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space"; + "fixed-precision" = dontDistribute super."fixed-precision"; + "fixed-storable-array" = dontDistribute super."fixed-storable-array"; + "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; + "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixedprec" = dontDistribute super."fixedprec"; + "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; + "fixfile" = dontDistribute super."fixfile"; + "fixhs" = dontDistribute super."fixhs"; + "fixplate" = dontDistribute super."fixplate"; + "fixpoint" = dontDistribute super."fixpoint"; + "fixtime" = dontDistribute super."fixtime"; + "fizz-buzz" = dontDistribute super."fizz-buzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "flat-mcmc" = dontDistribute super."flat-mcmc"; + "flat-tex" = dontDistribute super."flat-tex"; + "flexible-time" = dontDistribute super."flexible-time"; + "flexible-unlit" = dontDistribute super."flexible-unlit"; + "flexiwrap" = dontDistribute super."flexiwrap"; + "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck"; + "flickr" = dontDistribute super."flickr"; + "flippers" = dontDistribute super."flippers"; + "flite" = dontDistribute super."flite"; + "flo" = dontDistribute super."flo"; + "float-binstring" = dontDistribute super."float-binstring"; + "floating-bits" = dontDistribute super."floating-bits"; + "floatshow" = dontDistribute super."floatshow"; + "flow2dot" = dontDistribute super."flow2dot"; + "flowdock-api" = dontDistribute super."flowdock-api"; + "flowdock-rest" = dontDistribute super."flowdock-rest"; + "flower" = dontDistribute super."flower"; + "flowlocks-framework" = dontDistribute super."flowlocks-framework"; + "flowsim" = dontDistribute super."flowsim"; + "fltkhs" = dontDistribute super."fltkhs"; + "fltkhs-demos" = dontDistribute super."fltkhs-demos"; + "fltkhs-fluid-demos" = dontDistribute super."fltkhs-fluid-demos"; + "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples"; + "fltkhs-hello-world" = dontDistribute super."fltkhs-hello-world"; + "fluent-logger" = dontDistribute super."fluent-logger"; + "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; + "fluidsynth" = dontDistribute super."fluidsynth"; + "fmark" = dontDistribute super."fmark"; + "fn" = doDistribute super."fn_0_2_0_2"; + "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; + "fold-debounce" = dontDistribute super."fold-debounce"; + "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl-incremental" = dontDistribute super."foldl-incremental"; + "foldl-transduce" = dontDistribute super."foldl-transduce"; + "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; + "folds" = dontDistribute super."folds"; + "folds-common" = dontDistribute super."folds-common"; + "follower" = dontDistribute super."follower"; + "foma" = dontDistribute super."foma"; + "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6"; + "foo" = dontDistribute super."foo"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "fordo" = dontDistribute super."fordo"; + "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; + "foreign-var" = dontDistribute super."foreign-var"; + "forger" = dontDistribute super."forger"; + "forkable-monad" = dontDistribute super."forkable-monad"; + "formal" = dontDistribute super."formal"; + "format" = dontDistribute super."format"; + "format-status" = dontDistribute super."format-status"; + "formattable" = dontDistribute super."formattable"; + "forml" = dontDistribute super."forml"; + "formlets" = dontDistribute super."formlets"; + "formlets-hsp" = dontDistribute super."formlets-hsp"; + "formura" = dontDistribute super."formura"; + "forth-hll" = dontDistribute super."forth-hll"; + "foscam-directory" = dontDistribute super."foscam-directory"; + "foscam-filename" = dontDistribute super."foscam-filename"; + "foscam-sort" = dontDistribute super."foscam-sort"; + "fountain" = dontDistribute super."fountain"; + "fpco-api" = dontDistribute super."fpco-api"; + "fpipe" = dontDistribute super."fpipe"; + "fpnla" = dontDistribute super."fpnla"; + "fpnla-examples" = dontDistribute super."fpnla-examples"; + "fptest" = dontDistribute super."fptest"; + "fquery" = dontDistribute super."fquery"; + "fractal" = dontDistribute super."fractal"; + "fractals" = dontDistribute super."fractals"; + "fraction" = dontDistribute super."fraction"; + "frag" = dontDistribute super."frag"; + "frame" = dontDistribute super."frame"; + "frame-markdown" = dontDistribute super."frame-markdown"; + "franchise" = dontDistribute super."franchise"; + "free-concurrent" = dontDistribute super."free-concurrent"; + "free-functors" = dontDistribute super."free-functors"; + "free-game" = dontDistribute super."free-game"; + "free-http" = dontDistribute super."free-http"; + "free-operational" = dontDistribute super."free-operational"; + "free-theorems" = dontDistribute super."free-theorems"; + "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples"; + "free-theorems-seq" = dontDistribute super."free-theorems-seq"; + "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui"; + "free-theorems-webui" = dontDistribute super."free-theorems-webui"; + "free-vl" = dontDistribute super."free-vl"; + "freekick2" = dontDistribute super."freekick2"; + "freer" = dontDistribute super."freer"; + "freesect" = dontDistribute super."freesect"; + "freesound" = dontDistribute super."freesound"; + "freetype-simple" = dontDistribute super."freetype-simple"; + "freetype2" = dontDistribute super."freetype2"; + "fresh" = dontDistribute super."fresh"; + "friday" = dontDistribute super."friday"; + "friday-devil" = dontDistribute super."friday-devil"; + "friday-juicypixels" = dontDistribute super."friday-juicypixels"; + "friday-scale-dct" = dontDistribute super."friday-scale-dct"; + "friendly-time" = dontDistribute super."friendly-time"; + "frown" = dontDistribute super."frown"; + "frp-arduino" = dontDistribute super."frp-arduino"; + "frpnow" = dontDistribute super."frpnow"; + "frpnow-gloss" = dontDistribute super."frpnow-gloss"; + "frpnow-gtk" = dontDistribute super."frpnow-gtk"; + "frquotes" = dontDistribute super."frquotes"; + "fs-events" = dontDistribute super."fs-events"; + "fsharp" = dontDistribute super."fsharp"; + "fsmActions" = dontDistribute super."fsmActions"; + "fst" = dontDistribute super."fst"; + "fsutils" = dontDistribute super."fsutils"; + "fswatcher" = dontDistribute super."fswatcher"; + "ftdi" = dontDistribute super."ftdi"; + "ftp-conduit" = dontDistribute super."ftp-conduit"; + "ftphs" = dontDistribute super."ftphs"; + "ftree" = dontDistribute super."ftree"; + "ftshell" = dontDistribute super."ftshell"; + "fugue" = dontDistribute super."fugue"; + "full-sessions" = dontDistribute super."full-sessions"; + "full-text-search" = dontDistribute super."full-text-search"; + "fullstop" = dontDistribute super."fullstop"; + "funbot" = dontDistribute super."funbot"; + "funbot-client" = dontDistribute super."funbot-client"; + "funbot-ext-events" = dontDistribute super."funbot-ext-events"; + "funbot-git-hook" = dontDistribute super."funbot-git-hook"; + "funcons-tools" = dontDistribute super."funcons-tools"; + "function-combine" = dontDistribute super."function-combine"; + "function-instances-algebra" = dontDistribute super."function-instances-algebra"; + "functional-arrow" = dontDistribute super."functional-arrow"; + "functional-kmp" = dontDistribute super."functional-kmp"; + "functor-apply" = dontDistribute super."functor-apply"; + "functor-combo" = dontDistribute super."functor-combo"; + "functor-infix" = dontDistribute super."functor-infix"; + "functor-monadic" = dontDistribute super."functor-monadic"; + "functor-utils" = dontDistribute super."functor-utils"; + "functorm" = dontDistribute super."functorm"; + "functors" = dontDistribute super."functors"; + "funion" = dontDistribute super."funion"; + "funpat" = dontDistribute super."funpat"; + "funsat" = dontDistribute super."funsat"; + "fusion" = dontDistribute super."fusion"; + "futun" = dontDistribute super."futun"; + "future" = dontDistribute super."future"; + "future-resource" = dontDistribute super."future-resource"; + "fuzzy" = dontDistribute super."fuzzy"; + "fuzzy-timings" = dontDistribute super."fuzzy-timings"; + "fuzzytime" = dontDistribute super."fuzzytime"; + "fwgl" = dontDistribute super."fwgl"; + "fwgl-glfw" = dontDistribute super."fwgl-glfw"; + "fwgl-javascript" = dontDistribute super."fwgl-javascript"; + "g-npm" = dontDistribute super."g-npm"; + "gact" = dontDistribute super."gact"; + "game-of-life" = dontDistribute super."game-of-life"; + "game-probability" = dontDistribute super."game-probability"; + "game-tree" = dontDistribute super."game-tree"; + "gameclock" = dontDistribute super."gameclock"; + "gamma" = dontDistribute super."gamma"; + "gang-of-threads" = dontDistribute super."gang-of-threads"; + "garepinoh" = dontDistribute super."garepinoh"; + "garsia-wachs" = dontDistribute super."garsia-wachs"; + "gbu" = dontDistribute super."gbu"; + "gc" = dontDistribute super."gc"; + "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai"; + "gconf" = dontDistribute super."gconf"; + "gdiff" = dontDistribute super."gdiff"; + "gdiff-ig" = dontDistribute super."gdiff-ig"; + "gdiff-th" = dontDistribute super."gdiff-th"; + "gdo" = dontDistribute super."gdo"; + "gearbox" = dontDistribute super."gearbox"; + "geek" = dontDistribute super."geek"; + "geek-server" = dontDistribute super."geek-server"; + "gelatin" = dontDistribute super."gelatin"; + "gemstone" = dontDistribute super."gemstone"; + "gencheck" = dontDistribute super."gencheck"; + "gender" = dontDistribute super."gender"; + "genders" = dontDistribute super."genders"; + "general-prelude" = dontDistribute super."general-prelude"; + "generator" = dontDistribute super."generator"; + "generators" = dontDistribute super."generators"; + "generic-accessors" = dontDistribute super."generic-accessors"; + "generic-binary" = dontDistribute super."generic-binary"; + "generic-church" = dontDistribute super."generic-church"; + "generic-deepseq" = dontDistribute super."generic-deepseq"; + "generic-deriving" = doDistribute super."generic-deriving_1_9_0"; + "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "generic-server" = dontDistribute super."generic-server"; + "generic-storable" = dontDistribute super."generic-storable"; + "generic-tree" = dontDistribute super."generic-tree"; + "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; + "genericserialize" = dontDistribute super."genericserialize"; + "genetics" = dontDistribute super."genetics"; + "geni-gui" = dontDistribute super."geni-gui"; + "geni-util" = dontDistribute super."geni-util"; + "geniconvert" = dontDistribute super."geniconvert"; + "genifunctors" = dontDistribute super."genifunctors"; + "geniplate" = dontDistribute super."geniplate"; + "geniserver" = dontDistribute super."geniserver"; + "genprog" = dontDistribute super."genprog"; + "gentlemark" = dontDistribute super."gentlemark"; + "geo-resolver" = dontDistribute super."geo-resolver"; + "geo-uk" = dontDistribute super."geo-uk"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geom2d" = dontDistribute super."geom2d"; + "getemx" = dontDistribute super."getemx"; + "getflag" = dontDistribute super."getflag"; + "getopt-simple" = dontDistribute super."getopt-simple"; + "gf" = dontDistribute super."gf"; + "ggtsTC" = dontDistribute super."ggtsTC"; + "ghc-core" = dontDistribute super."ghc-core"; + "ghc-core-html" = dontDistribute super."ghc-core-html"; + "ghc-datasize" = dontDistribute super."ghc-datasize"; + "ghc-dump-tree" = dontDistribute super."ghc-dump-tree"; + "ghc-dup" = dontDistribute super."ghc-dup"; + "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; + "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; + "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-imported-from" = dontDistribute super."ghc-imported-from"; + "ghc-make" = dontDistribute super."ghc-make"; + "ghc-man-completion" = dontDistribute super."ghc-man-completion"; + "ghc-options" = dontDistribute super."ghc-options"; + "ghc-parmake" = dontDistribute super."ghc-parmake"; + "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; + "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; + "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; + "ghc-server" = dontDistribute super."ghc-server"; + "ghc-simple" = dontDistribute super."ghc-simple"; + "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; + "ghc-syb" = dontDistribute super."ghc-syb"; + "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-vis" = dontDistribute super."ghc-vis"; + "ghci-diagrams" = dontDistribute super."ghci-diagrams"; + "ghci-haskeline" = dontDistribute super."ghci-haskeline"; + "ghci-lib" = dontDistribute super."ghci-lib"; + "ghci-ng" = dontDistribute super."ghci-ng"; + "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; + "ghcjs-dom" = dontDistribute super."ghcjs-dom"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gi-atk" = dontDistribute super."gi-atk"; + "gi-cairo" = dontDistribute super."gi-cairo"; + "gi-gdk" = dontDistribute super."gi-gdk"; + "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf"; + "gi-gio" = dontDistribute super."gi-gio"; + "gi-girepository" = dontDistribute super."gi-girepository"; + "gi-glib" = dontDistribute super."gi-glib"; + "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gtk" = dontDistribute super."gi-gtk"; + "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; + "gi-notify" = dontDistribute super."gi-notify"; + "gi-pango" = dontDistribute super."gi-pango"; + "gi-poppler" = dontDistribute super."gi-poppler"; + "gi-soup" = dontDistribute super."gi-soup"; + "gi-vte" = dontDistribute super."gi-vte"; + "gi-webkit" = dontDistribute super."gi-webkit"; + "gi-webkit2" = dontDistribute super."gi-webkit2"; + "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "gimlh" = dontDistribute super."gimlh"; + "ginger" = dontDistribute super."ginger"; + "ginsu" = dontDistribute super."ginsu"; + "giphy-api" = dontDistribute super."giphy-api"; + "gist" = dontDistribute super."gist"; + "git-all" = dontDistribute super."git-all"; + "git-annex" = doDistribute super."git-annex_6_20160114"; + "git-checklist" = dontDistribute super."git-checklist"; + "git-date" = dontDistribute super."git-date"; + "git-embed" = dontDistribute super."git-embed"; + "git-freq" = dontDistribute super."git-freq"; + "git-gpush" = dontDistribute super."git-gpush"; + "git-jump" = dontDistribute super."git-jump"; + "git-monitor" = dontDistribute super."git-monitor"; + "git-object" = dontDistribute super."git-object"; + "git-repair" = dontDistribute super."git-repair"; + "git-sanity" = dontDistribute super."git-sanity"; + "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; + "gitcache" = dontDistribute super."gitcache"; + "gitdo" = dontDistribute super."gitdo"; + "github-backup" = dontDistribute super."github-backup"; + "github-post-receive" = dontDistribute super."github-post-receive"; + "github-utils" = dontDistribute super."github-utils"; + "gitignore" = dontDistribute super."gitignore"; + "gitit" = dontDistribute super."gitit"; + "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; + "gitlib-cross" = dontDistribute super."gitlib-cross"; + "gitlib-s3" = dontDistribute super."gitlib-s3"; + "gitlib-sample" = dontDistribute super."gitlib-sample"; + "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; + "gl-capture" = dontDistribute super."gl-capture"; + "glade" = dontDistribute super."glade"; + "gladexml-accessor" = dontDistribute super."gladexml-accessor"; + "glambda" = dontDistribute super."glambda"; + "glapp" = dontDistribute super."glapp"; + "glasso" = dontDistribute super."glasso"; + "glicko" = dontDistribute super."glicko"; + "glider-nlp" = dontDistribute super."glider-nlp"; + "glintcollider" = dontDistribute super."glintcollider"; + "gll" = dontDistribute super."gll"; + "global" = dontDistribute super."global"; + "global-config" = dontDistribute super."global-config"; + "global-lock" = dontDistribute super."global-lock"; + "global-variables" = dontDistribute super."global-variables"; + "glome-hs" = dontDistribute super."glome-hs"; + "gloss" = dontDistribute super."gloss"; + "gloss-accelerate" = dontDistribute super."gloss-accelerate"; + "gloss-algorithms" = dontDistribute super."gloss-algorithms"; + "gloss-banana" = dontDistribute super."gloss-banana"; + "gloss-devil" = dontDistribute super."gloss-devil"; + "gloss-examples" = dontDistribute super."gloss-examples"; + "gloss-game" = dontDistribute super."gloss-game"; + "gloss-juicy" = dontDistribute super."gloss-juicy"; + "gloss-raster" = dontDistribute super."gloss-raster"; + "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate"; + "gloss-rendering" = dontDistribute super."gloss-rendering"; + "gloss-sodium" = dontDistribute super."gloss-sodium"; + "glpk-hs" = dontDistribute super."glpk-hs"; + "glue" = dontDistribute super."glue"; + "glue-common" = dontDistribute super."glue-common"; + "glue-core" = dontDistribute super."glue-core"; + "glue-ekg" = dontDistribute super."glue-ekg"; + "glue-example" = dontDistribute super."glue-example"; + "gluturtle" = dontDistribute super."gluturtle"; + "gmap" = dontDistribute super."gmap"; + "gmndl" = dontDistribute super."gmndl"; + "gnome-desktop" = dontDistribute super."gnome-desktop"; + "gnome-keyring" = dontDistribute super."gnome-keyring"; + "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gogol" = dontDistribute super."gogol"; + "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer"; + "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller"; + "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer"; + "gogol-admin-directory" = dontDistribute super."gogol-admin-directory"; + "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration"; + "gogol-admin-reports" = dontDistribute super."gogol-admin-reports"; + "gogol-adsense" = dontDistribute super."gogol-adsense"; + "gogol-adsense-host" = dontDistribute super."gogol-adsense-host"; + "gogol-affiliates" = dontDistribute super."gogol-affiliates"; + "gogol-analytics" = dontDistribute super."gogol-analytics"; + "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise"; + "gogol-android-publisher" = dontDistribute super."gogol-android-publisher"; + "gogol-appengine" = dontDistribute super."gogol-appengine"; + "gogol-apps-activity" = dontDistribute super."gogol-apps-activity"; + "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar"; + "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing"; + "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller"; + "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks"; + "gogol-appstate" = dontDistribute super."gogol-appstate"; + "gogol-autoscaler" = dontDistribute super."gogol-autoscaler"; + "gogol-bigquery" = dontDistribute super."gogol-bigquery"; + "gogol-billing" = dontDistribute super."gogol-billing"; + "gogol-blogger" = dontDistribute super."gogol-blogger"; + "gogol-books" = dontDistribute super."gogol-books"; + "gogol-civicinfo" = dontDistribute super."gogol-civicinfo"; + "gogol-classroom" = dontDistribute super."gogol-classroom"; + "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-dictionary" = dontDistribute super."google-dictionary"; + "google-drive" = dontDistribute super."google-drive"; + "google-html5-slide" = dontDistribute super."google-html5-slide"; + "google-mail-filters" = dontDistribute super."google-mail-filters"; + "google-oauth2" = dontDistribute super."google-oauth2"; + "google-search" = dontDistribute super."google-search"; + "googleplus" = dontDistribute super."googleplus"; + "googlepolyline" = dontDistribute super."googlepolyline"; + "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; + "gpah" = dontDistribute super."gpah"; + "gpcsets" = dontDistribute super."gpcsets"; + "gpolyline" = dontDistribute super."gpolyline"; + "gps" = dontDistribute super."gps"; + "gps2htmlReport" = dontDistribute super."gps2htmlReport"; + "gpx-conduit" = dontDistribute super."gpx-conduit"; + "graceful" = dontDistribute super."graceful"; + "grammar-combinators" = dontDistribute super."grammar-combinators"; + "grapefruit-examples" = dontDistribute super."grapefruit-examples"; + "grapefruit-frp" = dontDistribute super."grapefruit-frp"; + "grapefruit-records" = dontDistribute super."grapefruit-records"; + "grapefruit-ui" = dontDistribute super."grapefruit-ui"; + "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk"; + "graph-core" = doDistribute super."graph-core_0_2_2_0"; + "graph-generators" = dontDistribute super."graph-generators"; + "graph-matchings" = dontDistribute super."graph-matchings"; + "graph-rewriting" = dontDistribute super."graph-rewriting"; + "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl"; + "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl"; + "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope"; + "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout"; + "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski"; + "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies"; + "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs"; + "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww"; + "graph-serialize" = dontDistribute super."graph-serialize"; + "graph-utils" = dontDistribute super."graph-utils"; + "graph-visit" = dontDistribute super."graph-visit"; + "graphbuilder" = dontDistribute super."graphbuilder"; + "graphene" = dontDistribute super."graphene"; + "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators"; + "graphics-formats-collada" = dontDistribute super."graphics-formats-collada"; + "graphicsFormats" = dontDistribute super."graphicsFormats"; + "graphicstools" = dontDistribute super."graphicstools"; + "graphmod" = dontDistribute super."graphmod"; + "graphql" = dontDistribute super."graphql"; + "graphtype" = dontDistribute super."graphtype"; + "grasp" = dontDistribute super."grasp"; + "gray-code" = dontDistribute super."gray-code"; + "gray-extended" = dontDistribute super."gray-extended"; + "graylog" = dontDistribute super."graylog"; + "greencard" = dontDistribute super."greencard"; + "greencard-lib" = dontDistribute super."greencard-lib"; + "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; + "greplicate" = dontDistribute super."greplicate"; + "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; + "gridland" = dontDistribute super."gridland"; + "grm" = dontDistribute super."grm"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; + "groundhog-inspector" = dontDistribute super."groundhog-inspector"; + "group-with" = dontDistribute super."group-with"; + "groupoid" = dontDistribute super."groupoid"; + "gruff" = dontDistribute super."gruff"; + "gruff-examples" = dontDistribute super."gruff-examples"; + "gsc-weighting" = dontDistribute super."gsc-weighting"; + "gsl-random" = dontDistribute super."gsl-random"; + "gsl-random-fu" = dontDistribute super."gsl-random-fu"; + "gsmenu" = dontDistribute super."gsmenu"; + "gstreamer" = dontDistribute super."gstreamer"; + "gt-tools" = dontDistribute super."gt-tools"; + "gtfs" = dontDistribute super."gtfs"; + "gtk-helpers" = dontDistribute super."gtk-helpers"; + "gtk-jsinput" = dontDistribute super."gtk-jsinput"; + "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; + "gtk-mac-integration" = dontDistribute super."gtk-mac-integration"; + "gtk-serialized-event" = dontDistribute super."gtk-serialized-event"; + "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view"; + "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list"; + "gtk-toy" = dontDistribute super."gtk-toy"; + "gtk-traymanager" = dontDistribute super."gtk-traymanager"; + "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade"; + "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib"; + "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs"; + "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk"; + "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext"; + "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2"; + "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; + "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; + "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; + "gtkglext" = dontDistribute super."gtkglext"; + "gtkimageview" = dontDistribute super."gtkimageview"; + "gtkrsync" = dontDistribute super."gtkrsync"; + "gtksourceview2" = dontDistribute super."gtksourceview2"; + "gtksourceview3" = dontDistribute super."gtksourceview3"; + "guarded-rewriting" = dontDistribute super."guarded-rewriting"; + "guess-combinator" = dontDistribute super."guess-combinator"; + "gulcii" = dontDistribute super."gulcii"; + "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis"; + "gyah-bin" = dontDistribute super."gyah-bin"; + "h-booru" = dontDistribute super."h-booru"; + "h-gpgme" = dontDistribute super."h-gpgme"; + "h2048" = dontDistribute super."h2048"; + "hArduino" = dontDistribute super."hArduino"; + "hBDD" = dontDistribute super."hBDD"; + "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD"; + "hBDD-CUDD" = dontDistribute super."hBDD-CUDD"; + "hCsound" = dontDistribute super."hCsound"; + "hDFA" = dontDistribute super."hDFA"; + "hF2" = dontDistribute super."hF2"; + "hGelf" = dontDistribute super."hGelf"; + "hLLVM" = dontDistribute super."hLLVM"; + "hMollom" = dontDistribute super."hMollom"; + "hPDB-examples" = dontDistribute super."hPDB-examples"; + "hPushover" = dontDistribute super."hPushover"; + "hR" = dontDistribute super."hR"; + "hRESP" = dontDistribute super."hRESP"; + "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; + "hSimpleDB" = dontDistribute super."hSimpleDB"; + "hTalos" = dontDistribute super."hTalos"; + "hTensor" = dontDistribute super."hTensor"; + "hVOIDP" = dontDistribute super."hVOIDP"; + "hXmixer" = dontDistribute super."hXmixer"; + "haar" = dontDistribute super."haar"; + "hacanon-light" = dontDistribute super."hacanon-light"; + "hack" = dontDistribute super."hack"; + "hack-contrib" = dontDistribute super."hack-contrib"; + "hack-contrib-press" = dontDistribute super."hack-contrib-press"; + "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack"; + "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi"; + "hack-handler-cgi" = dontDistribute super."hack-handler-cgi"; + "hack-handler-epoll" = dontDistribute super."hack-handler-epoll"; + "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp"; + "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi"; + "hack-handler-happstack" = dontDistribute super."hack-handler-happstack"; + "hack-handler-hyena" = dontDistribute super."hack-handler-hyena"; + "hack-handler-kibro" = dontDistribute super."hack-handler-kibro"; + "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver"; + "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath"; + "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession"; + "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip"; + "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp"; + "hack2" = dontDistribute super."hack2"; + "hack2-contrib" = dontDistribute super."hack2-contrib"; + "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra"; + "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server"; + "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http"; + "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server"; + "hack2-handler-warp" = dontDistribute super."hack2-handler-warp"; + "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; + "hackage-diff" = dontDistribute super."hackage-diff"; + "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-proxy" = dontDistribute super."hackage-proxy"; + "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; + "hackage-security" = dontDistribute super."hackage-security"; + "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; + "hackage-server" = dontDistribute super."hackage-server"; + "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage2hwn" = dontDistribute super."hackage2hwn"; + "hackage2twitter" = dontDistribute super."hackage2twitter"; + "hackager" = dontDistribute super."hackager"; + "hackernews" = dontDistribute super."hackernews"; + "hackertyper" = dontDistribute super."hackertyper"; + "hackport" = dontDistribute super."hackport"; + "hactor" = dontDistribute super."hactor"; + "hactors" = dontDistribute super."hactors"; + "haddock" = dontDistribute super."haddock"; + "haddock-leksah" = dontDistribute super."haddock-leksah"; + "hadoop-formats" = dontDistribute super."hadoop-formats"; + "hadoop-rpc" = dontDistribute super."hadoop-rpc"; + "hadoop-tools" = dontDistribute super."hadoop-tools"; + "haeredes" = dontDistribute super."haeredes"; + "haggis" = dontDistribute super."haggis"; + "haha" = dontDistribute super."haha"; + "hahp" = dontDistribute super."hahp"; + "haiji" = dontDistribute super."haiji"; + "hailgun" = dontDistribute super."hailgun"; + "hailgun-send" = dontDistribute super."hailgun-send"; + "hails" = dontDistribute super."hails"; + "hails-bin" = dontDistribute super."hails-bin"; + "hairy" = dontDistribute super."hairy"; + "hakaru" = dontDistribute super."hakaru"; + "hake" = dontDistribute super."hake"; + "hakismet" = dontDistribute super."hakismet"; + "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; + "hakyll-R" = dontDistribute super."hakyll-R"; + "hakyll-agda" = dontDistribute super."hakyll-agda"; + "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; + "hakyll-contrib" = dontDistribute super."hakyll-contrib"; + "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation"; + "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; + "hakyll-convert" = dontDistribute super."hakyll-convert"; + "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; + "hakyll-sass" = dontDistribute super."hakyll-sass"; + "halberd" = dontDistribute super."halberd"; + "halfs" = dontDistribute super."halfs"; + "halipeto" = dontDistribute super."halipeto"; + "halive" = dontDistribute super."halive"; + "halma" = dontDistribute super."halma"; + "haltavista" = dontDistribute super."haltavista"; + "hamid" = dontDistribute super."hamid"; + "hampp" = dontDistribute super."hampp"; + "hamtmap" = dontDistribute super."hamtmap"; + "hamusic" = dontDistribute super."hamusic"; + "handa-gdata" = dontDistribute super."handa-gdata"; + "handa-geodata" = dontDistribute super."handa-geodata"; + "handa-opengl" = dontDistribute super."handa-opengl"; + "handle-like" = dontDistribute super."handle-like"; + "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; + "hangman" = dontDistribute super."hangman"; + "hannahci" = dontDistribute super."hannahci"; + "hans" = dontDistribute super."hans"; + "hans-pcap" = dontDistribute super."hans-pcap"; + "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; + "happindicator" = dontDistribute super."happindicator"; + "happindicator3" = dontDistribute super."happindicator3"; + "happraise" = dontDistribute super."happraise"; + "happs-hsp" = dontDistribute super."happs-hsp"; + "happs-hsp-template" = dontDistribute super."happs-hsp-template"; + "happs-tutorial" = dontDistribute super."happs-tutorial"; + "happstack" = dontDistribute super."happstack"; + "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-contrib" = dontDistribute super."happstack-contrib"; + "happstack-data" = dontDistribute super."happstack-data"; + "happstack-dlg" = dontDistribute super."happstack-dlg"; + "happstack-facebook" = dontDistribute super."happstack-facebook"; + "happstack-fastcgi" = dontDistribute super."happstack-fastcgi"; + "happstack-fay" = dontDistribute super."happstack-fay"; + "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax"; + "happstack-foundation" = dontDistribute super."happstack-foundation"; + "happstack-hamlet" = dontDistribute super."happstack-hamlet"; + "happstack-heist" = dontDistribute super."happstack-heist"; + "happstack-helpers" = dontDistribute super."happstack-helpers"; + "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate"; + "happstack-ixset" = dontDistribute super."happstack-ixset"; + "happstack-lite" = dontDistribute super."happstack-lite"; + "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; + "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; + "happstack-state" = dontDistribute super."happstack-state"; + "happstack-static-routing" = dontDistribute super."happstack-static-routing"; + "happstack-util" = dontDistribute super."happstack-util"; + "happstack-yui" = dontDistribute super."happstack-yui"; + "happy-meta" = dontDistribute super."happy-meta"; + "happybara" = dontDistribute super."happybara"; + "happybara-webkit" = dontDistribute super."happybara-webkit"; + "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "har" = dontDistribute super."har"; + "harchive" = dontDistribute super."harchive"; + "hardware-edsl" = dontDistribute super."hardware-edsl"; + "hark" = dontDistribute super."hark"; + "harmony" = dontDistribute super."harmony"; + "haroonga" = dontDistribute super."haroonga"; + "haroonga-httpd" = dontDistribute super."haroonga-httpd"; + "harpy" = dontDistribute super."harpy"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "hascat" = dontDistribute super."hascat"; + "hascat-lib" = dontDistribute super."hascat-lib"; + "hascat-setup" = dontDistribute super."hascat-setup"; + "hascat-system" = dontDistribute super."hascat-system"; + "hash" = dontDistribute super."hash"; + "hashable-generics" = dontDistribute super."hashable-generics"; + "hashabler" = dontDistribute super."hashabler"; + "hashed-storage" = dontDistribute super."hashed-storage"; + "hashids" = dontDistribute super."hashids"; + "hashring" = dontDistribute super."hashring"; + "hashtables-plus" = dontDistribute super."hashtables-plus"; + "hasim" = dontDistribute super."hasim"; + "hask" = dontDistribute super."hask"; + "hask-home" = dontDistribute super."hask-home"; + "haskades" = dontDistribute super."haskades"; + "haskakafka" = dontDistribute super."haskakafka"; + "haskanoid" = dontDistribute super."haskanoid"; + "haskarrow" = dontDistribute super."haskarrow"; + "haskbot-core" = dontDistribute super."haskbot-core"; + "haskdeep" = dontDistribute super."haskdeep"; + "haskdogs" = dontDistribute super."haskdogs"; + "haskeem" = dontDistribute super."haskeem"; + "haskeline" = doDistribute super."haskeline_0_7_2_2"; + "haskeline-class" = dontDistribute super."haskeline-class"; + "haskell-aliyun" = dontDistribute super."haskell-aliyun"; + "haskell-awk" = dontDistribute super."haskell-awk"; + "haskell-bcrypt" = dontDistribute super."haskell-bcrypt"; + "haskell-brainfuck" = dontDistribute super."haskell-brainfuck"; + "haskell-cnc" = dontDistribute super."haskell-cnc"; + "haskell-coffee" = dontDistribute super."haskell-coffee"; + "haskell-compression" = dontDistribute super."haskell-compression"; + "haskell-course-preludes" = dontDistribute super."haskell-course-preludes"; + "haskell-docs" = dontDistribute super."haskell-docs"; + "haskell-exp-parser" = dontDistribute super."haskell-exp-parser"; + "haskell-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-gi" = dontDistribute super."haskell-gi"; + "haskell-gi-base" = dontDistribute super."haskell-gi-base"; + "haskell-import-graph" = dontDistribute super."haskell-import-graph"; + "haskell-in-space" = dontDistribute super."haskell-in-space"; + "haskell-kubernetes" = dontDistribute super."haskell-kubernetes"; + "haskell-modbus" = dontDistribute super."haskell-modbus"; + "haskell-mpfr" = dontDistribute super."haskell-mpfr"; + "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = dontDistribute super."haskell-names"; + "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; + "haskell-platform-test" = dontDistribute super."haskell-platform-test"; + "haskell-plot" = dontDistribute super."haskell-plot"; + "haskell-qrencode" = dontDistribute super."haskell-qrencode"; + "haskell-read-editor" = dontDistribute super."haskell-read-editor"; + "haskell-reflect" = dontDistribute super."haskell-reflect"; + "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; + "haskell-token-utils" = dontDistribute super."haskell-token-utils"; + "haskell-tor" = dontDistribute super."haskell-tor"; + "haskell-type-exts" = dontDistribute super."haskell-type-exts"; + "haskell-typescript" = dontDistribute super."haskell-typescript"; + "haskell-tyrant" = dontDistribute super."haskell-tyrant"; + "haskell-updater" = dontDistribute super."haskell-updater"; + "haskell-xmpp" = dontDistribute super."haskell-xmpp"; + "haskell2010" = dontDistribute super."haskell2010"; + "haskell98" = dontDistribute super."haskell98"; + "haskell98libraries" = dontDistribute super."haskell98libraries"; + "haskelldb" = dontDistribute super."haskelldb"; + "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc"; + "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl"; + "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf"; + "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers"; + "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted"; + "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic"; + "haskelldb-flat" = dontDistribute super."haskelldb-flat"; + "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc"; + "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql"; + "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc"; + "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql"; + "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3"; + "haskelldb-hsql" = dontDistribute super."haskelldb-hsql"; + "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql"; + "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc"; + "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle"; + "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql"; + "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite"; + "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3"; + "haskelldb-th" = dontDistribute super."haskelldb-th"; + "haskelldb-wx" = dontDistribute super."haskelldb-wx"; + "haskellscrabble" = dontDistribute super."haskellscrabble"; + "haskellscript" = dontDistribute super."haskellscript"; + "haskelm" = dontDistribute super."haskelm"; + "haskgame" = dontDistribute super."haskgame"; + "haskheap" = dontDistribute super."haskheap"; + "haskhol-core" = dontDistribute super."haskhol-core"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-core" = dontDistribute super."haskoin-core"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-node" = dontDistribute super."haskoin-node"; + "haskoin-protocol" = dontDistribute super."haskoin-protocol"; + "haskoin-script" = dontDistribute super."haskoin-script"; + "haskoin-util" = dontDistribute super."haskoin-util"; + "haskoin-wallet" = dontDistribute super."haskoin-wallet"; + "haskoon" = dontDistribute super."haskoon"; + "haskoon-httpspec" = dontDistribute super."haskoon-httpspec"; + "haskoon-salvia" = dontDistribute super."haskoon-salvia"; + "haskore" = dontDistribute super."haskore"; + "haskore-realtime" = dontDistribute super."haskore-realtime"; + "haskore-supercollider" = dontDistribute super."haskore-supercollider"; + "haskore-synthesizer" = dontDistribute super."haskore-synthesizer"; + "haskore-vintage" = dontDistribute super."haskore-vintage"; + "hasktags" = dontDistribute super."hasktags"; + "haslo" = dontDistribute super."haslo"; + "hasloGUI" = dontDistribute super."hasloGUI"; + "hasparql-client" = dontDistribute super."hasparql-client"; + "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_19_6"; + "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative"; + "hasql-pool" = dontDistribute super."hasql-pool"; + "hasql-postgres" = dontDistribute super."hasql-postgres"; + "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; + "hasql-th" = dontDistribute super."hasql-th"; + "hasql-transaction" = dontDistribute super."hasql-transaction"; + "hastache-aeson" = dontDistribute super."hastache-aeson"; + "haste" = dontDistribute super."haste"; + "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-markup" = dontDistribute super."haste-markup"; + "haste-perch" = dontDistribute super."haste-perch"; + "hastily" = dontDistribute super."hastily"; + "hat" = dontDistribute super."hat"; + "hatex-guide" = dontDistribute super."hatex-guide"; + "hath" = dontDistribute super."hath"; + "hatt" = dontDistribute super."hatt"; + "haverer" = dontDistribute super."haverer"; + "hawitter" = dontDistribute super."hawitter"; + "haxl-amazonka" = dontDistribute super."haxl-amazonka"; + "haxl-facebook" = dontDistribute super."haxl-facebook"; + "haxparse" = dontDistribute super."haxparse"; + "haxr-th" = dontDistribute super."haxr-th"; + "haxy" = dontDistribute super."haxy"; + "hayland" = dontDistribute super."hayland"; + "hayoo-cli" = dontDistribute super."hayoo-cli"; + "hback" = dontDistribute super."hback"; + "hbayes" = dontDistribute super."hbayes"; + "hbb" = dontDistribute super."hbb"; + "hbcd" = dontDistribute super."hbcd"; + "hbeat" = dontDistribute super."hbeat"; + "hblas" = dontDistribute super."hblas"; + "hblock" = dontDistribute super."hblock"; + "hbro" = dontDistribute super."hbro"; + "hbro-contrib" = dontDistribute super."hbro-contrib"; + "hburg" = dontDistribute super."hburg"; + "hcc" = dontDistribute super."hcc"; + "hcg-minus" = dontDistribute super."hcg-minus"; + "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo"; + "hcheat" = dontDistribute super."hcheat"; + "hchesslib" = dontDistribute super."hchesslib"; + "hcltest" = dontDistribute super."hcltest"; + "hcoap" = dontDistribute super."hcoap"; + "hcron" = dontDistribute super."hcron"; + "hcube" = dontDistribute super."hcube"; + "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; + "hdbc-aeson" = dontDistribute super."hdbc-aeson"; + "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; + "hdbc-tuple" = dontDistribute super."hdbc-tuple"; + "hdbi" = dontDistribute super."hdbi"; + "hdbi-conduit" = dontDistribute super."hdbi-conduit"; + "hdbi-postgresql" = dontDistribute super."hdbi-postgresql"; + "hdbi-sqlite" = dontDistribute super."hdbi-sqlite"; + "hdbi-tests" = dontDistribute super."hdbi-tests"; + "hdf" = dontDistribute super."hdf"; + "hdigest" = dontDistribute super."hdigest"; + "hdirect" = dontDistribute super."hdirect"; + "hdis86" = dontDistribute super."hdis86"; + "hdiscount" = dontDistribute super."hdiscount"; + "hdm" = dontDistribute super."hdm"; + "hdph" = dontDistribute super."hdph"; + "hdph-closure" = dontDistribute super."hdph-closure"; + "hdr-histogram" = dontDistribute super."hdr-histogram"; + "headergen" = dontDistribute super."headergen"; + "heapsort" = dontDistribute super."heapsort"; + "hecc" = dontDistribute super."hecc"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-pile" = dontDistribute super."hedis-pile"; + "hedis-simple" = dontDistribute super."hedis-simple"; + "hedis-tags" = dontDistribute super."hedis-tags"; + "hedn" = dontDistribute super."hedn"; + "hein" = dontDistribute super."hein"; + "heist-aeson" = dontDistribute super."heist-aeson"; + "heist-async" = dontDistribute super."heist-async"; + "helics" = dontDistribute super."helics"; + "helics-wai" = dontDistribute super."helics-wai"; + "helisp" = dontDistribute super."helisp"; + "helium" = dontDistribute super."helium"; + "helix" = dontDistribute super."helix"; + "hell" = dontDistribute super."hell"; + "hellage" = dontDistribute super."hellage"; + "hellnet" = dontDistribute super."hellnet"; + "hello" = dontDistribute super."hello"; + "helm" = dontDistribute super."helm"; + "help-esb" = dontDistribute super."help-esb"; + "hemkay" = dontDistribute super."hemkay"; + "hemkay-core" = dontDistribute super."hemkay-core"; + "hemokit" = dontDistribute super."hemokit"; + "hen" = dontDistribute super."hen"; + "henet" = dontDistribute super."henet"; + "hepevt" = dontDistribute super."hepevt"; + "her-lexer" = dontDistribute super."her-lexer"; + "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; + "herbalizer" = dontDistribute super."herbalizer"; + "herf-time" = dontDistribute super."herf-time"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets"; + "heroku" = dontDistribute super."heroku"; + "heroku-persistent" = dontDistribute super."heroku-persistent"; + "herringbone" = dontDistribute super."herringbone"; + "herringbone-embed" = dontDistribute super."herringbone-embed"; + "herringbone-wai" = dontDistribute super."herringbone-wai"; + "hesh" = dontDistribute super."hesh"; + "hesql" = dontDistribute super."hesql"; + "hetero-map" = dontDistribute super."hetero-map"; + "hetris" = dontDistribute super."hetris"; + "heukarya" = dontDistribute super."heukarya"; + "hevolisa" = dontDistribute super."hevolisa"; + "hevolisa-dph" = dontDistribute super."hevolisa-dph"; + "hexdump" = dontDistribute super."hexdump"; + "hexif" = dontDistribute super."hexif"; + "hexpat-iteratee" = dontDistribute super."hexpat-iteratee"; + "hexpat-lens" = dontDistribute super."hexpat-lens"; + "hexpat-pickle" = dontDistribute super."hexpat-pickle"; + "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic"; + "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup"; + "hexpr" = dontDistribute super."hexpr"; + "hexquote" = dontDistribute super."hexquote"; + "heyefi" = dontDistribute super."heyefi"; + "hfann" = dontDistribute super."hfann"; + "hfd" = dontDistribute super."hfd"; + "hfiar" = dontDistribute super."hfiar"; + "hfmt" = dontDistribute super."hfmt"; + "hfoil" = dontDistribute super."hfoil"; + "hformat" = dontDistribute super."hformat"; + "hfov" = dontDistribute super."hfov"; + "hfractal" = dontDistribute super."hfractal"; + "hfusion" = dontDistribute super."hfusion"; + "hg-buildpackage" = dontDistribute super."hg-buildpackage"; + "hgal" = dontDistribute super."hgal"; + "hgalib" = dontDistribute super."hgalib"; + "hgdbmi" = dontDistribute super."hgdbmi"; + "hgearman" = dontDistribute super."hgearman"; + "hgen" = dontDistribute super."hgen"; + "hgeometric" = dontDistribute super."hgeometric"; + "hgeometry" = dontDistribute super."hgeometry"; + "hgithub" = dontDistribute super."hgithub"; + "hgl-example" = dontDistribute super."hgl-example"; + "hgom" = dontDistribute super."hgom"; + "hgopher" = dontDistribute super."hgopher"; + "hgrev" = dontDistribute super."hgrev"; + "hgrib" = dontDistribute super."hgrib"; + "hharp" = dontDistribute super."hharp"; + "hi" = dontDistribute super."hi"; + "hi3status" = dontDistribute super."hi3status"; + "hiccup" = dontDistribute super."hiccup"; + "hichi" = dontDistribute super."hichi"; + "hieraclus" = dontDistribute super."hieraclus"; + "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; + "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions"; + "hierarchy" = dontDistribute super."hierarchy"; + "hiernotify" = dontDistribute super."hiernotify"; + "highWaterMark" = dontDistribute super."highWaterMark"; + "higher-leveldb" = dontDistribute super."higher-leveldb"; + "higherorder" = dontDistribute super."higherorder"; + "highlight-versions" = dontDistribute super."highlight-versions"; + "highlighter" = dontDistribute super."highlighter"; + "highlighter2" = dontDistribute super."highlighter2"; + "hills" = dontDistribute super."hills"; + "himerge" = dontDistribute super."himerge"; + "himg" = dontDistribute super."himg"; + "himpy" = dontDistribute super."himpy"; + "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; + "hinduce-classifier" = dontDistribute super."hinduce-classifier"; + "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; + "hinduce-examples" = dontDistribute super."hinduce-examples"; + "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinquire" = dontDistribute super."hinquire"; + "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_3"; + "hint-server" = dontDistribute super."hint-server"; + "hinvaders" = dontDistribute super."hinvaders"; + "hinze-streams" = dontDistribute super."hinze-streams"; + "hip" = dontDistribute super."hip"; + "hipbot" = dontDistribute super."hipbot"; + "hipchat-hs" = dontDistribute super."hipchat-hs"; + "hipe" = dontDistribute super."hipe"; + "hips" = dontDistribute super."hips"; + "hircules" = dontDistribute super."hircules"; + "hirt" = dontDistribute super."hirt"; + "hissmetrics" = dontDistribute super."hissmetrics"; + "hist-pl" = dontDistribute super."hist-pl"; + "hist-pl-dawg" = dontDistribute super."hist-pl-dawg"; + "hist-pl-fusion" = dontDistribute super."hist-pl-fusion"; + "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon"; + "hist-pl-lmf" = dontDistribute super."hist-pl-lmf"; + "hist-pl-transliter" = dontDistribute super."hist-pl-transliter"; + "hist-pl-types" = dontDistribute super."hist-pl-types"; + "histogram-fill-binary" = dontDistribute super."histogram-fill-binary"; + "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal"; + "historian" = dontDistribute super."historian"; + "hjcase" = dontDistribute super."hjcase"; + "hjpath" = dontDistribute super."hjpath"; + "hjs" = dontDistribute super."hjs"; + "hjson" = dontDistribute super."hjson"; + "hjson-query" = dontDistribute super."hjson-query"; + "hjsonpointer" = dontDistribute super."hjsonpointer"; + "hjsonschema" = dontDistribute super."hjsonschema"; + "hkdf" = dontDistribute super."hkdf"; + "hlatex" = dontDistribute super."hlatex"; + "hlbfgsb" = dontDistribute super."hlbfgsb"; + "hlcm" = dontDistribute super."hlcm"; + "hleap" = dontDistribute super."hleap"; + "hledger-chart" = dontDistribute super."hledger-chart"; + "hledger-diff" = dontDistribute super."hledger-diff"; + "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlogger" = dontDistribute super."hlogger"; + "hlongurl" = dontDistribute super."hlongurl"; + "hls" = dontDistribute super."hls"; + "hlwm" = dontDistribute super."hlwm"; + "hly" = dontDistribute super."hly"; + "hmark" = dontDistribute super."hmark"; + "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-repa" = dontDistribute super."hmatrix-repa"; + "hmatrix-special" = dontDistribute super."hmatrix-special"; + "hmatrix-static" = dontDistribute super."hmatrix-static"; + "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc"; + "hmatrix-syntax" = dontDistribute super."hmatrix-syntax"; + "hmatrix-tests" = dontDistribute super."hmatrix-tests"; + "hmeap" = dontDistribute super."hmeap"; + "hmeap-utils" = dontDistribute super."hmeap-utils"; + "hmemdb" = dontDistribute super."hmemdb"; + "hmenu" = dontDistribute super."hmenu"; + "hmidi" = dontDistribute super."hmidi"; + "hmk" = dontDistribute super."hmk"; + "hmm" = dontDistribute super."hmm"; + "hmm-hmatrix" = dontDistribute super."hmm-hmatrix"; + "hmp3" = dontDistribute super."hmp3"; + "hmpfr" = dontDistribute super."hmpfr"; + "hmt" = dontDistribute super."hmt"; + "hmt-diagrams" = dontDistribute super."hmt-diagrams"; + "hmumps" = dontDistribute super."hmumps"; + "hnetcdf" = dontDistribute super."hnetcdf"; + "hnix" = dontDistribute super."hnix"; + "hnn" = dontDistribute super."hnn"; + "hnop" = dontDistribute super."hnop"; + "ho-rewriting" = dontDistribute super."ho-rewriting"; + "hoauth" = dontDistribute super."hoauth"; + "hob" = dontDistribute super."hob"; + "hobbes" = dontDistribute super."hobbes"; + "hobbits" = dontDistribute super."hobbits"; + "hoe" = dontDistribute super."hoe"; + "hofix-mtl" = dontDistribute super."hofix-mtl"; + "hog" = dontDistribute super."hog"; + "hogg" = dontDistribute super."hogg"; + "hogre" = dontDistribute super."hogre"; + "hogre-examples" = dontDistribute super."hogre-examples"; + "hois" = dontDistribute super."hois"; + "hoist-error" = dontDistribute super."hoist-error"; + "hold-em" = dontDistribute super."hold-em"; + "hole" = dontDistribute super."hole"; + "holey-format" = dontDistribute super."holey-format"; + "homeomorphic" = dontDistribute super."homeomorphic"; + "hommage" = dontDistribute super."hommage"; + "hommage-ds" = dontDistribute super."hommage-ds"; + "homplexity" = dontDistribute super."homplexity"; + "honi" = dontDistribute super."honi"; + "honk" = dontDistribute super."honk"; + "hoobuddy" = dontDistribute super."hoobuddy"; + "hood" = dontDistribute super."hood"; + "hood-off" = dontDistribute super."hood-off"; + "hood2" = dontDistribute super."hood2"; + "hoodie" = dontDistribute super."hoodie"; + "hoodle" = dontDistribute super."hoodle"; + "hoodle-builder" = dontDistribute super."hoodle-builder"; + "hoodle-core" = dontDistribute super."hoodle-core"; + "hoodle-extra" = dontDistribute super."hoodle-extra"; + "hoodle-parser" = dontDistribute super."hoodle-parser"; + "hoodle-publish" = dontDistribute super."hoodle-publish"; + "hoodle-render" = dontDistribute super."hoodle-render"; + "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle-index" = dontDistribute super."hoogle-index"; + "hooks-dir" = dontDistribute super."hooks-dir"; + "hoovie" = dontDistribute super."hoovie"; + "hopencc" = dontDistribute super."hopencc"; + "hopencl" = dontDistribute super."hopencl"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "hoppy-generator" = dontDistribute super."hoppy-generator"; + "hoppy-runtime" = dontDistribute super."hoppy-runtime"; + "hoppy-std" = dontDistribute super."hoppy-std"; + "hops" = dontDistribute super."hops"; + "hoq" = dontDistribute super."hoq"; + "horizon" = dontDistribute super."horizon"; + "hosc" = dontDistribute super."hosc"; + "hosc-json" = dontDistribute super."hosc-json"; + "hosc-utils" = dontDistribute super."hosc-utils"; + "hosts-server" = dontDistribute super."hosts-server"; + "hothasktags" = dontDistribute super."hothasktags"; + "hotswap" = dontDistribute super."hotswap"; + "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "hp2any-core" = dontDistribute super."hp2any-core"; + "hp2any-graph" = dontDistribute super."hp2any-graph"; + "hp2any-manager" = dontDistribute super."hp2any-manager"; + "hp2html" = dontDistribute super."hp2html"; + "hp2pretty" = dontDistribute super."hp2pretty"; + "hpack" = dontDistribute super."hpack"; + "hpaco" = dontDistribute super."hpaco"; + "hpaco-lib" = dontDistribute super."hpaco-lib"; + "hpage" = dontDistribute super."hpage"; + "hpapi" = dontDistribute super."hpapi"; + "hpaste" = dontDistribute super."hpaste"; + "hpasteit" = dontDistribute super."hpasteit"; + "hpc-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; + "hplayground" = dontDistribute super."hplayground"; + "hplaylist" = dontDistribute super."hplaylist"; + "hpodder" = dontDistribute super."hpodder"; + "hpp" = dontDistribute super."hpp"; + "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; + "hprotoc-fork" = dontDistribute super."hprotoc-fork"; + "hps" = dontDistribute super."hps"; + "hps-cairo" = dontDistribute super."hps-cairo"; + "hps-kmeans" = dontDistribute super."hps-kmeans"; + "hpuz" = dontDistribute super."hpuz"; + "hpygments" = dontDistribute super."hpygments"; + "hpylos" = dontDistribute super."hpylos"; + "hpyrg" = dontDistribute super."hpyrg"; + "hquantlib" = dontDistribute super."hquantlib"; + "hquery" = dontDistribute super."hquery"; + "hranker" = dontDistribute super."hranker"; + "hreader" = dontDistribute super."hreader"; + "hricket" = dontDistribute super."hricket"; + "hruby" = dontDistribute super."hruby"; + "hs-GeoIP" = dontDistribute super."hs-GeoIP"; + "hs-blake2" = dontDistribute super."hs-blake2"; + "hs-captcha" = dontDistribute super."hs-captcha"; + "hs-carbon" = dontDistribute super."hs-carbon"; + "hs-carbon-examples" = dontDistribute super."hs-carbon-examples"; + "hs-cdb" = dontDistribute super."hs-cdb"; + "hs-dotnet" = dontDistribute super."hs-dotnet"; + "hs-duktape" = dontDistribute super."hs-duktape"; + "hs-excelx" = dontDistribute super."hs-excelx"; + "hs-ffmpeg" = dontDistribute super."hs-ffmpeg"; + "hs-fltk" = dontDistribute super."hs-fltk"; + "hs-gchart" = dontDistribute super."hs-gchart"; + "hs-gen-iface" = dontDistribute super."hs-gen-iface"; + "hs-gizapp" = dontDistribute super."hs-gizapp"; + "hs-inspector" = dontDistribute super."hs-inspector"; + "hs-java" = dontDistribute super."hs-java"; + "hs-json-rpc" = dontDistribute super."hs-json-rpc"; + "hs-logo" = dontDistribute super."hs-logo"; + "hs-mesos" = dontDistribute super."hs-mesos"; + "hs-nombre-generator" = dontDistribute super."hs-nombre-generator"; + "hs-pgms" = dontDistribute super."hs-pgms"; + "hs-php-session" = dontDistribute super."hs-php-session"; + "hs-pkg-config" = dontDistribute super."hs-pkg-config"; + "hs-pkpass" = dontDistribute super."hs-pkpass"; + "hs-re" = dontDistribute super."hs-re"; + "hs-scrape" = dontDistribute super."hs-scrape"; + "hs-twitter" = dontDistribute super."hs-twitter"; + "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver"; + "hs-vcard" = dontDistribute super."hs-vcard"; + "hs2048" = dontDistribute super."hs2048"; + "hs2bf" = dontDistribute super."hs2bf"; + "hs2dot" = dontDistribute super."hs2dot"; + "hsConfigure" = dontDistribute super."hsConfigure"; + "hsSqlite3" = dontDistribute super."hsSqlite3"; + "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsay" = dontDistribute super."hsay"; + "hsb2hs" = dontDistribute super."hsb2hs"; + "hsbackup" = dontDistribute super."hsbackup"; + "hsbencher" = dontDistribute super."hsbencher"; + "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed"; + "hsbencher-fusion" = dontDistribute super."hsbencher-fusion"; + "hsc2hs" = dontDistribute super."hsc2hs"; + "hsc3" = dontDistribute super."hsc3"; + "hsc3-auditor" = dontDistribute super."hsc3-auditor"; + "hsc3-cairo" = dontDistribute super."hsc3-cairo"; + "hsc3-data" = dontDistribute super."hsc3-data"; + "hsc3-db" = dontDistribute super."hsc3-db"; + "hsc3-dot" = dontDistribute super."hsc3-dot"; + "hsc3-forth" = dontDistribute super."hsc3-forth"; + "hsc3-graphs" = dontDistribute super."hsc3-graphs"; + "hsc3-lang" = dontDistribute super."hsc3-lang"; + "hsc3-lisp" = dontDistribute super."hsc3-lisp"; + "hsc3-plot" = dontDistribute super."hsc3-plot"; + "hsc3-process" = dontDistribute super."hsc3-process"; + "hsc3-rec" = dontDistribute super."hsc3-rec"; + "hsc3-rw" = dontDistribute super."hsc3-rw"; + "hsc3-server" = dontDistribute super."hsc3-server"; + "hsc3-sf" = dontDistribute super."hsc3-sf"; + "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile"; + "hsc3-unsafe" = dontDistribute super."hsc3-unsafe"; + "hsc3-utils" = dontDistribute super."hsc3-utils"; + "hscamwire" = dontDistribute super."hscamwire"; + "hscassandra" = dontDistribute super."hscassandra"; + "hscd" = dontDistribute super."hscd"; + "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; + "hscope" = dontDistribute super."hscope"; + "hscrtmpl" = dontDistribute super."hscrtmpl"; + "hscuid" = dontDistribute super."hscuid"; + "hscurses" = dontDistribute super."hscurses"; + "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex"; + "hsdev" = dontDistribute super."hsdev"; + "hsdif" = dontDistribute super."hsdif"; + "hsdip" = dontDistribute super."hsdip"; + "hsdns" = dontDistribute super."hsdns"; + "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsemail-ns" = dontDistribute super."hsemail-ns"; + "hsenv" = dontDistribute super."hsenv"; + "hserv" = dontDistribute super."hserv"; + "hset" = dontDistribute super."hset"; + "hsfacter" = dontDistribute super."hsfacter"; + "hsfcsh" = dontDistribute super."hsfcsh"; + "hsfilt" = dontDistribute super."hsfilt"; + "hsgnutls" = dontDistribute super."hsgnutls"; + "hsgnutls-yj" = dontDistribute super."hsgnutls-yj"; + "hsgsom" = dontDistribute super."hsgsom"; + "hsgtd" = dontDistribute super."hsgtd"; + "hsharc" = dontDistribute super."hsharc"; + "hsilop" = dontDistribute super."hsilop"; + "hsimport" = dontDistribute super."hsimport"; + "hsini" = dontDistribute super."hsini"; + "hskeleton" = dontDistribute super."hskeleton"; + "hslackbuilder" = dontDistribute super."hslackbuilder"; + "hslibsvm" = dontDistribute super."hslibsvm"; + "hslinks" = dontDistribute super."hslinks"; + "hslogger-reader" = dontDistribute super."hslogger-reader"; + "hslogger-template" = dontDistribute super."hslogger-template"; + "hslogger4j" = dontDistribute super."hslogger4j"; + "hslogstash" = dontDistribute super."hslogstash"; + "hsmagick" = dontDistribute super."hsmagick"; + "hsmisc" = dontDistribute super."hsmisc"; + "hsmtpclient" = dontDistribute super."hsmtpclient"; + "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector"; + "hsnock" = dontDistribute super."hsnock"; + "hsnoise" = dontDistribute super."hsnoise"; + "hsns" = dontDistribute super."hsns"; + "hsnsq" = dontDistribute super."hsnsq"; + "hsntp" = dontDistribute super."hsntp"; + "hsoptions" = dontDistribute super."hsoptions"; + "hsp-cgi" = dontDistribute super."hsp-cgi"; + "hsparklines" = dontDistribute super."hsparklines"; + "hsparql" = dontDistribute super."hsparql"; + "hspear" = dontDistribute super."hspear"; + "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; + "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; + "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-experimental" = dontDistribute super."hspec-experimental"; + "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-monad-control" = dontDistribute super."hspec-monad-control"; + "hspec-server" = dontDistribute super."hspec-server"; + "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; + "hspec-test-framework" = dontDistribute super."hspec-test-framework"; + "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; + "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_5"; + "hspec2" = dontDistribute super."hspec2"; + "hspr-sh" = dontDistribute super."hspr-sh"; + "hspread" = dontDistribute super."hspread"; + "hspresent" = dontDistribute super."hspresent"; + "hsprocess" = dontDistribute super."hsprocess"; + "hsql" = dontDistribute super."hsql"; + "hsql-mysql" = dontDistribute super."hsql-mysql"; + "hsql-odbc" = dontDistribute super."hsql-odbc"; + "hsql-postgresql" = dontDistribute super."hsql-postgresql"; + "hsql-sqlite3" = dontDistribute super."hsql-sqlite3"; + "hsqml" = dontDistribute super."hsqml"; + "hsqml-datamodel" = dontDistribute super."hsqml-datamodel"; + "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl"; + "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris"; + "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes"; + "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; + "hsqml-morris" = dontDistribute super."hsqml-morris"; + "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; + "hsshellscript" = dontDistribute super."hsshellscript"; + "hssourceinfo" = dontDistribute super."hssourceinfo"; + "hssqlppp" = dontDistribute super."hssqlppp"; + "hstats" = dontDistribute super."hstats"; + "hstest" = dontDistribute super."hstest"; + "hstidy" = dontDistribute super."hstidy"; + "hstorchat" = dontDistribute super."hstorchat"; + "hstradeking" = dontDistribute super."hstradeking"; + "hstyle" = dontDistribute super."hstyle"; + "hstzaar" = dontDistribute super."hstzaar"; + "hsubconvert" = dontDistribute super."hsubconvert"; + "hsverilog" = dontDistribute super."hsverilog"; + "hswip" = dontDistribute super."hswip"; + "hsx" = dontDistribute super."hsx"; + "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsyscall" = dontDistribute super."hsyscall"; + "hszephyr" = dontDistribute super."hszephyr"; + "htags" = dontDistribute super."htags"; + "htar" = dontDistribute super."htar"; + "htiled" = dontDistribute super."htiled"; + "htime" = dontDistribute super."htime"; + "html-email-validate" = dontDistribute super."html-email-validate"; + "html-entities" = dontDistribute super."html-entities"; + "html-kure" = dontDistribute super."html-kure"; + "html-minimalist" = dontDistribute super."html-minimalist"; + "html-rules" = dontDistribute super."html-rules"; + "html-tokenizer" = dontDistribute super."html-tokenizer"; + "html-truncate" = dontDistribute super."html-truncate"; + "html2hamlet" = dontDistribute super."html2hamlet"; + "html5-entity" = dontDistribute super."html5-entity"; + "htodo" = dontDistribute super."htodo"; + "htoml" = dontDistribute super."htoml"; + "htrace" = dontDistribute super."htrace"; + "hts" = dontDistribute super."hts"; + "htsn" = dontDistribute super."htsn"; + "htsn-common" = dontDistribute super."htsn-common"; + "htsn-import" = dontDistribute super."htsn-import"; + "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client-auth" = dontDistribute super."http-client-auth"; + "http-client-conduit" = dontDistribute super."http-client-conduit"; + "http-client-lens" = dontDistribute super."http-client-lens"; + "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; + "http-client-streams" = dontDistribute super."http-client-streams"; + "http-conduit-browser" = dontDistribute super."http-conduit-browser"; + "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-encodings" = dontDistribute super."http-encodings"; + "http-enumerator" = dontDistribute super."http-enumerator"; + "http-kinder" = dontDistribute super."http-kinder"; + "http-kit" = dontDistribute super."http-kit"; + "http-listen" = dontDistribute super."http-listen"; + "http-monad" = dontDistribute super."http-monad"; + "http-proxy" = dontDistribute super."http-proxy"; + "http-querystring" = dontDistribute super."http-querystring"; + "http-server" = dontDistribute super."http-server"; + "http-shed" = dontDistribute super."http-shed"; + "http-test" = dontDistribute super."http-test"; + "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_4_5"; + "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; + "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; + "httpspec" = dontDistribute super."httpspec"; + "htune" = dontDistribute super."htune"; + "htzaar" = dontDistribute super."htzaar"; + "hub" = dontDistribute super."hub"; + "hubigraph" = dontDistribute super."hubigraph"; + "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; + "huffman" = dontDistribute super."huffman"; + "hugs2yc" = dontDistribute super."hugs2yc"; + "hulk" = dontDistribute super."hulk"; + "hums" = dontDistribute super."hums"; + "hunch" = dontDistribute super."hunch"; + "hunit-gui" = dontDistribute super."hunit-gui"; + "hunit-parsec" = dontDistribute super."hunit-parsec"; + "hunit-rematch" = dontDistribute super."hunit-rematch"; + "hunp" = dontDistribute super."hunp"; + "hunt-searchengine" = dontDistribute super."hunt-searchengine"; + "hunt-server" = dontDistribute super."hunt-server"; + "hunt-server-cli" = dontDistribute super."hunt-server-cli"; + "hurdle" = dontDistribute super."hurdle"; + "husk-scheme" = dontDistribute super."husk-scheme"; + "husk-scheme-libs" = dontDistribute super."husk-scheme-libs"; + "husky" = dontDistribute super."husky"; + "hutton" = dontDistribute super."hutton"; + "huttons-razor" = dontDistribute super."huttons-razor"; + "huzzy" = dontDistribute super."huzzy"; + "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hws" = dontDistribute super."hws"; + "hwsl2" = dontDistribute super."hwsl2"; + "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; + "hwsl2-reducers" = dontDistribute super."hwsl2-reducers"; + "hx" = dontDistribute super."hx"; + "hxmppc" = dontDistribute super."hxmppc"; + "hxournal" = dontDistribute super."hxournal"; + "hxt-binary" = dontDistribute super."hxt-binary"; + "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-extras" = dontDistribute super."hxt-extras"; + "hxt-filter" = dontDistribute super."hxt-filter"; + "hxt-xpath" = dontDistribute super."hxt-xpath"; + "hxt-xslt" = dontDistribute super."hxt-xslt"; + "hxthelper" = dontDistribute super."hxthelper"; + "hxweb" = dontDistribute super."hxweb"; + "hyahtzee" = dontDistribute super."hyahtzee"; + "hyakko" = dontDistribute super."hyakko"; + "hybrid" = dontDistribute super."hybrid"; + "hydra-hs" = dontDistribute super."hydra-hs"; + "hydra-print" = dontDistribute super."hydra-print"; + "hydrogen" = dontDistribute super."hydrogen"; + "hydrogen-cli" = dontDistribute super."hydrogen-cli"; + "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args"; + "hydrogen-data" = dontDistribute super."hydrogen-data"; + "hydrogen-multimap" = dontDistribute super."hydrogen-multimap"; + "hydrogen-parsing" = dontDistribute super."hydrogen-parsing"; + "hydrogen-prelude" = dontDistribute super."hydrogen-prelude"; + "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec"; + "hydrogen-syntax" = dontDistribute super."hydrogen-syntax"; + "hydrogen-util" = dontDistribute super."hydrogen-util"; + "hydrogen-version" = dontDistribute super."hydrogen-version"; + "hyena" = dontDistribute super."hyena"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; + "hzk" = dontDistribute super."hzk"; + "i18n" = dontDistribute super."i18n"; + "iCalendar" = dontDistribute super."iCalendar"; + "iException" = dontDistribute super."iException"; + "iap-verifier" = dontDistribute super."iap-verifier"; + "ib-api" = dontDistribute super."ib-api"; + "iban" = dontDistribute super."iban"; + "ibus-hs" = dontDistribute super."ibus-hs"; + "ideas" = dontDistribute super."ideas"; + "ideas-math" = dontDistribute super."ideas-math"; + "idempotent" = dontDistribute super."idempotent"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "idris" = dontDistribute super."idris"; + "ieee" = dontDistribute super."ieee"; + "ieee-utils" = dontDistribute super."ieee-utils"; + "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix"; + "ieee754-parser" = dontDistribute super."ieee754-parser"; + "ifcxt" = dontDistribute super."ifcxt"; + "iff" = dontDistribute super."iff"; + "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "illuminate" = dontDistribute super."illuminate"; + "image-type" = dontDistribute super."image-type"; + "imagefilters" = dontDistribute super."imagefilters"; + "imagemagick" = dontDistribute super."imagemagick"; + "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; + "imapget" = dontDistribute super."imapget"; + "imbib" = dontDistribute super."imbib"; + "imgurder" = dontDistribute super."imgurder"; + "imm" = dontDistribute super."imm"; + "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; + "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; + "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; + "implicit-params" = dontDistribute super."implicit-params"; + "imports" = dontDistribute super."imports"; + "impossible" = dontDistribute super."impossible"; + "improve" = dontDistribute super."improve"; + "inc-ref" = dontDistribute super."inc-ref"; + "inch" = dontDistribute super."inch"; + "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-sat-solver" = dontDistribute super."incremental-sat-solver"; + "increments" = dontDistribute super."increments"; + "indentation" = dontDistribute super."indentation"; + "indentparser" = dontDistribute super."indentparser"; + "index-core" = dontDistribute super."index-core"; + "indexed" = dontDistribute super."indexed"; + "indexed-do-notation" = dontDistribute super."indexed-do-notation"; + "indexed-extras" = dontDistribute super."indexed-extras"; + "indexed-free" = dontDistribute super."indexed-free"; + "indian-language-font-converter" = dontDistribute super."indian-language-font-converter"; + "indices" = dontDistribute super."indices"; + "indieweb-algorithms" = dontDistribute super."indieweb-algorithms"; + "inf-interval" = dontDistribute super."inf-interval"; + "infer-upstream" = dontDistribute super."infer-upstream"; + "infernu" = dontDistribute super."infernu"; + "infinite-search" = dontDistribute super."infinite-search"; + "infinity" = dontDistribute super."infinity"; + "infix" = dontDistribute super."infix"; + "inflist" = dontDistribute super."inflist"; + "influxdb" = dontDistribute super."influxdb"; + "informative" = dontDistribute super."informative"; + "inilist" = dontDistribute super."inilist"; + "inject" = dontDistribute super."inject"; + "inject-function" = dontDistribute super."inject-function"; + "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; + "inserts" = dontDistribute super."inserts"; + "inspection-proxy" = dontDistribute super."inspection-proxy"; + "instant-aeson" = dontDistribute super."instant-aeson"; + "instant-bytes" = dontDistribute super."instant-bytes"; + "instant-deepseq" = dontDistribute super."instant-deepseq"; + "instant-generics" = dontDistribute super."instant-generics"; + "instant-hashable" = dontDistribute super."instant-hashable"; + "instant-zipper" = dontDistribute super."instant-zipper"; + "instinct" = dontDistribute super."instinct"; + "instrument-chord" = dontDistribute super."instrument-chord"; + "int-cast" = dontDistribute super."int-cast"; + "integer-pure" = dontDistribute super."integer-pure"; + "intel-aes" = dontDistribute super."intel-aes"; + "interchangeable" = dontDistribute super."interchangeable"; + "interleavableGen" = dontDistribute super."interleavableGen"; + "interleavableIO" = dontDistribute super."interleavableIO"; + "interleave" = dontDistribute super."interleave"; + "interlude" = dontDistribute super."interlude"; + "intern" = dontDistribute super."intern"; + "internetmarke" = dontDistribute super."internetmarke"; + "interpol" = dontDistribute super."interpol"; + "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; + "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; + "interpolation" = dontDistribute super."interpolation"; + "intricacy" = dontDistribute super."intricacy"; + "intset" = dontDistribute super."intset"; + "invertible-syntax" = dontDistribute super."invertible-syntax"; + "io-capture" = dontDistribute super."io-capture"; + "io-reactive" = dontDistribute super."io-reactive"; + "io-streams-http" = dontDistribute super."io-streams-http"; + "io-throttle" = dontDistribute super."io-throttle"; + "ioctl" = dontDistribute super."ioctl"; + "ioref-stable" = dontDistribute super."ioref-stable"; + "iothread" = dontDistribute super."iothread"; + "iotransaction" = dontDistribute super."iotransaction"; + "ip-quoter" = dontDistribute super."ip-quoter"; + "ipatch" = dontDistribute super."ipatch"; + "ipc" = dontDistribute super."ipc"; + "ipcvar" = dontDistribute super."ipcvar"; + "ipopt-hs" = dontDistribute super."ipopt-hs"; + "ipprint" = dontDistribute super."ipprint"; + "iptables-helpers" = dontDistribute super."iptables-helpers"; + "iptadmin" = dontDistribute super."iptadmin"; + "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-core" = dontDistribute super."irc-core"; + "irc-dcc" = dontDistribute super."irc-dcc"; + "irc-fun-bot" = dontDistribute super."irc-fun-bot"; + "irc-fun-client" = dontDistribute super."irc-fun-client"; + "irc-fun-color" = dontDistribute super."irc-fun-color"; + "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; + "ircbot" = dontDistribute super."ircbot"; + "ircbouncer" = dontDistribute super."ircbouncer"; + "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; + "iron-mq" = dontDistribute super."iron-mq"; + "ironforge" = dontDistribute super."ironforge"; + "is" = dontDistribute super."is"; + "isdicom" = dontDistribute super."isdicom"; + "isevaluated" = dontDistribute super."isevaluated"; + "isiz" = dontDistribute super."isiz"; + "ismtp" = dontDistribute super."ismtp"; + "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; + "isohunt" = dontDistribute super."isohunt"; + "itanium-abi" = dontDistribute super."itanium-abi"; + "iter-stats" = dontDistribute super."iter-stats"; + "iterIO" = dontDistribute super."iterIO"; + "iteratee" = dontDistribute super."iteratee"; + "iteratee-compress" = dontDistribute super."iteratee-compress"; + "iteratee-mtl" = dontDistribute super."iteratee-mtl"; + "iteratee-parsec" = dontDistribute super."iteratee-parsec"; + "iteratee-stm" = dontDistribute super."iteratee-stm"; + "iterio-server" = dontDistribute super."iterio-server"; + "ivar-simple" = dontDistribute super."ivar-simple"; + "ivor" = dontDistribute super."ivor"; + "ivory" = dontDistribute super."ivory"; + "ivory-backend-c" = dontDistribute super."ivory-backend-c"; + "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-examples" = dontDistribute super."ivory-examples"; + "ivory-hw" = dontDistribute super."ivory-hw"; + "ivory-opts" = dontDistribute super."ivory-opts"; + "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-stdlib" = dontDistribute super."ivory-stdlib"; + "ivy-web" = dontDistribute super."ivy-web"; + "ixdopp" = dontDistribute super."ixdopp"; + "ixmonad" = dontDistribute super."ixmonad"; + "iyql" = dontDistribute super."iyql"; + "j2hs" = dontDistribute super."j2hs"; + "ja-base-extra" = dontDistribute super."ja-base-extra"; + "jack" = dontDistribute super."jack"; + "jack-bindings" = dontDistribute super."jack-bindings"; + "jackminimix" = dontDistribute super."jackminimix"; + "jacobi-roots" = dontDistribute super."jacobi-roots"; + "jail" = dontDistribute super."jail"; + "jailbreak-cabal" = dontDistribute super."jailbreak-cabal"; + "jalaali" = dontDistribute super."jalaali"; + "jalla" = dontDistribute super."jalla"; + "jammittools" = dontDistribute super."jammittools"; + "jarfind" = dontDistribute super."jarfind"; + "java-bridge" = dontDistribute super."java-bridge"; + "java-bridge-extras" = dontDistribute super."java-bridge-extras"; + "java-character" = dontDistribute super."java-character"; + "java-poker" = dontDistribute super."java-poker"; + "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; + "javasf" = dontDistribute super."javasf"; + "javav" = dontDistribute super."javav"; + "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; + "jdi" = dontDistribute super."jdi"; + "jespresso" = dontDistribute super."jespresso"; + "jobqueue" = dontDistribute super."jobqueue"; + "join" = dontDistribute super."join"; + "joinlist" = dontDistribute super."joinlist"; + "jonathanscard" = dontDistribute super."jonathanscard"; + "jort" = dontDistribute super."jort"; + "jose" = dontDistribute super."jose"; + "jpeg" = dontDistribute super."jpeg"; + "js-good-parts" = dontDistribute super."js-good-parts"; + "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-hello" = dontDistribute super."jsaddle-hello"; + "jsc" = dontDistribute super."jsc"; + "jsmw" = dontDistribute super."jsmw"; + "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; + "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; + "json-enumerator" = dontDistribute super."json-enumerator"; + "json-extra" = dontDistribute super."json-extra"; + "json-fu" = dontDistribute super."json-fu"; + "json-litobj" = dontDistribute super."json-litobj"; + "json-pointer" = dontDistribute super."json-pointer"; + "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; + "json-python" = dontDistribute super."json-python"; + "json-qq" = dontDistribute super."json-qq"; + "json-rpc" = dontDistribute super."json-rpc"; + "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-sop" = dontDistribute super."json-sop"; + "json-state" = dontDistribute super."json-state"; + "json-stream" = dontDistribute super."json-stream"; + "json-togo" = dontDistribute super."json-togo"; + "json-tools" = dontDistribute super."json-tools"; + "json-types" = dontDistribute super."json-types"; + "json2" = dontDistribute super."json2"; + "json2-hdbc" = dontDistribute super."json2-hdbc"; + "json2-types" = dontDistribute super."json2-types"; + "json2yaml" = dontDistribute super."json2yaml"; + "jsonresume" = dontDistribute super."jsonresume"; + "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit"; + "jsonschema-gen" = dontDistribute super."jsonschema-gen"; + "jsonsql" = dontDistribute super."jsonsql"; + "jsontsv" = dontDistribute super."jsontsv"; + "jspath" = dontDistribute super."jspath"; + "judy" = dontDistribute super."judy"; + "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; + "jumpthefive" = dontDistribute super."jumpthefive"; + "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; + "kademlia" = dontDistribute super."kademlia"; + "kafka-client" = dontDistribute super."kafka-client"; + "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; + "kansas-lava" = dontDistribute super."kansas-lava"; + "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; + "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; + "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; + "karakuri" = dontDistribute super."karakuri"; + "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; + "katt" = dontDistribute super."katt"; + "kazura-queue" = dontDistribute super."kazura-queue"; + "kbq-gu" = dontDistribute super."kbq-gu"; + "kd-tree" = dontDistribute super."kd-tree"; + "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; + "keera-callbacks" = dontDistribute super."keera-callbacks"; + "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; + "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; + "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk"; + "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel"; + "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel"; + "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config"; + "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk"; + "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view"; + "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk"; + "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs"; + "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk"; + "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network"; + "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling"; + "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx"; + "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa"; + "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses"; + "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "krpc" = dontDistribute super."krpc"; + "ks-test" = dontDistribute super."ks-test"; + "ktx" = dontDistribute super."ktx"; + "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate"; + "kyotocabinet" = dontDistribute super."kyotocabinet"; + "l-bfgs-b" = dontDistribute super."l-bfgs-b"; + "labeled-graph" = dontDistribute super."labeled-graph"; + "labeled-tree" = dontDistribute super."labeled-tree"; + "laborantin-hs" = dontDistribute super."laborantin-hs"; + "labyrinth" = dontDistribute super."labyrinth"; + "labyrinth-server" = dontDistribute super."labyrinth-server"; + "lackey" = dontDistribute super."lackey"; + "lagrangian" = dontDistribute super."lagrangian"; + "laika" = dontDistribute super."laika"; + "lambda-ast" = dontDistribute super."lambda-ast"; + "lambda-bridge" = dontDistribute super."lambda-bridge"; + "lambda-canvas" = dontDistribute super."lambda-canvas"; + "lambda-devs" = dontDistribute super."lambda-devs"; + "lambda-options" = dontDistribute super."lambda-options"; + "lambda-placeholders" = dontDistribute super."lambda-placeholders"; + "lambda-toolbox" = dontDistribute super."lambda-toolbox"; + "lambda2js" = dontDistribute super."lambda2js"; + "lambdaBase" = dontDistribute super."lambdaBase"; + "lambdaFeed" = dontDistribute super."lambdaFeed"; + "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = dontDistribute super."lambdabot"; + "lambdabot-core" = dontDistribute super."lambdabot-core"; + "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins"; + "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins"; + "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins"; + "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins"; + "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins"; + "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins"; + "lambdabot-trusted" = dontDistribute super."lambdabot-trusted"; + "lambdabot-utils" = dontDistribute super."lambdabot-utils"; + "lambdacat" = dontDistribute super."lambdacat"; + "lambdacms-core" = dontDistribute super."lambdacms-core"; + "lambdacms-media" = dontDistribute super."lambdacms-media"; + "lambdacube" = dontDistribute super."lambdacube"; + "lambdacube-bullet" = dontDistribute super."lambdacube-bullet"; + "lambdacube-compiler" = dontDistribute super."lambdacube-compiler"; + "lambdacube-core" = dontDistribute super."lambdacube-core"; + "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; + "lambdacube-engine" = dontDistribute super."lambdacube-engine"; + "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = dontDistribute super."lambdacube-gl"; + "lambdacube-ir" = dontDistribute super."lambdacube-ir"; + "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; + "lambdatwit" = dontDistribute super."lambdatwit"; + "lambdiff" = dontDistribute super."lambdiff"; + "lame-tester" = dontDistribute super."lame-tester"; + "language-asn1" = dontDistribute super."language-asn1"; + "language-bash" = dontDistribute super."language-bash"; + "language-boogie" = dontDistribute super."language-boogie"; + "language-c-comments" = dontDistribute super."language-c-comments"; + "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = dontDistribute super."language-c-quote"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "language-dot" = dontDistribute super."language-dot"; + "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; + "language-eiffel" = dontDistribute super."language-eiffel"; + "language-fortran" = dontDistribute super."language-fortran"; + "language-gcl" = dontDistribute super."language-gcl"; + "language-go" = dontDistribute super."language-go"; + "language-guess" = dontDistribute super."language-guess"; + "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-kort" = dontDistribute super."language-kort"; + "language-lua" = dontDistribute super."language-lua"; + "language-lua-qq" = dontDistribute super."language-lua-qq"; + "language-mixal" = dontDistribute super."language-mixal"; + "language-objc" = dontDistribute super."language-objc"; + "language-openscad" = dontDistribute super."language-openscad"; + "language-pig" = dontDistribute super."language-pig"; + "language-puppet" = dontDistribute super."language-puppet"; + "language-python" = dontDistribute super."language-python"; + "language-python-colour" = dontDistribute super."language-python-colour"; + "language-python-test" = dontDistribute super."language-python-test"; + "language-qux" = dontDistribute super."language-qux"; + "language-sh" = dontDistribute super."language-sh"; + "language-slice" = dontDistribute super."language-slice"; + "language-spelling" = dontDistribute super."language-spelling"; + "language-sqlite" = dontDistribute super."language-sqlite"; + "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; + "language-typescript" = dontDistribute super."language-typescript"; + "language-vhdl" = dontDistribute super."language-vhdl"; + "lat" = dontDistribute super."lat"; + "latest-npm-version" = dontDistribute super."latest-npm-version"; + "latex" = dontDistribute super."latex"; + "launchpad-control" = dontDistribute super."launchpad-control"; + "lax" = dontDistribute super."lax"; + "layers" = dontDistribute super."layers"; + "layers-game" = dontDistribute super."layers-game"; + "layout" = dontDistribute super."layout"; + "layout-bootstrap" = dontDistribute super."layout-bootstrap"; + "lazy-io" = dontDistribute super."lazy-io"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysmallcheck" = dontDistribute super."lazysmallcheck"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "leksah" = dontDistribute super."leksah"; + "leksah-server" = dontDistribute super."leksah-server"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; + "lens-properties" = dontDistribute super."lens-properties"; + "lens-sop" = dontDistribute super."lens-sop"; + "lens-text-encoding" = dontDistribute super."lens-text-encoding"; + "lens-time" = dontDistribute super."lens-time"; + "lens-tutorial" = dontDistribute super."lens-tutorial"; + "lens-utils" = dontDistribute super."lens-utils"; + "lenses" = dontDistribute super."lenses"; + "lensref" = dontDistribute super."lensref"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; + "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; + "levmar" = dontDistribute super."levmar"; + "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; + "lgtk" = dontDistribute super."lgtk"; + "lha" = dontDistribute super."lha"; + "lhae" = dontDistribute super."lhae"; + "lhc" = dontDistribute super."lhc"; + "lhe" = dontDistribute super."lhe"; + "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl"; + "lhs2html" = dontDistribute super."lhs2html"; + "lhslatex" = dontDistribute super."lhslatex"; + "libGenI" = dontDistribute super."libGenI"; + "libarchive-conduit" = dontDistribute super."libarchive-conduit"; + "libconfig" = dontDistribute super."libconfig"; + "libcspm" = dontDistribute super."libcspm"; + "libexpect" = dontDistribute super."libexpect"; + "libffi" = dontDistribute super."libffi"; + "libgraph" = dontDistribute super."libgraph"; + "libhbb" = dontDistribute super."libhbb"; + "libjenkins" = dontDistribute super."libjenkins"; + "liblastfm" = dontDistribute super."liblastfm"; + "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; + "libltdl" = dontDistribute super."libltdl"; + "libmpd" = dontDistribute super."libmpd"; + "libnvvm" = dontDistribute super."libnvvm"; + "liboleg" = dontDistribute super."liboleg"; + "libpafe" = dontDistribute super."libpafe"; + "libpq" = dontDistribute super."libpq"; + "librandomorg" = dontDistribute super."librandomorg"; + "libravatar" = dontDistribute super."libravatar"; + "libssh2" = dontDistribute super."libssh2"; + "libssh2-conduit" = dontDistribute super."libssh2-conduit"; + "libstackexchange" = dontDistribute super."libstackexchange"; + "libsystemd-daemon" = dontDistribute super."libsystemd-daemon"; + "libtagc" = dontDistribute super."libtagc"; + "libvirt-hs" = dontDistribute super."libvirt-hs"; + "libvorbis" = dontDistribute super."libvorbis"; + "libxls" = dontDistribute super."libxls"; + "libxml" = dontDistribute super."libxml"; + "libxml-enumerator" = dontDistribute super."libxml-enumerator"; + "libxslt" = dontDistribute super."libxslt"; + "life" = dontDistribute super."life"; + "lift-generics" = dontDistribute super."lift-generics"; + "lifted-threads" = dontDistribute super."lifted-threads"; + "lifter" = dontDistribute super."lifter"; + "ligature" = dontDistribute super."ligature"; + "ligd" = dontDistribute super."ligd"; + "lighttpd-conf" = dontDistribute super."lighttpd-conf"; + "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq"; + "lilypond" = dontDistribute super."lilypond"; + "limp" = dontDistribute super."limp"; + "limp-cbc" = dontDistribute super."limp-cbc"; + "lin-alg" = dontDistribute super."lin-alg"; + "linda" = dontDistribute super."linda"; + "lindenmayer" = dontDistribute super."lindenmayer"; + "line-break" = dontDistribute super."line-break"; + "line2pdf" = dontDistribute super."line2pdf"; + "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; + "linear-circuit" = dontDistribute super."linear-circuit"; + "linear-grammar" = dontDistribute super."linear-grammar"; + "linear-maps" = dontDistribute super."linear-maps"; + "linear-opengl" = dontDistribute super."linear-opengl"; + "linear-vect" = dontDistribute super."linear-vect"; + "linearEqSolver" = dontDistribute super."linearEqSolver"; + "linearscan" = dontDistribute super."linearscan"; + "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; + "linebreak" = dontDistribute super."linebreak"; + "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; + "linkchk" = dontDistribute super."linkchk"; + "linkcore" = dontDistribute super."linkcore"; + "linkedhashmap" = dontDistribute super."linkedhashmap"; + "linklater" = dontDistribute super."linklater"; + "linode" = dontDistribute super."linode"; + "linux-blkid" = dontDistribute super."linux-blkid"; + "linux-cgroup" = dontDistribute super."linux-cgroup"; + "linux-evdev" = dontDistribute super."linux-evdev"; + "linux-inotify" = dontDistribute super."linux-inotify"; + "linux-kmod" = dontDistribute super."linux-kmod"; + "linux-mount" = dontDistribute super."linux-mount"; + "linux-perf" = dontDistribute super."linux-perf"; + "linux-ptrace" = dontDistribute super."linux-ptrace"; + "linux-xattr" = dontDistribute super."linux-xattr"; + "linx-gateway" = dontDistribute super."linx-gateway"; + "lio" = dontDistribute super."lio"; + "lio-eci11" = dontDistribute super."lio-eci11"; + "lio-fs" = dontDistribute super."lio-fs"; + "lio-simple" = dontDistribute super."lio-simple"; + "lipsum-gen" = dontDistribute super."lipsum-gen"; + "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; + "liquidhaskell" = dontDistribute super."liquidhaskell"; + "lispparser" = dontDistribute super."lispparser"; + "list-extras" = dontDistribute super."list-extras"; + "list-grouping" = dontDistribute super."list-grouping"; + "list-mux" = dontDistribute super."list-mux"; + "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; + "list-t-html-parser" = dontDistribute super."list-t-html-parser"; + "list-t-http-client" = dontDistribute super."list-t-http-client"; + "list-t-libcurl" = dontDistribute super."list-t-libcurl"; + "list-t-text" = dontDistribute super."list-t-text"; + "list-tries" = dontDistribute super."list-tries"; + "list-zip-def" = dontDistribute super."list-zip-def"; + "listlike-instances" = dontDistribute super."listlike-instances"; + "lists" = dontDistribute super."lists"; + "listsafe" = dontDistribute super."listsafe"; + "lit" = dontDistribute super."lit"; + "literals" = dontDistribute super."literals"; + "live-sequencer" = dontDistribute super."live-sequencer"; + "ll-picosat" = dontDistribute super."ll-picosat"; + "llrbtree" = dontDistribute super."llrbtree"; + "llsd" = dontDistribute super."llsd"; + "llvm" = dontDistribute super."llvm"; + "llvm-analysis" = dontDistribute super."llvm-analysis"; + "llvm-base" = dontDistribute super."llvm-base"; + "llvm-base-types" = dontDistribute super."llvm-base-types"; + "llvm-base-util" = dontDistribute super."llvm-base-util"; + "llvm-data-interop" = dontDistribute super."llvm-data-interop"; + "llvm-extra" = dontDistribute super."llvm-extra"; + "llvm-ffi" = dontDistribute super."llvm-ffi"; + "llvm-general" = dontDistribute super."llvm-general"; + "llvm-general-pure" = dontDistribute super."llvm-general-pure"; + "llvm-general-quote" = dontDistribute super."llvm-general-quote"; + "llvm-ht" = dontDistribute super."llvm-ht"; + "llvm-pkg-config" = dontDistribute super."llvm-pkg-config"; + "llvm-pretty" = dontDistribute super."llvm-pretty"; + "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser"; + "llvm-tf" = dontDistribute super."llvm-tf"; + "llvm-tools" = dontDistribute super."llvm-tools"; + "lmdb" = dontDistribute super."lmdb"; + "lmonad" = dontDistribute super."lmonad"; + "lmonad-yesod" = dontDistribute super."lmonad-yesod"; + "loadavg" = dontDistribute super."loadavg"; + "local-address" = dontDistribute super."local-address"; + "local-search" = dontDistribute super."local-search"; + "located-base" = dontDistribute super."located-base"; + "locators" = dontDistribute super."locators"; + "loch" = dontDistribute super."loch"; + "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; + "lockfree-queue" = dontDistribute super."lockfree-queue"; + "log" = dontDistribute super."log"; + "log-effect" = dontDistribute super."log-effect"; + "log2json" = dontDistribute super."log2json"; + "logfloat" = dontDistribute super."logfloat"; + "logger" = dontDistribute super."logger"; + "logging" = dontDistribute super."logging"; + "logging-effect" = dontDistribute super."logging-effect"; + "logging-facade-journald" = dontDistribute super."logging-facade-journald"; + "logic-TPTP" = dontDistribute super."logic-TPTP"; + "logic-classes" = dontDistribute super."logic-classes"; + "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; + "logplex-parse" = dontDistribute super."logplex-parse"; + "logsink" = dontDistribute super."logsink"; + "lojban" = dontDistribute super."lojban"; + "lojbanParser" = dontDistribute super."lojbanParser"; + "lojbanXiragan" = dontDistribute super."lojbanXiragan"; + "lojysamban" = dontDistribute super."lojysamban"; + "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; + "loli" = dontDistribute super."loli"; + "lookup-tables" = dontDistribute super."lookup-tables"; + "loop-effin" = dontDistribute super."loop-effin"; + "loop-while" = dontDistribute super."loop-while"; + "loops" = dontDistribute super."loops"; + "loopy" = dontDistribute super."loopy"; + "lord" = dontDistribute super."lord"; + "lorem" = dontDistribute super."lorem"; + "loris" = dontDistribute super."loris"; + "loshadka" = dontDistribute super."loshadka"; + "lostcities" = dontDistribute super."lostcities"; + "lowgl" = dontDistribute super."lowgl"; + "lp-diagrams" = dontDistribute super."lp-diagrams"; + "lp-diagrams-svg" = dontDistribute super."lp-diagrams-svg"; + "ls-usb" = dontDistribute super."ls-usb"; + "lscabal" = dontDistribute super."lscabal"; + "lss" = dontDistribute super."lss"; + "lsystem" = dontDistribute super."lsystem"; + "ltk" = dontDistribute super."ltk"; + "ltl" = dontDistribute super."ltl"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luka" = dontDistribute super."luka"; + "luminance" = doDistribute super."luminance_0_9_1_2"; + "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; + "lushtags" = dontDistribute super."lushtags"; + "luthor" = dontDistribute super."luthor"; + "lvish" = dontDistribute super."lvish"; + "lvmlib" = dontDistribute super."lvmlib"; + "lvmrun" = dontDistribute super."lvmrun"; + "lxc" = dontDistribute super."lxc"; + "lye" = dontDistribute super."lye"; + "lz4" = dontDistribute super."lz4"; + "lzma" = dontDistribute super."lzma"; + "lzma-clib" = dontDistribute super."lzma-clib"; + "lzma-enumerator" = dontDistribute super."lzma-enumerator"; + "lzma-streams" = dontDistribute super."lzma-streams"; + "maam" = dontDistribute super."maam"; + "mac" = dontDistribute super."mac"; + "maccatcher" = dontDistribute super."maccatcher"; + "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; + "machines-zlib" = dontDistribute super."machines-zlib"; + "macho" = dontDistribute super."macho"; + "maclight" = dontDistribute super."maclight"; + "macosx-make-standalone" = dontDistribute super."macosx-make-standalone"; + "mage" = dontDistribute super."mage"; + "magico" = dontDistribute super."magico"; + "magma" = dontDistribute super."magma"; + "mahoro" = dontDistribute super."mahoro"; + "maid" = dontDistribute super."maid"; + "mailbox-count" = dontDistribute super."mailbox-count"; + "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; + "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = dontDistribute super."mainland-pretty"; + "majordomo" = dontDistribute super."majordomo"; + "majority" = dontDistribute super."majority"; + "make-hard-links" = dontDistribute super."make-hard-links"; + "make-package" = dontDistribute super."make-package"; + "makedo" = dontDistribute super."makedo"; + "manatee" = dontDistribute super."manatee"; + "manatee-all" = dontDistribute super."manatee-all"; + "manatee-anything" = dontDistribute super."manatee-anything"; + "manatee-browser" = dontDistribute super."manatee-browser"; + "manatee-core" = dontDistribute super."manatee-core"; + "manatee-curl" = dontDistribute super."manatee-curl"; + "manatee-editor" = dontDistribute super."manatee-editor"; + "manatee-filemanager" = dontDistribute super."manatee-filemanager"; + "manatee-imageviewer" = dontDistribute super."manatee-imageviewer"; + "manatee-ircclient" = dontDistribute super."manatee-ircclient"; + "manatee-mplayer" = dontDistribute super."manatee-mplayer"; + "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer"; + "manatee-processmanager" = dontDistribute super."manatee-processmanager"; + "manatee-reader" = dontDistribute super."manatee-reader"; + "manatee-template" = dontDistribute super."manatee-template"; + "manatee-terminal" = dontDistribute super."manatee-terminal"; + "manatee-welcome" = dontDistribute super."manatee-welcome"; + "mancala" = dontDistribute super."mancala"; + "mandulia" = dontDistribute super."mandulia"; + "manifold-random" = dontDistribute super."manifold-random"; + "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; + "marionetta" = dontDistribute super."marionetta"; + "markdown-kate" = dontDistribute super."markdown-kate"; + "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown2svg" = dontDistribute super."markdown2svg"; + "marked-pretty" = dontDistribute super."marked-pretty"; + "markov" = dontDistribute super."markov"; + "markov-chain" = dontDistribute super."markov-chain"; + "markov-processes" = dontDistribute super."markov-processes"; + "markup-preview" = dontDistribute super."markup-preview"; + "marmalade-upload" = dontDistribute super."marmalade-upload"; + "marquise" = dontDistribute super."marquise"; + "marxup" = dontDistribute super."marxup"; + "masakazu-bot" = dontDistribute super."masakazu-bot"; + "mastermind" = dontDistribute super."mastermind"; + "matchers" = dontDistribute super."matchers"; + "mathblog" = dontDistribute super."mathblog"; + "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; + "mathlink" = dontDistribute super."mathlink"; + "matlab" = dontDistribute super."matlab"; + "matrix-market" = dontDistribute super."matrix-market"; + "matrix-market-pure" = dontDistribute super."matrix-market-pure"; + "matsuri" = dontDistribute super."matsuri"; + "maude" = dontDistribute super."maude"; + "maxent" = dontDistribute super."maxent"; + "maxsharing" = dontDistribute super."maxsharing"; + "maybe-justify" = dontDistribute super."maybe-justify"; + "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; + "mbox-tools" = dontDistribute super."mbox-tools"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcpi" = dontDistribute super."mcpi"; + "mdapi" = dontDistribute super."mdapi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mdp" = dontDistribute super."mdp"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_3_0"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "melody" = dontDistribute super."melody"; + "memcache" = dontDistribute super."memcache"; + "memcache-conduit" = dontDistribute super."memcache-conduit"; + "memcache-haskell" = dontDistribute super."memcache-haskell"; + "memcached" = dontDistribute super."memcached"; + "memexml" = dontDistribute super."memexml"; + "memo-ptr" = dontDistribute super."memo-ptr"; + "memo-sqlite" = dontDistribute super."memo-sqlite"; + "memscript" = dontDistribute super."memscript"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "messente" = dontDistribute super."messente"; + "meta-misc" = dontDistribute super."meta-misc"; + "meta-par" = dontDistribute super."meta-par"; + "meta-par-accelerate" = dontDistribute super."meta-par-accelerate"; + "metadata" = dontDistribute super."metadata"; + "metamorphic" = dontDistribute super."metamorphic"; + "metaplug" = dontDistribute super."metaplug"; + "metric" = dontDistribute super."metric"; + "metricsd-client" = dontDistribute super."metricsd-client"; + "metronome" = dontDistribute super."metronome"; + "mezzolens" = dontDistribute super."mezzolens"; + "mfsolve" = dontDistribute super."mfsolve"; + "mgeneric" = dontDistribute super."mgeneric"; + "mi" = dontDistribute super."mi"; + "microbench" = dontDistribute super."microbench"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens-each" = dontDistribute super."microlens-each"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minilens" = dontDistribute super."minilens"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; + "modbus-tcp" = dontDistribute super."modbus-tcp"; + "modelicaparser" = dontDistribute super."modelicaparser"; + "modsplit" = dontDistribute super."modsplit"; + "modular-arithmetic" = dontDistribute super."modular-arithmetic"; + "modular-prelude" = dontDistribute super."modular-prelude"; + "modular-prelude-classy" = dontDistribute super."modular-prelude-classy"; + "module-management" = dontDistribute super."module-management"; + "modulespection" = dontDistribute super."modulespection"; + "modulo" = dontDistribute super."modulo"; + "moe" = dontDistribute super."moe"; + "mohws" = dontDistribute super."mohws"; + "monad-abort-fd" = dontDistribute super."monad-abort-fd"; + "monad-atom" = dontDistribute super."monad-atom"; + "monad-atom-simple" = dontDistribute super."monad-atom-simple"; + "monad-bool" = dontDistribute super."monad-bool"; + "monad-classes" = dontDistribute super."monad-classes"; + "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; + "monad-exception" = dontDistribute super."monad-exception"; + "monad-fork" = dontDistribute super."monad-fork"; + "monad-gen" = dontDistribute super."monad-gen"; + "monad-interleave" = dontDistribute super."monad-interleave"; + "monad-levels" = dontDistribute super."monad-levels"; + "monad-loops-stm" = dontDistribute super."monad-loops-stm"; + "monad-lrs" = dontDistribute super."monad-lrs"; + "monad-memo" = dontDistribute super."monad-memo"; + "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; + "monad-open" = dontDistribute super."monad-open"; + "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; + "monad-param" = dontDistribute super."monad-param"; + "monad-ran" = dontDistribute super."monad-ran"; + "monad-resumption" = dontDistribute super."monad-resumption"; + "monad-state" = dontDistribute super."monad-state"; + "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-stlike-io" = dontDistribute super."monad-stlike-io"; + "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; + "monad-supply" = dontDistribute super."monad-supply"; + "monad-task" = dontDistribute super."monad-task"; + "monad-tx" = dontDistribute super."monad-tx"; + "monad-unify" = dontDistribute super."monad-unify"; + "monad-wrap" = dontDistribute super."monad-wrap"; + "monadIO" = dontDistribute super."monadIO"; + "monadLib-compose" = dontDistribute super."monadLib-compose"; + "monadacme" = dontDistribute super."monadacme"; + "monadbi" = dontDistribute super."monadbi"; + "monadfibre" = dontDistribute super."monadfibre"; + "monadiccp" = dontDistribute super."monadiccp"; + "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; + "monadio-unwrappable" = dontDistribute super."monadio-unwrappable"; + "monadlist" = dontDistribute super."monadlist"; + "monadloc-pp" = dontDistribute super."monadloc-pp"; + "monadplus" = dontDistribute super."monadplus"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-owns" = dontDistribute super."monoid-owns"; + "monoid-record" = dontDistribute super."monoid-record"; + "monoid-statistics" = dontDistribute super."monoid-statistics"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidplus" = dontDistribute super."monoidplus"; + "monoids" = dontDistribute super."monoids"; + "monomorphic" = dontDistribute super."monomorphic"; + "montage" = dontDistribute super."montage"; + "montage-client" = dontDistribute super."montage-client"; + "monte-carlo" = dontDistribute super."monte-carlo"; + "moo" = dontDistribute super."moo"; + "moonshine" = dontDistribute super."moonshine"; + "morfette" = dontDistribute super."morfette"; + "morfeusz" = dontDistribute super."morfeusz"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; + "ms" = dontDistribute super."ms"; + "msgpack" = dontDistribute super."msgpack"; + "msgpack-aeson" = dontDistribute super."msgpack-aeson"; + "msgpack-idl" = dontDistribute super."msgpack-idl"; + "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; + "msu" = dontDistribute super."msu"; + "mtgoxapi" = dontDistribute super."mtgoxapi"; + "mtl-c" = dontDistribute super."mtl-c"; + "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-tf" = dontDistribute super."mtl-tf"; + "mtl-unleashed" = dontDistribute super."mtl-unleashed"; + "mtlparse" = dontDistribute super."mtlparse"; + "mtlx" = dontDistribute super."mtlx"; + "mtp" = dontDistribute super."mtp"; + "mtree" = dontDistribute super."mtree"; + "mucipher" = dontDistribute super."mucipher"; + "mudbath" = dontDistribute super."mudbath"; + "muesli" = dontDistribute super."muesli"; + "mueval" = dontDistribute super."mueval"; + "mulang" = dontDistribute super."mulang"; + "multext-east-msd" = dontDistribute super."multext-east-msd"; + "multi-cabal" = dontDistribute super."multi-cabal"; + "multiaddr" = dontDistribute super."multiaddr"; + "multifocal" = dontDistribute super."multifocal"; + "multihash" = dontDistribute super."multihash"; + "multipart-names" = dontDistribute super."multipart-names"; + "multipass" = dontDistribute super."multipass"; + "multiplate-simplified" = dontDistribute super."multiplate-simplified"; + "multiplicity" = dontDistribute super."multiplicity"; + "multirec" = dontDistribute super."multirec"; + "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; + "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset-comb" = dontDistribute super."multiset-comb"; + "multisetrewrite" = dontDistribute super."multisetrewrite"; + "multistate" = dontDistribute super."multistate"; + "muon" = dontDistribute super."muon"; + "murder" = dontDistribute super."murder"; + "murmur3" = dontDistribute super."murmur3"; + "murmurhash3" = dontDistribute super."murmurhash3"; + "music-articulation" = dontDistribute super."music-articulation"; + "music-diatonic" = dontDistribute super."music-diatonic"; + "music-dynamics" = dontDistribute super."music-dynamics"; + "music-dynamics-literal" = dontDistribute super."music-dynamics-literal"; + "music-graphics" = dontDistribute super."music-graphics"; + "music-parts" = dontDistribute super."music-parts"; + "music-pitch" = dontDistribute super."music-pitch"; + "music-pitch-literal" = dontDistribute super."music-pitch-literal"; + "music-preludes" = dontDistribute super."music-preludes"; + "music-score" = dontDistribute super."music-score"; + "music-sibelius" = dontDistribute super."music-sibelius"; + "music-suite" = dontDistribute super."music-suite"; + "music-util" = dontDistribute super."music-util"; + "musicbrainz-email" = dontDistribute super."musicbrainz-email"; + "musicxml" = dontDistribute super."musicxml"; + "musicxml2" = dontDistribute super."musicxml2"; + "mustache-haskell" = dontDistribute super."mustache-haskell"; + "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-iter" = dontDistribute super."mutable-iter"; + "mute-unmute" = dontDistribute super."mute-unmute"; + "mvc" = dontDistribute super."mvc"; + "mvc-updates" = dontDistribute super."mvc-updates"; + "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = doDistribute super."mwc-probability_1_0_3"; + "mwc-random-monad" = dontDistribute super."mwc-random-monad"; + "myTestlll" = dontDistribute super."myTestlll"; + "mybitcoin-sci" = dontDistribute super."mybitcoin-sci"; + "myo" = dontDistribute super."myo"; + "mysnapsession" = dontDistribute super."mysnapsession"; + "mysnapsession-example" = dontDistribute super."mysnapsession-example"; + "mysql-effect" = dontDistribute super."mysql-effect"; + "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi"; + "mysql-simple-typed" = dontDistribute super."mysql-simple-typed"; + "mzv" = dontDistribute super."mzv"; + "n-m" = dontDistribute super."n-m"; + "nagios-perfdata" = dontDistribute super."nagios-perfdata"; + "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg"; + "named-formlet" = dontDistribute super."named-formlet"; + "named-lock" = dontDistribute super."named-lock"; + "named-records" = dontDistribute super."named-records"; + "namelist" = dontDistribute super."namelist"; + "names" = dontDistribute super."names"; + "names-th" = dontDistribute super."names-th"; + "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; + "nano-hmac" = dontDistribute super."nano-hmac"; + "nano-md5" = dontDistribute super."nano-md5"; + "nanoAgda" = dontDistribute super."nanoAgda"; + "nanocurses" = dontDistribute super."nanocurses"; + "nanomsg" = dontDistribute super."nanomsg"; + "nanomsg-haskell" = dontDistribute super."nanomsg-haskell"; + "nanoparsec" = dontDistribute super."nanoparsec"; + "nanq" = dontDistribute super."nanq"; + "narc" = dontDistribute super."narc"; + "nat" = dontDistribute super."nat"; + "nats-queue" = dontDistribute super."nats-queue"; + "natural-number" = dontDistribute super."natural-number"; + "natural-numbers" = dontDistribute super."natural-numbers"; + "natural-transformation" = dontDistribute super."natural-transformation"; + "naturalcomp" = dontDistribute super."naturalcomp"; + "naturals" = dontDistribute super."naturals"; + "naver-translate" = dontDistribute super."naver-translate"; + "nbt" = dontDistribute super."nbt"; + "nc-indicators" = dontDistribute super."nc-indicators"; + "ncurses" = dontDistribute super."ncurses"; + "neat" = dontDistribute super."neat"; + "needle" = dontDistribute super."needle"; + "neet" = dontDistribute super."neet"; + "nehe-tuts" = dontDistribute super."nehe-tuts"; + "neil" = dontDistribute super."neil"; + "neither" = dontDistribute super."neither"; + "nemesis" = dontDistribute super."nemesis"; + "nemesis-titan" = dontDistribute super."nemesis-titan"; + "nerf" = dontDistribute super."nerf"; + "nero" = dontDistribute super."nero"; + "nero-wai" = dontDistribute super."nero-wai"; + "nero-warp" = dontDistribute super."nero-warp"; + "nested-routes" = dontDistribute super."nested-routes"; + "nested-sets" = dontDistribute super."nested-sets"; + "nestedmap" = dontDistribute super."nestedmap"; + "net-concurrent" = dontDistribute super."net-concurrent"; + "netclock" = dontDistribute super."netclock"; + "netcore" = dontDistribute super."netcore"; + "netlines" = dontDistribute super."netlines"; + "netlink" = dontDistribute super."netlink"; + "netlist" = dontDistribute super."netlist"; + "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl"; + "netpbm" = dontDistribute super."netpbm"; + "netrc" = dontDistribute super."netrc"; + "netspec" = dontDistribute super."netspec"; + "netstring-enumerator" = dontDistribute super."netstring-enumerator"; + "nettle-frp" = dontDistribute super."nettle-frp"; + "nettle-netkit" = dontDistribute super."nettle-netkit"; + "nettle-openflow" = dontDistribute super."nettle-openflow"; + "netwire" = dontDistribute super."netwire"; + "netwire-input" = dontDistribute super."netwire-input"; + "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; + "network-address" = dontDistribute super."network-address"; + "network-api-support" = dontDistribute super."network-api-support"; + "network-bitcoin" = dontDistribute super."network-bitcoin"; + "network-builder" = dontDistribute super."network-builder"; + "network-bytestring" = dontDistribute super."network-bytestring"; + "network-conduit" = dontDistribute super."network-conduit"; + "network-connection" = dontDistribute super."network-connection"; + "network-data" = dontDistribute super."network-data"; + "network-dbus" = dontDistribute super."network-dbus"; + "network-dns" = dontDistribute super."network-dns"; + "network-enumerator" = dontDistribute super."network-enumerator"; + "network-fancy" = dontDistribute super."network-fancy"; + "network-interfacerequest" = dontDistribute super."network-interfacerequest"; + "network-ip" = dontDistribute super."network-ip"; + "network-metrics" = dontDistribute super."network-metrics"; + "network-minihttp" = dontDistribute super."network-minihttp"; + "network-msg" = dontDistribute super."network-msg"; + "network-netpacket" = dontDistribute super."network-netpacket"; + "network-pgi" = dontDistribute super."network-pgi"; + "network-rpca" = dontDistribute super."network-rpca"; + "network-server" = dontDistribute super."network-server"; + "network-service" = dontDistribute super."network-service"; + "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; + "network-simple-tls" = dontDistribute super."network-simple-tls"; + "network-socket-options" = dontDistribute super."network-socket-options"; + "network-stream" = dontDistribute super."network-stream"; + "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport-amqp" = dontDistribute super."network-transport-amqp"; + "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; + "network-uri-static" = dontDistribute super."network-uri-static"; + "network-wai-router" = dontDistribute super."network-wai-router"; + "network-websocket" = dontDistribute super."network-websocket"; + "networked-game" = dontDistribute super."networked-game"; + "newports" = dontDistribute super."newports"; + "newsynth" = dontDistribute super."newsynth"; + "newt" = dontDistribute super."newt"; + "newtype-deriving" = dontDistribute super."newtype-deriving"; + "newtype-th" = dontDistribute super."newtype-th"; + "newtyper" = dontDistribute super."newtyper"; + "nextstep-plist" = dontDistribute super."nextstep-plist"; + "nf" = dontDistribute super."nf"; + "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; + "nibblestring" = dontDistribute super."nibblestring"; + "nicify" = dontDistribute super."nicify"; + "nicify-lib" = dontDistribute super."nicify-lib"; + "nicovideo-translator" = dontDistribute super."nicovideo-translator"; + "nikepub" = dontDistribute super."nikepub"; + "nimber" = dontDistribute super."nimber"; + "nist-beacon" = dontDistribute super."nist-beacon"; + "nitro" = dontDistribute super."nitro"; + "nix-eval" = dontDistribute super."nix-eval"; + "nixfromnpm" = dontDistribute super."nixfromnpm"; + "nixos-types" = dontDistribute super."nixos-types"; + "nkjp" = dontDistribute super."nkjp"; + "nlp-scores" = dontDistribute super."nlp-scores"; + "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts"; + "nm" = dontDistribute super."nm"; + "nme" = dontDistribute super."nme"; + "nntp" = dontDistribute super."nntp"; + "no-buffering-workaround" = dontDistribute super."no-buffering-workaround"; + "no-role-annots" = dontDistribute super."no-role-annots"; + "nofib-analyse" = dontDistribute super."nofib-analyse"; + "nofib-analyze" = dontDistribute super."nofib-analyze"; + "noise" = dontDistribute super."noise"; + "non-empty" = dontDistribute super."non-empty"; + "non-negative" = dontDistribute super."non-negative"; + "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; + "nonfree" = dontDistribute super."nonfree"; + "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; + "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; + "noodle" = dontDistribute super."noodle"; + "normaldistribution" = dontDistribute super."normaldistribution"; + "not-gloss" = dontDistribute super."not-gloss"; + "not-gloss-examples" = dontDistribute super."not-gloss-examples"; + "not-in-base" = dontDistribute super."not-in-base"; + "notcpp" = dontDistribute super."notcpp"; + "notmuch-haskell" = dontDistribute super."notmuch-haskell"; + "notmuch-web" = dontDistribute super."notmuch-web"; + "notzero" = dontDistribute super."notzero"; + "np-extras" = dontDistribute super."np-extras"; + "np-linear" = dontDistribute super."np-linear"; + "nptools" = dontDistribute super."nptools"; + "nth-prime" = dontDistribute super."nth-prime"; + "nthable" = dontDistribute super."nthable"; + "ntp-control" = dontDistribute super."ntp-control"; + "null-canvas" = dontDistribute super."null-canvas"; + "nullary" = dontDistribute super."nullary"; + "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; + "numbering" = dontDistribute super."numbering"; + "numerals" = dontDistribute super."numerals"; + "numerals-base" = dontDistribute super."numerals-base"; + "numeric-limits" = dontDistribute super."numeric-limits"; + "numeric-prelude" = dontDistribute super."numeric-prelude"; + "numeric-qq" = dontDistribute super."numeric-qq"; + "numeric-quest" = dontDistribute super."numeric-quest"; + "numeric-ranges" = dontDistribute super."numeric-ranges"; + "numeric-tools" = dontDistribute super."numeric-tools"; + "numericpeano" = dontDistribute super."numericpeano"; + "nums" = dontDistribute super."nums"; + "numtype" = dontDistribute super."numtype"; + "numtype-tf" = dontDistribute super."numtype-tf"; + "nurbs" = dontDistribute super."nurbs"; + "nvim-hs" = dontDistribute super."nvim-hs"; + "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib"; + "nyan" = dontDistribute super."nyan"; + "nylas" = dontDistribute super."nylas"; + "nymphaea" = dontDistribute super."nymphaea"; + "oanda-rest-api" = dontDistribute super."oanda-rest-api"; + "oauthenticated" = dontDistribute super."oauthenticated"; + "obdd" = dontDistribute super."obdd"; + "oberon0" = dontDistribute super."oberon0"; + "obj" = dontDistribute super."obj"; + "objectid" = dontDistribute super."objectid"; + "objective" = doDistribute super."objective_1_0_5"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octane" = dontDistribute super."octane"; + "octohat" = dontDistribute super."octohat"; + "octopus" = dontDistribute super."octopus"; + "oculus" = dontDistribute super."oculus"; + "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = dontDistribute super."oeis"; + "off-simple" = dontDistribute super."off-simple"; + "ohloh-hs" = dontDistribute super."ohloh-hs"; + "oi" = dontDistribute super."oi"; + "oidc-client" = dontDistribute super."oidc-client"; + "ois-input-manager" = dontDistribute super."ois-input-manager"; + "old-version" = dontDistribute super."old-version"; + "olwrapper" = dontDistribute super."olwrapper"; + "omaketex" = dontDistribute super."omaketex"; + "omega" = dontDistribute super."omega"; + "omnicodec" = dontDistribute super."omnicodec"; + "on-a-horse" = dontDistribute super."on-a-horse"; + "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "one-liner" = dontDistribute super."one-liner"; + "one-time-password" = dontDistribute super."one-time-password"; + "oneOfN" = dontDistribute super."oneOfN"; + "oneormore" = dontDistribute super."oneormore"; + "only" = dontDistribute super."only"; + "onu-course" = dontDistribute super."onu-course"; + "opaleye-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = dontDistribute super."opaleye-trans"; + "open-haddock" = dontDistribute super."open-haddock"; + "open-pandoc" = dontDistribute super."open-pandoc"; + "open-symbology" = dontDistribute super."open-symbology"; + "open-typerep" = dontDistribute super."open-typerep"; + "open-union" = dontDistribute super."open-union"; + "open-witness" = dontDistribute super."open-witness"; + "opencog-atomspace" = dontDistribute super."opencog-atomspace"; + "opencv-raw" = dontDistribute super."opencv-raw"; + "opendatatable" = dontDistribute super."opendatatable"; + "openexchangerates" = dontDistribute super."openexchangerates"; + "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; + "opengl-spacenavigator" = dontDistribute super."opengl-spacenavigator"; + "opengles" = dontDistribute super."opengles"; + "openid" = dontDistribute super."openid"; + "openpgp" = dontDistribute super."openpgp"; + "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; + "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; + "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "openssh-github-keys" = dontDistribute super."openssh-github-keys"; + "openssl-createkey" = dontDistribute super."openssl-createkey"; + "opentheory" = dontDistribute super."opentheory"; + "opentheory-bits" = dontDistribute super."opentheory-bits"; + "opentheory-byte" = dontDistribute super."opentheory-byte"; + "opentheory-char" = dontDistribute super."opentheory-char"; + "opentheory-divides" = dontDistribute super."opentheory-divides"; + "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci"; + "opentheory-parser" = dontDistribute super."opentheory-parser"; + "opentheory-prime" = dontDistribute super."opentheory-prime"; + "opentheory-primitive" = dontDistribute super."opentheory-primitive"; + "opentheory-probability" = dontDistribute super."opentheory-probability"; + "opentheory-stream" = dontDistribute super."opentheory-stream"; + "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; + "operational-extra" = dontDistribute super."operational-extra"; + "opml" = dontDistribute super."opml"; + "opml-conduit" = doDistribute super."opml-conduit_0_4_0_1"; + "opn" = dontDistribute super."opn"; + "optimal-blocks" = dontDistribute super."optimal-blocks"; + "optimization" = dontDistribute super."optimization"; + "optimusprime" = dontDistribute super."optimusprime"; + "option" = dontDistribute super."option"; + "optional" = dontDistribute super."optional"; + "options-time" = dontDistribute super."options-time"; + "optparse-declarative" = dontDistribute super."optparse-declarative"; + "optparse-generic" = dontDistribute super."optparse-generic"; + "orc" = dontDistribute super."orc"; + "orchestrate" = dontDistribute super."orchestrate"; + "orchid" = dontDistribute super."orchid"; + "orchid-demo" = dontDistribute super."orchid-demo"; + "ord-adhoc" = dontDistribute super."ord-adhoc"; + "order-maintenance" = dontDistribute super."order-maintenance"; + "order-statistic-tree" = dontDistribute super."order-statistic-tree"; + "order-statistics" = dontDistribute super."order-statistics"; + "ordered" = dontDistribute super."ordered"; + "orders" = dontDistribute super."orders"; + "ordrea" = dontDistribute super."ordrea"; + "organize-imports" = dontDistribute super."organize-imports"; + "orgmode" = dontDistribute super."orgmode"; + "orgmode-parse" = dontDistribute super."orgmode-parse"; + "origami" = dontDistribute super."origami"; + "os-release" = dontDistribute super."os-release"; + "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; + "osm-download" = dontDistribute super."osm-download"; + "oso2pdf" = dontDistribute super."oso2pdf"; + "osx-ar" = dontDistribute super."osx-ar"; + "ot" = dontDistribute super."ot"; + "ottparse-pretty" = dontDistribute super."ottparse-pretty"; + "overloaded-records" = dontDistribute super."overloaded-records"; + "overture" = dontDistribute super."overture"; + "pack" = dontDistribute super."pack"; + "package-o-tron" = dontDistribute super."package-o-tron"; + "package-vt" = dontDistribute super."package-vt"; + "packdeps" = dontDistribute super."packdeps"; + "packed-dawg" = dontDistribute super."packed-dawg"; + "packedstring" = dontDistribute super."packedstring"; + "packer" = dontDistribute super."packer"; + "packman" = dontDistribute super."packman"; + "packunused" = dontDistribute super."packunused"; + "pacman-memcache" = dontDistribute super."pacman-memcache"; + "padKONTROL" = dontDistribute super."padKONTROL"; + "pagarme" = dontDistribute super."pagarme"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-include" = dontDistribute super."pandoc-include"; + "pandoc-japanese-filters" = dontDistribute super."pandoc-japanese-filters"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "papillon" = dontDistribute super."papillon"; + "pappy" = dontDistribute super."pappy"; + "para" = dontDistribute super."para"; + "paragon" = dontDistribute super."paragon"; + "parallel-tasks" = dontDistribute super."parallel-tasks"; + "parallel-tree-search" = dontDistribute super."parallel-tree-search"; + "parameterized-data" = dontDistribute super."parameterized-data"; + "parco" = dontDistribute super."parco"; + "parco-attoparsec" = dontDistribute super."parco-attoparsec"; + "parco-parsec" = dontDistribute super."parco-parsec"; + "parcom-lib" = dontDistribute super."parcom-lib"; + "parconc-examples" = dontDistribute super."parconc-examples"; + "parport" = dontDistribute super."parport"; + "parse-dimacs" = dontDistribute super."parse-dimacs"; + "parse-help" = dontDistribute super."parse-help"; + "parsec-extra" = dontDistribute super."parsec-extra"; + "parsec-numbers" = dontDistribute super."parsec-numbers"; + "parsec-parsers" = dontDistribute super."parsec-parsers"; + "parsec-permutation" = dontDistribute super."parsec-permutation"; + "parsec-tagsoup" = dontDistribute super."parsec-tagsoup"; + "parsec-trace" = dontDistribute super."parsec-trace"; + "parsec-utils" = dontDistribute super."parsec-utils"; + "parsec1" = dontDistribute super."parsec1"; + "parsec2" = dontDistribute super."parsec2"; + "parsec3" = dontDistribute super."parsec3"; + "parsec3-numbers" = dontDistribute super."parsec3-numbers"; + "parsedate" = dontDistribute super."parsedate"; + "parsek" = dontDistribute super."parsek"; + "parsely" = dontDistribute super."parsely"; + "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; + "parsergen" = dontDistribute super."parsergen"; + "parsestar" = dontDistribute super."parsestar"; + "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; + "partial" = dontDistribute super."partial"; + "partial-lens" = dontDistribute super."partial-lens"; + "partial-uri" = dontDistribute super."partial-uri"; + "partly" = dontDistribute super."partly"; + "passage" = dontDistribute super."passage"; + "passwords" = dontDistribute super."passwords"; + "pastis" = dontDistribute super."pastis"; + "pasty" = dontDistribute super."pasty"; + "patch-combinators" = dontDistribute super."patch-combinators"; + "patch-image" = dontDistribute super."patch-image"; + "path-io" = doDistribute super."path-io_0_2_0"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "patronscraper" = dontDistribute super."patronscraper"; + "patterns" = dontDistribute super."patterns"; + "paymill" = dontDistribute super."paymill"; + "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops"; + "paypal-api" = dontDistribute super."paypal-api"; + "pb" = dontDistribute super."pb"; + "pbc4hs" = dontDistribute super."pbc4hs"; + "pbkdf" = dontDistribute super."pbkdf"; + "pcap-conduit" = dontDistribute super."pcap-conduit"; + "pcap-enumerator" = dontDistribute super."pcap-enumerator"; + "pcd-loader" = dontDistribute super."pcd-loader"; + "pcf" = dontDistribute super."pcf"; + "pcg-random" = dontDistribute super."pcg-random"; + "pcre-less" = dontDistribute super."pcre-less"; + "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; + "pdf2line" = dontDistribute super."pdf2line"; + "pdfsplit" = dontDistribute super."pdfsplit"; + "pdynload" = dontDistribute super."pdynload"; + "peakachu" = dontDistribute super."peakachu"; + "peano" = dontDistribute super."peano"; + "peano-inf" = dontDistribute super."peano-inf"; + "pec" = dontDistribute super."pec"; + "pecoff" = dontDistribute super."pecoff"; + "peg" = dontDistribute super."peg"; + "peggy" = dontDistribute super."peggy"; + "pell" = dontDistribute super."pell"; + "penn-treebank" = dontDistribute super."penn-treebank"; + "penny" = dontDistribute super."penny"; + "penny-bin" = dontDistribute super."penny-bin"; + "penny-lib" = dontDistribute super."penny-lib"; + "peparser" = dontDistribute super."peparser"; + "perceptron" = dontDistribute super."perceptron"; + "perdure" = dontDistribute super."perdure"; + "period" = dontDistribute super."period"; + "perm" = dontDistribute super."perm"; + "permutation" = dontDistribute super."permutation"; + "permute" = dontDistribute super."permute"; + "persist2er" = dontDistribute super."persist2er"; + "persistable-record" = dontDistribute super."persistable-record"; + "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-equivalence" = dontDistribute super."persistent-equivalence"; + "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; + "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; + "persistent-iproute" = dontDistribute super."persistent-iproute"; + "persistent-map" = dontDistribute super."persistent-map"; + "persistent-odbc" = dontDistribute super."persistent-odbc"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-vector" = dontDistribute super."persistent-vector"; + "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; + "persona" = dontDistribute super."persona"; + "persona-idp" = dontDistribute super."persona-idp"; + "pesca" = dontDistribute super."pesca"; + "peyotls" = dontDistribute super."peyotls"; + "peyotls-codec" = dontDistribute super."peyotls-codec"; + "pez" = dontDistribute super."pez"; + "pg-harness" = dontDistribute super."pg-harness"; + "pg-harness-client" = dontDistribute super."pg-harness-client"; + "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pgdl" = dontDistribute super."pgdl"; + "pgm" = dontDistribute super."pgm"; + "pgsql-simple" = dontDistribute super."pgsql-simple"; + "pgstream" = dontDistribute super."pgstream"; + "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; + "phone-numbers" = dontDistribute super."phone-numbers"; + "phone-push" = dontDistribute super."phone-push"; + "phonetic-code" = dontDistribute super."phonetic-code"; + "phooey" = dontDistribute super."phooey"; + "photoname" = dontDistribute super."photoname"; + "phraskell" = dontDistribute super."phraskell"; + "phybin" = dontDistribute super."phybin"; + "pi-calculus" = dontDistribute super."pi-calculus"; + "pia-forward" = dontDistribute super."pia-forward"; + "pianola" = dontDistribute super."pianola"; + "picologic" = dontDistribute super."picologic"; + "picosat" = dontDistribute super."picosat"; + "piet" = dontDistribute super."piet"; + "piki" = dontDistribute super."piki"; + "pinboard" = dontDistribute super."pinboard"; + "pinchot" = doDistribute super."pinchot_0_6_0_0"; + "pipe-enumerator" = dontDistribute super."pipe-enumerator"; + "pipeclip" = dontDistribute super."pipeclip"; + "pipes-async" = dontDistribute super."pipes-async"; + "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-bzip" = dontDistribute super."pipes-bzip"; + "pipes-cacophony" = doDistribute super."pipes-cacophony_0_1_3"; + "pipes-cellular" = dontDistribute super."pipes-cellular"; + "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; + "pipes-cereal" = dontDistribute super."pipes-cereal"; + "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-conduit" = dontDistribute super."pipes-conduit"; + "pipes-core" = dontDistribute super."pipes-core"; + "pipes-courier" = dontDistribute super."pipes-courier"; + "pipes-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-network-tls" = dontDistribute super."pipes-network-tls"; + "pipes-p2p" = dontDistribute super."pipes-p2p"; + "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; + "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; + "pipes-vector" = dontDistribute super."pipes-vector"; + "pipes-websockets" = dontDistribute super."pipes-websockets"; + "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; + "pipes-zlib" = dontDistribute super."pipes-zlib"; + "pisigma" = dontDistribute super."pisigma"; + "pit" = dontDistribute super."pit"; + "pitchtrack" = dontDistribute super."pitchtrack"; + "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs7" = dontDistribute super."pkcs7"; + "pkggraph" = dontDistribute super."pkggraph"; + "pktree" = dontDistribute super."pktree"; + "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; + "planar-graph" = dontDistribute super."planar-graph"; + "plat" = dontDistribute super."plat"; + "playlists" = dontDistribute super."playlists"; + "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; + "plivo" = dontDistribute super."plivo"; + "plot-lab" = dontDistribute super."plot-lab"; + "plotfont" = dontDistribute super."plotfont"; + "plotserver-api" = dontDistribute super."plotserver-api"; + "plugins" = dontDistribute super."plugins"; + "plugins-auto" = dontDistribute super."plugins-auto"; + "plugins-multistage" = dontDistribute super."plugins-multistage"; + "plumbers" = dontDistribute super."plumbers"; + "ply-loader" = dontDistribute super."ply-loader"; + "png-file" = dontDistribute super."png-file"; + "pngload" = dontDistribute super."pngload"; + "pngload-fixed" = dontDistribute super."pngload-fixed"; + "pnm" = dontDistribute super."pnm"; + "pocket-dns" = dontDistribute super."pocket-dns"; + "pointfree" = dontDistribute super."pointfree"; + "pointful" = dontDistribute super."pointful"; + "pointless-fun" = dontDistribute super."pointless-fun"; + "pointless-haskell" = dontDistribute super."pointless-haskell"; + "pointless-lenses" = dontDistribute super."pointless-lenses"; + "pointless-rewrite" = dontDistribute super."pointless-rewrite"; + "poker-eval" = dontDistribute super."poker-eval"; + "pokitdok" = dontDistribute super."pokitdok"; + "polar" = dontDistribute super."polar"; + "polar-configfile" = dontDistribute super."polar-configfile"; + "polar-shader" = dontDistribute super."polar-shader"; + "polh-lexicon" = dontDistribute super."polh-lexicon"; + "polimorf" = dontDistribute super."polimorf"; + "poll" = dontDistribute super."poll"; + "poly-control" = dontDistribute super."poly-control"; + "polyToMonoid" = dontDistribute super."polyToMonoid"; + "polymap" = dontDistribute super."polymap"; + "polynom" = dontDistribute super."polynom"; + "polynomial" = dontDistribute super."polynomial"; + "polynomials-bernstein" = dontDistribute super."polynomials-bernstein"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "ponder" = dontDistribute super."ponder"; + "pong-server" = dontDistribute super."pong-server"; + "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver"; + "pontarius-xmpp" = dontDistribute super."pontarius-xmpp"; + "pontarius-xpmn" = dontDistribute super."pontarius-xpmn"; + "pony" = dontDistribute super."pony"; + "pool" = dontDistribute super."pool"; + "pool-conduit" = dontDistribute super."pool-conduit"; + "pooled-io" = dontDistribute super."pooled-io"; + "pop3-client" = dontDistribute super."pop3-client"; + "popenhs" = dontDistribute super."popenhs"; + "poppler" = dontDistribute super."poppler"; + "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache"; + "portable-lines" = dontDistribute super."portable-lines"; + "portaudio" = dontDistribute super."portaudio"; + "porte" = dontDistribute super."porte"; + "porter" = dontDistribute super."porter"; + "ports" = dontDistribute super."ports"; + "ports-tools" = dontDistribute super."ports-tools"; + "positive" = dontDistribute super."positive"; + "posix-acl" = dontDistribute super."posix-acl"; + "posix-escape" = dontDistribute super."posix-escape"; + "posix-filelock" = dontDistribute super."posix-filelock"; + "posix-paths" = dontDistribute super."posix-paths"; + "posix-pty" = dontDistribute super."posix-pty"; + "posix-timer" = dontDistribute super."posix-timer"; + "posix-waitpid" = dontDistribute super."posix-waitpid"; + "possible" = dontDistribute super."possible"; + "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9"; + "postgresql-config" = dontDistribute super."postgresql-config"; + "postgresql-connector" = dontDistribute super."postgresql-connector"; + "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; + "postgresql-cube" = dontDistribute super."postgresql-cube"; + "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; + "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; + "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; + "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; + "postgresql-typed" = dontDistribute super."postgresql-typed"; + "postgrest" = dontDistribute super."postgrest"; + "postie" = dontDistribute super."postie"; + "postmark" = dontDistribute super."postmark"; + "postmaster" = dontDistribute super."postmaster"; + "potato-tool" = dontDistribute super."potato-tool"; + "potrace" = dontDistribute super."potrace"; + "potrace-diagrams" = dontDistribute super."potrace-diagrams"; + "powermate" = dontDistribute super."powermate"; + "powerpc" = dontDistribute super."powerpc"; + "ppm" = dontDistribute super."ppm"; + "pqc" = dontDistribute super."pqc"; + "pqueue-mtl" = dontDistribute super."pqueue-mtl"; + "practice-room" = dontDistribute super."practice-room"; + "precis" = dontDistribute super."precis"; + "predicates" = dontDistribute super."predicates"; + "prednote-test" = dontDistribute super."prednote-test"; + "prefork" = dontDistribute super."prefork"; + "pregame" = dontDistribute super."pregame"; + "prelude-edsl" = dontDistribute super."prelude-edsl"; + "prelude-generalize" = dontDistribute super."prelude-generalize"; + "prelude-plus" = dontDistribute super."prelude-plus"; + "prelude-prime" = dontDistribute super."prelude-prime"; + "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = dontDistribute super."present"; + "press" = dontDistribute super."press"; + "presto-hdbc" = dontDistribute super."presto-hdbc"; + "prettify" = dontDistribute super."prettify"; + "pretty-compact" = dontDistribute super."pretty-compact"; + "pretty-error" = dontDistribute super."pretty-error"; + "pretty-hex" = dontDistribute super."pretty-hex"; + "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-sop" = dontDistribute super."pretty-sop"; + "pretty-tree" = dontDistribute super."pretty-tree"; + "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-uniq" = dontDistribute super."prim-uniq"; + "primitive-simd" = dontDistribute super."primitive-simd"; + "primula-board" = dontDistribute super."primula-board"; + "primula-bot" = dontDistribute super."primula-bot"; + "print-debugger" = dontDistribute super."print-debugger"; + "printf-mauke" = dontDistribute super."printf-mauke"; + "printxosd" = dontDistribute super."printxosd"; + "priority-queue" = dontDistribute super."priority-queue"; + "priority-sync" = dontDistribute super."priority-sync"; + "privileged-concurrency" = dontDistribute super."privileged-concurrency"; + "prizm" = dontDistribute super."prizm"; + "probability" = dontDistribute super."probability"; + "probable" = dontDistribute super."probable"; + "proc" = dontDistribute super."proc"; + "process-conduit" = dontDistribute super."process-conduit"; + "process-extras" = doDistribute super."process-extras_0_3_3_7"; + "process-iterio" = dontDistribute super."process-iterio"; + "process-leksah" = dontDistribute super."process-leksah"; + "process-listlike" = dontDistribute super."process-listlike"; + "process-progress" = dontDistribute super."process-progress"; + "process-qq" = dontDistribute super."process-qq"; + "process-streaming" = dontDistribute super."process-streaming"; + "processing" = dontDistribute super."processing"; + "processor-creative-kit" = dontDistribute super."processor-creative-kit"; + "procrastinating-structure" = dontDistribute super."procrastinating-structure"; + "procrastinating-variable" = dontDistribute super."procrastinating-variable"; + "procstat" = dontDistribute super."procstat"; + "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3_1"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "profiteur" = dontDistribute super."profiteur"; + "progress" = dontDistribute super."progress"; + "progressbar" = dontDistribute super."progressbar"; + "progression" = dontDistribute super."progression"; + "progressive" = dontDistribute super."progressive"; + "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; + "projection" = dontDistribute super."projection"; + "prolog" = dontDistribute super."prolog"; + "prolog-graph" = dontDistribute super."prolog-graph"; + "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; + "promise" = dontDistribute super."promise"; + "promises" = dontDistribute super."promises"; + "propane" = dontDistribute super."propane"; + "propellor" = dontDistribute super."propellor"; + "properties" = dontDistribute super."properties"; + "property-list" = dontDistribute super."property-list"; + "proplang" = dontDistribute super."proplang"; + "props" = dontDistribute super."props"; + "prosper" = dontDistribute super."prosper"; + "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; + "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; + "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "proton-haskell" = dontDistribute super."proton-haskell"; + "prototype" = dontDistribute super."prototype"; + "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = doDistribute super."psc-ide_0_5_0"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; + "publicsuffixlist" = dontDistribute super."publicsuffixlist"; + "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; + "pubnub" = dontDistribute super."pubnub"; + "pubsub" = dontDistribute super."pubsub"; + "puffytools" = dontDistribute super."puffytools"; + "pugixml" = dontDistribute super."pugixml"; + "pugs-DrIFT" = dontDistribute super."pugs-DrIFT"; + "pugs-HsSyck" = dontDistribute super."pugs-HsSyck"; + "pugs-compat" = dontDistribute super."pugs-compat"; + "pugs-hsregex" = dontDistribute super."pugs-hsregex"; + "pulse-simple" = dontDistribute super."pulse-simple"; + "punkt" = dontDistribute super."punkt"; + "punycode" = dontDistribute super."punycode"; + "puppetresources" = dontDistribute super."puppetresources"; + "pure-fft" = dontDistribute super."pure-fft"; + "pure-priority-queue" = dontDistribute super."pure-priority-queue"; + "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; + "pure-zlib" = dontDistribute super."pure-zlib"; + "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; + "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "push-notify" = dontDistribute super."push-notify"; + "push-notify-ccs" = dontDistribute super."push-notify-ccs"; + "push-notify-general" = dontDistribute super."push-notify-general"; + "pusher-haskell" = dontDistribute super."pusher-haskell"; + "pushme" = dontDistribute super."pushme"; + "putlenses" = dontDistribute super."putlenses"; + "puzzle-draw" = dontDistribute super."puzzle-draw"; + "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline"; + "pvd" = dontDistribute super."pvd"; + "pwstore-cli" = dontDistribute super."pwstore-cli"; + "pxsl-tools" = dontDistribute super."pxsl-tools"; + "pyffi" = dontDistribute super."pyffi"; + "pyfi" = dontDistribute super."pyfi"; + "python-pickle" = dontDistribute super."python-pickle"; + "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator"; + "qd" = dontDistribute super."qd"; + "qd-vec" = dontDistribute super."qd-vec"; + "qed" = dontDistribute super."qed"; + "qhull-simple" = dontDistribute super."qhull-simple"; + "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "qudb" = dontDistribute super."qudb"; + "quenya-verb" = dontDistribute super."quenya-verb"; + "querystring-pickle" = dontDistribute super."querystring-pickle"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quick-schema" = dontDistribute super."quick-schema"; + "quickcheck-poly" = dontDistribute super."quickcheck-poly"; + "quickcheck-properties" = dontDistribute super."quickcheck-properties"; + "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; + "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad"; + "quickcheck-regex" = dontDistribute super."quickcheck-regex"; + "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng"; + "quickcheck-rematch" = dontDistribute super."quickcheck-rematch"; + "quickcheck-script" = dontDistribute super."quickcheck-script"; + "quickcheck-simple" = dontDistribute super."quickcheck-simple"; + "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "quicktest" = dontDistribute super."quicktest"; + "quickwebapp" = dontDistribute super."quickwebapp"; + "quiver" = dontDistribute super."quiver"; + "quiver-bytestring" = dontDistribute super."quiver-bytestring"; + "quiver-cell" = dontDistribute super."quiver-cell"; + "quiver-csv" = dontDistribute super."quiver-csv"; + "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-http" = dontDistribute super."quiver-http"; + "quoridor-hs" = dontDistribute super."quoridor-hs"; + "qux" = dontDistribute super."qux"; + "rabocsv2qif" = dontDistribute super."rabocsv2qif"; + "rad" = dontDistribute super."rad"; + "radian" = dontDistribute super."radian"; + "radium" = dontDistribute super."radium"; + "radium-formula-parser" = dontDistribute super."radium-formula-parser"; + "radix" = dontDistribute super."radix"; + "rados-haskell" = dontDistribute super."rados-haskell"; + "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-tree" = dontDistribute super."random-tree"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratel" = dontDistribute super."ratel"; + "ratel-wai" = dontDistribute super."ratel-wai"; + "ratio-int" = dontDistribute super."ratio-int"; + "raven-haskell" = dontDistribute super."raven-haskell"; + "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "rawstring-qm" = dontDistribute super."rawstring-qm"; + "razom-text-util" = dontDistribute super."razom-text-util"; + "rbr" = dontDistribute super."rbr"; + "rclient" = dontDistribute super."rclient"; + "rcu" = dontDistribute super."rcu"; + "rdf4h" = dontDistribute super."rdf4h"; + "rdioh" = dontDistribute super."rdioh"; + "rdtsc" = dontDistribute super."rdtsc"; + "rdtsc-enolan" = dontDistribute super."rdtsc-enolan"; + "re2" = dontDistribute super."re2"; + "react-flux" = dontDistribute super."react-flux"; + "react-haskell" = dontDistribute super."react-haskell"; + "reaction-logic" = dontDistribute super."reaction-logic"; + "reactive" = dontDistribute super."reactive"; + "reactive-bacon" = dontDistribute super."reactive-bacon"; + "reactive-balsa" = dontDistribute super."reactive-balsa"; + "reactive-banana" = dontDistribute super."reactive-banana"; + "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl"; + "reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2"; + "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny"; + "reactive-banana-wx" = dontDistribute super."reactive-banana-wx"; + "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip"; + "reactive-glut" = dontDistribute super."reactive-glut"; + "reactive-haskell" = dontDistribute super."reactive-haskell"; + "reactive-io" = dontDistribute super."reactive-io"; + "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; + "reactor" = dontDistribute super."reactor"; + "read-bounded" = dontDistribute super."read-bounded"; + "readline-statevar" = dontDistribute super."readline-statevar"; + "readpyc" = dontDistribute super."readpyc"; + "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; + "reasonable-lens" = dontDistribute super."reasonable-lens"; + "reasonable-operational" = dontDistribute super."reasonable-operational"; + "rebase" = dontDistribute super."rebase"; + "recaptcha" = dontDistribute super."recaptcha"; + "record" = dontDistribute super."record"; + "record-aeson" = dontDistribute super."record-aeson"; + "record-gl" = dontDistribute super."record-gl"; + "record-preprocessor" = dontDistribute super."record-preprocessor"; + "record-syntax" = dontDistribute super."record-syntax"; + "records" = dontDistribute super."records"; + "records-th" = dontDistribute super."records-th"; + "recursive-line-count" = dontDistribute super."recursive-line-count"; + "redHandlers" = dontDistribute super."redHandlers"; + "reddit" = dontDistribute super."reddit"; + "redis" = dontDistribute super."redis"; + "redis-hs" = dontDistribute super."redis-hs"; + "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-simple" = dontDistribute super."redis-simple"; + "redo" = dontDistribute super."redo"; + "reedsolomon" = dontDistribute super."reedsolomon"; + "reenact" = dontDistribute super."reenact"; + "reexport-crypto-random" = dontDistribute super."reexport-crypto-random"; + "ref" = dontDistribute super."ref"; + "ref-mtl" = dontDistribute super."ref-mtl"; + "ref-tf" = dontDistribute super."ref-tf"; + "refcount" = dontDistribute super."refcount"; + "reference" = dontDistribute super."reference"; + "references" = dontDistribute super."references"; + "refh" = dontDistribute super."refh"; + "refined" = dontDistribute super."refined"; + "reflection-extras" = dontDistribute super."reflection-extras"; + "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; + "reflex" = dontDistribute super."reflex"; + "reflex-animation" = dontDistribute super."reflex-animation"; + "reflex-dom" = dontDistribute super."reflex-dom"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; + "regex-deriv" = dontDistribute super."regex-deriv"; + "regex-dfa" = dontDistribute super."regex-dfa"; + "regex-easy" = dontDistribute super."regex-easy"; + "regex-genex" = dontDistribute super."regex-genex"; + "regex-parsec" = dontDistribute super."regex-parsec"; + "regex-pderiv" = dontDistribute super."regex-pderiv"; + "regex-posix-unittest" = dontDistribute super."regex-posix-unittest"; + "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes"; + "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter"; + "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; + "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; + "regex-tre" = dontDistribute super."regex-tre"; + "regex-xmlschema" = dontDistribute super."regex-xmlschema"; + "regexchar" = dontDistribute super."regexchar"; + "regexdot" = dontDistribute super."regexdot"; + "regexp-tries" = dontDistribute super."regexp-tries"; + "regexpr" = dontDistribute super."regexpr"; + "regexpr-symbolic" = dontDistribute super."regexpr-symbolic"; + "regexqq" = dontDistribute super."regexqq"; + "regional-pointers" = dontDistribute super."regional-pointers"; + "regions" = dontDistribute super."regions"; + "regions-monadsfd" = dontDistribute super."regions-monadsfd"; + "regions-monadstf" = dontDistribute super."regions-monadstf"; + "regions-mtl" = dontDistribute super."regions-mtl"; + "regress" = dontDistribute super."regress"; + "regular" = dontDistribute super."regular"; + "regular-extras" = dontDistribute super."regular-extras"; + "regular-web" = dontDistribute super."regular-web"; + "regular-xmlpickler" = dontDistribute super."regular-xmlpickler"; + "reheat" = dontDistribute super."reheat"; + "rehoo" = dontDistribute super."rehoo"; + "rei" = dontDistribute super."rei"; + "reified-records" = dontDistribute super."reified-records"; + "reify" = dontDistribute super."reify"; + "relacion" = dontDistribute super."relacion"; + "relation" = dontDistribute super."relation"; + "relational-postgresql8" = dontDistribute super."relational-postgresql8"; + "relational-query" = dontDistribute super."relational-query"; + "relational-query-HDBC" = dontDistribute super."relational-query-HDBC"; + "relational-record" = dontDistribute super."relational-record"; + "relational-record-examples" = dontDistribute super."relational-record-examples"; + "relational-schemas" = dontDistribute super."relational-schemas"; + "relative-date" = dontDistribute super."relative-date"; + "relit" = dontDistribute super."relit"; + "rematch" = dontDistribute super."rematch"; + "rematch-text" = dontDistribute super."rematch-text"; + "remote" = dontDistribute super."remote"; + "remote-debugger" = dontDistribute super."remote-debugger"; + "remote-json" = dontDistribute super."remote-json"; + "remote-json-client" = dontDistribute super."remote-json-client"; + "remote-json-server" = dontDistribute super."remote-json-server"; + "remote-monad" = dontDistribute super."remote-monad"; + "remotion" = dontDistribute super."remotion"; + "renderable" = dontDistribute super."renderable"; + "reord" = dontDistribute super."reord"; + "reorderable" = dontDistribute super."reorderable"; + "repa-array" = dontDistribute super."repa-array"; + "repa-bytestring" = dontDistribute super."repa-bytestring"; + "repa-convert" = dontDistribute super."repa-convert"; + "repa-eval" = dontDistribute super."repa-eval"; + "repa-examples" = dontDistribute super."repa-examples"; + "repa-fftw" = dontDistribute super."repa-fftw"; + "repa-flow" = dontDistribute super."repa-flow"; + "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; + "repa-plugin" = dontDistribute super."repa-plugin"; + "repa-scalar" = dontDistribute super."repa-scalar"; + "repa-series" = dontDistribute super."repa-series"; + "repa-sndfile" = dontDistribute super."repa-sndfile"; + "repa-stream" = dontDistribute super."repa-stream"; + "repa-v4l2" = dontDistribute super."repa-v4l2"; + "repl" = dontDistribute super."repl"; + "repl-toolkit" = dontDistribute super."repl-toolkit"; + "repline" = dontDistribute super."repline"; + "repo-based-blog" = dontDistribute super."repo-based-blog"; + "repr" = dontDistribute super."repr"; + "repr-tree-syb" = dontDistribute super."repr-tree-syb"; + "representable-functors" = dontDistribute super."representable-functors"; + "representable-profunctors" = dontDistribute super."representable-profunctors"; + "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; + "request-monad" = dontDistribute super."request-monad"; + "reserve" = dontDistribute super."reserve"; + "resistor-cube" = dontDistribute super."resistor-cube"; + "resource-effect" = dontDistribute super."resource-effect"; + "resource-embed" = dontDistribute super."resource-embed"; + "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-pool-monad" = dontDistribute super."resource-pool-monad"; + "resource-simple" = dontDistribute super."resource-simple"; + "respond" = dontDistribute super."respond"; + "rest-core" = doDistribute super."rest-core_0_37"; + "rest-example" = dontDistribute super."rest-example"; + "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "restful-snap" = dontDistribute super."restful-snap"; + "restricted-workers" = dontDistribute super."restricted-workers"; + "restyle" = dontDistribute super."restyle"; + "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb-model" = dontDistribute super."rethinkdb-model"; + "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retryer" = dontDistribute super."retryer"; + "revdectime" = dontDistribute super."revdectime"; + "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-geocoding" = dontDistribute super."reverse-geocoding"; + "reversi" = dontDistribute super."reversi"; + "rewrite" = dontDistribute super."rewrite"; + "rewriting" = dontDistribute super."rewriting"; + "rex" = dontDistribute super."rex"; + "rezoom" = dontDistribute super."rezoom"; + "rfc3339" = dontDistribute super."rfc3339"; + "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; + "richreports" = dontDistribute super."richreports"; + "riemann" = dontDistribute super."riemann"; + "riff" = dontDistribute super."riff"; + "ring-buffer" = dontDistribute super."ring-buffer"; + "riot" = dontDistribute super."riot"; + "ripple" = dontDistribute super."ripple"; + "ripple-federation" = dontDistribute super."ripple-federation"; + "risc386" = dontDistribute super."risc386"; + "rivers" = dontDistribute super."rivers"; + "rivet" = dontDistribute super."rivet"; + "rivet-core" = dontDistribute super."rivet-core"; + "rivet-migration" = dontDistribute super."rivet-migration"; + "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; + "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; + "rmonad" = dontDistribute super."rmonad"; + "rncryptor" = dontDistribute super."rncryptor"; + "rng-utils" = dontDistribute super."rng-utils"; + "robin" = dontDistribute super."robin"; + "robot" = dontDistribute super."robot"; + "robots-txt" = dontDistribute super."robots-txt"; + "rocksdb-haskell" = dontDistribute super."rocksdb-haskell"; + "roguestar" = dontDistribute super."roguestar"; + "roguestar-engine" = dontDistribute super."roguestar-engine"; + "roguestar-gl" = dontDistribute super."roguestar-gl"; + "roguestar-glut" = dontDistribute super."roguestar-glut"; + "rollbar" = dontDistribute super."rollbar"; + "roller" = dontDistribute super."roller"; + "rolling-queue" = dontDistribute super."rolling-queue"; + "roman-numerals" = dontDistribute super."roman-numerals"; + "romkan" = dontDistribute super."romkan"; + "roots" = dontDistribute super."roots"; + "rope" = dontDistribute super."rope"; + "rosa" = dontDistribute super."rosa"; + "rose-trie" = dontDistribute super."rose-trie"; + "roshask" = dontDistribute super."roshask"; + "rosso" = dontDistribute super."rosso"; + "rot13" = dontDistribute super."rot13"; + "rotating-log" = dontDistribute super."rotating-log"; + "rounding" = dontDistribute super."rounding"; + "roundtrip" = dontDistribute super."roundtrip"; + "roundtrip-aeson" = dontDistribute super."roundtrip-aeson"; + "roundtrip-string" = dontDistribute super."roundtrip-string"; + "roundtrip-xml" = dontDistribute super."roundtrip-xml"; + "route-generator" = dontDistribute super."route-generator"; + "route-planning" = dontDistribute super."route-planning"; + "rowrecord" = dontDistribute super."rowrecord"; + "rpc" = dontDistribute super."rpc"; + "rpc-framework" = dontDistribute super."rpc-framework"; + "rpf" = dontDistribute super."rpf"; + "rpm" = dontDistribute super."rpm"; + "rsagl" = dontDistribute super."rsagl"; + "rsagl-frp" = dontDistribute super."rsagl-frp"; + "rsagl-math" = dontDistribute super."rsagl-math"; + "rspp" = dontDistribute super."rspp"; + "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; + "rss2irc" = dontDistribute super."rss2irc"; + "rtcm" = dontDistribute super."rtcm"; + "rtld" = dontDistribute super."rtld"; + "rtlsdr" = dontDistribute super."rtlsdr"; + "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; + "rtorrent-state" = dontDistribute super."rtorrent-state"; + "rubberband" = dontDistribute super."rubberband"; + "ruby-marshal" = dontDistribute super."ruby-marshal"; + "ruby-qq" = dontDistribute super."ruby-qq"; + "ruff" = dontDistribute super."ruff"; + "ruler" = dontDistribute super."ruler"; + "ruler-core" = dontDistribute super."ruler-core"; + "rungekutta" = dontDistribute super."rungekutta"; + "runghc" = dontDistribute super."runghc"; + "rwlock" = dontDistribute super."rwlock"; + "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; + "safe-access" = dontDistribute super."safe-access"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-length" = dontDistribute super."safe-length"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "sampling" = dontDistribute super."sampling"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandlib" = dontDistribute super."sandlib"; + "sarasvati" = dontDistribute super."sarasvati"; + "sasl" = dontDistribute super."sasl"; + "sat" = dontDistribute super."sat"; + "sat-micro-hs" = dontDistribute super."sat-micro-hs"; + "satchmo" = dontDistribute super."satchmo"; + "satchmo-backends" = dontDistribute super."satchmo-backends"; + "satchmo-examples" = dontDistribute super."satchmo-examples"; + "satchmo-funsat" = dontDistribute super."satchmo-funsat"; + "satchmo-minisat" = dontDistribute super."satchmo-minisat"; + "satchmo-toysat" = dontDistribute super."satchmo-toysat"; + "sbp" = dontDistribute super."sbp"; + "sbvPlugin" = dontDistribute super."sbvPlugin"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "scalpel" = doDistribute super."scalpel_0_2_1_1"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scat" = dontDistribute super."scat"; + "scc" = dontDistribute super."scc"; + "scenegraph" = dontDistribute super."scenegraph"; + "scgi" = dontDistribute super."scgi"; + "schedevr" = dontDistribute super."schedevr"; + "schedule-planner" = dontDistribute super."schedule-planner"; + "schedyield" = dontDistribute super."schedyield"; + "scholdoc" = dontDistribute super."scholdoc"; + "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc"; + "scholdoc-texmath" = dontDistribute super."scholdoc-texmath"; + "scholdoc-types" = dontDistribute super."scholdoc-types"; + "schonfinkeling" = dontDistribute super."schonfinkeling"; + "sci-ratio" = dontDistribute super."sci-ratio"; + "science-constants" = dontDistribute super."science-constants"; + "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scion" = dontDistribute super."scion"; + "scion-browser" = dontDistribute super."scion-browser"; + "scons2dot" = dontDistribute super."scons2dot"; + "scope" = dontDistribute super."scope"; + "scope-cairo" = dontDistribute super."scope-cairo"; + "scottish" = dontDistribute super."scottish"; + "scotty" = doDistribute super."scotty_0_10_2"; + "scotty-binding-play" = dontDistribute super."scotty-binding-play"; + "scotty-blaze" = dontDistribute super."scotty-blaze"; + "scotty-cookie" = dontDistribute super."scotty-cookie"; + "scotty-fay" = dontDistribute super."scotty-fay"; + "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-rest" = dontDistribute super."scotty-rest"; + "scotty-session" = dontDistribute super."scotty-session"; + "scotty-tls" = dontDistribute super."scotty-tls"; + "scp-streams" = dontDistribute super."scp-streams"; + "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrobble" = dontDistribute super."scrobble"; + "scroll" = dontDistribute super."scroll"; + "scrz" = dontDistribute super."scrz"; + "scyther-proof" = dontDistribute super."scyther-proof"; + "sde-solver" = dontDistribute super."sde-solver"; + "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; + "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; + "sdl2-compositor" = dontDistribute super."sdl2-compositor"; + "sdl2-image" = dontDistribute super."sdl2-image"; + "sdl2-ttf" = dontDistribute super."sdl2-ttf"; + "sdnv" = dontDistribute super."sdnv"; + "sdr" = dontDistribute super."sdr"; + "seacat" = dontDistribute super."seacat"; + "seal-module" = dontDistribute super."seal-module"; + "search" = dontDistribute super."search"; + "sec" = dontDistribute super."sec"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; + "secret-santa" = dontDistribute super."secret-santa"; + "secret-sharing" = dontDistribute super."secret-sharing"; + "secrm" = dontDistribute super."secrm"; + "secure-sockets" = dontDistribute super."secure-sockets"; + "sednaDBXML" = dontDistribute super."sednaDBXML"; + "select" = dontDistribute super."select"; + "selectors" = dontDistribute super."selectors"; + "selenium" = dontDistribute super."selenium"; + "selenium-server" = dontDistribute super."selenium-server"; + "selfrestart" = dontDistribute super."selfrestart"; + "selinux" = dontDistribute super."selinux"; + "semaphore-plus" = dontDistribute super."semaphore-plus"; + "semi-iso" = dontDistribute super."semi-iso"; + "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; + "semigroups-actions" = dontDistribute super."semigroups-actions"; + "semiring" = dontDistribute super."semiring"; + "semiring-simple" = dontDistribute super."semiring-simple"; + "semver-range" = dontDistribute super."semver-range"; + "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; + "sensenet" = dontDistribute super."sensenet"; + "sentry" = dontDistribute super."sentry"; + "senza" = dontDistribute super."senza"; + "separated" = dontDistribute super."separated"; + "seqaid" = dontDistribute super."seqaid"; + "seqid" = dontDistribute super."seqid"; + "seqid-streams" = dontDistribute super."seqid-streams"; + "seqloc-datafiles" = dontDistribute super."seqloc-datafiles"; + "sequence" = dontDistribute super."sequence"; + "sequent-core" = dontDistribute super."sequent-core"; + "sequential-index" = dontDistribute super."sequential-index"; + "sequor" = dontDistribute super."sequor"; + "serial" = dontDistribute super."serial"; + "serial-test-generators" = dontDistribute super."serial-test-generators"; + "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; + "serv-wai" = dontDistribute super."serv-wai"; + "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; + "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-js" = dontDistribute super."servant-js"; + "servant-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pandoc" = dontDistribute super."servant-pandoc"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-response" = dontDistribute super."servant-response"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-extra" = doDistribute super."set-extra_1_3_2"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setgame" = dontDistribute super."setgame"; + "setops" = dontDistribute super."setops"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-grammar" = dontDistribute super."sexp-grammar"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shake-persist" = dontDistribute super."shake-persist"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-babel" = dontDistribute super."shakespeare-babel"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "sharc-timbre" = dontDistribute super."sharc-timbre"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "shivers-cfg" = dontDistribute super."shivers-cfg"; + "shoap" = dontDistribute super."shoap"; + "shortcircuit" = dontDistribute super."shortcircuit"; + "shorten-strings" = dontDistribute super."shorten-strings"; + "show" = dontDistribute super."show"; + "show-type" = dontDistribute super."show-type"; + "showdown" = dontDistribute super."showdown"; + "shpider" = dontDistribute super."shpider"; + "shplit" = dontDistribute super."shplit"; + "shqq" = dontDistribute super."shqq"; + "shuffle" = dontDistribute super."shuffle"; + "sieve" = dontDistribute super."sieve"; + "sifflet" = dontDistribute super."sifflet"; + "sifflet-lib" = dontDistribute super."sifflet-lib"; + "sign" = dontDistribute super."sign"; + "signals" = dontDistribute super."signals"; + "signed-multiset" = dontDistribute super."signed-multiset"; + "simd" = dontDistribute super."simd"; + "simgi" = dontDistribute super."simgi"; + "simple-actors" = dontDistribute super."simple-actors"; + "simple-atom" = dontDistribute super."simple-atom"; + "simple-bluetooth" = dontDistribute super."simple-bluetooth"; + "simple-c-value" = dontDistribute super."simple-c-value"; + "simple-conduit" = dontDistribute super."simple-conduit"; + "simple-config" = dontDistribute super."simple-config"; + "simple-css" = dontDistribute super."simple-css"; + "simple-eval" = dontDistribute super."simple-eval"; + "simple-firewire" = dontDistribute super."simple-firewire"; + "simple-form" = dontDistribute super."simple-form"; + "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm"; + "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr"; + "simple-get-opt" = dontDistribute super."simple-get-opt"; + "simple-index" = dontDistribute super."simple-index"; + "simple-log" = dontDistribute super."simple-log"; + "simple-log-syslog" = dontDistribute super."simple-log-syslog"; + "simple-neural-networks" = dontDistribute super."simple-neural-networks"; + "simple-nix" = dontDistribute super."simple-nix"; + "simple-observer" = dontDistribute super."simple-observer"; + "simple-pascal" = dontDistribute super."simple-pascal"; + "simple-pipe" = dontDistribute super."simple-pipe"; + "simple-rope" = dontDistribute super."simple-rope"; + "simple-server" = dontDistribute super."simple-server"; + "simple-sessions" = dontDistribute super."simple-sessions"; + "simple-sql-parser" = dontDistribute super."simple-sql-parser"; + "simple-stacked-vm" = dontDistribute super."simple-stacked-vm"; + "simple-tabular" = dontDistribute super."simple-tabular"; + "simple-vec3" = dontDistribute super."simple-vec3"; + "simpleargs" = dontDistribute super."simpleargs"; + "simpleirc" = dontDistribute super."simpleirc"; + "simpleirc-lens" = dontDistribute super."simpleirc-lens"; + "simplenote" = dontDistribute super."simplenote"; + "simpleprelude" = dontDistribute super."simpleprelude"; + "simplesmtpclient" = dontDistribute super."simplesmtpclient"; + "simplessh" = dontDistribute super."simplessh"; + "simplest-sqlite" = dontDistribute super."simplest-sqlite"; + "simplex" = dontDistribute super."simplex"; + "simplex-basic" = dontDistribute super."simplex-basic"; + "simseq" = dontDistribute super."simseq"; + "simtreelo" = dontDistribute super."simtreelo"; + "sindre" = dontDistribute super."sindre"; + "singleton-nats" = dontDistribute super."singleton-nats"; + "sink" = dontDistribute super."sink"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "sized" = dontDistribute super."sized"; + "sized-types" = dontDistribute super."sized-types"; + "sized-vector" = dontDistribute super."sized-vector"; + "sizes" = dontDistribute super."sizes"; + "sjsp" = dontDistribute super."sjsp"; + "skeleton" = dontDistribute super."skeleton"; + "skell" = dontDistribute super."skell"; + "skemmtun" = dontDistribute super."skemmtun"; + "skype4hs" = dontDistribute super."skype4hs"; + "skypelogexport" = dontDistribute super."skypelogexport"; + "slack" = dontDistribute super."slack"; + "slack-api" = dontDistribute super."slack-api"; + "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "sleep" = dontDistribute super."sleep"; + "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; + "slidemews" = dontDistribute super."slidemews"; + "sloane" = dontDistribute super."sloane"; + "slot-lambda" = dontDistribute super."slot-lambda"; + "sloth" = dontDistribute super."sloth"; + "smallarray" = dontDistribute super."smallarray"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "smt-lib" = dontDistribute super."smt-lib"; + "smtlib2" = dontDistribute super."smtlib2"; + "smtp-mail-ng" = dontDistribute super."smtp-mail-ng"; + "smtp2mta" = dontDistribute super."smtp2mta"; + "smtps-gmail" = dontDistribute super."smtps-gmail"; + "snake-game" = dontDistribute super."snake-game"; + "snap-accept" = dontDistribute super."snap-accept"; + "snap-app" = dontDistribute super."snap-app"; + "snap-auth-cli" = dontDistribute super."snap-auth-cli"; + "snap-blaze" = dontDistribute super."snap-blaze"; + "snap-blaze-clay" = dontDistribute super."snap-blaze-clay"; + "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities"; + "snap-cors" = dontDistribute super."snap-cors"; + "snap-elm" = dontDistribute super."snap-elm"; + "snap-error-collector" = dontDistribute super."snap-error-collector"; + "snap-extras" = dontDistribute super."snap-extras"; + "snap-language" = dontDistribute super."snap-language"; + "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic"; + "snap-loader-static" = dontDistribute super."snap-loader-static"; + "snap-predicates" = dontDistribute super."snap-predicates"; + "snap-testing" = dontDistribute super."snap-testing"; + "snap-utils" = dontDistribute super."snap-utils"; + "snap-web-routes" = dontDistribute super."snap-web-routes"; + "snaplet-acid-state" = dontDistribute super."snaplet-acid-state"; + "snaplet-actionlog" = dontDistribute super."snaplet-actionlog"; + "snaplet-amqp" = dontDistribute super."snaplet-amqp"; + "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid"; + "snaplet-coffee" = dontDistribute super."snaplet-coffee"; + "snaplet-css-min" = dontDistribute super."snaplet-css-min"; + "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; + "snaplet-hasql" = dontDistribute super."snaplet-hasql"; + "snaplet-haxl" = dontDistribute super."snaplet-haxl"; + "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; + "snaplet-hslogger" = dontDistribute super."snaplet-hslogger"; + "snaplet-i18n" = dontDistribute super."snaplet-i18n"; + "snaplet-influxdb" = dontDistribute super."snaplet-influxdb"; + "snaplet-lss" = dontDistribute super."snaplet-lss"; + "snaplet-mandrill" = dontDistribute super."snaplet-mandrill"; + "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB"; + "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic"; + "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple"; + "snaplet-oauth" = dontDistribute super."snaplet-oauth"; + "snaplet-persistent" = dontDistribute super."snaplet-persistent"; + "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple"; + "snaplet-postmark" = dontDistribute super."snaplet-postmark"; + "snaplet-purescript" = dontDistribute super."snaplet-purescript"; + "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha"; + "snaplet-redis" = dontDistribute super."snaplet-redis"; + "snaplet-redson" = dontDistribute super."snaplet-redson"; + "snaplet-rest" = dontDistribute super."snaplet-rest"; + "snaplet-riak" = dontDistribute super."snaplet-riak"; + "snaplet-sass" = dontDistribute super."snaplet-sass"; + "snaplet-sedna" = dontDistribute super."snaplet-sedna"; + "snaplet-ses-html" = dontDistribute super."snaplet-ses-html"; + "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple"; + "snaplet-stripe" = dontDistribute super."snaplet-stripe"; + "snaplet-tasks" = dontDistribute super."snaplet-tasks"; + "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions"; + "snaplet-wordpress" = dontDistribute super."snaplet-wordpress"; + "snappy" = dontDistribute super."snappy"; + "snappy-conduit" = dontDistribute super."snappy-conduit"; + "snappy-framing" = dontDistribute super."snappy-framing"; + "snappy-iteratee" = dontDistribute super."snappy-iteratee"; + "sndfile-enumerators" = dontDistribute super."sndfile-enumerators"; + "sneakyterm" = dontDistribute super."sneakyterm"; + "sneathlane-haste" = dontDistribute super."sneathlane-haste"; + "snippet-extractor" = dontDistribute super."snippet-extractor"; + "snm" = dontDistribute super."snm"; + "snow-white" = dontDistribute super."snow-white"; + "snowball" = dontDistribute super."snowball"; + "snowglobe" = dontDistribute super."snowglobe"; + "sock2stream" = dontDistribute super."sock2stream"; + "sockaddr" = dontDistribute super."sockaddr"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "socketson" = dontDistribute super."socketson"; + "soegtk" = dontDistribute super."soegtk"; + "sonic-visualiser" = dontDistribute super."sonic-visualiser"; + "sophia" = dontDistribute super."sophia"; + "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; + "sorted" = dontDistribute super."sorted"; + "sorting" = dontDistribute super."sorting"; + "sorty" = dontDistribute super."sorty"; + "sound-collage" = dontDistribute super."sound-collage"; + "sounddelay" = dontDistribute super."sounddelay"; + "source-code-server" = dontDistribute super."source-code-server"; + "sousit" = dontDistribute super."sousit"; + "sox" = dontDistribute super."sox"; + "soxlib" = dontDistribute super."soxlib"; + "soyuz" = dontDistribute super."soyuz"; + "spacefill" = dontDistribute super."spacefill"; + "spacepart" = dontDistribute super."spacepart"; + "spaceprobe" = dontDistribute super."spaceprobe"; + "spanout" = dontDistribute super."spanout"; + "sparse" = dontDistribute super."sparse"; + "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; + "sparsebit" = dontDistribute super."sparsebit"; + "sparsecheck" = dontDistribute super."sparsecheck"; + "sparser" = dontDistribute super."sparser"; + "spata" = dontDistribute super."spata"; + "spatial-math" = dontDistribute super."spatial-math"; + "spawn" = dontDistribute super."spawn"; + "spe" = dontDistribute super."spe"; + "special-functors" = dontDistribute super."special-functors"; + "special-keys" = dontDistribute super."special-keys"; + "specialize-th" = dontDistribute super."specialize-th"; + "species" = dontDistribute super."species"; + "speculation-transformers" = dontDistribute super."speculation-transformers"; + "spelling-suggest" = dontDistribute super."spelling-suggest"; + "sphero" = dontDistribute super."sphero"; + "sphinx-cli" = dontDistribute super."sphinx-cli"; + "spice" = dontDistribute super."spice"; + "spike" = dontDistribute super."spike"; + "spine" = dontDistribute super."spine"; + "spir-v" = dontDistribute super."spir-v"; + "splay" = dontDistribute super."splay"; + "splaytree" = dontDistribute super."splaytree"; + "spline3" = dontDistribute super."spline3"; + "splines" = dontDistribute super."splines"; + "split-channel" = dontDistribute super."split-channel"; + "split-record" = dontDistribute super."split-record"; + "split-tchan" = dontDistribute super."split-tchan"; + "splitter" = dontDistribute super."splitter"; + "splot" = dontDistribute super."splot"; + "spool" = dontDistribute super."spool"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "spsa" = dontDistribute super."spsa"; + "spy" = dontDistribute super."spy"; + "sql-simple" = dontDistribute super."sql-simple"; + "sql-simple-mysql" = dontDistribute super."sql-simple-mysql"; + "sql-simple-pool" = dontDistribute super."sql-simple-pool"; + "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql"; + "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite"; + "sql-words" = dontDistribute super."sql-words"; + "sqlite" = dontDistribute super."sqlite"; + "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed"; + "sqlvalue-list" = dontDistribute super."sqlvalue-list"; + "squeeze" = dontDistribute super."squeeze"; + "sr-extra" = dontDistribute super."sr-extra"; + "srcinst" = dontDistribute super."srcinst"; + "srec" = dontDistribute super."srec"; + "sscgi" = dontDistribute super."sscgi"; + "ssh" = dontDistribute super."ssh"; + "sshd-lint" = dontDistribute super."sshd-lint"; + "sshtun" = dontDistribute super."sshtun"; + "sssp" = dontDistribute super."sssp"; + "sstable" = dontDistribute super."sstable"; + "ssv" = dontDistribute super."ssv"; + "stable-heap" = dontDistribute super."stable-heap"; + "stable-maps" = dontDistribute super."stable-maps"; + "stable-marriage" = dontDistribute super."stable-marriage"; + "stable-memo" = dontDistribute super."stable-memo"; + "stable-tree" = dontDistribute super."stable-tree"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; + "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; + "standalone-haddock" = dontDistribute super."standalone-haddock"; + "star-to-star" = dontDistribute super."star-to-star"; + "star-to-star-contra" = dontDistribute super."star-to-star-contra"; + "starling" = dontDistribute super."starling"; + "starrover2" = dontDistribute super."starrover2"; + "stash" = dontDistribute super."stash"; + "state" = dontDistribute super."state"; + "state-record" = dontDistribute super."state-record"; + "statechart" = dontDistribute super."statechart"; + "stateful-mtl" = dontDistribute super."stateful-mtl"; + "statethread" = dontDistribute super."statethread"; + "statgrab" = dontDistribute super."statgrab"; + "static-hash" = dontDistribute super."static-hash"; + "static-resources" = dontDistribute super."static-resources"; + "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; + "statistics-fusion" = dontDistribute super."statistics-fusion"; + "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; + "stats" = dontDistribute super."stats"; + "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; + "statsd-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; + "stm-firehose" = dontDistribute super."stm-firehose"; + "stm-io-hooks" = dontDistribute super."stm-io-hooks"; + "stm-lifted" = dontDistribute super."stm-lifted"; + "stm-linkedlist" = dontDistribute super."stm-linkedlist"; + "stm-orelse-io" = dontDistribute super."stm-orelse-io"; + "stm-promise" = dontDistribute super."stm-promise"; + "stm-queue-extras" = dontDistribute super."stm-queue-extras"; + "stm-sbchan" = dontDistribute super."stm-sbchan"; + "stm-split" = dontDistribute super."stm-split"; + "stm-tlist" = dontDistribute super."stm-tlist"; + "stmcontrol" = dontDistribute super."stmcontrol"; + "stomp-conduit" = dontDistribute super."stomp-conduit"; + "stomp-patterns" = dontDistribute super."stomp-patterns"; + "stomp-queue" = dontDistribute super."stomp-queue"; + "stompl" = dontDistribute super."stompl"; + "stopwatch" = dontDistribute super."stopwatch"; + "storable" = dontDistribute super."storable"; + "storable-record" = dontDistribute super."storable-record"; + "storable-static-array" = dontDistribute super."storable-static-array"; + "storable-tuple" = dontDistribute super."storable-tuple"; + "storablevector" = dontDistribute super."storablevector"; + "storablevector-carray" = dontDistribute super."storablevector-carray"; + "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; + "str" = dontDistribute super."str"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "strict-base-types" = doDistribute super."strict-base-types_0_4_0"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin"; + "strict-identity" = dontDistribute super."strict-identity"; + "strict-io" = dontDistribute super."strict-io"; + "strictify" = dontDistribute super."strictify"; + "strictly" = dontDistribute super."strictly"; + "string" = dontDistribute super."string"; + "string-conv" = dontDistribute super."string-conv"; + "string-convert" = dontDistribute super."string-convert"; + "string-quote" = dontDistribute super."string-quote"; + "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; + "stringlike" = dontDistribute super."stringlike"; + "stringprep" = dontDistribute super."stringprep"; + "strings" = dontDistribute super."strings"; + "stringtable-atom" = dontDistribute super."stringtable-atom"; + "strio" = dontDistribute super."strio"; + "stripe" = dontDistribute super."stripe"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; + "strive" = dontDistribute super."strive"; + "strptime" = dontDistribute super."strptime"; + "structs" = dontDistribute super."structs"; + "structural-induction" = dontDistribute super."structural-induction"; + "structured-haskell-mode" = dontDistribute super."structured-haskell-mode"; + "structured-mongoDB" = dontDistribute super."structured-mongoDB"; + "structures" = dontDistribute super."structures"; + "stunclient" = dontDistribute super."stunclient"; + "stunts" = dontDistribute super."stunts"; + "stylized" = dontDistribute super."stylized"; + "sub-state" = dontDistribute super."sub-state"; + "subhask" = dontDistribute super."subhask"; + "subleq-toolchain" = dontDistribute super."subleq-toolchain"; + "subnet" = dontDistribute super."subnet"; + "subtitleParser" = dontDistribute super."subtitleParser"; + "subtitles" = dontDistribute super."subtitles"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sump" = dontDistribute super."sump"; + "sundown" = dontDistribute super."sundown"; + "sunlight" = dontDistribute super."sunlight"; + "sunroof-compiler" = dontDistribute super."sunroof-compiler"; + "sunroof-examples" = dontDistribute super."sunroof-examples"; + "sunroof-server" = dontDistribute super."sunroof-server"; + "super-user-spark" = dontDistribute super."super-user-spark"; + "supercollider-ht" = dontDistribute super."supercollider-ht"; + "supercollider-midi" = dontDistribute super."supercollider-midi"; + "superdoc" = dontDistribute super."superdoc"; + "supero" = dontDistribute super."supero"; + "supervisor" = dontDistribute super."supervisor"; + "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; + "svg2q" = dontDistribute super."svg2q"; + "svgcairo" = dontDistribute super."svgcairo"; + "svgutils" = dontDistribute super."svgutils"; + "svm" = dontDistribute super."svm"; + "svm-light-utils" = dontDistribute super."svm-light-utils"; + "svm-simple" = dontDistribute super."svm-simple"; + "svndump" = dontDistribute super."svndump"; + "swagger2" = doDistribute super."swagger2_1_2_1"; + "swapper" = dontDistribute super."swapper"; + "swearjure" = dontDistribute super."swearjure"; + "swf" = dontDistribute super."swf"; + "swift-lda" = dontDistribute super."swift-lda"; + "swish" = dontDistribute super."swish"; + "sws" = dontDistribute super."sws"; + "syb-extras" = dontDistribute super."syb-extras"; + "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; + "sylvia" = dontDistribute super."sylvia"; + "sym" = dontDistribute super."sym"; + "sym-plot" = dontDistribute super."sym-plot"; + "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; + "sync" = dontDistribute super."sync"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "t-regex" = dontDistribute super."t-regex"; + "ta" = dontDistribute super."ta"; + "table" = dontDistribute super."table"; + "table-tennis" = dontDistribute super."table-tennis"; + "tableaux" = dontDistribute super."tableaux"; + "tables" = dontDistribute super."tables"; + "tablestorage" = dontDistribute super."tablestorage"; + "tabloid" = dontDistribute super."tabloid"; + "taffybar" = dontDistribute super."taffybar"; + "tag-bits" = dontDistribute super."tag-bits"; + "tag-stream" = dontDistribute super."tag-stream"; + "tagchup" = dontDistribute super."tagchup"; + "tagged-exception-core" = dontDistribute super."tagged-exception-core"; + "tagged-list" = dontDistribute super."tagged-list"; + "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; + "tagged-transformer" = dontDistribute super."tagged-transformer"; + "tagging" = dontDistribute super."tagging"; + "taggy" = dontDistribute super."taggy"; + "taggy-lens" = dontDistribute super."taggy-lens"; + "taglib" = dontDistribute super."taglib"; + "taglib-api" = dontDistribute super."taglib-api"; + "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "takahashi" = dontDistribute super."takahashi"; + "takusen-oracle" = dontDistribute super."takusen-oracle"; + "tamarin-prover" = dontDistribute super."tamarin-prover"; + "tamarin-prover-term" = dontDistribute super."tamarin-prover-term"; + "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; + "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; + "tamper" = dontDistribute super."tamper"; + "target" = dontDistribute super."target"; + "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; + "taskpool" = dontDistribute super."taskpool"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; + "tasty-integrate" = dontDistribute super."tasty-integrate"; + "tasty-laws" = dontDistribute super."tasty-laws"; + "tasty-lens" = dontDistribute super."tasty-lens"; + "tasty-program" = dontDistribute super."tasty-program"; + "tateti-tateti" = dontDistribute super."tateti-tateti"; + "tau" = dontDistribute super."tau"; + "tbox" = dontDistribute super."tbox"; + "tcache-AWS" = dontDistribute super."tcache-AWS"; + "tccli" = dontDistribute super."tccli"; + "tce-conf" = dontDistribute super."tce-conf"; + "tconfig" = dontDistribute super."tconfig"; + "tcp" = dontDistribute super."tcp"; + "tdd-util" = dontDistribute super."tdd-util"; + "tdoc" = dontDistribute super."tdoc"; + "teams" = dontDistribute super."teams"; + "teeth" = dontDistribute super."teeth"; + "telegram" = dontDistribute super."telegram"; + "telegram-api" = dontDistribute super."telegram-api"; + "teleport" = dontDistribute super."teleport"; + "template-default" = dontDistribute super."template-default"; + "template-haskell-util" = dontDistribute super."template-haskell-util"; + "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; + "templatepg" = dontDistribute super."templatepg"; + "templater" = dontDistribute super."templater"; + "tempodb" = dontDistribute super."tempodb"; + "temporal-csound" = dontDistribute super."temporal-csound"; + "temporal-media" = dontDistribute super."temporal-media"; + "temporal-music-notation" = dontDistribute super."temporal-music-notation"; + "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo"; + "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western"; + "temporary-resourcet" = dontDistribute super."temporary-resourcet"; + "tempus" = dontDistribute super."tempus"; + "tempus-fugit" = dontDistribute super."tempus-fugit"; + "tensor" = dontDistribute super."tensor"; + "term-rewriting" = dontDistribute super."term-rewriting"; + "termbox-bindings" = dontDistribute super."termbox-bindings"; + "termination-combinators" = dontDistribute super."termination-combinators"; + "terminfo" = doDistribute super."terminfo_0_4_0_2"; + "terminfo-hs" = dontDistribute super."terminfo-hs"; + "termplot" = dontDistribute super."termplot"; + "terntup" = dontDistribute super."terntup"; + "terrahs" = dontDistribute super."terrahs"; + "tersmu" = dontDistribute super."tersmu"; + "test-framework-doctest" = dontDistribute super."test-framework-doctest"; + "test-framework-golden" = dontDistribute super."test-framework-golden"; + "test-framework-program" = dontDistribute super."test-framework-program"; + "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck"; + "test-framework-sandbox" = dontDistribute super."test-framework-sandbox"; + "test-framework-skip" = dontDistribute super."test-framework-skip"; + "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat"; + "test-invariant" = dontDistribute super."test-invariant"; + "test-pkg" = dontDistribute super."test-pkg"; + "test-sandbox" = dontDistribute super."test-sandbox"; + "test-sandbox-compose" = dontDistribute super."test-sandbox-compose"; + "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit"; + "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; + "test-shouldbe" = dontDistribute super."test-shouldbe"; + "testPkg" = dontDistribute super."testPkg"; + "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; + "testloop" = dontDistribute super."testloop"; + "testpack" = dontDistribute super."testpack"; + "testpattern" = dontDistribute super."testpattern"; + "testrunner" = dontDistribute super."testrunner"; + "tetris" = dontDistribute super."tetris"; + "tex2txt" = dontDistribute super."tex2txt"; + "texrunner" = dontDistribute super."texrunner"; + "text-and-plots" = dontDistribute super."text-and-plots"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-ldap" = dontDistribute super."text-ldap"; + "text-locale-encoding" = dontDistribute super."text-locale-encoding"; + "text-normal" = dontDistribute super."text-normal"; + "text-position" = dontDistribute super."text-position"; + "text-postgresql" = dontDistribute super."text-postgresql"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-region" = dontDistribute super."text-region"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "text-show-instances" = dontDistribute super."text-show-instances"; + "text-stream-decode" = dontDistribute super."text-stream-decode"; + "text-utf7" = dontDistribute super."text-utf7"; + "text-xml-generic" = dontDistribute super."text-xml-generic"; + "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text1" = dontDistribute super."text1"; + "textPlot" = dontDistribute super."textPlot"; + "textmatetags" = dontDistribute super."textmatetags"; + "textocat-api" = dontDistribute super."textocat-api"; + "texts" = dontDistribute super."texts"; + "textual" = dontDistribute super."textual"; + "tfp" = dontDistribute super."tfp"; + "tfp-th" = dontDistribute super."tfp-th"; + "tftp" = dontDistribute super."tftp"; + "tga" = dontDistribute super."tga"; + "th-alpha" = dontDistribute super."th-alpha"; + "th-build" = dontDistribute super."th-build"; + "th-cas" = dontDistribute super."th-cas"; + "th-context" = dontDistribute super."th-context"; + "th-fold" = dontDistribute super."th-fold"; + "th-inline-io-action" = dontDistribute super."th-inline-io-action"; + "th-instance-reification" = dontDistribute super."th-instance-reification"; + "th-instances" = dontDistribute super."th-instances"; + "th-kinds" = dontDistribute super."th-kinds"; + "th-kinds-fork" = dontDistribute super."th-kinds-fork"; + "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-printf" = dontDistribute super."th-printf"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "thespian" = dontDistribute super."thespian"; + "theta-functions" = dontDistribute super."theta-functions"; + "thih" = dontDistribute super."thih"; + "thimk" = dontDistribute super."thimk"; + "thorn" = dontDistribute super."thorn"; + "thread-local-storage" = dontDistribute super."thread-local-storage"; + "threadPool" = dontDistribute super."threadPool"; + "threadmanager" = dontDistribute super."threadmanager"; + "threads-pool" = dontDistribute super."threads-pool"; + "threads-supervisor" = dontDistribute super."threads-supervisor"; + "threadscope" = dontDistribute super."threadscope"; + "threefish" = dontDistribute super."threefish"; + "threepenny-gui" = dontDistribute super."threepenny-gui"; + "thrift" = dontDistribute super."thrift"; + "thrist" = dontDistribute super."thrist"; + "throttle" = dontDistribute super."throttle"; + "thumbnail" = dontDistribute super."thumbnail"; + "tianbar" = dontDistribute super."tianbar"; + "tic-tac-toe" = dontDistribute super."tic-tac-toe"; + "tickle" = dontDistribute super."tickle"; + "tictactoe3d" = dontDistribute super."tictactoe3d"; + "tidal" = dontDistribute super."tidal"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "tidal-vis" = dontDistribute super."tidal-vis"; + "tie-knot" = dontDistribute super."tie-knot"; + "tiempo" = dontDistribute super."tiempo"; + "tiger" = dontDistribute super."tiger"; + "tight-apply" = dontDistribute super."tight-apply"; + "tightrope" = dontDistribute super."tightrope"; + "tighttp" = dontDistribute super."tighttp"; + "tilings" = dontDistribute super."tilings"; + "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; + "time-extras" = dontDistribute super."time-extras"; + "time-exts" = dontDistribute super."time-exts"; + "time-http" = dontDistribute super."time-http"; + "time-interval" = dontDistribute super."time-interval"; + "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; + "time-patterns" = dontDistribute super."time-patterns"; + "time-qq" = dontDistribute super."time-qq"; + "time-recurrence" = dontDistribute super."time-recurrence"; + "time-series" = dontDistribute super."time-series"; + "time-w3c" = dontDistribute super."time-w3c"; + "timecalc" = dontDistribute super."timecalc"; + "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; + "timemap" = dontDistribute super."timemap"; + "timeout" = dontDistribute super."timeout"; + "timeout-control" = dontDistribute super."timeout-control"; + "timeout-with-results" = dontDistribute super."timeout-with-results"; + "timeparsers" = dontDistribute super."timeparsers"; + "timeplot" = dontDistribute super."timeplot"; + "timers" = dontDistribute super."timers"; + "timers-updatable" = dontDistribute super."timers-updatable"; + "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; + "timestamper" = dontDistribute super."timestamper"; + "timezone-olson-th" = dontDistribute super."timezone-olson-th"; + "timing-convenience" = dontDistribute super."timing-convenience"; + "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; + "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; + "tip-lib" = dontDistribute super."tip-lib"; + "tiphys" = dontDistribute super."tiphys"; + "titlecase" = dontDistribute super."titlecase"; + "tkhs" = dontDistribute super."tkhs"; + "tkyprof" = dontDistribute super."tkyprof"; + "tld" = dontDistribute super."tld"; + "tls-extra" = dontDistribute super."tls-extra"; + "tmpl" = dontDistribute super."tmpl"; + "tn" = dontDistribute super."tn"; + "tnet" = dontDistribute super."tnet"; + "to-haskell" = dontDistribute super."to-haskell"; + "to-string-class" = dontDistribute super."to-string-class"; + "to-string-instances" = dontDistribute super."to-string-instances"; + "todos" = dontDistribute super."todos"; + "tofromxml" = dontDistribute super."tofromxml"; + "toilet" = dontDistribute super."toilet"; + "tokenify" = dontDistribute super."tokenify"; + "tokenize" = dontDistribute super."tokenize"; + "toktok" = dontDistribute super."toktok"; + "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell"; + "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell"; + "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal"; + "toml" = dontDistribute super."toml"; + "toolshed" = dontDistribute super."toolshed"; + "topkata" = dontDistribute super."topkata"; + "torch" = dontDistribute super."torch"; + "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; + "total-map" = dontDistribute super."total-map"; + "total-maps" = dontDistribute super."total-maps"; + "touched" = dontDistribute super."touched"; + "toysolver" = dontDistribute super."toysolver"; + "tpdb" = dontDistribute super."tpdb"; + "trace" = dontDistribute super."trace"; + "trace-call" = dontDistribute super."trace-call"; + "trace-function-call" = dontDistribute super."trace-function-call"; + "traced" = dontDistribute super."traced"; + "tracer" = dontDistribute super."tracer"; + "tracker" = dontDistribute super."tracker"; + "trajectory" = dontDistribute super."trajectory"; + "transactional-events" = dontDistribute super."transactional-events"; + "transf" = dontDistribute super."transf"; + "transformations" = dontDistribute super."transformations"; + "transformers-abort" = dontDistribute super."transformers-abort"; + "transformers-compose" = dontDistribute super."transformers-compose"; + "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-free" = dontDistribute super."transformers-free"; + "transformers-runnable" = dontDistribute super."transformers-runnable"; + "transformers-supply" = dontDistribute super."transformers-supply"; + "transient" = dontDistribute super."transient"; + "translatable-intset" = dontDistribute super."translatable-intset"; + "translate" = dontDistribute super."translate"; + "travis" = dontDistribute super."travis"; + "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; + "trawl" = dontDistribute super."trawl"; + "traypoweroff" = dontDistribute super."traypoweroff"; + "tree-fun" = dontDistribute super."tree-fun"; + "tree-monad" = dontDistribute super."tree-monad"; + "treemap-html" = dontDistribute super."treemap-html"; + "treemap-html-tools" = dontDistribute super."treemap-html-tools"; + "treersec" = dontDistribute super."treersec"; + "treeviz" = dontDistribute super."treeviz"; + "tremulous-query" = dontDistribute super."tremulous-query"; + "trhsx" = dontDistribute super."trhsx"; + "triangulation" = dontDistribute super."triangulation"; + "trimpolya" = dontDistribute super."trimpolya"; + "tripLL" = dontDistribute super."tripLL"; + "trivia" = dontDistribute super."trivia"; + "trivial-constraint" = dontDistribute super."trivial-constraint"; + "tropical" = dontDistribute super."tropical"; + "truelevel" = dontDistribute super."truelevel"; + "trurl" = dontDistribute super."trurl"; + "truthful" = dontDistribute super."truthful"; + "tsession" = dontDistribute super."tsession"; + "tsession-happstack" = dontDistribute super."tsession-happstack"; + "tskiplist" = dontDistribute super."tskiplist"; + "tslib" = dontDistribute super."tslib"; + "tslogger" = dontDistribute super."tslogger"; + "tsp-viz" = dontDistribute super."tsp-viz"; + "tsparse" = dontDistribute super."tsparse"; + "tst" = dontDistribute super."tst"; + "tsvsql" = dontDistribute super."tsvsql"; + "tttool" = doDistribute super."tttool_1_5_1"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple" = dontDistribute super."tuple"; + "tuple-gen" = dontDistribute super."tuple-gen"; + "tuple-generic" = dontDistribute super."tuple-generic"; + "tuple-hlist" = dontDistribute super."tuple-hlist"; + "tuple-lenses" = dontDistribute super."tuple-lenses"; + "tuple-morph" = dontDistribute super."tuple-morph"; + "tupleinstances" = dontDistribute super."tupleinstances"; + "turing" = dontDistribute super."turing"; + "turing-music" = dontDistribute super."turing-music"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "turtle-options" = dontDistribute super."turtle-options"; + "tweak" = dontDistribute super."tweak"; + "twee" = dontDistribute super."twee"; + "twentefp" = dontDistribute super."twentefp"; + "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; + "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees"; + "twentefp-graphs" = dontDistribute super."twentefp-graphs"; + "twentefp-number" = dontDistribute super."twentefp-number"; + "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; + "twentefp-trees" = dontDistribute super."twentefp-trees"; + "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; + "twhs" = dontDistribute super."twhs"; + "twidge" = dontDistribute super."twidge"; + "twilight-stm" = dontDistribute super."twilight-stm"; + "twilio" = dontDistribute super."twilio"; + "twill" = dontDistribute super."twill"; + "twiml" = dontDistribute super."twiml"; + "twine" = dontDistribute super."twine"; + "twisty" = dontDistribute super."twisty"; + "twitch" = dontDistribute super."twitch"; + "twitter" = dontDistribute super."twitter"; + "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "tx" = dontDistribute super."tx"; + "txt-sushi" = dontDistribute super."txt-sushi"; + "txt2rtf" = dontDistribute super."txt2rtf"; + "txtblk" = dontDistribute super."txtblk"; + "ty" = dontDistribute super."ty"; + "typalyze" = dontDistribute super."typalyze"; + "type-booleans" = dontDistribute super."type-booleans"; + "type-cache" = dontDistribute super."type-cache"; + "type-cereal" = dontDistribute super."type-cereal"; + "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; + "type-digits" = dontDistribute super."type-digits"; + "type-equality" = dontDistribute super."type-equality"; + "type-equality-check" = dontDistribute super."type-equality-check"; + "type-fun" = dontDistribute super."type-fun"; + "type-functions" = dontDistribute super."type-functions"; + "type-hint" = dontDistribute super."type-hint"; + "type-int" = dontDistribute super."type-int"; + "type-iso" = dontDistribute super."type-iso"; + "type-level" = dontDistribute super."type-level"; + "type-level-bst" = dontDistribute super."type-level-bst"; + "type-level-natural-number" = dontDistribute super."type-level-natural-number"; + "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction"; + "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; + "type-level-sets" = dontDistribute super."type-level-sets"; + "type-level-tf" = dontDistribute super."type-level-tf"; + "type-natural" = dontDistribute super."type-natural"; + "type-ord" = dontDistribute super."type-ord"; + "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; + "type-prelude" = dontDistribute super."type-prelude"; + "type-settheory" = dontDistribute super."type-settheory"; + "type-spine" = dontDistribute super."type-spine"; + "type-structure" = dontDistribute super."type-structure"; + "type-sub-th" = dontDistribute super."type-sub-th"; + "type-unary" = dontDistribute super."type-unary"; + "typeable-th" = dontDistribute super."typeable-th"; + "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; + "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; + "typedquery" = dontDistribute super."typedquery"; + "typehash" = dontDistribute super."typehash"; + "typelevel" = dontDistribute super."typelevel"; + "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typeof" = dontDistribute super."typeof"; + "typeparams" = dontDistribute super."typeparams"; + "typesafe-endian" = dontDistribute super."typesafe-endian"; + "typescript-docs" = dontDistribute super."typescript-docs"; + "typical" = dontDistribute super."typical"; + "typography-geometry" = dontDistribute super."typography-geometry"; + "uAgda" = dontDistribute super."uAgda"; + "ua-parser" = dontDistribute super."ua-parser"; + "uacpid" = dontDistribute super."uacpid"; + "uberlast" = dontDistribute super."uberlast"; + "uconv" = dontDistribute super."uconv"; + "udbus" = dontDistribute super."udbus"; + "udbus-model" = dontDistribute super."udbus-model"; + "udcode" = dontDistribute super."udcode"; + "udev" = dontDistribute super."udev"; + "uhc-light" = dontDistribute super."uhc-light"; + "uhc-util" = dontDistribute super."uhc-util"; + "uhexdump" = dontDistribute super."uhexdump"; + "uhttpc" = dontDistribute super."uhttpc"; + "ui-command" = dontDistribute super."ui-command"; + "uid" = dontDistribute super."uid"; + "una" = dontDistribute super."una"; + "unagi-chan" = dontDistribute super."unagi-chan"; + "unagi-streams" = dontDistribute super."unagi-streams"; + "unamb" = dontDistribute super."unamb"; + "unamb-custom" = dontDistribute super."unamb-custom"; + "unbound" = dontDistribute super."unbound"; + "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; + "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; + "unfoldable" = dontDistribute super."unfoldable"; + "ungadtagger" = dontDistribute super."ungadtagger"; + "uni-events" = dontDistribute super."uni-events"; + "uni-graphs" = dontDistribute super."uni-graphs"; + "uni-htk" = dontDistribute super."uni-htk"; + "uni-posixutil" = dontDistribute super."uni-posixutil"; + "uni-reactor" = dontDistribute super."uni-reactor"; + "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph"; + "uni-util" = dontDistribute super."uni-util"; + "unicode" = dontDistribute super."unicode"; + "unicode-names" = dontDistribute super."unicode-names"; + "unicode-normalization" = dontDistribute super."unicode-normalization"; + "unicode-prelude" = dontDistribute super."unicode-prelude"; + "unicode-properties" = dontDistribute super."unicode-properties"; + "unicode-show" = dontDistribute super."unicode-show"; + "unicode-symbols" = dontDistribute super."unicode-symbols"; + "unicoder" = dontDistribute super."unicoder"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; + "union-find-array" = dontDistribute super."union-find-array"; + "union-map" = dontDistribute super."union-map"; + "unique" = dontDistribute super."unique"; + "unique-logic" = dontDistribute super."unique-logic"; + "unique-logic-tf" = dontDistribute super."unique-logic-tf"; + "uniqueid" = dontDistribute super."uniqueid"; + "unit" = dontDistribute super."unit"; + "units" = dontDistribute super."units"; + "units-attoparsec" = dontDistribute super."units-attoparsec"; + "units-defs" = dontDistribute super."units-defs"; + "units-parser" = dontDistribute super."units-parser"; + "unittyped" = dontDistribute super."unittyped"; + "universal-binary" = dontDistribute super."universal-binary"; + "universe-th" = dontDistribute super."universe-th"; + "unix-fcntl" = dontDistribute super."unix-fcntl"; + "unix-handle" = dontDistribute super."unix-handle"; + "unix-io-extra" = dontDistribute super."unix-io-extra"; + "unix-memory" = dontDistribute super."unix-memory"; + "unix-process-conduit" = dontDistribute super."unix-process-conduit"; + "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = dontDistribute super."unlambda"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; + "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; + "unpack-funcs" = dontDistribute super."unpack-funcs"; + "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; + "unsafe" = dontDistribute super."unsafe"; + "unsafe-promises" = dontDistribute super."unsafe-promises"; + "unsafely" = dontDistribute super."unsafely"; + "unsafeperformst" = dontDistribute super."unsafeperformst"; + "unscramble" = dontDistribute super."unscramble"; + "unusable-pkg" = dontDistribute super."unusable-pkg"; + "uom-plugin" = dontDistribute super."uom-plugin"; + "up" = dontDistribute super."up"; + "up-grade" = dontDistribute super."up-grade"; + "uploadcare" = dontDistribute super."uploadcare"; + "upskirt" = dontDistribute super."upskirt"; + "ureader" = dontDistribute super."ureader"; + "urembed" = dontDistribute super."urembed"; + "uri" = dontDistribute super."uri"; + "uri-bytestring" = doDistribute super."uri-bytestring_0_1_9_2"; + "uri-conduit" = dontDistribute super."uri-conduit"; + "uri-enumerator" = dontDistribute super."uri-enumerator"; + "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; + "uri-template" = dontDistribute super."uri-template"; + "url-generic" = dontDistribute super."url-generic"; + "urlcheck" = dontDistribute super."urlcheck"; + "urldecode" = dontDistribute super."urldecode"; + "urldisp-happstack" = dontDistribute super."urldisp-happstack"; + "urlencoded" = dontDistribute super."urlencoded"; + "urn" = dontDistribute super."urn"; + "urxml" = dontDistribute super."urxml"; + "usb" = dontDistribute super."usb"; + "usb-enumerator" = dontDistribute super."usb-enumerator"; + "usb-hid" = dontDistribute super."usb-hid"; + "usb-id-database" = dontDistribute super."usb-id-database"; + "usb-iteratee" = dontDistribute super."usb-iteratee"; + "usb-safe" = dontDistribute super."usb-safe"; + "users" = doDistribute super."users_0_4_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; + "users-test" = doDistribute super."users-test_0_4_0_0"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uulib" = dontDistribute super."uulib"; + "uvector" = dontDistribute super."uvector"; + "uvector-algorithms" = dontDistribute super."uvector-algorithms"; + "uxadt" = dontDistribute super."uxadt"; + "uzbl-with-source" = dontDistribute super."uzbl-with-source"; + "v4l2" = dontDistribute super."v4l2"; + "v4l2-examples" = dontDistribute super."v4l2-examples"; + "vacuum" = dontDistribute super."vacuum"; + "vacuum-cairo" = dontDistribute super."vacuum-cairo"; + "vacuum-graphviz" = dontDistribute super."vacuum-graphviz"; + "vacuum-opengl" = dontDistribute super."vacuum-opengl"; + "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph"; + "vado" = dontDistribute super."vado"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validated-literals" = dontDistribute super."validated-literals"; + "validations" = dontDistribute super."validations"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vcsgui" = dontDistribute super."vcsgui"; + "vcswrapper" = dontDistribute super."vcswrapper"; + "vect" = dontDistribute super."vect"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector-binary" = dontDistribute super."vector-binary"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "vector-functorlazy" = dontDistribute super."vector-functorlazy"; + "vector-heterogenous" = dontDistribute super."vector-heterogenous"; + "vector-instances-collections" = dontDistribute super."vector-instances-collections"; + "vector-mmap" = dontDistribute super."vector-mmap"; + "vector-random" = dontDistribute super."vector-random"; + "vector-read-instances" = dontDistribute super."vector-read-instances"; + "vector-sized" = dontDistribute super."vector-sized"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-space-points" = dontDistribute super."vector-space-points"; + "vector-static" = dontDistribute super."vector-static"; + "vector-strategies" = dontDistribute super."vector-strategies"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "versions" = dontDistribute super."versions"; + "vhdl" = dontDistribute super."vhdl"; + "views" = dontDistribute super."views"; + "vigilance" = dontDistribute super."vigilance"; + "vimeta" = dontDistribute super."vimeta"; + "vimus" = dontDistribute super."vimus"; + "vintage-basic" = dontDistribute super."vintage-basic"; + "vinyl-gl" = dontDistribute super."vinyl-gl"; + "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; + "vinyl-utils" = dontDistribute super."vinyl-utils"; + "vinyl-vectors" = dontDistribute super."vinyl-vectors"; + "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; + "vision" = dontDistribute super."vision"; + "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; + "visual-prof" = dontDistribute super."visual-prof"; + "vivid" = dontDistribute super."vivid"; + "vk-aws-route53" = dontDistribute super."vk-aws-route53"; + "vk-posix-pty" = dontDistribute super."vk-posix-pty"; + "vocabulary-kadma" = dontDistribute super."vocabulary-kadma"; + "vorbiscomment" = dontDistribute super."vorbiscomment"; + "vowpal-utils" = dontDistribute super."vowpal-utils"; + "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty-examples" = dontDistribute super."vty-examples"; + "vty-menu" = dontDistribute super."vty-menu"; + "vty-ui" = dontDistribute super."vty-ui"; + "vty-ui-extras" = dontDistribute super."vty-ui-extras"; + "vulkan" = dontDistribute super."vulkan"; + "wacom-daemon" = dontDistribute super."wacom-daemon"; + "waddle" = dontDistribute super."waddle"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_14_3"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; + "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; + "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; + "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; + "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; + "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; + "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; + "wai-middleware-route" = dontDistribute super."wai-middleware-route"; + "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-request-spec" = dontDistribute super."wai-request-spec"; + "wai-responsible" = dontDistribute super."wai-responsible"; + "wai-router" = dontDistribute super."wai-router"; + "wai-session-alt" = dontDistribute super."wai-session-alt"; + "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; + "wai-static-cache" = dontDistribute super."wai-static-cache"; + "wai-static-pages" = dontDistribute super."wai-static-pages"; + "wai-test" = dontDistribute super."wai-test"; + "wai-thrift" = dontDistribute super."wai-thrift"; + "wai-throttler" = dontDistribute super."wai-throttler"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_2_2"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "wavesurfer" = dontDistribute super."wavesurfer"; + "wavy" = dontDistribute super."wavy"; + "wcwidth" = dontDistribute super."wcwidth"; + "weather-api" = dontDistribute super."weather-api"; + "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell"; + "web-css" = dontDistribute super."web-css"; + "web-encodings" = dontDistribute super."web-encodings"; + "web-mongrel2" = dontDistribute super."web-mongrel2"; + "web-page" = dontDistribute super."web-page"; + "web-routes-mtl" = dontDistribute super."web-routes-mtl"; + "web-routes-quasi" = dontDistribute super."web-routes-quasi"; + "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-transformers" = dontDistribute super."web-routes-transformers"; + "webapi" = dontDistribute super."webapi"; + "webapp" = dontDistribute super."webapp"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; + "webidl" = dontDistribute super."webidl"; + "webify" = dontDistribute super."webify"; + "webkit" = dontDistribute super."webkit"; + "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore"; + "webkitgtk3" = dontDistribute super."webkitgtk3"; + "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore"; + "webrtc-vad" = dontDistribute super."webrtc-vad"; + "webserver" = dontDistribute super."webserver"; + "websnap" = dontDistribute super."websnap"; + "webwire" = dontDistribute super."webwire"; + "wedding-announcement" = dontDistribute super."wedding-announcement"; + "wedged" = dontDistribute super."wedged"; + "weighted-regexp" = dontDistribute super."weighted-regexp"; + "weighted-search" = dontDistribute super."weighted-search"; + "welshy" = dontDistribute super."welshy"; + "werewolf" = dontDistribute super."werewolf"; + "wheb-mongo" = dontDistribute super."wheb-mongo"; + "wheb-redis" = dontDistribute super."wheb-redis"; + "wheb-strapped" = dontDistribute super."wheb-strapped"; + "while-lang-parser" = dontDistribute super."while-lang-parser"; + "whim" = dontDistribute super."whim"; + "whiskers" = dontDistribute super."whiskers"; + "whitespace" = dontDistribute super."whitespace"; + "whois" = dontDistribute super."whois"; + "why3" = dontDistribute super."why3"; + "wigner-symbols" = dontDistribute super."wigner-symbols"; + "wikipedia4epub" = dontDistribute super."wikipedia4epub"; + "win-hp-path" = dontDistribute super."win-hp-path"; + "windowslive" = dontDistribute super."windowslive"; + "winerror" = dontDistribute super."winerror"; + "winio" = dontDistribute super."winio"; + "wiring" = dontDistribute super."wiring"; + "with-location" = doDistribute super."with-location_0_0_0"; + "witness" = dontDistribute super."witness"; + "witty" = dontDistribute super."witty"; + "wkt" = dontDistribute super."wkt"; + "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm"; + "wlc-hs" = dontDistribute super."wlc-hs"; + "wobsurv" = dontDistribute super."wobsurv"; + "woffex" = dontDistribute super."woffex"; + "wol" = dontDistribute super."wol"; + "wolf" = dontDistribute super."wolf"; + "woot" = dontDistribute super."woot"; + "word24" = dontDistribute super."word24"; + "wordcloud" = dontDistribute super."wordcloud"; + "wordexp" = dontDistribute super."wordexp"; + "words" = dontDistribute super."words"; + "wordsearch" = dontDistribute super."wordsearch"; + "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; + "wp-archivebot" = dontDistribute super."wp-archivebot"; + "wraparound" = dontDistribute super."wraparound"; + "wraxml" = dontDistribute super."wraxml"; + "wreq-sb" = dontDistribute super."wreq-sb"; + "wright" = dontDistribute super."wright"; + "wsdl" = dontDistribute super."wsdl"; + "wsedit" = dontDistribute super."wsedit"; + "wtk" = dontDistribute super."wtk"; + "wtk-gtk" = dontDistribute super."wtk-gtk"; + "wumpus-basic" = dontDistribute super."wumpus-basic"; + "wumpus-core" = dontDistribute super."wumpus-core"; + "wumpus-drawing" = dontDistribute super."wumpus-drawing"; + "wumpus-microprint" = dontDistribute super."wumpus-microprint"; + "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = dontDistribute super."wuss"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdg-userdirs" = dontDistribute super."xdg-userdirs"; + "xdot" = dontDistribute super."xdot"; + "xfconf" = dontDistribute super."xfconf"; + "xhaskell-library" = dontDistribute super."xhaskell-library"; + "xhb" = dontDistribute super."xhb"; + "xhb-atom-cache" = dontDistribute super."xhb-atom-cache"; + "xhb-ewmh" = dontDistribute super."xhb-ewmh"; + "xhtml" = doDistribute super."xhtml_3000_2_1"; + "xhtml-combinators" = dontDistribute super."xhtml-combinators"; + "xilinx-lava" = dontDistribute super."xilinx-lava"; + "xine" = dontDistribute super."xine"; + "xing-api" = dontDistribute super."xing-api"; + "xinput-conduit" = dontDistribute super."xinput-conduit"; + "xkbcommon" = dontDistribute super."xkbcommon"; + "xkcd" = dontDistribute super."xkcd"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-enumerator" = dontDistribute super."xml-enumerator"; + "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; + "xml-extractors" = dontDistribute super."xml-extractors"; + "xml-helpers" = dontDistribute super."xml-helpers"; + "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens"; + "xml-monad" = dontDistribute super."xml-monad"; + "xml-parsec" = dontDistribute super."xml-parsec"; + "xml-picklers" = dontDistribute super."xml-picklers"; + "xml-pipe" = dontDistribute super."xml-pipe"; + "xml-prettify" = dontDistribute super."xml-prettify"; + "xml-push" = dontDistribute super."xml-push"; + "xml-query" = dontDistribute super."xml-query"; + "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit"; + "xml-query-xml-types" = dontDistribute super."xml-query-xml-types"; + "xml2html" = dontDistribute super."xml2html"; + "xml2json" = dontDistribute super."xml2json"; + "xml2x" = dontDistribute super."xml2x"; + "xmltv" = dontDistribute super."xmltv"; + "xmms2-client" = dontDistribute super."xmms2-client"; + "xmms2-client-glib" = dontDistribute super."xmms2-client-glib"; + "xmobar" = dontDistribute super."xmobar"; + "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch"; + "xmonad-contrib" = dontDistribute super."xmonad-contrib"; + "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch"; + "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl"; + "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper"; + "xmonad-eval" = dontDistribute super."xmonad-eval"; + "xmonad-extras" = dontDistribute super."xmonad-extras"; + "xmonad-screenshot" = dontDistribute super."xmonad-screenshot"; + "xmonad-utils" = dontDistribute super."xmonad-utils"; + "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper"; + "xmonad-windownames" = dontDistribute super."xmonad-windownames"; + "xmpipe" = dontDistribute super."xmpipe"; + "xorshift" = dontDistribute super."xorshift"; + "xosd" = dontDistribute super."xosd"; + "xournal-builder" = dontDistribute super."xournal-builder"; + "xournal-convert" = dontDistribute super."xournal-convert"; + "xournal-parser" = dontDistribute super."xournal-parser"; + "xournal-render" = dontDistribute super."xournal-render"; + "xournal-types" = dontDistribute super."xournal-types"; + "xsact" = dontDistribute super."xsact"; + "xsd" = dontDistribute super."xsd"; + "xsha1" = dontDistribute super."xsha1"; + "xslt" = dontDistribute super."xslt"; + "xtc" = dontDistribute super."xtc"; + "xtest" = dontDistribute super."xtest"; + "xturtle" = dontDistribute super."xturtle"; + "xxhash" = dontDistribute super."xxhash"; + "y0l0bot" = dontDistribute super."y0l0bot"; + "yabi" = dontDistribute super."yabi"; + "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; + "yahoo-web-search" = dontDistribute super."yahoo-web-search"; + "yajl" = dontDistribute super."yajl"; + "yajl-enumerator" = dontDistribute super."yajl-enumerator"; + "yall" = dontDistribute super."yall"; + "yamemo" = dontDistribute super."yamemo"; + "yaml-config" = dontDistribute super."yaml-config"; + "yaml-light-lens" = dontDistribute super."yaml-light-lens"; + "yaml-rpc" = dontDistribute super."yaml-rpc"; + "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty"; + "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap"; + "yaml-union" = dontDistribute super."yaml-union"; + "yaml2owl" = dontDistribute super."yaml2owl"; + "yamlkeysdiff" = dontDistribute super."yamlkeysdiff"; + "yampa-canvas" = dontDistribute super."yampa-canvas"; + "yampa-glfw" = dontDistribute super."yampa-glfw"; + "yampa-glut" = dontDistribute super."yampa-glut"; + "yampa2048" = dontDistribute super."yampa2048"; + "yaop" = dontDistribute super."yaop"; + "yap" = dontDistribute super."yap"; + "yarr" = dontDistribute super."yarr"; + "yarr-image-io" = dontDistribute super."yarr-image-io"; + "yate" = dontDistribute super."yate"; + "yavie" = dontDistribute super."yavie"; + "ycextra" = dontDistribute super."ycextra"; + "yeganesh" = dontDistribute super."yeganesh"; + "yeller" = dontDistribute super."yeller"; + "yeshql" = dontDistribute super."yeshql"; + "yesod-angular" = dontDistribute super."yesod-angular"; + "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; + "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; + "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; + "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; + "yesod-comments" = dontDistribute super."yesod-comments"; + "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; + "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-crud" = dontDistribute super."yesod-crud"; + "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; + "yesod-csp" = dontDistribute super."yesod-csp"; + "yesod-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-json" = dontDistribute super."yesod-json"; + "yesod-links" = dontDistribute super."yesod-links"; + "yesod-lucid" = dontDistribute super."yesod-lucid"; + "yesod-markdown" = dontDistribute super."yesod-markdown"; + "yesod-media-simple" = dontDistribute super."yesod-media-simple"; + "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5"; + "yesod-paginate" = dontDistribute super."yesod-paginate"; + "yesod-pagination" = dontDistribute super."yesod-pagination"; + "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-platform" = dontDistribute super."yesod-platform"; + "yesod-pnotify" = dontDistribute super."yesod-pnotify"; + "yesod-pure" = dontDistribute super."yesod-pure"; + "yesod-purescript" = dontDistribute super."yesod-purescript"; + "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; + "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; + "yesod-routes" = dontDistribute super."yesod-routes"; + "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; + "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript"; + "yesod-rst" = dontDistribute super."yesod-rst"; + "yesod-s3" = dontDistribute super."yesod-s3"; + "yesod-sass" = dontDistribute super."yesod-sass"; + "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test-json" = dontDistribute super."yesod-test-json"; + "yesod-tls" = dontDistribute super."yesod-tls"; + "yesod-transloadit" = dontDistribute super."yesod-transloadit"; + "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; + "yesod-worker" = dontDistribute super."yesod-worker"; + "yet-another-logger" = dontDistribute super."yet-another-logger"; + "yhccore" = dontDistribute super."yhccore"; + "yi-contrib" = dontDistribute super."yi-contrib"; + "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; + "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-monokai" = dontDistribute super."yi-monokai"; + "yi-snippet" = dontDistribute super."yi-snippet"; + "yi-solarized" = dontDistribute super."yi-solarized"; + "yi-spolsky" = dontDistribute super."yi-spolsky"; + "yi-vty" = dontDistribute super."yi-vty"; + "yices" = dontDistribute super."yices"; + "yices-easy" = dontDistribute super."yices-easy"; + "yices-painless" = dontDistribute super."yices-painless"; + "yjftp" = dontDistribute super."yjftp"; + "yjftp-libs" = dontDistribute super."yjftp-libs"; + "yjsvg" = dontDistribute super."yjsvg"; + "yjtools" = dontDistribute super."yjtools"; + "yocto" = dontDistribute super."yocto"; + "yoctoparsec" = dontDistribute super."yoctoparsec"; + "yoko" = dontDistribute super."yoko"; + "york-lava" = dontDistribute super."york-lava"; + "youtube" = dontDistribute super."youtube"; + "yql" = dontDistribute super."yql"; + "yst" = dontDistribute super."yst"; + "yuiGrid" = dontDistribute super."yuiGrid"; + "yuuko" = dontDistribute super."yuuko"; + "yxdb-utils" = dontDistribute super."yxdb-utils"; + "z3" = dontDistribute super."z3"; + "zalgo" = dontDistribute super."zalgo"; + "zampolit" = dontDistribute super."zampolit"; + "zasni-gerna" = dontDistribute super."zasni-gerna"; + "zcache" = dontDistribute super."zcache"; + "zenc" = dontDistribute super."zenc"; + "zendesk-api" = dontDistribute super."zendesk-api"; + "zeno" = dontDistribute super."zeno"; + "zerobin" = dontDistribute super."zerobin"; + "zeromq-haskell" = dontDistribute super."zeromq-haskell"; + "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; + "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; + "zeroth" = dontDistribute super."zeroth"; + "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; + "zip" = dontDistribute super."zip"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipkin" = dontDistribute super."zipkin"; + "zipper" = dontDistribute super."zipper"; + "zippers" = dontDistribute super."zippers"; + "zippo" = dontDistribute super."zippo"; + "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zmcat" = dontDistribute super."zmcat"; + "zmidi-core" = dontDistribute super."zmidi-core"; + "zmidi-score" = dontDistribute super."zmidi-score"; + "zmqat" = dontDistribute super."zmqat"; + "zoneinfo" = dontDistribute super."zoneinfo"; + "zoom" = dontDistribute super."zoom"; + "zoom-cache" = dontDistribute super."zoom-cache"; + "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm"; + "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile"; + "zoom-refs" = dontDistribute super."zoom-refs"; + "zot" = dontDistribute super."zot"; + "zsh-battery" = dontDistribute super."zsh-battery"; + "ztail" = dontDistribute super."ztail"; + +} diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 09e2ef0ec8e..2182469ef2d 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -17,6 +17,7 @@ self: { homepage = "http://darcs.wolfgang.jeltsch.info/haskell/3d-graphics-examples"; description = "Examples of 3D graphics programming with OpenGL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "3dmodels" = callPackage @@ -32,6 +33,7 @@ self: { homepage = "https://github.com/capsjac/3dmodels"; description = "3D model parsers"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "4Blocks" = callPackage @@ -49,6 +51,7 @@ self: { homepage = "http://lambdacolyte.wordpress.com/2009/08/06/tetris-in-haskell/"; description = "A tetris-like game (works with GHC 6.8.3 and Gtk2hs 0.9.13)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AAI" = callPackage @@ -110,6 +113,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Detect which OS you're running on"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AC-Colour" = callPackage @@ -132,6 +136,7 @@ self: { libraryHaskellDepends = [ array base gtk ]; description = "GTK+ pixel plotting"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AC-HalfInteger" = callPackage @@ -143,6 +148,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Efficient half-integer type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AC-MiniTest" = callPackage @@ -154,6 +160,7 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "A simple test framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AC-PPM" = callPackage @@ -187,6 +194,7 @@ self: { libraryHaskellDepends = [ ansi-terminal base ]; description = "Trivial wrapper over ansi-terminal"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AC-VanillaArray" = callPackage @@ -199,6 +207,7 @@ self: { jailbreak = true; description = "Immutable arrays with plain integer indicies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AC-Vector" = callPackage @@ -237,34 +246,34 @@ self: { homepage = "http://alkalisoftware.net"; description = "Essential features"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ADPfusion" = callPackage - ({ mkDerivation, base, bits, containers, mmorph, monad-primitive - , mtl, OrderedBits, primitive, PrimitiveArray, QuickCheck - , singletons, strict, template-haskell, test-framework - , test-framework-quickcheck2, test-framework-th, th-orphans - , transformers, tuple, vector + ({ mkDerivation, base, bits, containers, mmorph, mtl, OrderedBits + , primitive, PrimitiveArray, QuickCheck, strict, template-haskell + , test-framework, test-framework-quickcheck2, test-framework-th + , th-orphans, transformers, tuple, vector }: mkDerivation { pname = "ADPfusion"; - version = "0.5.0.0"; - sha256 = "bbea9d5352dba8d2d0e0d67624dee7d50babf15a954f42dc9cb0d815b859a668"; + version = "0.5.1.0"; + sha256 = "cd3acc617c59a90e94b6666f5f6814515a2a11625d8794c977afe51520586951"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base bits containers mmorph monad-primitive mtl OrderedBits - primitive PrimitiveArray QuickCheck singletons strict - template-haskell th-orphans transformers tuple vector + base bits containers mmorph mtl OrderedBits primitive + PrimitiveArray QuickCheck strict template-haskell th-orphans + transformers tuple vector ]; testHaskellDepends = [ base bits OrderedBits PrimitiveArray QuickCheck strict test-framework test-framework-quickcheck2 test-framework-th vector ]; - jailbreak = true; homepage = "https://github.com/choener/ADPfusion"; description = "Efficient, high-level dynamic programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-Basics" = callPackage @@ -286,6 +295,7 @@ self: { homepage = "http://code.google.com/p/aern/"; description = "foundational type classes for approximating exact real numbers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-Net" = callPackage @@ -303,6 +313,7 @@ self: { homepage = "http://www-users.aston.ac.uk/~konecnym/DISCERN"; description = "Compositional lazy dataflow networks for exact real number computation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-Real" = callPackage @@ -321,6 +332,7 @@ self: { homepage = "http://code.google.com/p/aern/"; description = "arbitrary precision real interval arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-Real-Double" = callPackage @@ -346,6 +358,7 @@ self: { homepage = "http://code.google.com/p/aern/"; description = "arbitrary precision real interval arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-Real-Interval" = callPackage @@ -364,6 +377,7 @@ self: { homepage = "http://code.google.com/p/aern/"; description = "arbitrary precision real interval arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-RnToRm" = callPackage @@ -382,6 +396,7 @@ self: { homepage = "http://www-users.aston.ac.uk/~konecnym/DISCERN"; description = "polynomial function enclosures (PFEs) approximating exact real functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-RnToRm-Plot" = callPackage @@ -401,6 +416,7 @@ self: { homepage = "http://www-users.aston.ac.uk/~konecnym/DISCERN"; description = "GL plotting of polynomial function enclosures (PFEs)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AES" = callPackage @@ -432,6 +448,7 @@ self: { homepage = "http://src.seereason.com/haskell-agi"; description = "A library for writing AGI scripts for Asterisk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ALUT" = callPackage @@ -450,6 +467,7 @@ self: { homepage = "https://github.com/haskell-openal/ALUT"; description = "A binding for the OpenAL Utility Toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) freealut;}; "AMI" = callPackage @@ -466,6 +484,7 @@ self: { homepage = "http://redmine.iportnov.ru/projects/ami"; description = "Low-level bindings for Asterisk Manager Interface (AMI)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ANum" = callPackage @@ -584,6 +603,7 @@ self: { homepage = "https://github.com/egonSchiele/actionkid"; description = "An easy-to-use video game framework for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Adaptive" = callPackage @@ -600,6 +620,7 @@ self: { jailbreak = true; description = "Library for incremental computing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Adaptive-Blaisorblade" = callPackage @@ -613,6 +634,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Library for incremental computing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Advgame" = callPackage @@ -627,6 +649,7 @@ self: { jailbreak = true; description = "Lisperati's adventure game in Lisp translated to Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AesonBson" = callPackage @@ -645,6 +668,7 @@ self: { homepage = "https://github.com/nh2/AesonBson"; description = "Mapping between Aeson's JSON and Bson objects"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Agata" = callPackage @@ -661,6 +685,7 @@ self: { jailbreak = true; description = "Generator-generator for QuickCheck"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Agda_2_4_2_3" = callPackage @@ -699,6 +724,7 @@ self: { description = "A dependently typed functional programming language and proof assistant"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ abbradar ]; }) {inherit (pkgs) emacs;}; "Agda_2_4_2_4" = callPackage @@ -735,6 +761,7 @@ self: { description = "A dependently typed functional programming language and proof assistant"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ abbradar ]; }) {inherit (pkgs) emacs;}; "Agda" = callPackage @@ -750,8 +777,8 @@ self: { pname = "Agda"; version = "2.4.2.5"; sha256 = "959658a372d93b735d92191b372d221461026c98de4f92e56d198b576dfb67ee"; - revision = "1"; - editedCabalFile = "85d09d8a607a351be092c5e168c35b8c303b20765ceb0f01cd34956c44ba7f5a"; + revision = "2"; + editedCabalFile = "9c7786cfae8d92deb077650a31f41d15b8e1c8f15450419c268fd16162753515"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -772,6 +799,7 @@ self: { homepage = "http://wiki.portal.chalmers.se/agda/"; description = "A dependently typed functional programming language and proof assistant"; license = "unknown"; + maintainers = with stdenv.lib.maintainers; [ abbradar ]; }) {inherit (pkgs) emacs;}; "Agda-executable" = callPackage @@ -787,6 +815,7 @@ self: { homepage = "http://wiki.portal.chalmers.se/agda/"; description = "Command-line program for type-checking and compiling Agda programs"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AhoCorasick" = callPackage @@ -802,6 +831,7 @@ self: { homepage = "http://github.com/lymar/AhoCorasick"; description = "Aho-Corasick string matching algorithm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AlgorithmW" = callPackage @@ -830,9 +860,11 @@ self: { ADPfusion base containers fmlist FormalGrammars GrammarProducts PrimitiveArray vector ]; + jailbreak = true; homepage = "https://github.com/choener/AlignmentAlgorithms"; description = "Collection of alignment algorithms"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Allure" = callPackage @@ -856,6 +888,7 @@ self: { homepage = "http://allureofthestars.com"; description = "Near-future Sci-Fi roguelike and tactical squad game"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AndroidViewHierarchyImporter" = callPackage @@ -876,6 +909,7 @@ self: { jailbreak = true; description = "Android view hierarchy importer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Animas" = callPackage @@ -888,6 +922,7 @@ self: { homepage = "https://github.com/eamsden/Animas"; description = "Updated version of Yampa: a library for programming hybrid systems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Annotations" = callPackage @@ -932,6 +967,7 @@ self: { executableHaskellDepends = [ base ]; description = "Library for Apple Push Notification Service"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AppleScript" = callPackage @@ -945,6 +981,7 @@ self: { homepage = "https://github.com/reinerp/haskell-AppleScript"; description = "Call AppleScript from Haskell, and then call back into Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ApproxFun-hs" = callPackage @@ -970,6 +1007,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Library/ArrayRef"; description = "Unboxed references, dynamic arrays and more"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ArrowVHDL" = callPackage @@ -983,6 +1021,7 @@ self: { homepage = "https://github.com/frosch03/arrowVHDL"; description = "A library to generate Netlist code from Arrow descriptions"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AspectAG" = callPackage @@ -1000,6 +1039,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/bin/view/Center/AspectAG"; description = "Attribute Grammars in the form of an EDSL"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AttoBencode" = callPackage @@ -1039,6 +1079,7 @@ self: { homepage = "http://github.com/konn/AttoJSON"; description = "Simple lightweight JSON parser, generator & manipulator based on ByteString"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Attrac" = callPackage @@ -1056,6 +1097,7 @@ self: { homepage = "http://patch-tag.com/r/rhz/StrangeAttractors"; description = "Visualisation of Strange Attractors in 3-Dimensions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Aurochs" = callPackage @@ -1069,6 +1111,7 @@ self: { executableHaskellDepends = [ base containers parsec pretty ]; description = "Yet another parser generator for C/C++"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AutoForms" = callPackage @@ -1085,6 +1128,7 @@ self: { homepage = "http://autoforms.sourceforge.net/"; description = "GUI library based upon generic programming (SYB3)"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AvlTree" = callPackage @@ -1096,6 +1140,7 @@ self: { libraryHaskellDepends = [ base COrdering ]; description = "Balanced binary trees using the AVL algorithm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BASIC" = callPackage @@ -1107,6 +1152,7 @@ self: { libraryHaskellDepends = [ base containers llvm random timeit ]; description = "Embedded BASIC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BCMtools" = callPackage @@ -1133,6 +1179,7 @@ self: { ]; description = "Big Contact Map Tools"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BNFC" = callPackage @@ -1189,6 +1236,7 @@ self: { homepage = "http://pageperso.lif.univ-mrs.fr/~pierre-etienne.meunier/Baggins"; description = "Tools for self-assembly"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Bang" = callPackage @@ -1206,6 +1254,7 @@ self: { homepage = "https://github.com/5outh/Bang/"; description = "A Drum Machine DSL for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Barracuda" = callPackage @@ -1235,6 +1284,7 @@ self: { homepage = "http://sep07.mroot.net/"; description = "An ad-hoc P2P chat program"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Befunge93" = callPackage @@ -1250,6 +1300,7 @@ self: { homepage = "http://coder.bsimmons.name/blog/2010/05/befunge-93-interpreter-on-hackage"; description = "An interpreter for the Befunge-93 Programming Language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BenchmarkHistory" = callPackage @@ -1296,6 +1347,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/BerkeleyDBXML"; description = "Berkeley DB XML binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) db; dbxml = null; inherit (pkgs) xercesc; xqilla = null;}; @@ -1323,6 +1375,7 @@ self: { homepage = "https://github.com/mchakravarty/BigPixel"; description = "Image editor for pixel art"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Binpack" = callPackage @@ -1357,6 +1410,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Base library for bioinformatics"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseBlast" = callPackage @@ -1369,6 +1423,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "BLAST-related tools"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseDotP" = callPackage @@ -1381,6 +1436,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Vienna / DotBracket / ExtSS parsers"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseFR3D" = callPackage @@ -1398,6 +1454,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Importer for FR3D resources"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseFasta" = callPackage @@ -1418,6 +1475,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "conduit-based FASTA parser"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseInfernal" = callPackage @@ -1439,6 +1497,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Infernal data structures and tools"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseMAF" = callPackage @@ -1451,6 +1510,30 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Multiple Alignment Format"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "BiobaseNewick" = callPackage + ({ mkDerivation, aeson, attoparsec, base, binary, cereal + , cereal-text, containers, fgl, ForestStructures, QuickCheck + , test-framework, test-framework-quickcheck2, test-framework-th + , text, text-binary, vector + }: + mkDerivation { + pname = "BiobaseNewick"; + version = "0.0.0.1"; + sha256 = "ba1cae7e21ab56164d5b5aa800e007f359eb24ab923df0ec31c7c94fc4ecf047"; + libraryHaskellDepends = [ + aeson attoparsec base binary cereal cereal-text containers fgl + ForestStructures QuickCheck text text-binary vector + ]; + testHaskellDepends = [ + aeson base binary cereal QuickCheck test-framework + test-framework-quickcheck2 test-framework-th + ]; + homepage = "https://github.com/choener/BiobaseNewick"; + description = "Newick file format parser"; + license = stdenv.lib.licenses.bsd3; }) {}; "BiobaseTrainingData" = callPackage @@ -1472,6 +1555,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "RNA folding training data"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseTurner" = callPackage @@ -1490,6 +1574,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Import Turner RNA parameters"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseTypes" = callPackage @@ -1515,6 +1600,7 @@ self: { homepage = "https://github.com/choener/BiobaseTypes"; description = "Collection of types for bioinformatics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseVienna" = callPackage @@ -1531,6 +1617,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Import Vienna energy parameters"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseXNA" = callPackage @@ -1556,6 +1643,7 @@ self: { homepage = "https://github.com/choener/BiobaseXNA"; description = "Efficient RNA/DNA representations"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BirdPP" = callPackage @@ -1570,6 +1658,7 @@ self: { jailbreak = true; description = "A preprocessor for Bird-style Literate Haskell comments with Haddock markup"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BitSyntax" = callPackage @@ -1596,6 +1685,7 @@ self: { homepage = "http://bitbucket.org/jetxee/hs-bitly/"; description = "A library to access bit.ly URL shortener."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BlastHTTP_1_0_1" = callPackage @@ -1656,6 +1746,7 @@ self: { homepage = "http://www.cs.york.ac.uk/fp/darcs/Blobs/"; description = "Diagram editor"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BlogLiterately_0_7_1_7" = callPackage @@ -1795,7 +1886,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "BlogLiterately" = callPackage + "BlogLiterately_0_8_1_5" = callPackage ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs , containers, data-default, directory, filepath, HaXml, haxr , highlighting-kate, hscolour, lens, mtl, pandoc, pandoc-citeproc @@ -1818,6 +1909,32 @@ self: { homepage = "http://byorgey.wordpress.com/blogliterately/"; description = "A tool for posting Haskelly articles to blogs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "BlogLiterately" = callPackage + ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs + , containers, data-default, directory, filepath, HaXml, haxr + , highlighting-kate, hscolour, lens, mtl, pandoc, pandoc-citeproc + , pandoc-types, parsec, process, split, strict, temporary + , transformers + }: + mkDerivation { + pname = "BlogLiterately"; + version = "0.8.1.6"; + sha256 = "924b9fca47100cb02d3eb37d1f5aff18d519db5315bbcd5c812b9420efa208c7"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base blaze-html bool-extras bytestring cmdargs containers + data-default directory filepath HaXml haxr highlighting-kate + hscolour lens mtl pandoc pandoc-citeproc pandoc-types parsec + process split strict temporary transformers + ]; + executableHaskellDepends = [ base cmdargs ]; + homepage = "http://byorgey.wordpress.com/blogliterately/"; + description = "A tool for posting Haskelly articles to blogs"; + license = "GPL"; }) {}; "BlogLiterately-diagrams_0_1_4_3" = callPackage @@ -1883,6 +2000,28 @@ self: { executableHaskellDepends = [ base BlogLiterately ]; description = "Include images in blog posts with inline diagrams code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + }) {}; + + "BlogLiterately-diagrams_0_2_0_3" = callPackage + ({ mkDerivation, base, BlogLiterately, containers, diagrams-builder + , diagrams-lib, diagrams-rasterific, directory, filepath + , JuicyPixels, pandoc, safe + }: + mkDerivation { + pname = "BlogLiterately-diagrams"; + version = "0.2.0.3"; + sha256 = "a7aeaa8154c62fb6e64f661c34bc28f35b02ec5a8d87f6100a8d945b59db82c1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base BlogLiterately containers diagrams-builder diagrams-lib + diagrams-rasterific directory filepath JuicyPixels pandoc safe + ]; + executableHaskellDepends = [ base BlogLiterately ]; + description = "Include images in blog posts with inline diagrams code"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BluePrintCSS" = callPackage @@ -1907,6 +2046,7 @@ self: { homepage = "http://github.com/gcross/Blueprint"; description = "Preview of a new build system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Bookshelf" = callPackage @@ -1967,6 +2107,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Bravo"; description = "Static text template generation library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BufferedSocket" = callPackage @@ -2004,6 +2145,7 @@ self: { homepage = "http://github.com/michaelxavier/Buster"; description = "Hits a set of urls periodically to bust caches"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CBOR" = callPackage @@ -2025,6 +2167,7 @@ self: { homepage = "https://github.com/orclev/CBOR"; description = "Encode/Decode values to/from CBOR"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CC-delcont" = callPackage @@ -2037,6 +2180,7 @@ self: { homepage = "http://code.haskell.org/~dolio/CC-delcont"; description = "Delimited continuations and dynamically scoped variables"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CC-delcont-alt" = callPackage @@ -2054,6 +2198,7 @@ self: { doHaddock = false; description = "Three new monad transformers for multi-prompt delimited control"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CC-delcont-cxe" = callPackage @@ -2065,6 +2210,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad transformers for multi-prompt delimited control"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CC-delcont-exc" = callPackage @@ -2076,6 +2222,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad transformers for multi-prompt delimited control"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CC-delcont-ref" = callPackage @@ -2087,6 +2234,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad transformers for multi-prompt delimited control using refercence cells"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CC-delcont-ref-tf" = callPackage @@ -2098,6 +2246,7 @@ self: { libraryHaskellDepends = [ base ref-tf transformers ]; description = "A monad transformers for multi-prompt delimited control using refercence cells"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CCA" = callPackage @@ -2147,6 +2296,7 @@ self: { homepage = "http://www.zonetora.co.uk/clase/"; description = "Cursor Library for A Structured Editor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CLI" = callPackage @@ -2180,6 +2330,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/software/cmcompare/"; description = "Infernal covariance model comparison"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CMQ" = callPackage @@ -2208,6 +2359,7 @@ self: { libraryHaskellDepends = [ base ]; description = "An algebraic data type similar to Prelude Ordering"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CPBrainfuck" = callPackage @@ -2221,6 +2373,7 @@ self: { executableHaskellDepends = [ base haskell98 ]; description = "A simple Brainfuck interpretter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CPL" = callPackage @@ -2264,6 +2417,7 @@ self: { jailbreak = true; description = "Firing rules semantic of CSPM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CSPM-Frontend" = callPackage @@ -2341,6 +2495,7 @@ self: { jailbreak = true; description = "cspm command line tool for analyzing CSPM specifications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CTRex" = callPackage @@ -2387,6 +2542,7 @@ self: { homepage = "http://aleator.github.com/CV/"; description = "OpenCV based machine vision library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {opencv_calib3d = null; opencv_contrib = null; opencv_core = null; opencv_features2d = null; opencv_flann = null; opencv_gpu = null; opencv_highgui = null; opencv_imgproc = null; @@ -2575,6 +2731,7 @@ self: { HUnit old-time process QuickCheck regex-posix test-framework test-framework-hunit test-framework-quickcheck2 unix ]; + doCheck = false; homepage = "http://www.haskell.org/cabal/"; description = "A framework for packaging Haskell software"; license = stdenv.lib.licenses.bsd3; @@ -2639,6 +2796,7 @@ self: { homepage = "https://github.com/Icelandjack/Capabilities"; description = "Separate and contain effects of IO monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Cardinality" = callPackage @@ -2703,6 +2861,7 @@ self: { homepage = "http://github.com/rampion/Cascade"; description = "Playing with reified categorical composition"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Catana" = callPackage @@ -2714,6 +2873,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad for complex manipulation of a stream"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ChannelT" = callPackage @@ -2804,7 +2964,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Chart" = callPackage + "Chart_1_5_4" = callPackage ({ mkDerivation, array, base, colour, data-default-class, lens, mtl , old-locale, operational, time, vector }: @@ -2819,9 +2979,10 @@ self: { homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "A library for generating 2D Charts and Plots"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Chart_1_6" = callPackage + "Chart" = callPackage ({ mkDerivation, array, base, colour, data-default-class, lens, mtl , old-locale, operational, time, vector }: @@ -2836,7 +2997,6 @@ self: { homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "A library for generating 2D Charts and Plots"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Chart-cairo_1_5_1" = callPackage @@ -2858,7 +3018,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Chart-cairo" = callPackage + "Chart-cairo_1_5_4" = callPackage ({ mkDerivation, array, base, cairo, Chart, colour , data-default-class, lens, mtl, old-locale, operational, time }: @@ -2870,12 +3030,14 @@ self: { array base cairo Chart colour data-default-class lens mtl old-locale operational time ]; + jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Cairo backend for Charts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Chart-cairo_1_6" = callPackage + "Chart-cairo" = callPackage ({ mkDerivation, array, base, cairo, Chart, colour , data-default-class, lens, mtl, old-locale, operational, time }: @@ -2887,11 +3049,9 @@ self: { array base cairo Chart colour data-default-class lens mtl old-locale operational time ]; - jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Cairo backend for Charts"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Chart-diagrams_1_3_2" = callPackage @@ -2961,7 +3121,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Chart-diagrams" = callPackage + "Chart-diagrams_1_5_4" = callPackage ({ mkDerivation, base, blaze-markup, bytestring, Chart, colour , containers, data-default-class, diagrams-core, diagrams-lib , diagrams-postscript, diagrams-svg, lens, lucid-svg, mtl @@ -2979,12 +3139,14 @@ self: { diagrams-svg lens lucid-svg mtl old-locale operational SVGFonts text time ]; + jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Diagrams backend for Charts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Chart-diagrams_1_6" = callPackage + "Chart-diagrams" = callPackage ({ mkDerivation, base, blaze-markup, bytestring, Chart, colour , containers, data-default-class, diagrams-core, diagrams-lib , diagrams-postscript, diagrams-svg, lens, lucid-svg, mtl @@ -3000,11 +3162,9 @@ self: { diagrams-svg lens lucid-svg mtl old-locale operational SVGFonts text time ]; - jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Diagrams backend for Charts"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Chart-gtk" = callPackage @@ -3019,10 +3179,10 @@ self: { array base cairo Chart Chart-cairo colour data-default-class gtk mtl old-locale time ]; - jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Utility functions for using the chart library with GTK"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Chart-simple" = callPackage @@ -3041,6 +3201,7 @@ self: { homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "A wrapper for the chart library to assist with basic plots (Deprecated - use the Easy module instead)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ChasingBottoms_1_3_0_8" = callPackage @@ -3204,6 +3365,7 @@ self: { homepage = "https://github.com/ckkashyap/Chitra"; description = "A platform independent mechanism to render graphics using vnc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ChristmasTree" = callPackage @@ -3221,6 +3383,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/bin/view/Center/TTTAS"; description = "Alternative approach of 'read' that composes grammars instead of parsers"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CirruParser" = callPackage @@ -3246,6 +3409,7 @@ self: { homepage = "http://wiki.portal.chalmers.se/cse/pmwiki.php/FP/ClassLaws"; description = "Stating and checking laws for type class methods"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ClassyPrelude" = callPackage @@ -3257,6 +3421,7 @@ self: { libraryHaskellDepends = [ base strict ]; description = "Prelude replacement using classes instead of concrete types where reasonable"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Clean" = callPackage @@ -3269,6 +3434,7 @@ self: { jailbreak = true; description = "A light, clean and powerful utility library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Clipboard" = callPackage @@ -3317,6 +3483,7 @@ self: { homepage = "http://iki.fi/matti.niemenmaa/coadjute/"; description = "A generic build tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Codec-Compression-LZF" = callPackage @@ -3341,6 +3508,7 @@ self: { librarySystemDepends = [ libdevil ]; description = "An FFI interface to the DevIL library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libdevil;}; "Combinatorrent" = callPackage @@ -3365,6 +3533,7 @@ self: { ]; description = "A concurrent bittorrent client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Command" = callPackage @@ -3401,6 +3570,7 @@ self: { homepage = "https://github.com/sordina/Commando"; description = "Watch some files; Rerun a command"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ComonadSheet" = callPackage @@ -3439,6 +3609,7 @@ self: { homepage = "http://alkalisoftware.net"; description = "Concurrent utilities"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Concurrential" = callPackage @@ -3475,6 +3646,7 @@ self: { homepage = "https://github.com/klangner/Condor"; description = "Information retrieval library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ConfigFile" = callPackage @@ -3513,6 +3685,7 @@ self: { libraryHaskellDepends = [ base Dangerous MissingH mtl parsec ]; description = "Parse config files"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Configurable" = callPackage @@ -3565,6 +3738,7 @@ self: { jailbreak = true; description = "Repackages standard type classes with the ConstraintKinds extension"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Consumer" = callPackage @@ -3577,6 +3751,7 @@ self: { homepage = "http://src.seereason.com/ghc6103/haskell-consumer"; description = "A monad and monad transformer for consuming streams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ContArrow" = callPackage @@ -3613,6 +3788,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/~oc/contracts.html"; description = "Practical typed lazy contracts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Control-Engine" = callPackage @@ -3646,6 +3822,7 @@ self: { homepage = "https://github.com/kevinbackhouse/Control-Monad-MultiPass"; description = "A Library for Writing Multi-Pass Algorithms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Control-Monad-ST2" = callPackage @@ -3664,6 +3841,7 @@ self: { homepage = "https://github.com/kevinbackhouse/Control-Monad-ST2"; description = "A variation on the ST monad with two type parameters"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CoreDump" = callPackage @@ -3707,6 +3885,7 @@ self: { homepage = "https://github.com/reinerp/CoreFoundation"; description = "Bindings to Mac OSX's CoreFoundation framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Coroutine" = callPackage @@ -3718,6 +3897,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Type-safe coroutines using lightweight session types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CouchDB" = callPackage @@ -3739,6 +3919,7 @@ self: { homepage = "http://github.com/hsenag/haskell-couchdb/"; description = "CouchDB interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Craft3e" = callPackage @@ -3757,6 +3938,7 @@ self: { homepage = "http://www.haskellcraft.com/"; description = "Code for Haskell: the Craft of Functional Programming, 3rd ed"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Crypto" = callPackage @@ -3805,6 +3987,7 @@ self: { ]; description = "CurryDB: In-memory Key/Value Database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DAG-Tournament" = callPackage @@ -3822,6 +4005,7 @@ self: { ]; description = "Real-Time Game Tournament Evaluator"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DAV_1_0_3" = callPackage @@ -3971,6 +4155,7 @@ self: { homepage = "https://github.com/alexkay/hdbus"; description = "D-Bus bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DCFL" = callPackage @@ -4017,6 +4202,7 @@ self: { jailbreak = true; description = "DOM Level 2 bindings for the WebBits package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DP" = callPackage @@ -4034,6 +4220,7 @@ self: { homepage = "http://github.com/srush/SemiRings/tree/master"; description = "Pragmatic framework for dynamic programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DPM" = callPackage @@ -4058,6 +4245,7 @@ self: { jailbreak = true; description = "Darcs Patch Manager"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DRBG_0_5_4" = callPackage @@ -4181,6 +4369,7 @@ self: { ]; description = "A framework for using STM within distributed systems"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DTC" = callPackage @@ -4193,6 +4382,7 @@ self: { homepage = "https://github.com/Daniel-Diaz/DTC"; description = "Data To Class transformation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Dangerous" = callPackage @@ -4204,6 +4394,7 @@ self: { libraryHaskellDepends = [ base MaybeT mtl ]; description = "Monads for operations that can exit early and produce warnings"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Dao" = callPackage @@ -4234,6 +4425,7 @@ self: { ]; description = "Dao is meta programming language with its own built-in interpreted language, designed with artificial intelligence applications in mind"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DarcsHelpers" = callPackage @@ -4246,6 +4438,7 @@ self: { jailbreak = true; description = "Code used by Patch-Shack that seemed sensible to open for reusability"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Data-Hash-Consistent" = callPackage @@ -4273,6 +4466,7 @@ self: { libraryHaskellDepends = [ base bytestring unix ]; description = "Ropes, an alternative to (Byte)Strings"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DataTreeView" = callPackage @@ -4290,6 +4484,7 @@ self: { ]; description = "A GTK widget for displaying arbitrary Data.Data.Data instances"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Deadpan-DDP" = callPackage @@ -4360,6 +4555,7 @@ self: { homepage = "http://page.mi.fu-berlin.de/~aneumann/decisiontree.html"; description = "A very simple implementation of decision trees for discrete attributes"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DeepArrow" = callPackage @@ -4391,6 +4587,7 @@ self: { homepage = "http://github.com/yairchu/defend/tree"; description = "A simple RTS game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DescriptiveKeys" = callPackage @@ -4419,6 +4616,7 @@ self: { ]; description = "Processing Real-time event streams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Diff_0_3_0" = callPackage @@ -4475,6 +4673,7 @@ self: { homepage = "https://github.com/dillonhuff/DifferenceLogic"; description = "A theory solver for conjunctions of literals in difference logic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DifferentialEvolution" = callPackage @@ -4492,6 +4691,7 @@ self: { homepage = "http://yousource.it.jyu.fi/optimization-with-haskell"; description = "Global optimization using Differential Evolution"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Digit" = callPackage @@ -4539,6 +4739,7 @@ self: { libraryHaskellDepends = [ base ]; description = "An n-dimensional hash using Morton numbers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DirectSound" = callPackage @@ -4573,6 +4774,7 @@ self: { homepage = "http://distract.wellquite.org/"; description = "Distributed Bug Tracking System"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DiscussionSupportSystem" = callPackage @@ -4676,6 +4878,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Frameshift-aware alignment of protein sequences with DNA sequences"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DocTest" = callPackage @@ -4695,6 +4898,7 @@ self: { homepage = "http://haskell.org/haskellwiki/DocTest"; description = "Test interactive Haskell examples"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Docs" = callPackage @@ -4727,6 +4931,7 @@ self: { homepage = "http://haskell.di.uminho.pt/wiki/DrHylo"; description = "A tool for deriving hylomorphisms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DrIFT" = callPackage @@ -4744,6 +4949,7 @@ self: { homepage = "http://repetae.net/computer/haskell/DrIFT/"; description = "Program to derive type class instances"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DrIFT-cabalized" = callPackage @@ -4758,6 +4964,7 @@ self: { homepage = "http://repetae.net/computer/haskell/DrIFT/"; description = "Program to derive type class instances"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Dung" = callPackage @@ -4797,6 +5004,7 @@ self: { ]; description = "Polymorphic protocol engine"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Dust-crypto" = callPackage @@ -4823,6 +5031,7 @@ self: { ]; description = "Cryptographic operations"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; "Dust-tools" = callPackage @@ -4847,6 +5056,7 @@ self: { ]; description = "Network filtering exploration tools"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Dust-tools-pcap" = callPackage @@ -4868,6 +5078,7 @@ self: { ]; description = "Network filtering exploration tools that rely on pcap"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DynamicTimeWarp" = callPackage @@ -4887,6 +5098,7 @@ self: { homepage = "https://github.com/zombiecalypse/DynamicTimeWarp"; description = "Dynamic time warping of sequences"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DysFRP" = callPackage @@ -4913,6 +5125,7 @@ self: { homepage = "https://github.com/tilk/DysFRP"; description = "dysFunctional Reactive Programming on Cairo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DysFRP-Craftwerk" = callPackage @@ -4930,6 +5143,7 @@ self: { homepage = "https://github.com/tilk/DysFRP"; description = "dysFunctional Reactive Programming on Craftwerk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "EEConfig" = callPackage @@ -4941,6 +5155,7 @@ self: { libraryHaskellDepends = [ base containers ]; description = "ExtremlyEasyConfig - Extremly Simple parser for config files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Earley_0_9_0" = callPackage @@ -4980,6 +5195,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "Earley_0_11_0_0" = callPackage + ({ mkDerivation, base, ListLike, tasty, tasty-hunit + , tasty-quickcheck, unordered-containers + }: + mkDerivation { + pname = "Earley"; + version = "0.11.0.0"; + sha256 = "a8ad11ac5a263752180fb25a9d1accd21855f61423086bdbf223bd3fb2192126"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base ListLike ]; + executableHaskellDepends = [ base unordered-containers ]; + testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck ]; + description = "Parsing all context-free grammars using Earley's algorithm"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "Ebnf2ps" = callPackage ({ mkDerivation, array, base, containers, directory, happy , old-time, unix @@ -5044,6 +5277,7 @@ self: { homepage = "http://github.com/bspaans/EditTimeReport"; description = "Query language and report generator for edit logs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "EitherT" = callPackage @@ -5062,6 +5296,7 @@ self: { jailbreak = true; description = "EitherT monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Elm" = callPackage @@ -5119,6 +5354,7 @@ self: { homepage = "http://www.muitovar.com"; description = "derives heuristic rules from nominal data"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Encode" = callPackage @@ -5134,6 +5370,7 @@ self: { homepage = "http://otakar-smrz.users.sf.net/"; description = "Encoding character data"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "EntrezHTTP" = callPackage @@ -5175,6 +5412,7 @@ self: { jailbreak = true; description = "More general IntMap replacement"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Eq" = callPackage @@ -5194,6 +5432,7 @@ self: { jailbreak = true; description = "Render math formula in ASCII, and perform some simplifications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "EqualitySolver" = callPackage @@ -5229,6 +5468,7 @@ self: { homepage = "http://cielonegro.org/EsounD.html"; description = "Type-safe bindings to EsounD (ESD; Enlightened Sound Daemon)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "EstProgress" = callPackage @@ -5266,6 +5506,7 @@ self: { homepage = "http://verement.github.io/etamoo"; description = "A new implementation of the LambdaMOO server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) pcre;}; "Etage" = callPackage @@ -5282,6 +5523,7 @@ self: { homepage = "http://mitar.tnode.com"; description = "A general data-flow framework"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Etage-Graph" = callPackage @@ -5302,6 +5544,7 @@ self: { homepage = "http://mitar.tnode.com"; description = "Data-flow based graph algorithms"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Eternal10Seconds" = callPackage @@ -5316,6 +5559,7 @@ self: { homepage = "http://www.kryozahiro.org/eternal10/"; description = "A 2-D shooting game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Etherbunny" = callPackage @@ -5338,6 +5582,7 @@ self: { homepage = "http://etherbunny.anytini.com/"; description = "A network analysis toolkit for Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libpcap;}; "EuroIT" = callPackage @@ -5369,6 +5614,7 @@ self: { homepage = "http://haskell.cs.yale.edu/"; description = "Library for computer music research and education"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "EventSocket" = callPackage @@ -5384,6 +5630,7 @@ self: { ]; description = "Interfaces with FreeSwitch Event Socket"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Extra" = callPackage @@ -5430,6 +5677,7 @@ self: { jailbreak = true; description = "Compose music"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FM-SBLEX" = callPackage @@ -5444,6 +5692,7 @@ self: { homepage = "http://spraakbanken.gu.se/eng/research/swefn/fm-sblex"; description = "A set of computational morphology tools for Swedish diachronic lexicons"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FModExRaw" = callPackage @@ -5457,6 +5706,7 @@ self: { homepage = "https://github.com/skypers/hsFModEx"; description = "The Haskell FModEx raw API"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {fmodex64 = null;}; "FPretty" = callPackage @@ -5481,6 +5731,7 @@ self: { librarySystemDepends = [ ftgl ]; description = "Portable TrueType font rendering for OpenGL using the Freetype2 library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) ftgl;}; "FTGL-bytestring" = callPackage @@ -5497,6 +5748,7 @@ self: { librarySystemDepends = [ ftgl ]; description = "Portable TrueType font rendering for OpenGL using the Freetype2 library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) ftgl;}; "FTPLine" = callPackage @@ -5542,6 +5794,7 @@ self: { libraryHaskellDepends = [ base base-unicode-symbols mmtl ]; description = "Failure Monad Transformer"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FastxPipe" = callPackage @@ -5622,6 +5875,7 @@ self: { homepage = "http://www.scannedinavian.com/"; description = "Annotate ps and pdf documents"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FerryCore" = callPackage @@ -5638,6 +5892,7 @@ self: { ]; description = "Ferry Core Components"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Feval" = callPackage @@ -5670,6 +5925,7 @@ self: { homepage = "http://haskell.org/haskellwiki/FieldTrip"; description = "Functional 3D"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FileManip" = callPackage @@ -5685,6 +5941,7 @@ self: { ]; description = "Expressive file and directory manipulation for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FileManipCompat" = callPackage @@ -5700,6 +5957,7 @@ self: { ]; description = "Expressive file and directory manipulation for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FilePather" = callPackage @@ -5734,6 +5992,7 @@ self: { homepage = "http://ddiaz.asofilak.es/packages/FileSystem"; description = "File system data structure and monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Finance-Quote-Yahoo" = callPackage @@ -5750,6 +6009,7 @@ self: { homepage = "http://www.b7j0c.org/stuff/haskell-yquote.xhtml"; description = "Obtain quote data from finance.yahoo.com"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Finance-Treasury" = callPackage @@ -5767,6 +6027,7 @@ self: { homepage = "http://www.ecoin.net/haskell/Finance-Treasury.html"; description = "Obtain Treasury yield curve data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FindBin" = callPackage @@ -5790,6 +6051,7 @@ self: { libraryHaskellDepends = [ base haskell98 ]; description = "A finite map implementation, derived from the paper: Efficient sets: a balancing act, S. Adams, Journal of functional programming 3(4) Oct 1993, pp553-562"; license = stdenv.lib.licenses.bsdOriginal; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FirstOrderTheory" = callPackage @@ -5802,6 +6064,7 @@ self: { jailbreak = true; description = "Grammar and typeclass for first order theories"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FixedPoint-simple" = callPackage @@ -5832,6 +6095,7 @@ self: { homepage = "http://www.flippac.org/projects/flippi/"; description = "Wiki"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Focus" = callPackage @@ -5978,6 +6242,28 @@ self: { homepage = "http://www.ict.kth.se/forsyde/"; description = "ForSyDe's Haskell-embedded Domain Specific Language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ForestStructures" = callPackage + ({ mkDerivation, base, containers, fgl, QuickCheck, test-framework + , test-framework-quickcheck2, test-framework-th + , unordered-containers, vector, vector-th-unbox + }: + mkDerivation { + pname = "ForestStructures"; + version = "0.0.0.1"; + sha256 = "451e874ad1c2dda4923ffe773e4039387b85196b5985958e21535cdecc53d113"; + libraryHaskellDepends = [ + base containers fgl unordered-containers vector vector-th-unbox + ]; + testHaskellDepends = [ + base QuickCheck test-framework test-framework-quickcheck2 + test-framework-th + ]; + homepage = "https://github.com/choener/ForestStructures"; + description = "Tree- and forest structures"; + license = stdenv.lib.licenses.bsd3; }) {}; "ForkableT" = callPackage @@ -6000,8 +6286,8 @@ self: { }: mkDerivation { pname = "FormalGrammars"; - version = "0.2.1.1"; - sha256 = "a469d5c1400123c2888ede6aadb13af2a21f491c1f6ec9c0362042a6f4c146fc"; + version = "0.3.0.0"; + sha256 = "65ec8b4334748b18bb2a64606adf324c8cc12e192448b33cc7877cd66341171f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -6010,10 +6296,10 @@ self: { text transformers trifecta unordered-containers vector ]; executableHaskellDepends = [ ansi-wl-pprint base cmdargs ]; - jailbreak = true; homepage = "https://github.com/choener/FormalGrammars"; description = "(Context-free) grammars in formal language theory"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Foster" = callPackage @@ -6032,6 +6318,7 @@ self: { jailbreak = true; description = "Utilities to generate and solve puzzles"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FpMLv53" = callPackage @@ -6067,6 +6354,7 @@ self: { homepage = "https://github.com/TomSmeets/FractalArt"; description = "Generates colorful wallpapers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.xorg) libX11;}; "Fractaler" = callPackage @@ -6084,6 +6372,7 @@ self: { ]; jailbreak = true; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Frames" = callPackage @@ -6116,6 +6405,7 @@ self: { homepage = "http://personal.cis.strath.ac.uk/~conor/pub/Frank/"; description = "An experimental programming language with typed algebraic effects"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FreeTypeGL" = callPackage @@ -6130,6 +6420,7 @@ self: { jailbreak = true; description = "Loadable texture fonts for OpenGL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FunGEn" = callPackage @@ -6148,6 +6439,7 @@ self: { homepage = "http://joyful.com/fungen"; description = "A lightweight, cross-platform, OpenGL/GLUT-based game engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Fungi" = callPackage @@ -6222,6 +6514,7 @@ self: { homepage = "http://haskell.org/haskellwiki/GLFW"; description = "A Haskell binding for GLFW"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs.xorg) libX11; inherit (pkgs) mesa;}; "GLFW-OGL" = callPackage @@ -6235,6 +6528,7 @@ self: { homepage = "http://haskell.org/haskellwiki/GLFW-OGL"; description = "A binding for GLFW (OGL)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXrandr;}; "GLFW-b" = callPackage @@ -6253,6 +6547,7 @@ self: { doCheck = false; description = "Bindings to GLFW OpenGL library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GLFW-b-demo" = callPackage @@ -6271,6 +6566,7 @@ self: { jailbreak = true; description = "GLFW-b demo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GLFW-task" = callPackage @@ -6286,6 +6582,7 @@ self: { homepage = "http://github.com/ninegua/GLFW-task"; description = "GLFW utility functions to use together with monad-task"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GLHUI" = callPackage @@ -6298,6 +6595,7 @@ self: { librarySystemDepends = [ libX11 mesa ]; description = "Open OpenGL context windows in X11 with libX11"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs.xorg) libX11; inherit (pkgs) mesa;}; "GLM" = callPackage @@ -6340,6 +6638,7 @@ self: { homepage = "https://github.com/fiendfan1/GLMatrix"; description = "Utilities for working with OpenGL matrices"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GLURaw_1_4_0_1" = callPackage @@ -6432,6 +6731,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A raw binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; "GLUT_2_5_1_1" = callPackage @@ -6534,6 +6834,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A binding for the OpenGL Utility Toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; "GLUtil" = callPackage @@ -6552,6 +6853,7 @@ self: { jailbreak = true; description = "Miscellaneous OpenGL utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GPX" = callPackage @@ -6570,6 +6872,7 @@ self: { homepage = "https://github.com/tonymorris/geo-gpx"; description = "Parse GPX files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GPipe_2_1_5" = callPackage @@ -6623,6 +6926,7 @@ self: { homepage = "http://tobbebex.blogspot.se/"; description = "Typesafe functional GPU graphics programming"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GPipe-Collada" = callPackage @@ -6638,6 +6942,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GPipe"; description = "Load GPipe meshes from Collada files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GPipe-Examples" = callPackage @@ -6655,6 +6960,7 @@ self: { ]; description = "Examples for the GPipes package"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GPipe-GLFW_1_2_1" = callPackage @@ -6680,6 +6986,7 @@ self: { homepage = "https://github.com/plredmond/GPipe-GLFW"; description = "GLFW OpenGL context creation for GPipe"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GPipe-TextureLoad" = callPackage @@ -6692,6 +6999,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GPipe"; description = "Load GPipe textures from filesystem"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GTALib" = callPackage @@ -6712,6 +7020,7 @@ self: { homepage = "https://bitbucket.org/emoto/gtalib"; description = "A library for GTA programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Gamgine" = callPackage @@ -6732,6 +7041,7 @@ self: { jailbreak = true; description = "Some kind of game library or set of utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Ganymede" = callPackage @@ -6751,6 +7061,7 @@ self: { homepage = "https://github.com/BMeph/Ganymede"; description = "An Io interpreter in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GaussQuadIntegration" = callPackage @@ -6778,6 +7089,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GeBoP"; description = "Several games"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GenI" = callPackage @@ -6812,6 +7124,7 @@ self: { homepage = "http://projects.haskell.org/GenI"; description = "A natural language generator (specifically, an FB-LTAG surface realiser)"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GenSmsPdu" = callPackage @@ -6825,6 +7138,7 @@ self: { executableHaskellDepends = [ base haskell98 QuickCheck random ]; description = "Automatic SMS message generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Genbank" = callPackage @@ -6858,6 +7172,7 @@ self: { homepage = "http://afonso.xyz"; description = "A general TicTacToe game implementation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GenericPretty" = callPackage @@ -6899,6 +7214,7 @@ self: { homepage = "https://github.com/choener/GenussFold"; description = "MCFGs for Genus-1 RNA Pseudoknots"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GeoIp" = callPackage @@ -6910,6 +7226,7 @@ self: { libraryHaskellDepends = [ base bytestring bytestring-mmap syb ]; description = "Pure bindings for the MaxMind IP database"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GeocoderOpenCage" = callPackage @@ -6923,6 +7240,7 @@ self: { homepage = "https://github.com/juergenhah/Haskell-Geocoder-OpenCage.git"; description = "Geocoder and Reverse Geocoding Service Wrapper"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Geodetic" = callPackage @@ -6957,6 +7275,7 @@ self: { libraryHaskellDepends = [ base GeomPredicates ]; description = "Geometric predicates (Intel SSE)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GiST" = callPackage @@ -6975,8 +7294,8 @@ self: { ({ mkDerivation, base, directory, gtk3, process, temporary }: mkDerivation { pname = "Gifcurry"; - version = "0.1.0.6"; - sha256 = "73a6b620ced2f499d52563803fc5684d4470947713328afe347df63ce115772f"; + version = "0.1.1.0"; + sha256 = "21f72f6c440eec80cb2e7df3fc8ed65124b64ab45ba55b4adf5dfccdca0e257a"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -6985,6 +7304,7 @@ self: { homepage = "https://github.com/lettier/gifcurry"; description = "Create animated GIFs, overlaid with optional text, from video files"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GiveYouAHead" = callPackage @@ -7027,6 +7347,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Glome"; description = "Ray Tracing Library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GlomeVec" = callPackage @@ -7058,6 +7379,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Glome"; description = "SDL Frontend for Glome ray tracer"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GoogleChart" = callPackage @@ -7086,6 +7408,7 @@ self: { homepage = "https://github.com/favilo/GoogleDirections.git"; description = "Haskell Interface to Google Directions API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GoogleSB" = callPackage @@ -7101,6 +7424,7 @@ self: { ]; description = "Interface to Google Safe Browsing API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GoogleSuggest" = callPackage @@ -7128,6 +7452,7 @@ self: { ]; description = "Interface to Google Translate API"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GotoT-transformers" = callPackage @@ -7151,8 +7476,8 @@ self: { }: mkDerivation { pname = "GrammarProducts"; - version = "0.1.1.1"; - sha256 = "199c7ac4127330a4b19a769d92ac9cc102dd8b434dfff74d331e3b5e1881b065"; + version = "0.1.1.2"; + sha256 = "9023283298ad178efaf9ba965e7a0005ff41a8a01d2e0f581ed3c29e414f15a2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -7160,10 +7485,10 @@ self: { FormalGrammars lens newtype parsers PrimitiveArray semigroups template-haskell transformers trifecta ]; - jailbreak = true; homepage = "https://github.com/choener/GrammarProducts"; description = "Grammar products and higher-dimensional grammars"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Graph500" = callPackage @@ -7182,6 +7507,7 @@ self: { executableHaskellDepends = [ array base mtl ]; description = "Graph500 benchmark-related definitions and data set generator"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GraphHammer" = callPackage @@ -7196,6 +7522,7 @@ self: { ]; description = "GraphHammer Haskell graph analyses framework inspired by STINGER"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GraphHammer-examples" = callPackage @@ -7213,6 +7540,7 @@ self: { ]; description = "Test harness for TriangleCount analysis"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GraphSCC" = callPackage @@ -7242,6 +7570,7 @@ self: { jailbreak = true; description = "Graph-Theoretic Analysis library"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Grempa" = callPackage @@ -7257,6 +7586,7 @@ self: { ]; description = "Embedded grammar DSL and LALR parser generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GroteTrap" = callPackage @@ -7293,6 +7623,7 @@ self: { homepage = "http://coiffier.net/projects/grow.html"; description = "A declarative make-like interpreter"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GrowlNotify" = callPackage @@ -7313,6 +7644,7 @@ self: { ]; description = "Notification utility for Growl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Gtk2hsGenerics" = callPackage @@ -7328,6 +7660,7 @@ self: { ]; description = "Convenience functions to extend Gtk2hs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GtkGLTV" = callPackage @@ -7343,6 +7676,7 @@ self: { ]; description = "OpenGL support for Gtk-based GUIs for Tangible Values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GtkTV" = callPackage @@ -7357,6 +7691,7 @@ self: { homepage = "http://haskell.org/haskellwiki/GtkTV"; description = "Gtk-based GUIs for Tangible Values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GuiHaskell" = callPackage @@ -7376,6 +7711,7 @@ self: { homepage = "http://www-users.cs.york.ac.uk/~ndm/guihaskell/"; description = "A graphical REPL and development environment for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GuiTV" = callPackage @@ -7388,6 +7724,7 @@ self: { homepage = "http://haskell.org/haskellwiki/GuiTV"; description = "GUIs for Tangible Values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "H" = callPackage @@ -7412,6 +7749,7 @@ self: { doCheck = false; description = "The Haskell/R mixed programming environment"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-linux" ]; }) {}; "HARM" = callPackage @@ -7427,6 +7765,7 @@ self: { homepage = "http://www.engr.uconn.edu/~jeffm/Classes/CSE240-Spring-2001/Lectures/index.html"; description = "A simple ARM emulator in haskell"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppS-Data" = callPackage @@ -7444,6 +7783,7 @@ self: { jailbreak = true; description = "HAppS data manipulation libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppS-IxSet" = callPackage @@ -7459,6 +7799,7 @@ self: { syb-with-class template-haskell ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppS-Server" = callPackage @@ -7480,6 +7821,7 @@ self: { jailbreak = true; description = "Web related tools and services"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppS-State" = callPackage @@ -7500,6 +7842,7 @@ self: { jailbreak = true; description = "Event-based distributed state"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppS-Util" = callPackage @@ -7516,6 +7859,7 @@ self: { ]; description = "Web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppSHelpers" = callPackage @@ -7545,6 +7889,7 @@ self: { homepage = "http://github.com/m4dc4p/hcl/tree/master"; description = "High-level library for building command line interfaces"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HCard" = callPackage @@ -7559,6 +7904,7 @@ self: { homepage = "http://patch-tag.com/publicrepos/HCard"; description = "A library for implementing a Deck of Cards"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HCodecs" = callPackage @@ -7605,6 +7951,7 @@ self: { homepage = "http://github.com/bos/hdbc-mysql"; description = "MySQL driver for HDBC"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HDBC-odbc" = callPackage @@ -7703,6 +8050,7 @@ self: { homepage = "http://vis.renci.org/jeff/pfs"; description = "Utilities for reading, manipulating, and writing HDR images"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) pfstools;}; "HERA" = callPackage @@ -7714,6 +8062,7 @@ self: { libraryHaskellDepends = [ base ]; librarySystemDepends = [ mpfr ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) mpfr;}; "HFrequencyQueue" = callPackage @@ -7727,6 +8076,7 @@ self: { homepage = "https://github.com/Bellaz/HfrequencyList"; description = "A Queue with a random (weighted) pick function"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HFuse" = callPackage @@ -7745,6 +8095,7 @@ self: { homepage = "https://github.com/m15k/hfuse"; description = "HFuse is a binding for the Linux FUSE library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) fuse;}; "HGL" = callPackage @@ -7775,6 +8126,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {Urho3D = null; hgamer3d062 = null;}; "HGamer3D-API" = callPackage @@ -7793,6 +8145,7 @@ self: { homepage = "http://www.althainz.de/HGamer3D.html"; description = "Library to enable 3D game development for Haskell - API"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Audio" = callPackage @@ -7809,6 +8162,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer - Audio Functionality"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Bullet-Binding" = callPackage @@ -7821,6 +8175,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Windows Game Engine for the Haskell Programmer - Bullet Bindings"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-CAudio-Binding" = callPackage @@ -7836,6 +8191,7 @@ self: { homepage = "http://www.althainz.de/HGamer3D.html"; description = "Library to enable 3D game development for Haskell - cAudio Bindings"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {HGamer3DCAudio015 = null;}; "HGamer3D-CEGUI-Binding" = callPackage @@ -7853,6 +8209,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "A Toolset for the Haskell Game Programmer - CEGUI Bindings"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {CEGUIBase = null; CEGUIOgreRenderer = null; hg3dcegui050 = null;}; @@ -7871,6 +8228,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer - Game Engine and Utilities"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Data" = callPackage @@ -7887,6 +8245,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer - Data Definitions"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Enet-Binding" = callPackage @@ -7900,6 +8259,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Enet Binding for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) enet; hg3denet050 = null;}; "HGamer3D-GUI" = callPackage @@ -7917,6 +8277,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "GUI Functionality for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Graphics3D" = callPackage @@ -7937,6 +8298,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer - 3D Graphics Functionality"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-InputSystem" = callPackage @@ -7954,6 +8316,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Joystick, Mouse and Keyboard Functionality for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Network" = callPackage @@ -7970,6 +8333,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Networking Functionality for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-OIS-Binding" = callPackage @@ -7988,6 +8352,7 @@ self: { homepage = "http://www.althainz.de/HGamer3D.html"; description = "Library to enable 3D game development for Haskell - OIS Bindings"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {HGamer3DOIS015 = null;}; "HGamer3D-Ogre-Binding" = callPackage @@ -8007,6 +8372,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Ogre Binding for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {OgreMain = null; OgrePaging = null; OgreProperty = null; OgreRTShaderSystem = null; OgreTerrain = null; hg3dogre050 = null;}; @@ -8026,6 +8392,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "SDL2 Binding for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) SDL2; hg3dsdl2050 = null; inherit (pkgs.xorg) libX11;}; @@ -8044,6 +8411,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "SFML Binding for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {hg3dsfml050 = null; sfml-audio = null; sfml-network = null; sfml-system = null; sfml-window = null;}; @@ -8061,6 +8429,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Windowing and Event Functionality for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Wire" = callPackage @@ -8080,6 +8449,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Wire Functionality for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGraphStorage" = callPackage @@ -8105,6 +8475,7 @@ self: { homepage = "https://github.com/JPMoresmau/HGraphStorage"; description = "Graph database stored on disk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HHDL" = callPackage @@ -8118,6 +8489,7 @@ self: { homepage = "http://thesz.mskhug.ru/svn/hhdl/hackage/hhdl/"; description = "Hardware Description Language embedded in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HJScript" = callPackage @@ -8153,6 +8525,7 @@ self: { homepage = "https://github.com/JPMoresmau/HJVM"; description = "A library to create a Java Virtual Machine and manipulate Java objects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {jvm = null;}; "HJavaScript" = callPackage @@ -8183,6 +8556,7 @@ self: { homepage = "http://github.com/mikeizbicki/HLearn/"; description = "Algebraic foundation for homomorphic learning"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HLearn-approximation" = callPackage @@ -8199,6 +8573,7 @@ self: { HLearn-datastructures HLearn-distributions list-extras vector ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HLearn-classification" = callPackage @@ -8221,6 +8596,7 @@ self: { jailbreak = true; homepage = "http://github.com/mikeizbicki/HLearn/"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HLearn-datastructures" = callPackage @@ -8236,6 +8612,7 @@ self: { MonadRandom QuickCheck vector ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HLearn-distributions" = callPackage @@ -8258,6 +8635,7 @@ self: { homepage = "http://github.com/mikeizbicki/HLearn/"; description = "Distributions for use with the HLearn library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HList_0_4_1_0" = callPackage @@ -8334,6 +8712,7 @@ self: { homepage = "http://www.pontarius.org/sub-projects/hlogger/"; description = "Simple, concurrent and easy-to-use logging library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HMM" = callPackage @@ -8345,6 +8724,7 @@ self: { homepage = "https://github.com/mikeizbicki/hmm"; description = "A hidden markov model library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HMap" = callPackage @@ -8361,6 +8741,7 @@ self: { homepage = "https://github.com/atzeus/HMap"; description = "Fast heterogeneous maps and unconstrained typeable like functionality"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HNM" = callPackage @@ -8383,6 +8764,7 @@ self: { homepage = "http://sert.homedns.org/hs/hnm/"; description = "Happy Network Manager"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HODE" = callPackage @@ -8395,6 +8777,7 @@ self: { librarySystemDepends = [ ode ]; description = "Binding to libODE"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ode;}; "HOpenCV" = callPackage @@ -8411,6 +8794,7 @@ self: { executablePkgconfigDepends = [ opencv ]; description = "A binding for the OpenCV computer vision library"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) opencv;}; "HPDF" = callPackage @@ -8453,6 +8837,7 @@ self: { homepage = "http://github.com/solidsnack/HPath"; description = "Extract Haskell declarations by name"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HPi" = callPackage @@ -8466,6 +8851,7 @@ self: { homepage = "https://github.com/WJWH/HPi"; description = "GPIO, I2C and SPI functions for the Raspberry Pi"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {bcm2835 = null;}; "HPlot" = callPackage @@ -8485,6 +8871,7 @@ self: { homepage = "http://yakov.cc/HPlot.html"; description = "A minimal monadic PLplot interface for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {plplotd-gnome2 = null;}; "HPong" = callPackage @@ -8503,6 +8890,7 @@ self: { homepage = "http://bonsaicode.wordpress.com/2009/04/23/hpong-012/"; description = "A simple OpenGL Pong game based on GLFW"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT" = callPackage @@ -8522,6 +8910,7 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT RooFit modules"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT-core" = callPackage @@ -8534,6 +8923,7 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT Core modules"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT-graf" = callPackage @@ -8548,6 +8938,7 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT Graf modules"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT-hist" = callPackage @@ -8560,6 +8951,7 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT Hist modules"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT-io" = callPackage @@ -8572,6 +8964,7 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT IO modules"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT-math" = callPackage @@ -8584,6 +8977,7 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT Math modules"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HRay" = callPackage @@ -8598,6 +8992,7 @@ self: { homepage = "http://boegel.kejo.be/ELIS/Haskell/HRay/"; description = "Haskell raytracer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSFFIG" = callPackage @@ -8620,6 +9015,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/HSFFIG"; description = "Generate FFI import declarations from C include files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSGEP" = callPackage @@ -8639,6 +9035,7 @@ self: { homepage = "http://github.com/mjsottile/hsgep/"; description = "Gene Expression Programming evolutionary algorithm in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSH" = callPackage @@ -8677,6 +9074,7 @@ self: { jailbreak = true; description = "Convenience functions that use HSH, instances for HSH"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSlippyMap" = callPackage @@ -8708,6 +9106,7 @@ self: { homepage = "https://github.com/agrafix/HSmarty"; description = "Small template engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSoundFile" = callPackage @@ -8724,6 +9123,7 @@ self: { homepage = "http://mml.music.utexas.edu/jwlato/HSoundFile"; description = "Audio file reading/writing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HStringTemplate_0_7_3" = callPackage @@ -8802,6 +9202,7 @@ self: { homepage = "http://patch-tag.com/tphyahoo/r/tphyahoo/HStringTemplateHelpers"; description = "Convenience functions and instances for HStringTemplate"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSvm" = callPackage @@ -8813,6 +9214,7 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Haskell Bindings for libsvm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HTF_0_12_2_3" = callPackage @@ -9190,6 +9592,7 @@ self: { homepage = "http://www.glyc.dc.uba.ar/intohylo/htab.php"; description = "Tableau based theorem prover for hybrid logics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HTicTacToe" = callPackage @@ -9207,6 +9610,7 @@ self: { homepage = "http://github.com/snkkid/HTicTacToe"; description = "An SDL tic-tac-toe game"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HUnit_1_2_5_2" = callPackage @@ -9276,6 +9680,7 @@ self: { homepage = "https://github.com/dag/HUnit-Diff"; description = "Assertions for HUnit with difference reporting"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HUnit-Plus" = callPackage @@ -9297,6 +9702,7 @@ self: { homepage = "https://github.com/emc2/HUnit-Plus"; description = "A test framework building on HUnit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HUnit-approx" = callPackage @@ -9338,6 +9744,7 @@ self: { homepage = "http://www.pontarius.org/sub-projects/hxmpp/"; description = "A (prototyped) easy to use XMPP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HXQ" = callPackage @@ -9369,6 +9776,7 @@ self: { homepage = "http://www.di.uminho.pt/~jas/Research/HaLeX/HaLeX.html"; description = "HaLeX enables modelling, manipulation and animation of regular languages"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaMinitel" = callPackage @@ -9526,6 +9934,7 @@ self: { homepage = "https://github.com/RefactoringTools/HaRe/wiki"; description = "the Haskell Refactorer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "HaTeX_3_15_0_0" = callPackage @@ -9632,6 +10041,7 @@ self: { jailbreak = true; description = "This package is deprecated. From version 3, HaTeX does not need this anymore."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaTeX-qq" = callPackage @@ -9668,6 +10078,7 @@ self: { jailbreak = true; description = "An implementation of the Version Space Algebra learning framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaXml_1_24_1" = callPackage @@ -9767,6 +10178,7 @@ self: { homepage = "http://github.com/dmalikov/HaCh"; description = "Simple chat"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HackMail" = callPackage @@ -9788,6 +10200,7 @@ self: { homepage = "http://patch-tag.com/publicrepos/Hackmail"; description = "A Procmail Replacement as Haskell EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Haggressive" = callPackage @@ -9806,6 +10219,7 @@ self: { homepage = "https://github.com/Pold87/Haggressive"; description = "Aggression analysis for Tweets on Twitter"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HandlerSocketClient" = callPackage @@ -9906,6 +10320,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/HarmTrace"; description = "Harmony Analysis and Retrieval of Music"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HarmTrace-Base" = callPackage @@ -9926,6 +10341,7 @@ self: { homepage = "https://bitbucket.org/bash/harmtrace-base"; description = "Parsing and unambiguously representing musical chords"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HasGP" = callPackage @@ -9943,6 +10359,7 @@ self: { homepage = "http://www.cl.cam.ac.uk/~sbh11/HasGP"; description = "A Haskell library for inference using Gaussian processes"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Haschoo" = callPackage @@ -9962,6 +10379,7 @@ self: { homepage = "http://iki.fi/matti.niemenmaa/misc-projects.html#haschoo"; description = "Minimalist R5RS Scheme interpreter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hashell" = callPackage @@ -9981,6 +10399,7 @@ self: { jailbreak = true; description = "Simple shell written in Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaskRel" = callPackage @@ -10019,6 +10438,7 @@ self: { libraryHaskellDepends = [ base hmatrix ]; description = "Pure Haskell implementation of the Levenberg-Marquardt algorithm"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaskellNN" = callPackage @@ -10030,6 +10450,7 @@ self: { libraryHaskellDepends = [ base hmatrix random ]; description = "High Performance Neural Network in Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaskellNet_0_4_2" = callPackage @@ -10157,6 +10578,7 @@ self: { ]; description = "A concurrent bittorrent client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaskellTutorials" = callPackage @@ -10191,6 +10613,7 @@ self: { homepage = "http://www.matthewhayden.co.uk"; description = "A reproduction of the Atari 1979 classic \"Asteroids\""; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hate" = callPackage @@ -10216,6 +10639,7 @@ self: { homepage = "http://github.com/bananu7/Hate"; description = "A small 2D game framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hawk" = callPackage @@ -10238,6 +10662,7 @@ self: { jailbreak = true; description = "Haskell Web Application Kit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hayoo" = callPackage @@ -10266,6 +10691,7 @@ self: { homepage = "http://holumbus.fh-wedel.de"; description = "The Hayoo! search engine for Haskell API search on hackage"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hclip" = callPackage @@ -10299,6 +10725,7 @@ self: { ]; description = "Line oriented editor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HerbiePlugin" = callPackage @@ -10336,6 +10763,7 @@ self: { jailbreak = true; description = "Message-based middleware layer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hieroglyph" = callPackage @@ -10355,6 +10783,7 @@ self: { homepage = "http://vis.renci.org/jeff/hieroglyph"; description = "Purely functional 2D graphics for visualization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HiggsSet" = callPackage @@ -10372,6 +10801,7 @@ self: { homepage = "http://github.com/lpeterse/HiggsSet"; description = "A multi-index set with advanced query capabilites"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hipmunk" = callPackage @@ -10386,6 +10816,7 @@ self: { homepage = "https://github.com/meteficha/Hipmunk"; description = "A Haskell binding for Chipmunk"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "HipmunkPlayground" = callPackage @@ -10405,6 +10836,7 @@ self: { homepage = "https://github.com/meteficha/HipmunkPlayground"; description = "A playground for testing Hipmunk"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Hish" = callPackage @@ -10453,6 +10885,7 @@ self: { ]; description = "An MPD client designed for a Home Theatre PC"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hoed" = callPackage @@ -10474,6 +10907,7 @@ self: { homepage = "https://wiki.haskell.org/Hoed"; description = "Lightweight algorithmic debugging"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HoleyMonoid" = callPackage @@ -10506,6 +10940,7 @@ self: { homepage = "http://holumbus.fh-wedel.de"; description = "intra- and inter-program communication"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Holumbus-MapReduce" = callPackage @@ -10528,6 +10963,7 @@ self: { homepage = "http://holumbus.fh-wedel.de"; description = "a distributed MapReduce framework"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Holumbus-Searchengine" = callPackage @@ -10549,6 +10985,7 @@ self: { homepage = "http://holumbus.fh-wedel.de"; description = "A search and indexing engine"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Holumbus-Storage" = callPackage @@ -10569,6 +11006,7 @@ self: { homepage = "http://holumbus.fh-wedel.de"; description = "a distributed storage system"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Homology" = callPackage @@ -10601,6 +11039,7 @@ self: { jailbreak = true; description = "A Simple Key Value Store"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HostAndPort" = callPackage @@ -10629,6 +11068,7 @@ self: { homepage = "http://github.com/Raynes/Hricket"; description = "A Cricket scoring application"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hs2lib" = callPackage @@ -10657,6 +11097,7 @@ self: { homepage = "http://blog.zhox.com/category/hs2lib/"; description = "A Library and Preprocessor that makes it easier to create shared libs from Haskell programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HsASA" = callPackage @@ -10680,6 +11121,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Haskell binding to libharu (http://libharu.sourceforge.net/)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HsHyperEstraier" = callPackage @@ -10698,6 +11140,7 @@ self: { homepage = "http://cielonegro.org/HsHyperEstraier.html"; description = "HyperEstraier binding for Haskell"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {hyperestraier = null; qdbm = null;}; "HsJudy" = callPackage @@ -10711,6 +11154,7 @@ self: { homepage = "http://www.pugscode.org/"; description = "Judy bindings, and some nice APIs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {Judy = null;}; "HsOpenSSL" = callPackage @@ -10771,6 +11215,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Haskell interface to embedded Perl 5 interpreter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HsSVN" = callPackage @@ -10784,6 +11229,7 @@ self: { homepage = "https://github.com/phonohawk/HsSVN"; description = "Partial Subversion (SVN) binding for Haskell"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HsSyck" = callPackage @@ -10831,6 +11277,7 @@ self: { homepage = "http://github.com/rukav/Hsed"; description = "Stream Editor in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hsmtlib" = callPackage @@ -10850,6 +11297,7 @@ self: { homepage = "https://github.com/MfesGA/Hsmtlib"; description = "Haskell library for easy interaction with SMT-LIB 2 compliant solvers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HueAPI" = callPackage @@ -10884,6 +11332,7 @@ self: { homepage = "http://github.com/tobs169/HulkImport#readme"; description = "Easily bulk import CSV data to SQL Server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hungarian-Munkres" = callPackage @@ -10912,6 +11361,7 @@ self: { jailbreak = true; description = "Indexable, serializable form of Data.Dynamic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "IFS" = callPackage @@ -10928,6 +11378,7 @@ self: { homepage = "http://www.alpheccar.org"; description = "Iterated Function System generation for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "INblobs" = callPackage @@ -10947,6 +11398,7 @@ self: { homepage = "http://haskell.di.uminho.pt/jmvilaca/INblobs/"; description = "Editor and interpreter for Interaction Nets"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "IOR" = callPackage @@ -10958,6 +11410,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Region based resource management for the IO monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "IORefCAS" = callPackage @@ -10975,6 +11428,7 @@ self: { homepage = "https://github.com/rrnewton/haskell-lockfree-queue/wiki"; description = "Atomic compare and swap for IORefs and STRefs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "IOSpec" = callPackage @@ -11052,6 +11506,7 @@ self: { homepage = "https://github.com/mmirman/ImperativeHaskell"; description = "A library for writing Imperative style haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "IndentParser" = callPackage @@ -11088,6 +11543,7 @@ self: { libraryHaskellDepends = [ base haskell98 ]; description = "liftA2 for infix operators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Interpolation" = callPackage @@ -11171,6 +11627,7 @@ self: { homepage = "https://github.com/yunxing/Irc"; description = "DSL for IRC bots"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "IrrHaskell" = callPackage @@ -11221,6 +11678,7 @@ self: { ]; description = "A combinator library on top of a generalised JSON type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JSON-Combinator-Examples" = callPackage @@ -11234,6 +11692,7 @@ self: { ]; description = "Example uses of the JSON-Combinator library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JSONb" = callPackage @@ -11260,6 +11719,7 @@ self: { homepage = "http://github.com/solidsnack/JSONb/"; description = "JSON parser that uses byte strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JYU-Utils" = callPackage @@ -11280,6 +11740,7 @@ self: { jailbreak = true; description = "Some utility functions for JYU projects"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JackMiniMix" = callPackage @@ -11292,6 +11753,7 @@ self: { homepage = "http://www.renickbell.net/doku.php?id=jackminimix"; description = "control JackMiniMix"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Javasf" = callPackage @@ -11308,6 +11770,7 @@ self: { ]; description = "A utility to print the SourceFile attribute of one or more Java class files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Javav" = callPackage @@ -11321,6 +11784,7 @@ self: { executableHaskellDepends = [ base ]; description = "A utility to print the target version of Java class files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JsContracts" = callPackage @@ -11344,6 +11808,7 @@ self: { homepage = "http://www.cs.brown.edu/research/plt/"; description = "Design-by-contract for JavaScript"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JsonGrammar" = callPackage @@ -11369,6 +11834,7 @@ self: { homepage = "https://github.com/MedeaMelana/JsonGrammar2"; description = "Combinators for bidirectional JSON parsing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JuicyPixels_3_1_7_1" = callPackage @@ -11749,6 +12215,7 @@ self: { ]; jailbreak = true; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JunkDB-driver-hashtables" = callPackage @@ -11847,6 +12314,7 @@ self: { homepage = "https://github.com/Hamcha/Ketchup"; description = "A super small web framework for those who don't like big and fancy codebases"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "KiCS" = callPackage @@ -11872,6 +12340,7 @@ self: { homepage = "http://www.curry-language.org"; description = "A compiler from Curry to Haskell"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {kics = null;}; "KiCS-debugger" = callPackage @@ -11894,6 +12363,7 @@ self: { homepage = "http://curry-language.org"; description = "debug features for kics"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "KiCS-prophecy" = callPackage @@ -11910,6 +12380,7 @@ self: { homepage = "http://curry-language.org"; description = "a transformation used by the kics debugger"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Kleislify" = callPackage @@ -11934,6 +12405,7 @@ self: { homepage = "http://www.gkayaalp.com/p/konf.html"; description = "A configuration language and a parser"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Kriens" = callPackage @@ -11961,6 +12433,7 @@ self: { homepage = "https://code.google.com/p/kyotocabinet-hs/"; description = "Kyoto Cabinet DB bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) kyotocabinet;}; "L-seed" = callPackage @@ -11980,6 +12453,23 @@ self: { homepage = "http://www.entropia.de/wiki/L-seed"; description = "Plant growing programming game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "LATS" = callPackage + ({ mkDerivation, base, constraint-classes, hmatrix, semigroups + , vector + }: + mkDerivation { + pname = "LATS"; + version = "0.4.1"; + sha256 = "6a07e22952b72a02665a7adc9058a0dfba2e667f2459758cc9dda3b258380698"; + libraryHaskellDepends = [ + base constraint-classes hmatrix semigroups vector + ]; + homepage = "http://github.com/guaraqe/lats#readme"; + description = "Linear Algebra on Typed Spaces"; + license = stdenv.lib.licenses.bsd3; }) {}; "LDAP" = callPackage @@ -12037,6 +12527,7 @@ self: { ]; description = "A basic lambda calculator with beta reduction and a REPL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LambdaHack" = callPackage @@ -12079,6 +12570,7 @@ self: { homepage = "http://github.com/LambdaHack/LambdaHack"; description = "A game engine library for roguelike dungeon crawlers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {gtk2 = pkgs.gnome2.gtk;}; "LambdaINet" = callPackage @@ -12098,6 +12590,7 @@ self: { homepage = "not available"; description = "Graphical Interaction Net Evaluator for Optimal Evaluation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LambdaNet" = callPackage @@ -12114,6 +12607,7 @@ self: { jailbreak = true; description = "A configurable and extensible neural network library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LambdaPrettyQuote" = callPackage @@ -12139,6 +12633,7 @@ self: { homepage = "http://github.com/jfischoff/LambdaPrettyQuote"; description = "Quasiquoter, and Arbitrary helpers for the lambda calculus"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LambdaShell" = callPackage @@ -12157,6 +12652,7 @@ self: { homepage = "http://rwd.rdockins.name/lambda/home/"; description = "Simple shell for evaluating lambda expressions"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Lambdajudge" = callPackage @@ -12216,6 +12712,7 @@ self: { homepage = "http://code.google.com/p/lastik"; description = "A library for compiling programs in a variety of languages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Lattices" = callPackage @@ -12248,6 +12745,7 @@ self: { ]; description = "Lazy PBKDF2 generator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "LazyVault" = callPackage @@ -12278,6 +12776,7 @@ self: { homepage = "http://quasimal.com/projects/level_0.html"; description = "A Snake II clone written using SDL"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "LibClang" = callPackage @@ -12299,6 +12798,7 @@ self: { homepage = "https://github.com/chetant/LibClang/issues"; description = "Haskell bindings for libclang (a C++ parsing library)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ncurses;}; "LibZip" = callPackage @@ -12315,6 +12815,7 @@ self: { homepage = "http://bitbucket.org/astanin/hs-libzip/"; description = "Bindings to libzip, a library for manipulating zip archives"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LibZip_0_11_1" = callPackage @@ -12348,6 +12849,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Wrapper for data that can be unbounded"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LinearSplit" = callPackage @@ -12362,6 +12864,7 @@ self: { homepage = "http://github.com/rukav/LinearSplit"; description = "Partition the sequence of items to the subsequences in the order given"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LinguisticsTypes" = callPackage @@ -12387,6 +12890,7 @@ self: { homepage = "https://github.com/choener/LinguisticsTypes"; description = "Collection of types for natural language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LinkChecker" = callPackage @@ -12405,6 +12909,7 @@ self: { homepage = "http://janzzstimmpfle.de/~jens/software/LinkChecker/"; description = "Check a bunch of local html files for broken links"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "List" = callPackage @@ -12550,6 +13055,7 @@ self: { jailbreak = true; description = "a parallel implementation of logic programming using distributed tree exploration"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LogicGrowsOnTrees-MPI" = callPackage @@ -12576,6 +13082,7 @@ self: { jailbreak = true; description = "an adapter for LogicGrowsOnTrees that uses MPI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openmpi;}; "LogicGrowsOnTrees-network" = callPackage @@ -12605,6 +13112,7 @@ self: { jailbreak = true; description = "an adapter for LogicGrowsOnTrees that uses multiple processes running in a network"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LogicGrowsOnTrees-processes" = callPackage @@ -12634,6 +13142,7 @@ self: { jailbreak = true; description = "an adapter for LogicGrowsOnTrees that uses multiple processes for parallelism"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LslPlus" = callPackage @@ -12656,6 +13165,7 @@ self: { homepage = "http:/lslplus.sourceforge.net/"; description = "An execution and testing framework for the Linden Scripting Language (LSL)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Lucu" = callPackage @@ -12678,14 +13188,15 @@ self: { homepage = "http://cielonegro.org/Lucu.html"; description = "HTTP Daemonic Library"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MASMGen" = callPackage ({ mkDerivation, base, containers, mtl }: mkDerivation { pname = "MASMGen"; - version = "0.4.0.0"; - sha256 = "9565a4905772c12dfccd9c17c5b3f52601e2aa28c9a7a288e2ab577834ed10e5"; + version = "0.5.0.0"; + sha256 = "ec88b0727eb25a3f9a7d5d71dbc3fe9e935cd11a1be698422d7b952a129bbab9"; libraryHaskellDepends = [ base containers mtl ]; testHaskellDepends = [ base containers mtl ]; description = "Generate MASM code from haskell"; @@ -12709,6 +13220,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/software/mcfolddp/"; description = "Folding algorithm based on nucleotide cyclic motifs"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MFlow_0_4_5_9" = callPackage @@ -12773,6 +13285,7 @@ self: { homepage = "https://github.com/DanBurton/MHask#readme"; description = "The category of monads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MSQueue" = callPackage @@ -12828,6 +13341,7 @@ self: { homepage = "http://nautilus.cs.miyazaki-u.ac.jp/~skata/MagicHaskeller.html"; description = "Automatic inductive functional programmer by systematic search"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MailchimpSimple" = callPackage @@ -12861,6 +13375,7 @@ self: { jailbreak = true; description = "MaybeT monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MaybeT-monads-tf" = callPackage @@ -12873,6 +13388,7 @@ self: { jailbreak = true; description = "MaybeT monad transformer compatible with monads-tf (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MaybeT-transformers" = callPackage @@ -12885,6 +13401,7 @@ self: { jailbreak = true; description = "MaybeT monad transformer using transformers instead of mtl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MazesOfMonad" = callPackage @@ -12903,6 +13420,7 @@ self: { ]; description = "Console-based Role Playing Game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MeanShift" = callPackage @@ -12927,6 +13445,7 @@ self: { jailbreak = true; description = "A library for units of measurement"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MemoTrie_0_6_2" = callPackage @@ -13012,6 +13531,7 @@ self: { homepage = "http://github.com/benhamner/Metrics/"; description = "Evaluation metrics commonly used in supervised machine learning"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Mhailist" = callPackage @@ -13031,6 +13551,7 @@ self: { jailbreak = true; description = "Haskell mailing list manager"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Michelangelo" = callPackage @@ -13047,6 +13568,7 @@ self: { ]; description = "OpenGL for dummies"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MicrosoftTranslator" = callPackage @@ -13084,6 +13606,7 @@ self: { homepage = "http://www.tcs.ifi.lmu.de/~abel/miniagda/"; description = "A toy dependently typed programming language with type-based termination"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MissingH" = callPackage @@ -13152,6 +13675,7 @@ self: { homepage = "http://github.com/softmechanics/missingpy"; description = "Haskell interface to Python"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Modulo" = callPackage @@ -13177,6 +13701,7 @@ self: { executableHaskellDepends = [ base GLUT random ]; description = "A FRP library based on signal functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "MoeDict" = callPackage @@ -13222,6 +13747,7 @@ self: { jailbreak = true; description = "Polymorphic combinators for working with foreign functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MonadCatchIO-transformers_0_3_1_2" = callPackage @@ -13272,6 +13798,7 @@ self: { jailbreak = true; description = "Polymorphic combinators for working with foreign functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MonadCompose" = callPackage @@ -13287,7 +13814,6 @@ self: { base data-default ghc-prim kan-extensions mmorph monad-products mtl parallel random transformers transformers-compat ]; - jailbreak = true; homepage = "http://alkalisoftware.net"; description = "Methods for composing monads"; license = stdenv.lib.licenses.bsd3; @@ -13307,6 +13833,7 @@ self: { homepage = "http://monadgarden.cs.missouri.edu/MonadLab"; description = "Automatically generate layered monads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MonadPrompt" = callPackage @@ -13347,7 +13874,6 @@ self: { libraryHaskellDepends = [ base mtl random transformers transformers-compat ]; - jailbreak = true; description = "Random-number generation monad"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; @@ -13366,7 +13892,6 @@ self: { libraryHaskellDepends = [ base mtl random transformers transformers-compat ]; - jailbreak = true; description = "Random-number generation monad"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; @@ -13383,7 +13908,6 @@ self: { libraryHaskellDepends = [ base mtl random transformers transformers-compat ]; - jailbreak = true; description = "Random-number generation monad"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; @@ -13455,6 +13979,7 @@ self: { homepage = "http://www.geocities.jp/takascience/haskell/monadius_en.html"; description = "2-D arcade scroller"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Monaris" = callPackage @@ -13473,6 +13998,7 @@ self: { homepage = "https://github.com/fumieval/Monaris/"; description = "A simple tetris clone"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Monatron" = callPackage @@ -13484,6 +14010,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Monad transformer library with uniform liftings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Monatron-IO" = callPackage @@ -13497,6 +14024,7 @@ self: { homepage = "https://github.com/kreuzschlitzschraubenzieher/Monatron-IO"; description = "MonadIO instances for the Monatron transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Monocle" = callPackage @@ -13508,6 +14036,7 @@ self: { libraryHaskellDepends = [ base containers haskell98 mtl ]; description = "Symbolic computations in strict monoidal categories with LaTeX output"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MorseCode" = callPackage @@ -13727,6 +14256,7 @@ self: { executableHaskellDepends = [ base HCL HTTP network regex-compat ]; description = "Simple application for calculating n-grams using Google"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NTRU" = callPackage @@ -13744,6 +14274,7 @@ self: { jailbreak = true; description = "NTRU Cryptography"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "NXT" = callPackage @@ -13769,6 +14300,7 @@ self: { homepage = "http://mitar.tnode.com"; description = "A Haskell interface to Lego Mindstorms NXT"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {bluetooth = null;}; "NXTDSL" = callPackage @@ -13788,6 +14320,7 @@ self: { homepage = "https://github.com/agrafix/legoDSL"; description = "Generate NXC Code from DSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NanoProlog" = callPackage @@ -13831,6 +14364,7 @@ self: { homepage = "https://github.com/choener/NaturalLanguageAlphabets"; description = "Simple scoring schemes for word alignments"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NaturalSort" = callPackage @@ -13928,6 +14462,7 @@ self: { homepage = "https://github.com/ptek/netsnmp"; description = "Bindings for net-snmp's C API for clients"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) net_snmp;}; "Network-NineP" = callPackage @@ -13993,6 +14528,7 @@ self: { homepage = "http://github.com/glguy/ninjas"; description = "Ninja game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NoSlow" = callPackage @@ -14014,6 +14550,7 @@ self: { homepage = "http://code.haskell.org/NoSlow"; description = "Microbenchmarks for various array libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NoTrace" = callPackage @@ -14059,6 +14596,7 @@ self: { homepage = "http://www.nomyx.net"; description = "A Nomic game in haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Nomyx-Core" = callPackage @@ -14086,6 +14624,7 @@ self: { homepage = "http://www.nomyx.net"; description = "A Nomic game in haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Nomyx-Language" = callPackage @@ -14106,6 +14645,7 @@ self: { homepage = "http://www.nomyx.net"; description = "Language to express rules for Nomic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Nomyx-Rules" = callPackage @@ -14122,6 +14662,7 @@ self: { ]; description = "Language to express rules for Nomic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Nomyx-Web" = callPackage @@ -14147,6 +14688,7 @@ self: { homepage = "http://www.nomyx.net"; description = "Web gui for Nomyx"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NonEmpty" = callPackage @@ -14175,6 +14717,7 @@ self: { homepage = "http://code.google.com/p/nonempty/"; description = "A list with a length of at least one"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NumInstances" = callPackage @@ -14210,6 +14753,7 @@ self: { homepage = "http://patch-tag.com/r/lpsmith/NumberSieves"; description = "Number Theoretic Sieves: primes, factorization, and Euler's Totient"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NumberTheory" = callPackage @@ -14253,6 +14797,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/adpfusion"; description = "Nussinov78 using the ADPfusion library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Nutri" = callPackage @@ -14278,6 +14823,7 @@ self: { homepage = "http://haskell.org/haskellwiki/OGL"; description = "A context aware binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OSM" = callPackage @@ -14294,6 +14840,7 @@ self: { homepage = "https://github.com/tonymorris/geo-osm"; description = "Parse OpenStreetMap files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OTP" = callPackage @@ -14319,6 +14866,7 @@ self: { homepage = "https://github.com/yokto/object"; description = "Object oriented programming for haskell using multiparameter typeclasses"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ObjectIO" = callPackage @@ -14334,6 +14882,7 @@ self: { winspool ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {comctl32 = null; comdlg32 = null; gdi32 = null; kernel32 = null; ole32 = null; shell32 = null; user32 = null; winmm = null; winspool = null;}; @@ -14444,6 +14993,7 @@ self: { homepage = "http://www.gekkou.co.uk/"; description = "Provides a wrapper for deriving word types with fewer bits"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "Omega" = callPackage @@ -14456,6 +15006,7 @@ self: { testHaskellDepends = [ base containers HUnit ]; description = "Integer sets and relations using Presburger arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OneTuple" = callPackage @@ -14484,6 +15035,7 @@ self: { homepage = "https://github.com/audreyt/openafp/"; description = "IBM AFP document format parser and generator"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OpenAFP-Utils" = callPackage @@ -14504,6 +15056,7 @@ self: { ]; description = "Assorted utilities to work with AFP data streams"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OpenAL" = callPackage @@ -14524,6 +15077,7 @@ self: { homepage = "https://github.com/haskell-openal/ALUT"; description = "A binding to the OpenAL cross-platform 3D audio API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) openal;}; "OpenCL" = callPackage @@ -14540,6 +15094,7 @@ self: { homepage = "https://github.com/IFCA/opencl"; description = "Haskell high-level wrapper for OpenCL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {OpenCL = null;}; "OpenCLRaw" = callPackage @@ -14553,6 +15108,7 @@ self: { homepage = "http://vis.renci.org/jeff/opencl"; description = "The OpenCL Standard for heterogenous data-parallel computing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OpenCLWrappers" = callPackage @@ -14656,6 +15212,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "OpenGLCheck" = callPackage @@ -14669,6 +15226,7 @@ self: { ]; description = "Quickcheck instances for various data structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OpenGLRaw_1_5_0_0" = callPackage @@ -14746,6 +15304,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A raw binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) mesa;}; "OpenGLRaw21" = callPackage @@ -14758,6 +15317,7 @@ self: { jailbreak = true; description = "The intersection of OpenGL 2.1 and OpenGL 3.1 Core"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OpenSCAD" = callPackage @@ -14778,6 +15338,7 @@ self: { homepage = "https://chiselapp.com/user/mwm/repository/OpenSCAD/"; description = "ADT wrapper and renderer for OpenSCAD models"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OpenVG" = callPackage @@ -14790,6 +15351,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "OpenVG (ShivaVG-0.2.1) binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OpenVGRaw" = callPackage @@ -14803,6 +15365,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Raw binding to OpenVG (ShivaVG-0.2.1 implementation)."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Operads" = callPackage @@ -14816,6 +15379,7 @@ self: { homepage = "http://math.stanford.edu/~mik/operads"; description = "Groebner basis computation for Operads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OptDir" = callPackage @@ -14864,6 +15428,7 @@ self: { homepage = "https://github.com/dwd31415/Haskell-OrchestrateDB"; description = "Unofficial Haskell Client Library for the Orchestrate.io API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OrderedBits" = callPackage @@ -14936,6 +15501,7 @@ self: { homepage = "http://github.com/Andrey-Sisoyev/PCLT"; description = "Extension to Show: templating, catalogizing, languages, parameters, etc"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PCLT-DB" = callPackage @@ -14953,6 +15519,7 @@ self: { homepage = "http://github.com/Andrey-Sisoyev/PCLT-DB"; description = "An addon to PCLT package: enchance PCLT catalog with PostgreSQL powers"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PDBtools" = callPackage @@ -15014,6 +15581,7 @@ self: { ]; description = "This is a package which includes Assignments, Email, User and Reviews modules for Programming in Haskell course"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PageIO" = callPackage @@ -15040,6 +15608,7 @@ self: { ]; description = "Page-oriented extraction and composition library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Paillier" = callPackage @@ -15059,6 +15628,7 @@ self: { jailbreak = true; description = "a simple Paillier cryptosystem"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "PandocAgda" = callPackage @@ -15079,6 +15649,7 @@ self: { jailbreak = true; description = "Pandoc support for literate Agda"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Paraiso" = callPackage @@ -15104,6 +15675,7 @@ self: { homepage = "http://www.paraiso-lang.org/wiki/index.php/Main_Page"; description = "a code generator for partial differential equations solvers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Parry" = callPackage @@ -15122,6 +15694,7 @@ self: { homepage = "http://parry.lif.univ-mrs.fr"; description = "A proven synchronization server for high performance computing"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ParsecTools" = callPackage @@ -15196,6 +15769,7 @@ self: { librarySystemDepends = [ libxml2 ]; description = "Relational optimiser and code generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libxml2;}; "Peano" = callPackage @@ -15236,6 +15810,7 @@ self: { jailbreak = true; description = "A perfect hashing library for mapping bytestrings to values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {cmph = null;}; "PermuteEffects" = callPackage @@ -15249,6 +15824,7 @@ self: { homepage = "https://github.com/MedeaMelana/PermuteEffects"; description = "Permutations of effectful computations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Phsu" = callPackage @@ -15275,6 +15851,7 @@ self: { homepage = "localhost:9119"; description = "Personal Happstack Server Utils"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Pipe" = callPackage @@ -15287,6 +15864,7 @@ self: { homepage = "http://iki.fi/matti.niemenmaa/pipe/"; description = "Process piping library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Piso" = callPackage @@ -15342,8 +15920,8 @@ self: { }: mkDerivation { pname = "Plot-ho-matic"; - version = "0.9.0.4"; - sha256 = "8f452a320c84cbb6f09670307b57af41c0ec30414440bd4f7155d13d0c28215a"; + version = "0.9.0.5"; + sha256 = "2d39740f4bcca543b6fa53faf6dacb1d266f91986bc995fe2d0caeb68578dc3b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -15354,6 +15932,7 @@ self: { executableHaskellDepends = [ base containers generic-accessors ]; description = "Real-time line plotter for generic data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "PlslTools" = callPackage @@ -15373,6 +15952,7 @@ self: { homepage = "LLayland.wordpress.com"; description = "So far just a lint like program for PL/SQL. Diff and refactoring tools are planned"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Plural" = callPackage @@ -15397,6 +15977,7 @@ self: { executableHaskellDepends = [ array base clock GLUT random ]; description = "An imaginary world"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PortFusion" = callPackage @@ -15424,6 +16005,7 @@ self: { homepage = "http://haskell.org/haskellwiki/PortMidi"; description = "A binding for PortMedia/PortMidi"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) alsaLib;}; "PostgreSQL" = callPackage @@ -15435,30 +16017,54 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Thin wrapper over the C postgresql library"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PrimitiveArray" = callPackage - ({ mkDerivation, aeson, base, binary, bits, cereal, deepseq - , hashable, OrderedBits, primitive, QuickCheck, test-framework - , test-framework-quickcheck2, test-framework-th, vector - , vector-binary-instances, vector-th-unbox + ({ mkDerivation, aeson, base, binary, bits, cereal, cereal-vector + , deepseq, hashable, OrderedBits, primitive, QuickCheck + , test-framework, test-framework-quickcheck2, test-framework-th + , vector, vector-binary-instances, vector-th-unbox }: mkDerivation { pname = "PrimitiveArray"; - version = "0.7.0.0"; - sha256 = "ecbf084d9167a0184e2e4504157f2e992c0bd9013a5e3c8ff98169492b7d8309"; + version = "0.7.0.1"; + sha256 = "06a856c82a5858f7b91948b2816b3afe5fab14bde3be83676900cb70c2cc53a1"; libraryHaskellDepends = [ - aeson base binary bits cereal deepseq hashable OrderedBits - primitive QuickCheck vector vector-binary-instances vector-th-unbox + aeson base binary bits cereal cereal-vector deepseq hashable + OrderedBits primitive QuickCheck vector vector-binary-instances + vector-th-unbox ]; testHaskellDepends = [ base QuickCheck test-framework test-framework-quickcheck2 test-framework-th ]; - jailbreak = true; homepage = "https://github.com/choener/PrimitiveArray"; description = "Efficient multidimensional arrays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "PrimitiveArray-Pretty" = callPackage + ({ mkDerivation, base, diagrams, diagrams-lib, diagrams-postscript + , diagrams-svg, log-domain, QuickCheck, split, test-framework + , test-framework-quickcheck2, test-framework-th + }: + mkDerivation { + pname = "PrimitiveArray-Pretty"; + version = "0.0.0.1"; + sha256 = "cd1b84ee169bb3fa05eac16916158a622984a78e9ddaca834deec3f79e6095ac"; + libraryHaskellDepends = [ + base diagrams diagrams-lib diagrams-postscript diagrams-svg + log-domain split + ]; + testHaskellDepends = [ + base QuickCheck test-framework test-framework-quickcheck2 + test-framework-th + ]; + homepage = "https://github.com/choener/PrimitiveArray-Pretty"; + description = "Pretty-printing for primitive arrays"; + license = stdenv.lib.licenses.bsd3; }) {}; "Printf-TH" = callPackage @@ -15469,6 +16075,7 @@ self: { sha256 = "7ddb98d79c320b71c5ffd9f2a0eda2f1898f31ff53ee5f84dfc95c108ada2f58"; libraryHaskellDepends = [ base haskell98 pretty template-haskell ]; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PriorityChansConverger" = callPackage @@ -15480,6 +16087,7 @@ self: { libraryHaskellDepends = [ base containers stm ]; description = "Read single output from an array of inputs - channels with priorities"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ProbabilityMonads" = callPackage @@ -15491,6 +16099,7 @@ self: { libraryHaskellDepends = [ base MaybeT MonadRandom mtl ]; description = "Probability distribution monads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PropLogic" = callPackage @@ -15521,6 +16130,7 @@ self: { homepage = "https://github.com/dillonhuff/Proper"; description = "An implementation of propositional logic in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ProxN" = callPackage @@ -15557,6 +16167,7 @@ self: { homepage = "http://pugscode.org/"; description = "A Perl 6 Implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Pup-Events" = callPackage @@ -15609,6 +16220,7 @@ self: { ]; description = "A networked event handling framework for hooking into other programs"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Pup-Events-PQueue" = callPackage @@ -15647,6 +16259,7 @@ self: { homepage = "http://www.cs.nott.ac.uk/~asg/QIO/"; description = "The Quantum IO Monad is a library for defining quantum computations in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "QuadEdge" = callPackage @@ -15658,6 +16271,7 @@ self: { libraryHaskellDepends = [ base random vector ]; description = "QuadEdge structure for representing triangulations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "QuadTree" = callPackage @@ -15707,6 +16321,7 @@ self: { homepage = "http://gowthamk.github.io/Quelea"; description = "Programming with Eventual Consistency over Cassandra"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "QuickAnnotate" = callPackage @@ -15723,6 +16338,7 @@ self: { homepage = "http://code.haskell.org/QuickAnnotate/"; description = "Annotation Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "QuickCheck_1_2_0_1" = callPackage @@ -15815,6 +16431,7 @@ self: { homepage = "https://github.com/nikita-volkov/QuickCheck-GenT"; description = "A GenT monad transformer for QuickCheck library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "QuickCheck-safe" = callPackage @@ -15864,6 +16481,7 @@ self: { homepage = "https://github.com/ssadler/quickson"; description = "Quick JSON extractions with Aeson"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "R-pandoc" = callPackage @@ -15883,6 +16501,7 @@ self: { jailbreak = true; description = "A pandoc filter to express R plots inside markdown"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RANSAC" = callPackage @@ -15928,6 +16547,7 @@ self: { jailbreak = true; description = "A framework for writing RESTful applications"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RFC1751" = callPackage @@ -15962,6 +16582,7 @@ self: { ]; description = "A reflective JSON serializer/parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RMP" = callPackage @@ -15982,6 +16603,7 @@ self: { executableSystemDepends = [ canlib ftd2xx ]; description = "Binding to code that controls a Segway RMP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {canlib = null; ftd2xx = null;}; "RNAFold" = callPackage @@ -16005,6 +16627,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/adpfusion"; description = "RNA secondary structure prediction"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RNAFoldProgs" = callPackage @@ -16025,6 +16648,7 @@ self: { jailbreak = true; description = "RNA secondary structure folding"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RNAdesign" = callPackage @@ -16050,6 +16674,7 @@ self: { executableHaskellDepends = [ bytestring cmdargs file-embed ]; description = "Multi-target RNA sequence design"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RNAdraw" = callPackage @@ -16070,6 +16695,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Draw RNA secondary structures"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RNAlien_1_0_0" = callPackage @@ -16151,6 +16777,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/software/rnawolf/"; description = "RNA folding with non-canonical basepairs and base-triplets"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RSA_2_1_0_1" = callPackage @@ -16232,6 +16859,7 @@ self: { homepage = "http://raincat.bysusanlin.com/"; description = "A puzzle game written in Haskell with a cat in lead role"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Random123" = callPackage @@ -16261,6 +16889,7 @@ self: { libraryHaskellDepends = [ base HTTP-Simple network ]; description = "Interface to random.org"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Randometer" = callPackage @@ -16315,6 +16944,7 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/ranka"; description = "HTTP to XMPP omegle chats gate"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Rasenschach" = callPackage @@ -16335,6 +16965,7 @@ self: { homepage = "http://hub.darcs.net/martingw/Rasenschach"; description = "Soccer simulation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Rasterific_0_4" = callPackage @@ -16503,6 +17134,7 @@ self: { homepage = "https://github.com/lookunder/RedmineHs"; description = "Library to access Redmine's REST services"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Ref" = callPackage @@ -16516,6 +17148,7 @@ self: { homepage = "https://bitbucket.org/carter/ref"; description = "Generic Mutable Ref Abstraction Layer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RefSerialize_0_3_1_3" = callPackage @@ -16569,6 +17202,7 @@ self: { homepage = "https://github.com/pablocouto/Referees"; description = "A utility for computing distributions of material to review among reviewers"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RepLib" = callPackage @@ -16615,6 +17249,7 @@ self: { ]; description = "Haskell bindings to ReviewBoard"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RichConditional" = callPackage @@ -16676,6 +17311,7 @@ self: { ]; description = "Limits the size of a directory's contents"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RoyalMonad" = callPackage @@ -16700,6 +17336,7 @@ self: { homepage = "https://github.com/jspahrsummers/RxHaskell"; description = "Reactive Extensions for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SBench" = callPackage @@ -16717,6 +17354,7 @@ self: { ]; description = "A benchmark suite for runtime and heap measurements over a series of inputs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SConfig" = callPackage @@ -16755,6 +17393,7 @@ self: { librarySystemDepends = [ SDL_gfx ]; description = "Binding to libSDL_gfx"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) SDL_gfx;}; "SDL-image" = callPackage @@ -16769,6 +17408,7 @@ self: { librarySystemDepends = [ SDL_image ]; description = "Binding to libSDL_image"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) SDL_image;}; "SDL-mixer" = callPackage @@ -16783,6 +17423,7 @@ self: { librarySystemDepends = [ SDL_mixer ]; description = "Binding to libSDL_mixer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) SDL_mixer;}; "SDL-mpeg" = callPackage @@ -16795,6 +17436,7 @@ self: { librarySystemDepends = [ smpeg ]; description = "Binding to the SMPEG library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) smpeg;}; "SDL-ttf" = callPackage @@ -16807,6 +17449,7 @@ self: { librarySystemDepends = [ SDL_ttf ]; description = "Binding to libSDL_ttf"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) SDL_ttf;}; "SDL2-ttf" = callPackage @@ -16840,6 +17483,7 @@ self: { homepage = "https://github.com/jeannekamikaze/SFML"; description = "SFML bindings"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {csfml-audio = null; csfml-graphics = null; csfml-network = null; csfml-system = null; csfml-window = null; sfml-audio = null; sfml-graphics = null; sfml-network = null; @@ -16855,6 +17499,7 @@ self: { homepage = "https://github.com/SFML-haskell/SFML-control"; description = "Higher level library on top of SFML"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SFont" = callPackage @@ -16867,6 +17512,7 @@ self: { homepage = "http://liamoc.net/static/SFont"; description = "SFont SDL Bitmap Fonts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SG" = callPackage @@ -16878,6 +17524,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Small geometry library for dealing with vectors and collision detection"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SGdemo" = callPackage @@ -16892,6 +17539,7 @@ self: { jailbreak = true; description = "An example of using the SG and OpenGL libraries"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SHA_1_6_4_1" = callPackage @@ -16973,6 +17621,7 @@ self: { homepage = "http://www.snet-home.org/"; description = "Declarative coördination language for streaming networks"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SQLDeps" = callPackage @@ -17030,6 +17679,7 @@ self: { homepage = "http://www.informatik.uni-kiel.de/~jgr/svg2q"; description = "Code generation tool for Quartz code from a SVG"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SVGFonts_1_4_0_3" = callPackage @@ -17156,6 +17806,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Salsa"; description = "A .NET Bridge for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) glib; inherit (pkgs) mono;}; "Saturnin" = callPackage @@ -17217,6 +17868,7 @@ self: { homepage = "http://github.com/hirschenberger/ScratchFS"; description = "Size limited temp filesystem based on fuse"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Scurry" = callPackage @@ -17236,6 +17888,7 @@ self: { homepage = "http://code.google.com/p/scurry/"; description = "A cross platform P2P VPN application built using Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SegmentTree" = callPackage @@ -17268,6 +17921,7 @@ self: { jailbreak = true; description = "Command-line tool for maintaining the Semantique database"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Semigroup" = callPackage @@ -17291,6 +17945,7 @@ self: { libraryHaskellDepends = [ base bytestring vector ]; description = "Sequence Alignment"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SessionLogger" = callPackage @@ -17307,6 +17962,7 @@ self: { jailbreak = true; description = "Easy Loggingframework"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ShellCheck" = callPackage @@ -17344,6 +18000,7 @@ self: { homepage = "http://rwd.rdockins.name/shellac/home/"; description = "A framework for creating shell envinronments"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Shellac-compatline" = callPackage @@ -17356,6 +18013,7 @@ self: { homepage = "http://rwd.rdockins.name/shellac/home/"; description = "\"compatline\" backend module for Shellac"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Shellac-editline" = callPackage @@ -17368,6 +18026,7 @@ self: { homepage = "http://rwd.rdockins.name/shellac/home/"; description = "Editline backend module for Shellac"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Shellac-haskeline" = callPackage @@ -17380,6 +18039,7 @@ self: { jailbreak = true; description = "Haskeline backend module for Shellac"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Shellac-readline" = callPackage @@ -17392,6 +18052,7 @@ self: { homepage = "http://rwd.rdockins.name/shellac/home/"; description = "Readline backend module for Shellac"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ShowF" = callPackage @@ -17429,6 +18090,7 @@ self: { homepage = "http://www.geocities.jp/takascience/index_en.html"; description = "A vector shooter game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SimpleAES" = callPackage @@ -17469,6 +18131,7 @@ self: { jailbreak = true; description = "A Simple Graphics Library from the SimpleH framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SimpleH" = callPackage @@ -17486,6 +18149,7 @@ self: { jailbreak = true; description = "A light, clean and powerful Haskell utility library"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SimpleLog" = callPackage @@ -17506,6 +18170,7 @@ self: { homepage = "https://github.com/exFalso/SimpleLog/"; description = "Simple, configurable logging"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SimpleServer" = callPackage @@ -17569,6 +18234,7 @@ self: { jailbreak = true; description = "A tiny, lazy SMT solver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SmtLib" = callPackage @@ -17606,6 +18272,7 @@ self: { homepage = "http://bitbucket.org/jetxee/snusmumrik/"; description = "E-library directory based on FUSE virtual file system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) zip;}; "SoOSiM" = callPackage @@ -17624,6 +18291,7 @@ self: { homepage = "http://www.soos-project.eu/"; description = "Abstract full system simulator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SoccerFun" = callPackage @@ -17644,6 +18312,7 @@ self: { homepage = "http://www.cs.ru.nl/~peter88/SoccerFun/SoccerFun.html"; description = "Football simulation framework for teaching functional programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SoccerFunGL" = callPackage @@ -17664,6 +18333,7 @@ self: { homepage = "http://www.cs.ru.nl/~peter88/SoccerFun/SoccerFun.html"; description = "OpenGL UI for the SoccerFun framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Sonnex" = callPackage @@ -17697,6 +18367,7 @@ self: { jailbreak = true; description = "Static code analysis using graph-theoretic techniques"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Southpaw" = callPackage @@ -17729,6 +18400,7 @@ self: { homepage = "http://www.haskell.org/yampa/"; description = "Video game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "SpacePrivateers" = callPackage @@ -17751,6 +18423,7 @@ self: { homepage = "https://github.com/tuturto/space-privateers"; description = "Simple space pirate roguelike"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SpinCounter" = callPackage @@ -18032,6 +18705,7 @@ self: { homepage = "http://www.spock.li"; description = "Another Haskell web framework for rapid development"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Spock-auth" = callPackage @@ -18045,6 +18719,7 @@ self: { homepage = "https://github.com/agrafix/Spock-auth"; description = "Provides authentification helpers for Spock"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Spock-digestive_0_1_0_0" = callPackage @@ -18098,9 +18773,25 @@ self: { homepage = "https://github.com/agrafix/Spock-digestive"; description = "Digestive functors support for Spock"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; - "Spock-worker" = callPackage + "Spock-lucid" = callPackage + ({ mkDerivation, base, blaze-builder, lucid, Spock, transformers }: + mkDerivation { + pname = "Spock-lucid"; + version = "0.3.0.0"; + sha256 = "9291c9105d45f1807a63a633475b8e32ad9f9b99d3eff0db247079d69f707f3c"; + libraryHaskellDepends = [ + base blaze-builder lucid Spock transformers + ]; + homepage = "http://github.com/aelve/Spock-lucid"; + description = "Lucid support for Spock"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + }) {}; + + "Spock-worker_0_2_1_3" = callPackage ({ mkDerivation, base, containers, HTF, lifted-base, mtl, Spock , stm, text, time, transformers, vector }: @@ -18116,6 +18807,26 @@ self: { homepage = "http://github.com/agrafix/Spock-worker"; description = "Background workers for Spock"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "Spock-worker" = callPackage + ({ mkDerivation, base, containers, errors, HTF, lifted-base, mtl + , Spock, stm, text, time, transformers, vector + }: + mkDerivation { + pname = "Spock-worker"; + version = "0.3.0.0"; + sha256 = "f5ec5c09125a6dd6c6cd0534a1eb7bc0d6bfe9908f7328d999bf14bd785835f3"; + libraryHaskellDepends = [ + base containers errors lifted-base mtl Spock stm text time + transformers vector + ]; + testHaskellDepends = [ base containers HTF stm vector ]; + homepage = "http://github.com/agrafix/Spock-worker"; + description = "Background workers for Spock"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "SpreadsheetML" = callPackage @@ -18139,6 +18850,7 @@ self: { homepage = "http://liamoc.net/static/Sprig"; description = "Binding to Sprig"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Stasis" = callPackage @@ -18246,6 +18958,7 @@ self: { homepage = "http://github.com/rukav/Stomp"; description = "Client library for Stomp brokers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Strafunski-ATermLib" = callPackage @@ -18277,6 +18990,7 @@ self: { jailbreak = true; description = "Converts SDF to Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Strafunski-StrategyLib" = callPackage @@ -18341,6 +19055,7 @@ self: { homepage = "http://bonsaicode.wordpress.com/2009/06/07/strictbench-0-1/"; description = "Benchmarking code through strict evaluation"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SuffixStructures" = callPackage @@ -18365,6 +19080,7 @@ self: { homepage = "http://www.bioinf.uni-leipzig.de/~choener/"; description = "Suffix array construction"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SybWidget" = callPackage @@ -18398,6 +19114,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/Center/SyntaxMacrosForFree"; description = "Syntax Macros in the form of an EDSL"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Sysmon" = callPackage @@ -18416,6 +19133,7 @@ self: { homepage = "http://github.com/rukav/Sysmon"; description = "Sybase 15 sysmon reports processor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TBC" = callPackage @@ -18436,6 +19154,7 @@ self: { ]; description = "Testing By Convention"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TBit" = callPackage @@ -18453,6 +19172,7 @@ self: { jailbreak = true; description = "Utilities for condensed matter physics tight binding calculations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TCache" = callPackage @@ -18519,6 +19239,7 @@ self: { ]; description = "Template Your Boilerplate - a Template Haskell version of SYB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TableAlgebra" = callPackage @@ -18548,6 +19269,7 @@ self: { jailbreak = true; description = "A client for Quill databases"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Tablify" = callPackage @@ -18588,6 +19310,7 @@ self: { executableHaskellDepends = [ base mtl old-time ]; description = "Database library with left-fold interface, for PostgreSQL, Oracle, SQLite, ODBC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Tape" = callPackage @@ -18653,6 +19376,7 @@ self: { homepage = "http://liamoc.net/tea"; description = "TeaHS Game Creation Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Tensor" = callPackage @@ -18709,6 +19433,7 @@ self: { libraryHaskellDepends = [ base ]; librarySystemDepends = [ ogg theora ]; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {ogg = null; theora = null;}; "Thingie" = callPackage @@ -18720,6 +19445,7 @@ self: { libraryHaskellDepends = [ base cairo gtk mtl ]; description = "Purely functional 2D drawing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ThreadObjects" = callPackage @@ -18749,6 +19475,7 @@ self: { homepage = "http://thrift.apache.org"; description = "Haskell bindings for the Apache Thrift RPC system"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Tic-Tac-Toe" = callPackage @@ -18779,6 +19506,7 @@ self: { ]; description = "A sub-project (exercise) for a functional programming course"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TigerHash" = callPackage @@ -18812,6 +19540,7 @@ self: { ]; description = "A simple tile-based digital clock screen saver"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TinyLaunchbury" = callPackage @@ -18823,6 +19552,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Simple implementation of call-by-need using Launchbury's semantics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TinyURL" = callPackage @@ -18834,6 +19564,7 @@ self: { libraryHaskellDepends = [ base HTTP network ]; description = "Use TinyURL to compress URLs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Titim" = callPackage @@ -18848,6 +19579,7 @@ self: { jailbreak = true; description = "Game for Lounge Marmelade"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Top" = callPackage @@ -18863,6 +19595,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/bin/view/Helium/WebHome"; description = "Constraint solving framework employed by the Helium Compiler"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Tournament" = callPackage @@ -18882,6 +19615,7 @@ self: { homepage = "http://github.com/clux/tournament.hs"; description = "Tournament related algorithms"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TraceUtils" = callPackage @@ -18986,6 +19720,7 @@ self: { jailbreak = true; description = "A simple trend Graph script"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TrieMap" = callPackage @@ -19003,6 +19738,7 @@ self: { ]; description = "Automatic type inference of generalized tries with Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Twofish" = callPackage @@ -19042,6 +19778,7 @@ self: { jailbreak = true; description = "Typing speed game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TypeCompose" = callPackage @@ -19068,6 +19805,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/people/staff/oc/TypeIlluminator/"; description = "TypeIlluminator is a prototype tool exploring debugging of type errors/"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TypeNat" = callPackage @@ -19110,6 +19848,7 @@ self: { homepage = "http://haskell.cs.yale.edu/"; description = "Library for Arrowized Graphical User Interfaces"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "UMM" = callPackage @@ -19128,6 +19867,7 @@ self: { homepage = "http://www.korgwal.com/umm/"; description = "A small command-line accounting tool"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "URLT" = callPackage @@ -19145,6 +19885,7 @@ self: { ]; description = "Library for maintaining correctness of URLs within an application"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "URLb" = callPackage @@ -19184,6 +19925,7 @@ self: { homepage = "http://github.com/cirquit/UTFTConverter"; description = "Processing popular picture formats into .c or .raw format in RGB565"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Unique" = callPackage @@ -19192,12 +19934,11 @@ self: { }: mkDerivation { pname = "Unique"; - version = "0.4.2"; - sha256 = "82b5410ba4b432389b0897be3726c9eed9a08cdadc530cabf89d9bb890b13e66"; + version = "0.4.5"; + sha256 = "207488edc9915f826c7ef72386fccbad265a32394364fa9bcba73209e150e58b"; libraryHaskellDepends = [ base containers extra hashable unordered-containers ]; - jailbreak = true; description = "It provides the functionality like unix \"uniq\" utility"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -19229,6 +19970,7 @@ self: { homepage = "http://src.seereason.com/haskell-unixutils-shadow"; description = "A simple interface to shadow passwords (aka, shadow.h)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Updater" = callPackage @@ -19254,6 +19996,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/UrlDisp"; description = "Url dispatcher. Helps to retain friendly URLs in web applications."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Useful" = callPackage @@ -19280,28 +20023,30 @@ self: { }) {}; "VKHS" = callPackage - ({ mkDerivation, aeson, base, bimap, bytestring, containers, curl - , curlhs, directory, failure, filepath, mtl, optparse-applicative - , parsec, pretty-show, regexpr, safe, split, tagsoup - , template-haskell, text, time, transformers, utf8-string, vector + ({ mkDerivation, aeson, base, bytestring, case-insensitive, clock + , containers, data-default-class, directory, EitherT, filepath + , http-client, http-client-tls, http-types, mtl, network-uri + , optparse-applicative, parsec, pipes, pipes-http, regexpr, split + , tagsoup, text, time, utf8-string, vector }: mkDerivation { pname = "VKHS"; - version = "0.5.7"; - sha256 = "89cb9291667358d2df2fb86e1cb87fef42ebfbd410e31222d8b3d90199df72cd"; + version = "1.6.1"; + sha256 = "9a744578cdde23d4ffd477ef44443e52abf862ad48f5c328af229582b5f4c94a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base bimap bytestring containers curlhs directory failure - filepath mtl optparse-applicative parsec pretty-show regexpr safe - split tagsoup template-haskell text time transformers utf8-string - vector + aeson base bytestring case-insensitive clock containers + data-default-class directory EitherT filepath http-client + http-client-tls http-types mtl network-uri optparse-applicative + parsec pipes pipes-http split tagsoup time utf8-string vector ]; - executableSystemDepends = [ curl ]; + executableHaskellDepends = [ regexpr text ]; homepage = "http://github.com/grwlf/vkhs"; description = "Provides access to Vkontakte social network via public API"; license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) curl;}; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; "Validation" = callPackage ({ mkDerivation, base, bifunctors, semigroupoids, semigroups }: @@ -19340,6 +20085,7 @@ self: { jailbreak = true; description = "Provides Boolean instances for the Vec package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Vec-OpenGLRaw" = callPackage @@ -19352,6 +20098,7 @@ self: { homepage = "http://www.downstairspeople.org/darcs/Vec-opengl"; description = "Instances and functions to interoperate Vec and OpenGL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Vec-Transform" = callPackage @@ -19364,6 +20111,7 @@ self: { homepage = "https://github.com/tobbebex/Vec-Transform"; description = "This package is obsolete"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "VecN" = callPackage @@ -19428,6 +20176,19 @@ self: { license = "GPL"; }) {}; + "ViennaRNAParser_1_2_9" = callPackage + ({ mkDerivation, base, hspec, parsec, process, transformers }: + mkDerivation { + pname = "ViennaRNAParser"; + version = "1.2.9"; + sha256 = "f4e8964ce0710a0461d49e790784a8b82579f4c6079c5732b7fe1ae09fefb219"; + libraryHaskellDepends = [ base parsec process transformers ]; + testHaskellDepends = [ base hspec parsec ]; + description = "Libary for parsing ViennaRNA package output"; + license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "Vulkan" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -19471,6 +20232,7 @@ self: { jailbreak = true; description = "A simple command line tools to control the Asus WL500gP router"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WL500gPLib" = callPackage @@ -19506,6 +20268,7 @@ self: { jailbreak = true; description = "WebMoney authentication module"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "WURFL" = callPackage @@ -19517,6 +20280,7 @@ self: { libraryHaskellDepends = [ base haskell98 parsec ]; description = "Convert the WURFL file into a Parsec parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WXDiffCtrl" = callPackage @@ -19529,6 +20293,7 @@ self: { homepage = "http://wewantarock.wordpress.com"; description = "WXDiffCtrl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WashNGo" = callPackage @@ -19549,6 +20314,7 @@ self: { homepage = "http://www.informatik.uni-freiburg.de/~thiemann/haskell/WASH/"; description = "WASH is a family of EDSLs for programming Web applications in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WaveFront" = callPackage @@ -19564,6 +20330,7 @@ self: { ]; description = "Parsers and utilities for the OBJ WaveFront 3D model format"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Weather" = callPackage @@ -19609,6 +20376,7 @@ self: { homepage = "http://www.cs.brown.edu/research/plt/"; description = "JavaScript analysis tools"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WebBits-multiplate" = callPackage @@ -19625,6 +20393,7 @@ self: { jailbreak = true; description = "A Multiplate instance for JavaScript"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WebCont" = callPackage @@ -19644,6 +20413,7 @@ self: { homepage = "http://patch-tag.com/r/salazar/webconts/snapshot/current/content/pretty"; description = "Continuation based web programming for Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WeberLogic" = callPackage @@ -19687,6 +20457,7 @@ self: { jailbreak = true; description = "Regexp-like engine to scrap web data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Wheb" = callPackage @@ -19713,6 +20484,7 @@ self: { homepage = "https://github.com/hansonkd/Wheb-Framework"; description = "The frictionless WAI Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WikimediaParser" = callPackage @@ -19724,6 +20496,7 @@ self: { libraryHaskellDepends = [ base parsec ]; description = "A parser for wikimedia style article markup"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Win32" = callPackage @@ -19872,6 +20645,7 @@ self: { homepage = "http://www.cse.chalmers.se/~emax/wired/"; description = "Wire-aware hardware description"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "WordAlignment" = callPackage @@ -19912,6 +20686,7 @@ self: { homepage = "https://github.com/choener/WordAlignment"; description = "Bigram word pair alignments"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WordNet" = callPackage @@ -19923,6 +20698,7 @@ self: { libraryHaskellDepends = [ array base containers filepath ]; description = "Haskell interface to the WordNet database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WordNet-ghc74" = callPackage @@ -19934,6 +20710,7 @@ self: { libraryHaskellDepends = [ array base containers filepath ]; description = "Haskell interface to the WordNet database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Wordlint" = callPackage @@ -19950,6 +20727,7 @@ self: { homepage = "https://github.com/gbgar/Wordlint"; description = "Plaintext prose redundancy linter"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Workflow_0_8_1" = callPackage @@ -20003,6 +20781,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/WxGeneric"; description = "Generic (SYB3) construction of wxHaskell widgets"; license = "LGPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "X11" = callPackage @@ -20037,6 +20816,7 @@ self: { jailbreak = true; description = "Missing bindings to the X11 graphics library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.xorg) libX11;}; "X11-rm" = callPackage @@ -20048,6 +20828,7 @@ self: { libraryHaskellDepends = [ base X11 ]; description = "A binding to the resource management functions missing from X11"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "X11-xdamage" = callPackage @@ -20061,6 +20842,7 @@ self: { homepage = "http://darcs.haskell.org/X11-xdamage"; description = "A binding to the Xdamage X11 extension library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {Xdamage = null;}; "X11-xfixes" = callPackage @@ -20074,6 +20856,7 @@ self: { homepage = "https://github.com/reacocard/x11-xfixes"; description = "A binding to the Xfixes X11 extension library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {Xfixes = null;}; "X11-xft" = callPackage @@ -20136,6 +20919,7 @@ self: { homepage = "http://kawais.org.ua/XMMS/"; description = "XMMS2 client library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {xmmsclient = null; xmmsclient-glib = null;}; "XMPP" = callPackage @@ -20153,6 +20937,7 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/matsuri"; description = "XMPP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "XSaiga" = callPackage @@ -20177,6 +20962,7 @@ self: { homepage = "http://hafiz.myweb.cs.uwindsor.ca/proHome.html"; description = "An implementation of a polynomial-time top-down parser suitable for NLP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Xauth" = callPackage @@ -20207,6 +20993,7 @@ self: { ]; description = "Gtk command launcher with identicon"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "XmlHtmlWriter" = callPackage @@ -20219,6 +21006,7 @@ self: { homepage = "http://github.com/mmirman/haskogeneous/tree/XmlHtmlWriter"; description = "A library for writing XML and HTML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Xorshift128Plus" = callPackage @@ -20251,6 +21039,7 @@ self: { homepage = "http://github.com/snkkid/YACPong"; description = "Yet Another Pong Clone using SDL"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "YFrob" = callPackage @@ -20263,6 +21052,7 @@ self: { homepage = "http://www.haskell.org/yampa/"; description = "Yampa-based library for programming robots"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Yablog" = callPackage @@ -20298,6 +21088,7 @@ self: { homepage = "http://gitweb.konn-san.com/repo/Yablog/tree/master"; description = "A simple blog engine powered by Yesod"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "YamlReference" = callPackage @@ -20323,6 +21114,7 @@ self: { homepage = "http://www.ben-kiki.org/oren/YamlReference"; description = "YAML reference implementation"; license = "LGPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Yampa_0_9_6" = callPackage @@ -20404,6 +21196,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Yampa"; description = "Library for programming hybrid systems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "Yampa-core" = callPackage @@ -20438,6 +21231,7 @@ self: { homepage = "http://www-db.informatik.uni-tuebingen.de/team/giorgidze"; description = "Software synthesizer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "Yocto" = callPackage @@ -20467,6 +21261,7 @@ self: { homepage = "http://code.google.com/p/yogurt-mud/"; description = "A MUD client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Yogurt-Standalone" = callPackage @@ -20487,6 +21282,7 @@ self: { homepage = "http://code.google.com/p/yogurt-mud/"; description = "A functional MUD client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) readline;}; "ZEBEDDE" = callPackage @@ -20515,6 +21311,7 @@ self: { homepage = "https://github.com/jkarni/ZipperFS"; description = "Oleg's Zipper FS"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ZMachine" = callPackage @@ -20528,6 +21325,7 @@ self: { executableHaskellDepends = [ array base gtk mtl random ]; description = "A Z-machine interpreter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ZipFold" = callPackage @@ -20582,6 +21380,7 @@ self: { homepage = "https://github.com/MedeaMelana/Zwaluw"; description = "Combinators for bidirectional URL routing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "a50" = callPackage @@ -20631,6 +21430,7 @@ self: { homepage = "https://github.com/pa-ba/abc-puzzle"; description = "Generate instances of the ABC Logic Puzzle"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "abcBridge" = callPackage @@ -20656,6 +21456,7 @@ self: { ]; description = "Bindings for ABC, A System for Sequential Synthesis and Verification"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) abc;}; "abcnotation" = callPackage @@ -20749,6 +21550,7 @@ self: { homepage = "https://github.com/simonmar/monad-par"; description = "Provides the class ParAccelerate, nothing more"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "abt" = callPackage @@ -20849,6 +21651,7 @@ self: { homepage = "http://code.haskell.org/~thielema/accelerate-arithmetic/"; description = "Linear algebra and interpolation using the Accelerate framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "accelerate-cublas" = callPackage @@ -21011,6 +21814,7 @@ self: { homepage = "http://code.haskell.org/~thielema/accelerate-fourier/"; description = "Fast Fourier transform and convolution using the Accelerate framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "accelerate-fourier-benchmark" = callPackage @@ -21072,6 +21876,7 @@ self: { homepage = "http://code.haskell.org/~thielema/accelerate-utility/"; description = "Utility functions for the Accelerate framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "accentuateus" = callPackage @@ -21085,6 +21890,7 @@ self: { homepage = "http://accentuate.us/"; description = "A Haskell implementation of the Accentuate.us API."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "access-time" = callPackage @@ -21098,6 +21904,7 @@ self: { homepage = "http://www.github.com/batterseapower/access-time"; description = "Cross-platform support for retrieving file access times"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ace" = callPackage @@ -21182,6 +21989,7 @@ self: { jailbreak = true; description = "A replication backend for acid-state"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "acid-state-tls" = callPackage @@ -21346,6 +22154,7 @@ self: { homepage = "http://github.com/joeyadams/haskell-acme-hq9plus"; description = "An embedded DSL for the HQ9+ programming language"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "acme-http" = callPackage @@ -21379,6 +22188,7 @@ self: { executableHaskellDepends = [ base ]; description = "Evil inventions in the Tri-State area"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "acme-io" = callPackage @@ -21486,6 +22296,7 @@ self: { jailbreak = true; description = "Define the less than and add and subtract for nats"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "acme-omitted" = callPackage @@ -21585,6 +22396,7 @@ self: { ]; description = "Proper names for curry and uncurry"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "acme-strfry" = callPackage @@ -21658,6 +22470,7 @@ self: { homepage = "https://github.com/ion1/acme-zero-one"; description = "The absorbing element of package dependencies"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "action-permutations" = callPackage @@ -21813,6 +22626,7 @@ self: { jailbreak = true; description = "Haskell code presentation tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "activehs-base" = callPackage @@ -21852,6 +22666,7 @@ self: { homepage = "http://sulzmann.blogspot.com/2008/10/actors-with-multi-headed-receive.html"; description = "Actors with multi-headed receive clauses"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ad_4_2_1_1" = callPackage @@ -21988,6 +22803,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/adaptive-containers"; description = "Self optimizing container types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "adaptive-tuple" = callPackage @@ -22000,6 +22816,7 @@ self: { homepage = "http://inmachina.net/~jwlato/haskell/"; description = "Self-optimizing tuple types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "adb" = callPackage @@ -22067,6 +22884,7 @@ self: { homepage = "http://sep07.mroot.net/"; description = "Ad-hoc P2P network protocol"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "adict" = callPackage @@ -22087,6 +22905,7 @@ self: { homepage = "https://github.com/kawu/adict"; description = "Approximate dictionary searching"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "adjunctions_4_2" = callPackage @@ -22202,6 +23021,7 @@ self: { homepage = "https://github.com/stepcut/ase2css"; description = "parse Adobe Swatch Exchange files and (optionally) output .css files with the colors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "adp-multi" = callPackage @@ -22224,6 +23044,7 @@ self: { homepage = "http://adp-multi.ruhoh.com"; description = "ADP for multiple context-free languages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "adp-multi-monadiccp" = callPackage @@ -22245,6 +23066,7 @@ self: { homepage = "http://adp-multi.ruhoh.com"; description = "Subword construction in adp-multi using monadiccp"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson_0_7_0_6" = callPackage @@ -22366,7 +23188,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "aeson_0_11_1_0" = callPackage + "aeson_0_11_1_4" = callPackage ({ mkDerivation, attoparsec, base, base-orphans, bytestring , containers, deepseq, dlist, fail, ghc-prim, hashable, HUnit, mtl , QuickCheck, quickcheck-instances, scientific, semigroups, syb @@ -22376,18 +23198,18 @@ self: { }: mkDerivation { pname = "aeson"; - version = "0.11.1.0"; - sha256 = "91a03c818312f422d17dddfb91b3d63e8b0e5bbea548a04fea325e926a019eca"; + version = "0.11.1.4"; + sha256 = "59ee31bb0fe71ae68bbfa3f3b977443ff200c6dfaaa442485e7295a75fcf7845"; libraryHaskellDepends = [ attoparsec base bytestring containers deepseq dlist fail ghc-prim hashable mtl scientific semigroups syb tagged template-haskell text time transformers unordered-containers vector ]; testHaskellDepends = [ - attoparsec base base-orphans bytestring containers ghc-prim HUnit - QuickCheck quickcheck-instances semigroups tagged template-haskell - test-framework test-framework-hunit test-framework-quickcheck2 text - time unordered-containers vector + attoparsec base base-orphans bytestring containers ghc-prim + hashable HUnit QuickCheck quickcheck-instances semigroups tagged + template-haskell test-framework test-framework-hunit + test-framework-quickcheck2 text time unordered-containers vector ]; homepage = "https://github.com/bos/aeson"; description = "Fast JSON parsing and encoding"; @@ -22408,7 +23230,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "aeson-better-errors" = callPackage + "aeson-better-errors_0_9_0" = callPackage ({ mkDerivation, aeson, base, bytestring, dlist, mtl, scientific , text, transformers, transformers-compat, unordered-containers , vector, void @@ -22424,6 +23246,25 @@ self: { homepage = "https://github.com/hdgarrood/aeson-better-errors"; description = "Better error messages when decoding JSON values"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "aeson-better-errors" = callPackage + ({ mkDerivation, aeson, base, bytestring, dlist, mtl, scientific + , text, transformers, transformers-compat, unordered-containers + , vector, void + }: + mkDerivation { + pname = "aeson-better-errors"; + version = "0.9.0.1"; + sha256 = "125f4453f945b5b051fa596cd148b7db0414942cdfbe1d6fd0359989ab45d8e6"; + libraryHaskellDepends = [ + aeson base bytestring dlist mtl scientific text transformers + transformers-compat unordered-containers vector void + ]; + homepage = "https://github.com/hdgarrood/aeson-better-errors"; + description = "Better error messages when decoding JSON values"; + license = stdenv.lib.licenses.mit; }) {}; "aeson-bson" = callPackage @@ -22441,6 +23282,7 @@ self: { jailbreak = true; description = "Mapping between Aeson's JSON and Bson objects"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson-casing" = callPackage @@ -22494,6 +23336,8 @@ self: { pname = "aeson-compat"; version = "0.3.1.0"; sha256 = "9275040d031433eb0006bce8228a0828e058d547c7d07d61ab0b22154286d736"; + revision = "1"; + editedCabalFile = "88dde146e4177a807888b7058f8e24d057fa826205a005ade669ce1fc395f4a2"; libraryHaskellDepends = [ aeson attoparsec base bytestring containers exceptions hashable nats scientific text time time-locale-compat unordered-containers @@ -22776,6 +23620,7 @@ self: { homepage = "http://github.com/mailrank/aeson"; description = "Fast JSON parsing and encoding (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson-parsec-picky" = callPackage @@ -22969,6 +23814,7 @@ self: { homepage = "https://github.com/lassoinc/aeson-smart"; description = "Smart derivation of Aeson instances"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson-streams" = callPackage @@ -23177,6 +24023,7 @@ self: { homepage = "http://tomahawkins.org"; description = "Infinite state model checking of iterative C programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ag-pictgen" = callPackage @@ -23210,6 +24057,7 @@ self: { ]; description = "Http server for Agda (prototype)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "agda-snippets" = callPackage @@ -23229,6 +24077,7 @@ self: { homepage = "http://github.com/liamoc/agda-snippets#readme"; description = "Render just the Agda snippets of a literate Agda file to HTML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "agda-snippets-hakyll" = callPackage @@ -23247,6 +24096,7 @@ self: { homepage = "https://github.com/liamoc/agda-snippets#readme"; description = "Literate Agda support using agda-snippets, for Hakyll pages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "agentx" = callPackage @@ -23375,6 +24225,7 @@ self: { homepage = "https://github.com/joelteon/airbrake"; description = "An Airbrake notifier for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "airship_0_4_1_0" = callPackage @@ -23441,7 +24292,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "airship" = callPackage + "airship_0_4_3_0" = callPackage ({ mkDerivation, attoparsec, base, base64-bytestring, blaze-builder , bytestring, bytestring-trie, case-insensitive, cryptohash , directory, either, filepath, http-date, http-media, http-types @@ -23466,6 +24317,38 @@ self: { base bytestring tasty tasty-hunit tasty-quickcheck text transformers wai ]; + jailbreak = true; + homepage = "https://github.com/helium/airship/"; + description = "A Webmachine-inspired HTTP library"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "airship" = callPackage + ({ mkDerivation, attoparsec, base, base64-bytestring, blaze-builder + , bytestring, bytestring-trie, case-insensitive, cryptohash + , directory, either, filepath, http-date, http-media, http-types + , lifted-base, microlens, mime-types, mmorph, monad-control, mtl + , network, old-locale, random, tasty, tasty-hunit, tasty-quickcheck + , text, time, transformers, transformers-base, unix + , unordered-containers, wai, wai-extra + }: + mkDerivation { + pname = "airship"; + version = "0.5.0"; + sha256 = "f42e81e118a419125ed559f6041a7c17fd07020d2bb5052d1649301049689951"; + libraryHaskellDepends = [ + attoparsec base base64-bytestring blaze-builder bytestring + bytestring-trie case-insensitive cryptohash directory either + filepath http-date http-media http-types lifted-base microlens + mime-types mmorph monad-control mtl network old-locale random text + time transformers transformers-base unix unordered-containers wai + wai-extra + ]; + testHaskellDepends = [ + base bytestring tasty tasty-hunit tasty-quickcheck text + transformers wai + ]; homepage = "https://github.com/helium/airship/"; description = "A Webmachine-inspired HTTP library"; license = stdenv.lib.licenses.mit; @@ -23475,8 +24358,8 @@ self: { ({ mkDerivation, array, base, containers, mtl, random, vector }: mkDerivation { pname = "aivika"; - version = "4.3.2"; - sha256 = "a4209fea2b6d66bfd5d5d9a6477f95ce04c2c5fac06bfbde3c51941d84fba063"; + version = "4.3.3"; + sha256 = "3faa7104a9b51c138b9f3a6f3762de08ccff1e427653fee218466eb256b8cb3a"; libraryHaskellDepends = [ array base containers mtl random vector ]; @@ -23575,8 +24458,8 @@ self: { }: mkDerivation { pname = "aivika-transformers"; - version = "4.3.2"; - sha256 = "34a0f93a75918a9a4c9db2062522bc6e042b33705797ad7a50215f244fa72355"; + version = "4.3.3"; + sha256 = "1d05966db50550d92b75338cb4805c8b7f5c074ce7cac431e1b5e8e44902d5f5"; libraryHaskellDepends = [ aivika array base containers mtl random vector ]; @@ -23610,6 +24493,7 @@ self: { homepage = "http://ajhc.metasepi.org/"; description = "Haskell compiler that produce binary through C language"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "al" = callPackage @@ -23624,6 +24508,7 @@ self: { homepage = "http://github.com/phaazon/al"; description = "OpenAL 1.1 raw API."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openal;}; "alarmclock_0_2_0_5" = callPackage @@ -23680,6 +24565,7 @@ self: { homepage = "https://github.com/Rnhmjoj/alea"; description = "a diceware passphrase generator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alex_3_1_3" = callPackage @@ -23859,6 +24745,7 @@ self: { homepage = "https://github.com/mrkkrp/alga"; description = "Algorithmic automation for various DAWs"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "algebra" = callPackage @@ -23933,6 +24820,7 @@ self: { homepage = "https://github.com/wdanilo/algebraic"; description = "General linear algebra structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "algebraic-classes" = callPackage @@ -24001,8 +24889,8 @@ self: { ({ mkDerivation, base, containers, mtl, syb, vector }: mkDerivation { pname = "alloy"; - version = "1.2.1"; - sha256 = "db73b7f02b642aec6a007c1542874d1bb674e482bc0d19f916a9410f466c7601"; + version = "1.2.2"; + sha256 = "f0a389f7008687b6244b7d6bb5598e1d0bd1e089c96c7a45cfc0f0160feac343"; libraryHaskellDepends = [ base containers mtl syb vector ]; description = "Generic programming library"; license = stdenv.lib.licenses.bsd3; @@ -24050,6 +24938,7 @@ self: { homepage = "http://www.ccs.neu.edu/~tov/pubs/alms/"; description = "a practical affine language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alpha" = callPackage @@ -24072,6 +24961,7 @@ self: { homepage = "http://www.alpha-lang.net/"; description = "A compiler for the Alpha language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alpino-tools" = callPackage @@ -24096,6 +24986,7 @@ self: { homepage = "http://github.com/danieldk/alpino-tools"; description = "Alpino data manipulation tools"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alsa" = callPackage @@ -24114,6 +25005,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Binding to the ALSA Library API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) alsaLib;}; "alsa-core" = callPackage @@ -24127,6 +25019,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Binding to the ALSA Library API (Exceptions)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) alsaLib;}; "alsa-gui" = callPackage @@ -24146,6 +25039,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Some simple interactive programs for sending MIDI control messages via ALSA"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "alsa-midi" = callPackage @@ -24167,6 +25061,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Bindings for the ALSA sequencer API (MIDI stuff)"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) alsaLib;}; "alsa-mixer" = callPackage @@ -24181,6 +25076,7 @@ self: { homepage = "https://github.com/ttuegel/alsa-mixer"; description = "Bindings to the ALSA simple mixer API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) alsaLib;}; "alsa-pcm" = callPackage @@ -24201,6 +25097,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Binding to the ALSA Library API (PCM audio)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) alsaLib;}; "alsa-pcm-tests" = callPackage @@ -24214,6 +25111,7 @@ self: { executableHaskellDepends = [ alsa base ]; description = "Tests for the ALSA audio signal library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alsa-seq" = callPackage @@ -24235,6 +25133,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Binding to the ALSA Library API (MIDI sequencer)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) alsaLib;}; "alsa-seq-tests" = callPackage @@ -24249,6 +25148,7 @@ self: { jailbreak = true; description = "Tests for the ALSA sequencer library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "altcomposition" = callPackage @@ -24290,6 +25190,7 @@ self: { homepage = "http://repo.or.cz/w/altfloat.git"; description = "Alternative floating point support for GHC"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alure" = callPackage @@ -24302,6 +25203,7 @@ self: { librarySystemDepends = [ alure ]; description = "A Haskell binding for ALURE"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {alure = null;}; "amazon-emailer" = callPackage @@ -24323,6 +25225,7 @@ self: { homepage = "https://github.com/dbp/amazon-emailer"; description = "A queue daemon for Amazon's SES with a PostgreSQL table as a queue"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazon-emailer-client-snap" = callPackage @@ -24366,6 +25269,7 @@ self: { homepage = "https://github.com/AndrewRademacher/hs-amazon-products"; description = "Connector for Amazon Products API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka_0_3_3_1" = callPackage @@ -24437,7 +25341,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka" = callPackage + "amazonka_1_3_7" = callPackage ({ mkDerivation, amazonka-core, base, bytestring, conduit , conduit-extra, directory, exceptions, http-conduit, ini, mmorph , monad-control, mtl, resourcet, retry, tasty, tasty-hunit, text @@ -24453,9 +25357,52 @@ self: { retry text time transformers transformers-base transformers-compat ]; testHaskellDepends = [ base tasty tasty-hunit ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Comprehensive Amazon Web Services SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka" = callPackage + ({ mkDerivation, amazonka-core, base, bytestring, conduit + , conduit-extra, directory, exceptions, http-conduit, ini, mmorph + , monad-control, mtl, resourcet, retry, tasty, tasty-hunit, text + , time, transformers, transformers-base, transformers-compat + }: + mkDerivation { + pname = "amazonka"; + version = "1.4.0"; + sha256 = "b1822a420e13d253b6f62e096a2a0879aa20e53ab6e2866e95b98ddbee5dec85"; + libraryHaskellDepends = [ + amazonka-core base bytestring conduit conduit-extra directory + exceptions http-conduit ini mmorph monad-control mtl resourcet + retry text time transformers transformers-base transformers-compat + ]; + testHaskellDepends = [ base tasty tasty-hunit ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Comprehensive Amazon Web Services SDK"; + license = "unknown"; + }) {}; + + "amazonka-apigateway_1_3_7" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-apigateway"; + version = "1.3.7"; + sha256 = "69dc8132895383cee52625053c5a26d00522592441b86382425e2ad717113953"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon API Gateway SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-apigateway" = callPackage @@ -24464,8 +25411,8 @@ self: { }: mkDerivation { pname = "amazonka-apigateway"; - version = "1.3.7"; - sha256 = "69dc8132895383cee52625053c5a26d00522592441b86382425e2ad717113953"; + version = "1.4.0"; + sha256 = "0db9b5216d5746d053df9e05217dd19d42623b1ddf3bc1dc33955935730a389c"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -24518,7 +25465,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-autoscaling" = callPackage + "amazonka-autoscaling_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -24531,9 +25478,47 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Auto Scaling SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-autoscaling" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-autoscaling"; + version = "1.4.0"; + sha256 = "ead0e710801c76fb4568dfb80acafba61428a872760191d808d8ff3304e9dcd8"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Auto Scaling SDK"; + license = "unknown"; + }) {}; + + "amazonka-certificatemanager" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-certificatemanager"; + version = "1.4.0"; + sha256 = "9480dd882cb47061f1c1aa14993d70f20d7b888a27ad3d0279afc7488f543a77"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Certificate Manager SDK"; + license = "unknown"; }) {}; "amazonka-cloudformation_0_3_3" = callPackage @@ -24578,7 +25563,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cloudformation" = callPackage + "amazonka-cloudformation_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -24591,6 +25576,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudFormation SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cloudformation" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudformation"; + version = "1.4.0"; + sha256 = "bbd009ca7de4670690206efd08d0b89e97a05e7c1d7bab50d84f521ceebda927"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudFormation SDK"; license = "unknown"; @@ -24638,7 +25643,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cloudfront" = callPackage + "amazonka-cloudfront_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -24651,6 +25656,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudFront SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cloudfront" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudfront"; + version = "1.4.0"; + sha256 = "a4d75366edd0b0ffb9b33e83de100b0b6b3dc38b1f5632526881cf269d90f0a6"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudFront SDK"; license = "unknown"; @@ -24698,7 +25723,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cloudhsm" = callPackage + "amazonka-cloudhsm_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -24711,6 +25736,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudHSM SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cloudhsm" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudhsm"; + version = "1.4.0"; + sha256 = "0cf44dfce3e233729645d77f5c34bcb93c05b86de6d2993e85d6188c0260d82c"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudHSM SDK"; license = "unknown"; @@ -24758,7 +25803,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cloudsearch" = callPackage + "amazonka-cloudsearch_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -24771,6 +25816,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudSearch SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cloudsearch" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudsearch"; + version = "1.4.0"; + sha256 = "ab38b598a56b9711fcdb889b8d4350707e5d6278c7de8d670595eff6eed81f4a"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudSearch SDK"; license = "unknown"; @@ -24818,7 +25883,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cloudsearch-domains" = callPackage + "amazonka-cloudsearch-domains_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -24831,6 +25896,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudSearch Domain SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cloudsearch-domains" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudsearch-domains"; + version = "1.4.0"; + sha256 = "25028c168eef469738ccfe68a4badedf3018d889e24a84a51b28874400354cf8"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudSearch Domain SDK"; license = "unknown"; @@ -24878,7 +25963,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cloudtrail" = callPackage + "amazonka-cloudtrail_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -24891,6 +25976,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudTrail SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cloudtrail" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudtrail"; + version = "1.4.0"; + sha256 = "29c6efbadddd29f1fb966e24cef7bf680118a1a190b65abe110d7c9bbd7d0428"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudTrail SDK"; license = "unknown"; @@ -24938,7 +26043,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cloudwatch" = callPackage + "amazonka-cloudwatch_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -24951,9 +26056,47 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudWatch SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cloudwatch" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudwatch"; + version = "1.4.0"; + sha256 = "cb60c6624aee9b159f6ed4566c589d5d28566451120b9dab6dddeb39d30f2874"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudWatch SDK"; + license = "unknown"; + }) {}; + + "amazonka-cloudwatch-events" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudwatch-events"; + version = "1.4.0"; + sha256 = "5cb2ed261e2410cdeefe5bb32bc9b375d3b2a02c04ad0be75c19a9e063f2be6c"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudWatch Events SDK"; + license = "unknown"; }) {}; "amazonka-cloudwatch-logs_0_3_3" = callPackage @@ -24998,7 +26141,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cloudwatch-logs" = callPackage + "amazonka-cloudwatch-logs_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -25011,9 +26154,49 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudWatch Logs SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cloudwatch-logs" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudwatch-logs"; + version = "1.4.0"; + sha256 = "bf66e0c1a2c2fb87ec3afa981b567b7cbb39a92227dc05b4e89e813c08500f4f"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudWatch Logs SDK"; + license = "unknown"; + }) {}; + + "amazonka-codecommit_1_3_7" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-codecommit"; + version = "1.3.7"; + sha256 = "71d52bd60f5d5b7a04e33b9c41aedef5d34cfd0587af16cbce5c8b7346519bb7"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CodeCommit SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-codecommit" = callPackage @@ -25022,8 +26205,8 @@ self: { }: mkDerivation { pname = "amazonka-codecommit"; - version = "1.3.7"; - sha256 = "71d52bd60f5d5b7a04e33b9c41aedef5d34cfd0587af16cbce5c8b7346519bb7"; + version = "1.4.0"; + sha256 = "ed0c9e78cbf0d4466f59f4f9b93bc2bd995138f24377e77351841aa11a5cbda0"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -25076,7 +26259,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-codedeploy" = callPackage + "amazonka-codedeploy_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -25089,9 +26272,49 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CodeDeploy SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-codedeploy" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-codedeploy"; + version = "1.4.0"; + sha256 = "54dcede69badb68d6bd1b0d44ae39a511840305dca9efe7c60cef08a101810e7"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CodeDeploy SDK"; + license = "unknown"; + }) {}; + + "amazonka-codepipeline_1_3_7" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-codepipeline"; + version = "1.3.7"; + sha256 = "9b113de6a18eac005182c85e37a21c59cf077d78debcf229e0c175b93b6686cb"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CodePipeline SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-codepipeline" = callPackage @@ -25100,8 +26323,8 @@ self: { }: mkDerivation { pname = "amazonka-codepipeline"; - version = "1.3.7"; - sha256 = "9b113de6a18eac005182c85e37a21c59cf077d78debcf229e0c175b93b6686cb"; + version = "1.4.0"; + sha256 = "a285b6ccdb0d653e6da8ccd7347d11f69f75882b28843b51d44e1fd00a759019"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -25154,7 +26377,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cognito-identity" = callPackage + "amazonka-cognito-identity_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -25167,6 +26390,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Cognito Identity SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cognito-identity" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cognito-identity"; + version = "1.4.0"; + sha256 = "787e0de095b2f8c2d657091c6cd473816d7e51b8c444ced4057570df14bdaaa4"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Cognito Identity SDK"; license = "unknown"; @@ -25214,7 +26457,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cognito-sync" = callPackage + "amazonka-cognito-sync_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -25227,6 +26470,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Cognito Sync SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cognito-sync" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cognito-sync"; + version = "1.4.0"; + sha256 = "47181614278b6eb836519bdbe34e3a99293a2ae2a1f33dcd1f2278619114fde4"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Cognito Sync SDK"; license = "unknown"; @@ -25274,7 +26537,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-config" = callPackage + "amazonka-config_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -25287,6 +26550,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Config SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-config" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-config"; + version = "1.4.0"; + sha256 = "083d80c419f5ae269171ba8022300f5366ba83cd653e56a1a5b82b2c45131d5f"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Config SDK"; license = "unknown"; @@ -25391,7 +26674,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-core" = callPackage + "amazonka-core_1_3_7" = callPackage ({ mkDerivation, aeson, attoparsec, base, bifunctors, bytestring , case-insensitive, conduit, conduit-extra, cryptonite, exceptions , hashable, http-conduit, http-types, lens, memory, mtl, QuickCheck @@ -25419,6 +26702,37 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Core data types and functionality for Amazonka libraries"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-core" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bifunctors, bytestring + , case-insensitive, conduit, conduit-extra, cryptonite, exceptions + , hashable, http-conduit, http-types, lens, memory, mtl, QuickCheck + , quickcheck-unicode, resourcet, scientific, semigroups, tagged + , tasty, tasty-hunit, tasty-quickcheck, template-haskell, text + , time, transformers, transformers-compat, unordered-containers + , xml-conduit, xml-types + }: + mkDerivation { + pname = "amazonka-core"; + version = "1.4.0"; + sha256 = "0001c7e562b35b65c458fadf42ecfb069a6d0fd19d806cd998538f47640996fc"; + libraryHaskellDepends = [ + aeson attoparsec base bifunctors bytestring case-insensitive + conduit conduit-extra cryptonite exceptions hashable http-conduit + http-types lens memory mtl resourcet scientific semigroups tagged + text time transformers transformers-compat unordered-containers + xml-conduit xml-types + ]; + testHaskellDepends = [ + aeson base bytestring case-insensitive http-types QuickCheck + quickcheck-unicode tasty tasty-hunit tasty-quickcheck + template-haskell text time + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Core data types and functionality for Amazonka libraries"; + license = "unknown"; }) {}; "amazonka-datapipeline_0_3_3" = callPackage @@ -25463,7 +26777,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-datapipeline" = callPackage + "amazonka-datapipeline_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -25476,9 +26790,49 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Data Pipeline SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-datapipeline" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-datapipeline"; + version = "1.4.0"; + sha256 = "cc3fc5311709e78485fadd429f04c077fab72b73d4be28b6a0d6e8f1a35111f9"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Data Pipeline SDK"; + license = "unknown"; + }) {}; + + "amazonka-devicefarm_1_3_7" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-devicefarm"; + version = "1.3.7"; + sha256 = "f370f855bcdb2b5a504f399add12856884f3faa3ca465dc18fd1e0877eb74e7b"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Device Farm SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-devicefarm" = callPackage @@ -25487,8 +26841,8 @@ self: { }: mkDerivation { pname = "amazonka-devicefarm"; - version = "1.3.7"; - sha256 = "f370f855bcdb2b5a504f399add12856884f3faa3ca465dc18fd1e0877eb74e7b"; + version = "1.4.0"; + sha256 = "8b1bdbb0ff4778cf5c7f72b5a01509b182b4d90628e640ef0fa6709ce09dbea0"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -25541,7 +26895,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-directconnect" = callPackage + "amazonka-directconnect_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -25554,9 +26908,67 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Direct Connect SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-directconnect" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-directconnect"; + version = "1.4.0"; + sha256 = "6450a238d41679b03d02313c8aa01082c516d888723a73f4e2e5f0f83038d783"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Direct Connect SDK"; + license = "unknown"; + }) {}; + + "amazonka-dms" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-dms"; + version = "1.4.0"; + sha256 = "0473dfb47b3d0896240b7a74ad769ec44e39bfd77a264d64ff1c0b1f0c032392"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Database Migration Service SDK"; + license = "unknown"; + }) {}; + + "amazonka-ds_1_3_7" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ds"; + version = "1.3.7"; + sha256 = "fd75ba2790bf61db6db791afb2eb52e7867f2294275b9fdf8c5e2040bd8e7628"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Directory Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-ds" = callPackage @@ -25565,8 +26977,8 @@ self: { }: mkDerivation { pname = "amazonka-ds"; - version = "1.3.7"; - sha256 = "fd75ba2790bf61db6db791afb2eb52e7867f2294275b9fdf8c5e2040bd8e7628"; + version = "1.4.0"; + sha256 = "8452fa1e22b4be61794fb5dd613468c4c320d1be60a935064eee215a472e1db0"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -25619,7 +27031,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-dynamodb" = callPackage + "amazonka-dynamodb_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -25632,9 +27044,49 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon DynamoDB SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-dynamodb" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-dynamodb"; + version = "1.4.0"; + sha256 = "0647f2f6f803996b2e4ac3d7cc991582f1332d458e793afe439e2a260e89914b"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon DynamoDB SDK"; + license = "unknown"; + }) {}; + + "amazonka-dynamodb-streams_1_3_7" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-dynamodb-streams"; + version = "1.3.7"; + sha256 = "a3b5304cde5c828135a813c2f005d5bdc9d0316ab09c966f3caffae084971072"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon DynamoDB Streams SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-dynamodb-streams" = callPackage @@ -25643,8 +27095,8 @@ self: { }: mkDerivation { pname = "amazonka-dynamodb-streams"; - version = "1.3.7"; - sha256 = "a3b5304cde5c828135a813c2f005d5bdc9d0316ab09c966f3caffae084971072"; + version = "1.4.0"; + sha256 = "34e548d216e8eec247ae3563fa780fa072e137e1102866ea2f0e43ae5d3c4a59"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -25711,7 +27163,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-ec2" = callPackage + "amazonka-ec2_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -25724,10 +27176,49 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Compute Cloud SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-ec2" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ec2"; + version = "1.4.0"; + sha256 = "dfe0782c39bf6ac20cd60273acaa8008ad5f2572ab5ea4868dcf577f77bdcb80"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + doCheck = false; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic Compute Cloud SDK"; + license = "unknown"; + }) {}; + + "amazonka-ecr" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ecr"; + version = "1.4.0"; + sha256 = "868774dc8cd8d0ef020a1166e92bf3430b3a2746c7467b911e7824981da9862f"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon EC2 Container Registry SDK"; + license = "unknown"; }) {}; "amazonka-ecs_0_3_3" = callPackage @@ -25772,7 +27263,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-ecs" = callPackage + "amazonka-ecs_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -25785,9 +27276,49 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon EC2 Container Service SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-ecs" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ecs"; + version = "1.4.0"; + sha256 = "38b5a174e2835095eab92e0352202744f9cca05f33350518de9bf8ef77416cdb"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon EC2 Container Service SDK"; + license = "unknown"; + }) {}; + + "amazonka-efs_1_3_7" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-efs"; + version = "1.3.7"; + sha256 = "ae1a69233552debb037c3d87062fe79562af74b735758e8c6cfcf59e8fc4269f"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic File System SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-efs" = callPackage @@ -25796,8 +27327,8 @@ self: { }: mkDerivation { pname = "amazonka-efs"; - version = "1.3.7"; - sha256 = "ae1a69233552debb037c3d87062fe79562af74b735758e8c6cfcf59e8fc4269f"; + version = "1.4.0"; + sha256 = "f175a1b7c34225bf09983035e047d8ed4c6510c2aa9ce9fa3e7db6bd791ae713"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -25850,7 +27381,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-elasticache" = callPackage + "amazonka-elasticache_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -25863,6 +27394,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon ElastiCache SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-elasticache" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-elasticache"; + version = "1.4.0"; + sha256 = "d2006ef83242d723c83bf44e33d4160e65316fdbf8756ef03167f11ec133e55b"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon ElastiCache SDK"; license = "unknown"; @@ -25910,7 +27461,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-elasticbeanstalk" = callPackage + "amazonka-elasticbeanstalk_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -25923,9 +27474,49 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Beanstalk SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-elasticbeanstalk" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-elasticbeanstalk"; + version = "1.4.0"; + sha256 = "b83c1eb2797c3106c168323c698224ae3825b47482d321c8240b017d1e6d0d11"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic Beanstalk SDK"; + license = "unknown"; + }) {}; + + "amazonka-elasticsearch_1_3_7" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-elasticsearch"; + version = "1.3.7"; + sha256 = "7179150c600ed9a2889700a1433f4bc12eec1406e74c25341993d3a8c27575b4"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elasticsearch Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-elasticsearch" = callPackage @@ -25934,8 +27525,8 @@ self: { }: mkDerivation { pname = "amazonka-elasticsearch"; - version = "1.3.7"; - sha256 = "7179150c600ed9a2889700a1433f4bc12eec1406e74c25341993d3a8c27575b4"; + version = "1.4.0"; + sha256 = "717e01030f814e813103a2a2822d8f0de4fb1228806cdad1fc8282fb2b954df0"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -25988,7 +27579,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-elastictranscoder" = callPackage + "amazonka-elastictranscoder_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26001,6 +27592,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic Transcoder SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-elastictranscoder" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-elastictranscoder"; + version = "1.4.0"; + sha256 = "24d6288da5bfb182a2bf93ae30dfcd3411ca77ad65f7481336038a895161ff3a"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Transcoder SDK"; license = "unknown"; @@ -26048,7 +27659,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-elb" = callPackage + "amazonka-elb_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26061,6 +27672,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic Load Balancing SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-elb" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-elb"; + version = "1.4.0"; + sha256 = "96a8724d1d57c4e5428b5dc8c37f281942b8d71e555f28d458b0e10d2596425a"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Load Balancing SDK"; license = "unknown"; @@ -26108,7 +27739,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-emr" = callPackage + "amazonka-emr_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26121,9 +27752,47 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic MapReduce SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-emr" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-emr"; + version = "1.4.0"; + sha256 = "91fff413f9c29fdd7508dd3d3266af44cf622fd0779daf8d139d714368bbe0c3"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic MapReduce SDK"; + license = "unknown"; + }) {}; + + "amazonka-gamelift" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-gamelift"; + version = "1.4.0"; + sha256 = "042fb93fd5afe3508974d3eaf8b4207d2ebb4cdd3c9b03d1e88c7743d98af2e4"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon GameLift SDK"; + license = "unknown"; }) {}; "amazonka-glacier_0_3_3" = callPackage @@ -26168,7 +27837,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-glacier" = callPackage + "amazonka-glacier_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26181,6 +27850,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Glacier SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-glacier" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-glacier"; + version = "1.4.0"; + sha256 = "40e0655b3ff4a800e16067e5169e27915ad85a7f88a5fafc05da81d015807299"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Glacier SDK"; license = "unknown"; @@ -26228,7 +27917,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-iam" = callPackage + "amazonka-iam_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26241,6 +27930,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Identity and Access Management SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-iam" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-iam"; + version = "1.4.0"; + sha256 = "0b2b0448b510008265630e9f446a8bd902e7b7aa0082d16beb44947767b242b1"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Identity and Access Management SDK"; license = "unknown"; @@ -26288,7 +27997,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-importexport" = callPackage + "amazonka-importexport_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26301,12 +28010,32 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Import/Export SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-importexport" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-importexport"; + version = "1.4.0"; + sha256 = "8f7151dc995efd7e4fd431e334747aa32162cdbea3b2801a4546a8835e0b5890"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Import/Export SDK"; license = "unknown"; }) {}; - "amazonka-inspector" = callPackage + "amazonka-inspector_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26319,12 +28048,32 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Inspector SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-inspector" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-inspector"; + version = "1.4.0"; + sha256 = "ec30d3990a60a48052d602afc72c7e68c328221d1d6091a32ec34bc5cbbdd3a8"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Inspector SDK"; license = "unknown"; }) {}; - "amazonka-iot" = callPackage + "amazonka-iot_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26337,9 +28086,49 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon IoT SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-iot" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-iot"; + version = "1.4.0"; + sha256 = "1de4267169ad51c49cf580a7b0adc2012a752f029eb7304b0d54bb794d06144c"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon IoT SDK"; + license = "unknown"; + }) {}; + + "amazonka-iot-dataplane_1_3_7" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-iot-dataplane"; + version = "1.3.7"; + sha256 = "de6f860acc5ca4d623ec66dad54cedc972516c6d04f0babfe0aa142fd86f1538"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon IoT Data Plane SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-iot-dataplane" = callPackage @@ -26348,8 +28137,8 @@ self: { }: mkDerivation { pname = "amazonka-iot-dataplane"; - version = "1.3.7"; - sha256 = "de6f860acc5ca4d623ec66dad54cedc972516c6d04f0babfe0aa142fd86f1538"; + version = "1.4.0"; + sha256 = "a1d211e4c4aa712853b57f2f2b684b0f84354d7fde659b8d76b6e7e4346b934b"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -26402,7 +28191,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-kinesis" = callPackage + "amazonka-kinesis_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26415,9 +28204,49 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Kinesis SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-kinesis" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-kinesis"; + version = "1.4.0"; + sha256 = "616c6686de7ea7c11aee5d27bf91ff6034de2e2b0439b97be936b9541bb4c4e2"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Kinesis SDK"; + license = "unknown"; + }) {}; + + "amazonka-kinesis-firehose_1_3_7" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-kinesis-firehose"; + version = "1.3.7"; + sha256 = "6a557b9b3fb21b1035aad13a6ddcbd249ce97bc2aeb77b48eee74b6d6a634d1a"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Kinesis Firehose SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-kinesis-firehose" = callPackage @@ -26426,8 +28255,8 @@ self: { }: mkDerivation { pname = "amazonka-kinesis-firehose"; - version = "1.3.7"; - sha256 = "6a557b9b3fb21b1035aad13a6ddcbd249ce97bc2aeb77b48eee74b6d6a634d1a"; + version = "1.4.0"; + sha256 = "effcb460fb24ba7efa6236e7a5f2b590df7e56ca335f5f8a03e454f063b2738a"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -26480,7 +28309,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-kms" = callPackage + "amazonka-kms_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26493,6 +28322,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Key Management Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-kms" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-kms"; + version = "1.4.0"; + sha256 = "ad32894e1a75ab0af4142dc82a8518ad1926267824a373860ac7258088ddd6b0"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Key Management Service SDK"; license = "unknown"; @@ -26540,7 +28389,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-lambda" = callPackage + "amazonka-lambda_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26553,12 +28402,32 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Lambda SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-lambda" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-lambda"; + version = "1.4.0"; + sha256 = "19b9c73538267eaaea661bc9bc3b88cfbefde4ba0d43b307eb7d0d3ec457618f"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Lambda SDK"; license = "unknown"; }) {}; - "amazonka-marketplace-analytics" = callPackage + "amazonka-marketplace-analytics_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26571,9 +28440,47 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Marketplace Commerce Analytics SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-marketplace-analytics" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-marketplace-analytics"; + version = "1.4.0"; + sha256 = "e51d718ee9ca998a4563cfca375f8be5a617009e65b486afafcbca191efb425e"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Marketplace Commerce Analytics SDK"; + license = "unknown"; + }) {}; + + "amazonka-marketplace-metering" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-marketplace-metering"; + version = "1.4.0"; + sha256 = "33d765f729c127cd474012395e0cf98a6dd0e2ed22c9d6adb6adedf0b001d856"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Marketplace Metering SDK"; + license = "unknown"; }) {}; "amazonka-ml_0_3_6" = callPackage @@ -26590,7 +28497,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-ml" = callPackage + "amazonka-ml_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26603,6 +28510,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Machine Learning SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-ml" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ml"; + version = "1.4.0"; + sha256 = "f333580d48a6c65b3e019f620758fc1407be75edc01e6f2d9fc690a2852e883c"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Machine Learning SDK"; license = "unknown"; @@ -26650,7 +28577,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-opsworks" = callPackage + "amazonka-opsworks_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26663,6 +28590,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon OpsWorks SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-opsworks" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-opsworks"; + version = "1.4.0"; + sha256 = "e5c85a070a7ead1447bf31482dfb0149d15c38b6dc0bc48e8690ceb1eac9076d"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon OpsWorks SDK"; license = "unknown"; @@ -26710,7 +28657,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-rds" = callPackage + "amazonka-rds_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26723,9 +28670,30 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Relational Database Service SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-rds" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-rds"; + version = "1.4.0"; + sha256 = "7846b510b312cadb76b49374d8fdc199698cb696ed8bcc118043c079ac1ddd84"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Relational Database Service SDK"; + license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "amazonka-redshift_0_3_3" = callPackage @@ -26770,7 +28738,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-redshift" = callPackage + "amazonka-redshift_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26783,6 +28751,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Redshift SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-redshift" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-redshift"; + version = "1.4.0"; + sha256 = "a92f1b58416098f623d83b66cb3b0e09c3505fe10675d6cffb1ee8f14a22ed9a"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Redshift SDK"; license = "unknown"; @@ -26844,7 +28832,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-route53" = callPackage + "amazonka-route53_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26857,6 +28845,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Route 53 SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-route53" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-route53"; + version = "1.4.0"; + sha256 = "a547fd8c2c8736e06f8e3473ed7ed344f4304c6cb869288ec7173791d6ad9687"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Route 53 SDK"; license = "unknown"; @@ -26904,7 +28912,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-route53-domains" = callPackage + "amazonka-route53-domains_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26917,6 +28925,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Route 53 Domains SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-route53-domains" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-route53-domains"; + version = "1.4.0"; + sha256 = "7a3a3cb640e95cfb33fb7d26c170ab7cd994664927e836f7556230b8393665e5"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Route 53 Domains SDK"; license = "unknown"; @@ -26964,7 +28992,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-s3" = callPackage + "amazonka-s3_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , lens, tasty, tasty-hunit, text, time, unordered-containers }: @@ -26977,6 +29005,27 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + doCheck = false; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Storage Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-s3" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , lens, tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-s3"; + version = "1.4.0"; + sha256 = "db50ccae296972a98c7d4de2a9c618c2e9d2d0f2b8cd66befdebde0971414538"; + libraryHaskellDepends = [ amazonka-core base lens text ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; doCheck = false; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Storage Service SDK"; @@ -27025,7 +29074,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-sdb" = callPackage + "amazonka-sdb_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27038,6 +29087,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon SimpleDB SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-sdb" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-sdb"; + version = "1.4.0"; + sha256 = "aebe7ba2ba8492bace5d04971a4164735a26c8f3b99520d516a93d2c4f9f199b"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon SimpleDB SDK"; license = "unknown"; @@ -27085,7 +29154,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-ses" = callPackage + "amazonka-ses_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27098,6 +29167,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Email Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-ses" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ses"; + version = "1.4.0"; + sha256 = "0823d15557f3895bf904439334fd9f705aa06329ec8f4a81abad9298c178acdd"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Email Service SDK"; license = "unknown"; @@ -27145,7 +29234,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-sns" = callPackage + "amazonka-sns_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27158,6 +29247,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Notification Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-sns" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-sns"; + version = "1.4.0"; + sha256 = "d51e054d16a57a199148275cdf80d48e11d6f53c7588e690aad6b36ade3cc9df"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Notification Service SDK"; license = "unknown"; @@ -27205,7 +29314,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-sqs" = callPackage + "amazonka-sqs_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27218,9 +29327,30 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Queue Service SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-sqs" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-sqs"; + version = "1.4.0"; + sha256 = "dc4d463865e0ec9bffd5f1dc8822fff3a4c7feef68457e7191107a5af951c624"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Queue Service SDK"; + license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "amazonka-ssm_0_3_3" = callPackage @@ -27265,7 +29395,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-ssm" = callPackage + "amazonka-ssm_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27278,6 +29408,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Systems Management Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-ssm" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ssm"; + version = "1.4.0"; + sha256 = "13e840b86ac7c158b7a6188ca62f2b3f1805a472ebbeadc3504d5f9dc28f0430"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Systems Management Service SDK"; license = "unknown"; @@ -27325,7 +29475,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-storagegateway" = callPackage + "amazonka-storagegateway_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27338,6 +29488,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Storage Gateway SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-storagegateway" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-storagegateway"; + version = "1.4.0"; + sha256 = "a731304356de28567f23d1fdeeb53d0dbcd73a3cf44f02a6967a49d4799f1445"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Storage Gateway SDK"; license = "unknown"; @@ -27385,7 +29555,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-sts" = callPackage + "amazonka-sts_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27398,6 +29568,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Security Token Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-sts" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-sts"; + version = "1.4.0"; + sha256 = "f44862dd66f380419d208bdcf153d5d1a030df0390eafaff846799ffa6062bee"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Security Token Service SDK"; license = "unknown"; @@ -27445,7 +29635,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-support" = callPackage + "amazonka-support_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27458,6 +29648,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Support SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-support" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-support"; + version = "1.4.0"; + sha256 = "7cac8c6886e278c8304f8551ef850355295411f50e58ead6ff50ef75c44e40dd"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Support SDK"; license = "unknown"; @@ -27505,7 +29715,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-swf" = callPackage + "amazonka-swf_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27518,13 +29728,34 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + doCheck = false; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Workflow Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-swf" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-swf"; + version = "1.4.0"; + sha256 = "fd968d74aa6767067623bfed0ef172d9d8417083695d1863a9f24c4a733588b2"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; doCheck = false; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Workflow Service SDK"; license = "unknown"; }) {}; - "amazonka-test" = callPackage + "amazonka-test_1_3_7" = callPackage ({ mkDerivation, aeson, amazonka-core, base, bifunctors, bytestring , case-insensitive, conduit, conduit-extra, groom, http-client , http-types, process, resourcet, tasty, tasty-hunit @@ -27541,9 +29772,53 @@ self: { resourcet tasty tasty-hunit template-haskell temporary text time unordered-containers yaml ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Common functionality for Amazonka library test-suites"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-test" = callPackage + ({ mkDerivation, aeson, amazonka-core, base, bifunctors, bytestring + , case-insensitive, conduit, conduit-extra, groom, http-client + , http-types, process, resourcet, tasty, tasty-hunit + , template-haskell, temporary, text, time, unordered-containers + , yaml + }: + mkDerivation { + pname = "amazonka-test"; + version = "1.4.0"; + sha256 = "b9a9e1892660e210bfe46fca3ee1cba518baa97c79a63036e38c4cc9e50d25a4"; + libraryHaskellDepends = [ + aeson amazonka-core base bifunctors bytestring case-insensitive + conduit conduit-extra groom http-client http-types process + resourcet tasty tasty-hunit template-haskell temporary text time + unordered-containers yaml + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Common functionality for Amazonka library test-suites"; + license = "unknown"; + }) {}; + + "amazonka-waf_1_3_7" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-waf"; + version = "1.3.7"; + sha256 = "431d34671308da866b8f2738a88d84cf81c73fd5731decc5d94cd87159b012cb"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon WAF SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-waf" = callPackage @@ -27552,8 +29827,8 @@ self: { }: mkDerivation { pname = "amazonka-waf"; - version = "1.3.7"; - sha256 = "431d34671308da866b8f2738a88d84cf81c73fd5731decc5d94cd87159b012cb"; + version = "1.4.0"; + sha256 = "b07d07d1f489edbfb6e8ca82131276eaaa078bd726bf59d12deb5789b1dc81cb"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -27578,7 +29853,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-workspaces" = callPackage + "amazonka-workspaces_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27591,6 +29866,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon WorkSpaces SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-workspaces" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-workspaces"; + version = "1.4.0"; + sha256 = "a88bb14573f71fa8f8d9c3e21f014f0ae4a79e1931996b218902f500c205206d"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon WorkSpaces SDK"; license = "unknown"; @@ -27625,6 +29920,7 @@ self: { homepage = "http://wiki.tarski.nl"; description = "Toolsuite for automated design of business processes"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amqp_0_10_1" = callPackage @@ -27880,6 +30176,7 @@ self: { homepage = "https://john-millikin.com/software/anansi/"; description = "Looms which use Pandoc to parse and produce a variety of formats"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "anatomy" = callPackage @@ -27906,6 +30203,7 @@ self: { homepage = "http://atomo-lang.org/"; description = "Anatomy: Atomo documentation system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "android" = callPackage @@ -27945,6 +30243,7 @@ self: { homepage = "https://github.com/passy/android-lint-summary"; description = "A pretty printer for Android Lint errors"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "angel" = callPackage @@ -28047,6 +30346,8 @@ self: { pname = "ansi-pretty"; version = "0.1.2.0"; sha256 = "11079e97b7faaf3825d0ab2bb3e111b5d1b9085343e6505fc2b58240c4eaa424"; + revision = "1"; + editedCabalFile = "3f1fc699687e8f3b474da3666fc4c7e26626bba2329455a87655cc91ea62ee78"; libraryHaskellDepends = [ aeson ansi-wl-pprint array base bytestring containers generics-sop nats scientific semigroups tagged text time unordered-containers @@ -28211,6 +30512,7 @@ self: { homepage = "http://hub.darcs.net/kowey/antfarm"; description = "Referring expressions for definitions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "anticiv" = callPackage @@ -28235,6 +30537,7 @@ self: { jailbreak = true; description = "This is an IRC bot for Mafia and Resistance"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "antigate" = callPackage @@ -28253,6 +30556,7 @@ self: { homepage = "https://github.com/exbb2/antigate"; description = "Interface for antigate.com captcha recognition API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "antimirov" = callPackage @@ -28267,6 +30571,7 @@ self: { executableHaskellDepends = [ base containers QuickCheck ]; description = "Define the language containment (=subtyping) relation on regulare expressions"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "antiquoter" = callPackage @@ -28316,6 +30621,7 @@ self: { homepage = "https://github.com/markwright/antlrc"; description = "Haskell binding to the ANTLR parser generator C runtime library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {antlr3c = null;}; "anydbm" = callPackage @@ -28331,6 +30637,7 @@ self: { homepage = "http://software.complete.org/anydbm"; description = "Interface for DBM-like database systems"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aosd" = callPackage @@ -28351,6 +30658,7 @@ self: { ]; description = "Bindings to libaosd, a library for Cairo-based on-screen displays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {libaosd = null;}; "ap-reflect" = callPackage @@ -28407,6 +30715,7 @@ self: { homepage = "http://ojeling.net/apelsin"; description = "Server and community browser for the game Tremulous"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "api-builder" = callPackage @@ -28484,6 +30793,7 @@ self: { homepage = "http://github.com/iconnect/api-tools"; description = "DSL for generating API boilerplate and docs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "apiary_1_4_3" = callPackage @@ -28646,6 +30956,24 @@ self: { homepage = "https://github.com/philopon/apiary"; description = "helics support for apiary web framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; + }) {}; + + "apiary-http-client" = callPackage + ({ mkDerivation, apiary, base, bytestring, data-default-class + , http-client, http-types, text, transformers, types-compat, wai + }: + mkDerivation { + pname = "apiary-http-client"; + version = "0.1.1.0"; + sha256 = "4e7b6ba5741f0f194ee23679cceb87167a7bac44ad2bca7789e4488320e103bd"; + libraryHaskellDepends = [ + apiary base bytestring data-default-class http-client http-types + text transformers types-compat wai + ]; + homepage = "https://github.com/winterland1989/apiary-http-client"; + description = "A http client for Apiary"; + license = stdenv.lib.licenses.mit; }) {}; "apiary-logger" = callPackage @@ -28748,6 +31076,7 @@ self: { homepage = "https://github.com/philopon/apiary"; description = "purescript compiler for apiary web framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "apiary-session" = callPackage @@ -28804,6 +31133,7 @@ self: { homepage = "https://github.com/fabianbergmark/APIs"; description = "A Template Haskell library for generating type safe API calls"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "apotiki" = callPackage @@ -28835,6 +31165,7 @@ self: { homepage = "https://github.com/pyr/apotiki"; description = "a faster debian repository"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "app-lens" = callPackage @@ -28848,6 +31179,7 @@ self: { homepage = "https://bitbucket.org/kztk/app-lens"; description = "applicative (functional) bidirectional programming beyond composition chains"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "app-settings" = callPackage @@ -28903,6 +31235,7 @@ self: { ]; description = "app container types and tools"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "applicative-extras" = callPackage @@ -29037,6 +31370,7 @@ self: { ]; description = "Perform refactorings specified by the refact library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "apportionment" = callPackage @@ -29081,6 +31415,7 @@ self: { homepage = "http://github.com/danieldk/approx-rand-test"; description = "Approximate randomization test"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "approximate_0_2_1_1" = callPackage @@ -29257,6 +31592,7 @@ self: { homepage = "https://github.com/ian-ross/arb-fft"; description = "Pure Haskell arbitrary length FFT library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arbb-vm" = callPackage @@ -29274,6 +31610,7 @@ self: { homepage = "https://github.com/svenssonjoel/arbb-vm/wiki"; description = "FFI binding to the Intel Array Building Blocks (ArBB) virtual machine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {arbb_dev = null;}; "arbtt_0_8_1_4" = callPackage @@ -29528,6 +31865,7 @@ self: { ]; description = "Archive supplied URLs in WebCite & Internet Archive"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "archlinux" = callPackage @@ -29544,6 +31882,7 @@ self: { homepage = "http://github.com/archhaskell/"; description = "Support for working with Arch Linux packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "archlinux-web" = callPackage @@ -29570,6 +31909,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/archlinux"; description = "Website maintenance for Arch Linux packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "archnews" = callPackage @@ -29588,6 +31928,30 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "arena" = callPackage + ({ mkDerivation, base, bytes, bytestring, containers, digest + , directory, filepath, mtl, persistent-vector, safe, semigroups + , unix + }: + mkDerivation { + pname = "arena"; + version = "0.1"; + sha256 = "4b15bd66601e043b6c24ba74ac2e2123ef46832b9bf48eaef66770dfbba5e8e5"; + revision = "1"; + editedCabalFile = "fa9abdbd4a0df1eddd4c061f9e2b0d2ebe5ac7fae0a462d26024c2ba17c00139"; + libraryHaskellDepends = [ + base bytes bytestring containers digest directory filepath mtl + persistent-vector safe semigroups unix + ]; + testHaskellDepends = [ + base bytes containers directory mtl semigroups + ]; + jailbreak = true; + description = "A journaled data store"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "arff" = callPackage ({ mkDerivation, base, binary, bytestring, bytestring-lexing , bytestring-show, old-locale, time @@ -29604,6 +31968,7 @@ self: { homepage = "http://code.haskell.org/~StefanKersten/code/arff"; description = "Generate Attribute-Relation File Format (ARFF) files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arghwxhaskell" = callPackage @@ -29618,6 +31983,7 @@ self: { homepage = "https://wiki.haskell.org/Argh!"; description = "An interpreter for the Argh! programming language in wxHaskell"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "argon" = callPackage @@ -29694,6 +32060,7 @@ self: { homepage = "https://github.com/ocharles/argon2.git"; description = "Haskell bindings to libargon2 - the reference implementation of the Argon2 password-hashing function"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "argparser" = callPackage @@ -29706,6 +32073,7 @@ self: { testHaskellDepends = [ base containers HTF HUnit ]; description = "Command line parsing framework for console applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arguedit" = callPackage @@ -29724,6 +32092,7 @@ self: { jailbreak = true; description = "A computer assisted argumentation transcription and editing software"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ariadne" = callPackage @@ -29752,6 +32121,7 @@ self: { homepage = "https://github.com/feuerbach/ariadne"; description = "Go-to-definition for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arion" = callPackage @@ -29776,6 +32146,7 @@ self: { homepage = "http://github.com/karun012/arion"; description = "Watcher and runner for Hspec"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arith-encode" = callPackage @@ -29797,6 +32168,7 @@ self: { homepage = "https://github.com/emc2/arith-encode"; description = "A practical arithmetic encoding (aka Godel numbering) library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arithmatic" = callPackage @@ -29835,6 +32207,7 @@ self: { ]; description = "Natural number arithmetic"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "arithmoi_0_4_1_1" = callPackage @@ -29893,6 +32266,7 @@ self: { homepage = "https://github.com/cartazio/arithmoi"; description = "Efficient basic number-theoretic functions. Primes, powers, integer logarithms."; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "armada" = callPackage @@ -29906,6 +32280,7 @@ self: { executableHaskellDepends = [ base GLUT mtl OpenGL stm ]; description = "Space-based real time strategy game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arpa" = callPackage @@ -29960,6 +32335,7 @@ self: { jailbreak = true; description = "A simple interpreter for arrayForth, the language used on GreenArrays chips"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "array-memoize" = callPackage @@ -29974,12 +32350,17 @@ self: { }) {}; "array-primops" = callPackage - ({ mkDerivation, base, ghc-prim }: + ({ mkDerivation, base, ghc-prim, QuickCheck, tasty + , tasty-quickcheck + }: mkDerivation { pname = "array-primops"; - version = "0.1.0.0"; - sha256 = "dd181c8211dee3b4c13066fc7f58e599dd0d0d7990c1082583d2ed68807e1c87"; + version = "0.2.0.0"; + sha256 = "ea6b68b54d21f4f6810f7e6a26c4af9dc216bdef5f44b67ea021be097f2a960a"; libraryHaskellDepends = [ base ghc-prim ]; + testHaskellDepends = [ + base ghc-prim QuickCheck tasty tasty-quickcheck + ]; description = "Extra foreign primops for primitive arrays"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -30009,6 +32390,7 @@ self: { homepage = "https://github.com/prophile/arrow-improve/"; description = "Improved arrows"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arrow-list_0_6_1_5" = callPackage @@ -30045,6 +32427,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Utilities for working with ArrowApply instances more naturally"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arrowp" = callPackage @@ -30059,6 +32442,7 @@ self: { homepage = "http://www.haskell.org/arrows/"; description = "preprocessor translating arrow notation into Haskell 98"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arrows" = callPackage @@ -30209,6 +32593,7 @@ self: { jailbreak = true; description = "Conduit for encoding ByteString into Ascii85"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "asciidiagram_1_1_1_1" = callPackage @@ -30271,6 +32656,7 @@ self: { homepage = "http://www.pros.upv.es/fittest/"; description = "Action Script Instrumentation Compiler"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "asil" = callPackage @@ -30290,6 +32676,7 @@ self: { homepage = "http://www.pros.upv.es/fittest/"; description = "Action Script Instrumentation Library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "asn1-data_0_7_1" = callPackage @@ -30562,6 +32949,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "The Assimp asset import library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) assimp;}; "astar" = callPackage @@ -30592,6 +32980,7 @@ self: { jailbreak = true; description = "an incomplete 2d space game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "astview" = callPackage @@ -30611,6 +33000,7 @@ self: { ]; description = "A GTK-based abstract syntax tree viewer for custom languages and parsers"; license = stdenv.lib.licenses.bsdOriginal; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "astview-utils" = callPackage @@ -30706,6 +33096,7 @@ self: { homepage = "http://github.com/jfischoff/async-extras"; description = "Extra Utilities for the Async Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "async-manager" = callPackage @@ -30782,6 +33173,7 @@ self: { homepage = "https://github.com/GaloisInc/aterm-utils"; description = "Utility functions for working with aterms as generated by Minitermite"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "atl" = callPackage @@ -30818,6 +33210,7 @@ self: { homepage = "https://bitbucket.org/ajknoll/atlassian-connect-core"; description = "Atlassian Connect snaplet for the Snap Framework and helper code"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "atlassian-connect-descriptor" = callPackage @@ -30840,6 +33233,7 @@ self: { jailbreak = true; description = "Code that helps you create a valid Atlassian Connect Descriptor"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "atmos" = callPackage @@ -30945,6 +33339,7 @@ self: { homepage = "https://github.com/eightyeight/atom-msp430"; description = "Convenience functions for using Atom with the MSP430 microcontroller family"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" ]; }) {}; "atomic-primops_0_8" = callPackage @@ -30960,7 +33355,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "atomic-primops" = callPackage + "atomic-primops_0_8_0_2" = callPackage ({ mkDerivation, base, ghc-prim, primitive }: mkDerivation { pname = "atomic-primops"; @@ -30970,6 +33365,19 @@ self: { homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; description = "A safe approach to CAS and other atomic ops in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "atomic-primops" = callPackage + ({ mkDerivation, base, ghc-prim, primitive }: + mkDerivation { + pname = "atomic-primops"; + version = "0.8.0.3"; + sha256 = "1dbf0ac681bec29ee51125be1303536f54dc8640af9d57a92fc184152a38c997"; + libraryHaskellDepends = [ base ghc-prim primitive ]; + homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; + description = "A safe approach to CAS and other atomic ops in Haskell"; + license = stdenv.lib.licenses.bsd3; }) {}; "atomic-primops-foreign" = callPackage @@ -30990,6 +33398,7 @@ self: { homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; description = "An atomic counter implemented using the FFI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "atomic-primops-vector" = callPackage @@ -31003,6 +33412,7 @@ self: { jailbreak = true; description = "Atomic operations on Data.Vector types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "atomic-write" = callPackage @@ -31048,6 +33458,7 @@ self: { homepage = "http://atomo-lang.org/"; description = "A highly dynamic, extremely simple, very fun programming language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "atp-haskell" = callPackage @@ -31298,6 +33709,7 @@ self: { homepage = "https://github.com/robinbb/attoparsec-csv"; description = "A parser for CSV files that uses Attoparsec"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "attoparsec-enumerator_0_3_3" = callPackage @@ -31369,6 +33781,7 @@ self: { homepage = "http://github.com/gregorycollins"; description = "An adapter to convert attoparsec Parsers into blazing-fast Iteratees"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "attoparsec-parsec" = callPackage @@ -31398,6 +33811,7 @@ self: { homepage = "http://patch-tag.com/r/felipe/attoparsec-text/home"; description = "(deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "attoparsec-text-enumerator" = callPackage @@ -31410,6 +33824,7 @@ self: { jailbreak = true; description = "(deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "attoparsec-trans" = callPackage @@ -31451,6 +33866,7 @@ self: { homepage = "http://www.dcs.st-and.ac.uk/~eb/epic.php"; description = "Embedded Turtle language compiler in Haskell, with Epic output"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "audacity" = callPackage @@ -31486,6 +33902,7 @@ self: { homepage = "https://github.com/fumieval/audiovisual"; description = "A battery-included audiovisual framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "augeas" = callPackage @@ -31505,6 +33922,7 @@ self: { homepage = "http://trac.haskell.org/augeas"; description = "A Haskell FFI wrapper for the Augeas API"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) augeas;}; "augur" = callPackage @@ -31524,6 +33942,7 @@ self: { jailbreak = true; description = "Renaming media collections in a breeze"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aur" = callPackage @@ -31683,6 +34102,7 @@ self: { homepage = "http://github.com/nushio3/authoring"; description = "A library for writing papers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "auto" = callPackage @@ -31758,12 +34178,13 @@ self: { ({ mkDerivation, base, directory, filepath }: mkDerivation { pname = "autoexporter"; - version = "0.1.2"; - sha256 = "bdc64e16ee42cbadf596cba93ca665cdfd3cf621f636ea5a1f3f8e7248616f2e"; + version = "0.1.4"; + sha256 = "b3b75b89e2d357a49df12b429cb7699932dd9b96bd1104ee9b1fcbe48a7e9b47"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base directory filepath ]; executableHaskellDepends = [ base ]; + homepage = "https://github.com/tfausak/autoexporter#readme"; description = "Automatically re-export modules"; license = stdenv.lib.licenses.mit; }) {}; @@ -31785,6 +34206,7 @@ self: { ]; description = "Library for Nix expression dependency generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "autonix-deps-kf5" = callPackage @@ -31806,6 +34228,7 @@ self: { ]; description = "Generate dependencies for KDE 5 Nix expressions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "autoproc" = callPackage @@ -31820,6 +34243,7 @@ self: { homepage = "http://code.haskell.org/autoproc"; description = "EDSL for Procmail scripts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "avahi" = callPackage @@ -31831,6 +34255,7 @@ self: { libraryHaskellDepends = [ base dbus-core text ]; description = "Minimal DBus bindings for Avahi daemon (http://avahi.org)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "avatar-generator" = callPackage @@ -32049,6 +34474,7 @@ self: { ]; description = "High-level Awesomium bindings"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "awesomium-glut" = callPackage @@ -32060,6 +34486,7 @@ self: { libraryHaskellDepends = [ awesomium awesomium-raw base GLUT ]; description = "Utilities for using Awesomium with GLUT"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "awesomium-raw" = callPackage @@ -32073,6 +34500,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "Low-level Awesomium bindings"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {awesomium = null;}; "aws_0_11" = callPackage @@ -32348,6 +34776,7 @@ self: { ]; description = "Configuration types, parsers & renderers for AWS services"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-dynamodb-conduit" = callPackage @@ -32390,6 +34819,7 @@ self: { jailbreak = true; description = "Haskell bindings for Amazon DynamoDB Streams"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-ec2" = callPackage @@ -32442,6 +34872,7 @@ self: { homepage = "http://github.com/iconnect/aws-elastic-transcoder"; description = "Haskell suite for the Elastic Transcoder service"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-general" = callPackage @@ -32468,6 +34899,7 @@ self: { homepage = "https://github.com/alephcloud/hs-aws-general"; description = "Bindings for Amazon Web Services (AWS) General Reference"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-kinesis" = callPackage @@ -32494,6 +34926,7 @@ self: { homepage = "https://github.com/alephcloud/hs-aws-kinesis"; description = "Bindings for Amazon Kinesis"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-kinesis-client" = callPackage @@ -32529,6 +34962,7 @@ self: { jailbreak = true; description = "A producer & consumer client library for AWS Kinesis"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-kinesis-reshard" = callPackage @@ -32559,6 +34993,7 @@ self: { homepage = "https://github.com/alephcloud/hs-aws-kinesis-reshard"; description = "Reshard AWS Kinesis streams in response to Cloud Watch metrics"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-lambda" = callPackage @@ -32580,6 +35015,7 @@ self: { homepage = "https://github.com/alephcloud/hs-aws-lambda"; description = "Haskell bindings for AWS Lambda"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-performance-tests" = callPackage @@ -32606,6 +35042,7 @@ self: { homepage = "http://github.com/alephcloud/hs-aws-performance-tests"; description = "Performance Tests for the Haskell bindings for Amazon Web Services (AWS)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-route53" = callPackage @@ -32652,6 +35089,7 @@ self: { homepage = "http://worksap-ate.github.com/aws-sdk"; description = "AWS SDK for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-sdk-text-converter" = callPackage @@ -32720,6 +35158,7 @@ self: { homepage = "http://github.com/iconnect/aws-sign4"; description = "Amazon Web Services (AWS) Signature v4 HTTP request signer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-sns" = callPackage @@ -32744,6 +35183,7 @@ self: { homepage = "https://github.com/alephcloud/hs-aws-sns"; description = "Bindings for AWS SNS Version 2013-03-31"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "azure-acs" = callPackage @@ -32782,6 +35222,7 @@ self: { homepage = "github.com/haskell-distributed/azure-service-api"; description = "Haskell bindings for the Microsoft Azure Service Management API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "azure-servicebus" = callPackage @@ -32831,6 +35272,7 @@ self: { homepage = "http://arnovanlumig.com/azure"; description = "A simple library for accessing Azure blob storage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "b-tree" = callPackage @@ -32851,6 +35293,7 @@ self: { homepage = "http://github.com/bgamari/b-tree"; description = "Immutable disk-based B* trees"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "b9_0_5_8" = callPackage @@ -33100,6 +35543,7 @@ self: { ]; description = "An implementation of a simple 2-player board game"; license = "GPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "backdropper" = callPackage @@ -33118,6 +35562,7 @@ self: { jailbreak = true; description = "Rotates backdrops for X11 displays using Imagemagic"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "backtracking-exceptions" = callPackage @@ -33174,6 +35619,7 @@ self: { libraryHaskellDepends = [ base ]; description = "A simple stable bag"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bake_0_2" = callPackage @@ -33249,6 +35695,7 @@ self: { homepage = "http://github.com/nfjinjing/bamboo/tree/master"; description = "A blog engine on Hack"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamboo-launcher" = callPackage @@ -33269,6 +35716,7 @@ self: { homepage = "http://github.com/nfjinjing/bamboo-launcher"; description = "bamboo-launcher"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamboo-plugin-highlight" = callPackage @@ -33286,6 +35734,7 @@ self: { homepage = "http://github.com/nfjinjing/bamboo-plugin-highlight/"; description = "A highlight middleware"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamboo-plugin-photo" = callPackage @@ -33304,6 +35753,7 @@ self: { homepage = "http://github.com/nfjinjing/hack/tree/master"; description = "A photo album middleware"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamboo-theme-blueprint" = callPackage @@ -33322,6 +35772,7 @@ self: { homepage = "http://github.com/nfjinjing/bamboo-theme-blueprint"; description = "bamboo blueprint theme"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamboo-theme-mini-html5" = callPackage @@ -33344,6 +35795,7 @@ self: { homepage = "http://github.com/nfjinjing/bamboo-theme-mini-html5"; description = "bamboo mini html5 theme"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamse" = callPackage @@ -33362,6 +35814,7 @@ self: { executableHaskellDepends = [ HUnit QuickCheck ]; description = "A Windows Installer (MSI) generator framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamstats" = callPackage @@ -33454,6 +35907,7 @@ self: { homepage = "http://sebfisch.github.com/haskell-barchart"; description = "Creating Bar Charts in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "barcodes-code128" = callPackage @@ -33466,6 +35920,7 @@ self: { jailbreak = true; description = "Generate Code 128 barcodes as PDFs"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "barecheck_0_2_0_6" = callPackage @@ -33513,6 +35968,7 @@ self: { jailbreak = true; description = "A web based environment for learning and tinkering with Haskell"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "barrie" = callPackage @@ -33525,6 +35981,7 @@ self: { homepage = "http://thewhitelion.org/haskell/barrie"; description = "Declarative Gtk GUI library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "barrier" = callPackage @@ -33561,6 +36018,7 @@ self: { jailbreak = true; description = "Implementation of barrier monad, can use custom front/back type"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "base_4_8_2_0" = callPackage @@ -33992,6 +36450,7 @@ self: { homepage = "https://github.com/pxqr/base32-bytestring"; description = "Fast base32 and base32hex codec for ByteStrings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "base32string" = callPackage @@ -34267,7 +36726,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "basic-prelude" = callPackage + "basic-prelude_0_5_0" = callPackage ({ mkDerivation, base, bytestring, containers, filepath, hashable , lifted-base, ReadArgs, safe, text, transformers , unordered-containers, vector @@ -34285,6 +36744,25 @@ self: { homepage = "https://github.com/snoyberg/basic-prelude"; description = "An enhanced core prelude; a common foundation for alternate preludes"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "basic-prelude" = callPackage + ({ mkDerivation, base, bytestring, containers, filepath, hashable + , lifted-base, ReadArgs, safe, text, transformers + , unordered-containers, vector + }: + mkDerivation { + pname = "basic-prelude"; + version = "0.5.1"; + sha256 = "0c15557a2f561a7b2472e6a34386d22917e603c14fa54d5a2069feef66b985f2"; + libraryHaskellDepends = [ + base bytestring containers filepath hashable lifted-base ReadArgs + safe text transformers unordered-containers vector + ]; + homepage = "https://github.com/snoyberg/basic-prelude"; + description = "An enhanced core prelude; a common foundation for alternate preludes"; + license = stdenv.lib.licenses.mit; }) {}; "basic-sop" = callPackage @@ -34314,6 +36792,7 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; description = "An interpreter for a small functional language"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "battlenet" = callPackage @@ -34378,6 +36857,7 @@ self: { homepage = "https://github.com/zrho/afp"; description = "A web-based implementation of battleships including an AI opponent"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bayes-stack" = callPackage @@ -34398,6 +36878,7 @@ self: { homepage = "https://github.com/bgamari/bayes-stack"; description = "Framework for inferring generative probabilistic models with Gibbs sampling"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bbdb" = callPackage @@ -34531,6 +37012,7 @@ self: { jailbreak = true; description = "Generic serializer/deserializer with compact representation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "beautifHOL" = callPackage @@ -34545,6 +37027,7 @@ self: { homepage = "http://www.cs.indiana.edu/~lepike/pub_pages/holpp.html"; description = "A pretty-printer for higher-order logic"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bed-and-breakfast" = callPackage @@ -34565,6 +37048,7 @@ self: { homepage = "https://hackage.haskell.org/package/bed-and-breakfast"; description = "Efficient Matrix operations in 100% Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bein" = callPackage @@ -34587,6 +37071,21 @@ self: { ]; description = "Bein is a provenance and workflow management system for bioinformatics"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "bench" = callPackage + ({ mkDerivation, base, criterion, silently, text, turtle }: + mkDerivation { + pname = "bench"; + version = "1.0.0"; + sha256 = "377f85a056c84e5a5e3e8b5ddd6fd2bf8e061b1025c48eac1053df3ff988dcca"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ base criterion silently text turtle ]; + homepage = "http://github.com/Gabriel439/bench"; + description = "Command-line benchmark tool"; + license = stdenv.lib.licenses.bsd3; }) {}; "benchmark-function" = callPackage @@ -34656,6 +37155,7 @@ self: { librarySystemDepends = [ db ]; description = "Pretty BerkeleyDB v4 binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) db;}; "berp" = callPackage @@ -34683,6 +37183,7 @@ self: { homepage = "http://wiki.github.com/bjpop/berp/"; description = "An implementation of Python 3"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bert" = callPackage @@ -34805,6 +37306,7 @@ self: { jailbreak = true; description = "Bidirectionalization for Free! (POPL'09)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bff-mono" = callPackage @@ -34845,6 +37347,7 @@ self: { ]; description = "Blocked GZip"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bibtex" = callPackage @@ -34878,6 +37381,7 @@ self: { homepage = "http://www.kb.ecei.tohoku.ac.jp/~kztk/b18n-combined/desc.html"; description = "Prototype Implementation of Combining Syntactic and Semantic Bidirectionalization (ICFP'10)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bidispec" = callPackage @@ -34889,6 +37393,7 @@ self: { libraryHaskellDepends = [ base bytestring mtl ]; description = "Specification of generators and parsers"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bidispec-extras" = callPackage @@ -34960,14 +37465,13 @@ self: { testHaskellDepends = [ base hspec QuickCheck transformers transformers-compat ]; - jailbreak = true; homepage = "http://github.com/ekmett/bifunctors/"; description = "Bifunctors"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "bifunctors_5_2" = callPackage + "bifunctors" = callPackage ({ mkDerivation, base, comonad, containers, hspec, QuickCheck , semigroups, tagged, template-haskell, transformers , transformers-compat @@ -34983,14 +37487,13 @@ self: { testHaskellDepends = [ base hspec QuickCheck transformers transformers-compat ]; - jailbreak = true; + doHaddock = false; homepage = "http://github.com/ekmett/bifunctors/"; description = "Bifunctors"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "bifunctors" = callPackage + "bifunctors_5_2_1" = callPackage ({ mkDerivation, base, comonad, containers, hspec, QuickCheck , semigroups, tagged, template-haskell, transformers , transformers-compat @@ -35006,10 +37509,11 @@ self: { testHaskellDepends = [ base hspec QuickCheck transformers transformers-compat ]; - doHaddock = false; + jailbreak = true; homepage = "http://github.com/ekmett/bifunctors/"; description = "Bifunctors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bighugethesaurus" = callPackage @@ -35045,6 +37549,7 @@ self: { homepage = "http://ddmal.music.mcgill.ca/billboard"; description = "A parser for the Billboard chord dataset"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "billeksah-forms" = callPackage @@ -35064,6 +37569,7 @@ self: { homepage = "http://www.leksah.org"; description = "Leksah library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "billeksah-main" = callPackage @@ -35084,6 +37590,7 @@ self: { homepage = "http://www.leksah.org"; description = "Leksah plugin base"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "billeksah-main-static" = callPackage @@ -35127,6 +37634,7 @@ self: { homepage = "http://www.leksah.org"; description = "Leksah library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "billeksah-services" = callPackage @@ -35144,6 +37652,7 @@ self: { homepage = "http://www.leksah.org"; description = "Leksah library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bimap_0_3_0" = callPackage @@ -35215,6 +37724,7 @@ self: { homepage = "https://github.com/choener/bimaps"; description = "bijections with multiple implementations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binary_0_7_6_1" = callPackage @@ -35317,6 +37827,7 @@ self: { jailbreak = true; description = "Automatic deriving of Binary using GHC.Generics"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binary-enum" = callPackage @@ -35372,6 +37883,7 @@ self: { libraryHaskellDepends = [ array base ]; description = "Binary Indexed Trees (a.k.a. Fenwick Trees)."; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binary-list_1_0_1_0" = callPackage @@ -35525,8 +38037,8 @@ self: { pname = "binary-orphans"; version = "0.1.4.0"; sha256 = "0a952a7521747a7aacf4aa1638674130262f2efacb7121727c1932d49017f742"; - revision = "3"; - editedCabalFile = "b81b44514f6b9e69bb1cb36484268470dd9268112d974960fb6070a4bb1f307c"; + revision = "4"; + editedCabalFile = "5c473d152fd0cc986ec5330e6138d3c3b62b29f2d3ae7ebfad0832ba82593ce6"; libraryHaskellDepends = [ aeson base binary hashable scientific semigroups tagged text text-binary time unordered-containers vector @@ -35621,6 +38133,7 @@ self: { homepage = "http://github.com/NicolasT/binary-protocol-zmq"; description = "Monad to ease implementing a binary network protocol over ZeroMQ"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binary-search_0_1" = callPackage @@ -35718,6 +38231,7 @@ self: { homepage = "http://github.com/jonpetterbergman/binary-streams"; description = "data serialization/deserialization io-streams library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binary-strict" = callPackage @@ -35884,6 +38398,7 @@ self: { homepage = "https://github.com/coreyoconnor/bind-marshal"; description = "Data marshaling library that uses type level equations to optimize buffering"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binding-core" = callPackage @@ -35914,6 +38429,7 @@ self: { homepage = "https://bitbucket.org/accursoft/binding"; description = "Data Binding in Gtk2Hs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binding-wx" = callPackage @@ -35929,6 +38445,7 @@ self: { homepage = "https://bitbucket.org/accursoft/binding"; description = "Data Binding in WxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "bindings" = callPackage @@ -35991,6 +38508,7 @@ self: { homepage = "http://cielonegro.org/Bindings-EsounD.html"; description = "Low level bindings to EsounD (ESD; Enlightened Sound Daemon)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {esound = null;}; "bindings-GLFW" = callPackage @@ -36014,6 +38532,7 @@ self: { doCheck = false; description = "Low-level bindings to GLFW OpenGL library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXcursor; inherit (pkgs.xorg) libXext; inherit (pkgs.xorg) libXfixes; inherit (pkgs.xorg) libXi; inherit (pkgs.xorg) libXinerama; @@ -36031,6 +38550,7 @@ self: { homepage = "https://github.com/jputcu/bindings-K8055"; description = "Bindings to Velleman K8055 dll"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {K8055D = null;}; "bindings-apr" = callPackage @@ -36045,6 +38565,7 @@ self: { homepage = "http://cielonegro.org/Bindings-APR.html"; description = "Low level bindings to Apache Portable Runtime (APR)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {apr-1 = null;}; "bindings-apr-util" = callPackage @@ -36059,6 +38580,7 @@ self: { homepage = "http://cielonegro.org/Bindings-APR.html"; description = "Low level bindings to Apache Portable Runtime Utility (APR Utility)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {apr-util-1 = null;}; "bindings-audiofile" = callPackage @@ -36089,6 +38611,7 @@ self: { homepage = "http://projects.haskell.org/bindings-bfd/"; description = "Bindings for libbfd, a library of the GNU `binutils'"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {bfd = null; opcodes = null;}; "bindings-cctools" = callPackage @@ -36102,6 +38625,7 @@ self: { homepage = "http://bitbucket.org/badi/bindings-cctools"; description = "Bindings to the CCTools WorkQueue C library"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {dttools = null;}; "bindings-codec2" = callPackage @@ -36122,6 +38646,7 @@ self: { homepage = "https://github.com/relrod/bindings-codec2"; description = "Very low-level FFI bindings for Codec2"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {codec2 = null;}; "bindings-common" = callPackage @@ -36133,6 +38658,7 @@ self: { libraryHaskellDepends = [ base ]; description = "This package is obsolete. Look for bindings-DSL instead."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bindings-dc1394" = callPackage @@ -36147,6 +38673,7 @@ self: { homepage = "http://github.com/aleator/bindings-dc1394"; description = "Library for using firewire (iidc-1394) cameras"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {dc1394 = null;}; "bindings-directfb" = callPackage @@ -36159,6 +38686,7 @@ self: { libraryPkgconfigDepends = [ directfb ]; description = "Low level bindings to DirectFB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) directfb;}; "bindings-eskit" = callPackage @@ -36174,6 +38702,7 @@ self: { homepage = "http://github.com/a1kmm/bindings-eskit"; description = "Bindings to ESKit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {eskit = null;}; "bindings-fann" = callPackage @@ -36186,6 +38715,7 @@ self: { libraryPkgconfigDepends = [ fann ]; description = "Low level bindings to FANN neural network library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {fann = null;}; "bindings-fluidsynth" = callPackage @@ -36199,6 +38729,7 @@ self: { homepage = "http://github.com/bgamari/bindings-fluidsynth"; description = "Haskell FFI bindings for fluidsynth software synthesizer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) fluidsynth;}; "bindings-friso" = callPackage @@ -36211,6 +38742,7 @@ self: { librarySystemDepends = [ friso ]; description = "Low level bindings for friso"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {friso = null;}; "bindings-glib" = callPackage @@ -36248,6 +38780,7 @@ self: { homepage = "http://bitbucket.org/mauricio/bindings-gpgme"; description = "Project bindings-* raw interface to gpgme"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) gpgme;}; "bindings-gsl" = callPackage @@ -36260,6 +38793,7 @@ self: { libraryPkgconfigDepends = [ gsl ]; description = "Low level bindings to GNU GSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gsl;}; "bindings-gts" = callPackage @@ -36272,6 +38806,7 @@ self: { libraryPkgconfigDepends = [ gts ]; description = "Low level bindings supporting GTS, the GNU Triangulated Surface Library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gts;}; "bindings-hamlib" = callPackage @@ -36290,6 +38825,7 @@ self: { homepage = "https://github.com/relrod/hamlib-haskell"; description = "Hamlib bindings for Haskell"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) hamlib;}; "bindings-hdf5" = callPackage @@ -36301,6 +38837,7 @@ self: { libraryHaskellDepends = [ base bindings-DSL ]; description = "Project bindings-* raw interface to HDF5 library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bindings-levmar" = callPackage @@ -36314,6 +38851,7 @@ self: { homepage = "https://github.com/basvandijk/bindings-levmar"; description = "Low level bindings to the C levmar (Levenberg-Marquardt) library"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; "bindings-libcddb" = callPackage @@ -36327,6 +38865,7 @@ self: { homepage = "http://bitbucket.org/mauricio/bindings-libcddb"; description = "Low level binding to libcddb"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) libcddb;}; "bindings-libffi" = callPackage @@ -36351,6 +38890,7 @@ self: { libraryPkgconfigDepends = [ libftdi libusb ]; description = "Low level bindings to libftdi"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libftdi; inherit (pkgs) libusb;}; "bindings-librrd" = callPackage @@ -36364,6 +38904,7 @@ self: { homepage = "http://cielonegro.org/Bindings-librrd.html"; description = "Low level bindings to RRDtool"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {librrd = null;}; "bindings-libstemmer" = callPackage @@ -36380,6 +38921,7 @@ self: { librarySystemDepends = [ stemmer ]; description = "Binding for libstemmer with low level binding"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {stemmer = null;}; "bindings-libusb" = callPackage @@ -36406,6 +38948,7 @@ self: { homepage = "https://gitorious.org/hsv4l2"; description = "bindings to libv4l2 for Linux"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {v4l2 = null;}; "bindings-libzip" = callPackage @@ -36419,6 +38962,7 @@ self: { homepage = "http://bitbucket.org/astanin/hs-libzip/"; description = "Low level bindings to libzip"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libzip;}; "bindings-libzip_0_11" = callPackage @@ -36445,6 +38989,7 @@ self: { homepage = "https://gitorious.org/hsv4l2"; description = "bindings to Video For Linux Two (v4l2) kernel interfaces"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bindings-lxc" = callPackage @@ -36458,6 +39003,7 @@ self: { homepage = "https://github.com/fizruk/bindings-lxc"; description = "Direct Haskell bindings to LXC (Linux containers) C API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) lxc;}; "bindings-mmap" = callPackage @@ -36469,6 +39015,7 @@ self: { libraryHaskellDepends = [ bindings-posix ]; description = "(deprecated) see bindings-posix instead"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "bindings-mpdecimal" = callPackage @@ -36482,6 +39029,7 @@ self: { homepage = "http://www.github.com/massysett/bindings-mpdecimal"; description = "bindings to mpdecimal library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bindings-nettle" = callPackage @@ -36511,6 +39059,7 @@ self: { libraryHaskellDepends = [ base bindings-DSL ]; description = "parport bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "bindings-portaudio" = callPackage @@ -36523,6 +39072,7 @@ self: { libraryPkgconfigDepends = [ portaudio ]; description = "Low-level bindings to portaudio library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) portaudio;}; "bindings-posix" = callPackage @@ -36534,6 +39084,7 @@ self: { libraryHaskellDepends = [ base bindings-DSL ]; description = "Low level bindings to posix"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "bindings-potrace" = callPackage @@ -36558,6 +39109,7 @@ self: { libraryHaskellDepends = [ base bindings-DSL ioctl ]; description = "PPDev bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "bindings-saga-cmd" = callPackage @@ -36592,6 +39144,7 @@ self: { homepage = "http://floss.scru.org/bindings-sane"; description = "FFI bindings to libsane"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {saneBackends = null;}; "bindings-sc3" = callPackage @@ -36605,6 +39158,7 @@ self: { homepage = "https://github.com/kaoskorobase/bindings-sc3/"; description = "Low-level bindings to the SuperCollider synthesis engine library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {scsynth = null;}; "bindings-sipc" = callPackage @@ -36621,6 +39175,7 @@ self: { homepage = "https://github.com/justinethier/hs-bindings-sipc"; description = "Low level bindings to SIPC"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {sipc = null;}; "bindings-sophia" = callPackage @@ -36656,6 +39211,7 @@ self: { homepage = "http://github.com/tanimoto/bindings-svm"; description = "Low level bindings to libsvm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "bindings-uname" = callPackage @@ -36728,6 +39284,7 @@ self: { homepage = "http://code.mathr.co.uk/binembed"; description = "Example project using binembed to embed data in object files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "bini" = callPackage @@ -36765,6 +39322,7 @@ self: { homepage = "http://biohaskell.org/Libraries/Bio"; description = "A bioinformatics library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bioace" = callPackage @@ -36859,37 +39417,43 @@ self: { homepage = "http://github.com/udo-stenzel/biohazard"; description = "bioinformatics support library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bioinformatics-toolkit" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bbi, binary, bytestring - , bytestring-lexing, clustering, colour, conduit, containers - , data-default-class, double-conversion, hexpat, http-conduit - , IntervalMap, matrices, mtl, palette, parallel, primitive, random + ({ mkDerivation, aeson, aeson-pretty, base, binary, bytestring + , bytestring-lexing, clustering, colour, conduit + , conduit-combinators, containers, data-default-class + , double-conversion, hexpat, http-conduit, IntervalMap, matrices + , mtl, optparse-applicative, palette, parallel, primitive, random , samtools, shelly, split, statistics, tasty, tasty-golden , tasty-hunit, text, transformers, unordered-containers, vector , vector-algorithms, word8 }: mkDerivation { pname = "bioinformatics-toolkit"; - version = "0.1.1"; - sha256 = "ac95d23555ac96d87ebf90c90fd665587b037ae22d2fd92864efb95a8725863f"; + version = "0.2.0"; + sha256 = "daed7af121b14dfbe493b15eb470323a17c1bf28ba330d73e8690e76f13dc8c2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson aeson-pretty base bbi binary bytestring bytestring-lexing - clustering colour conduit containers data-default-class + aeson aeson-pretty base binary bytestring bytestring-lexing + clustering colour conduit-combinators containers data-default-class double-conversion hexpat http-conduit IntervalMap matrices mtl palette parallel primitive samtools split statistics text transformers unordered-containers vector vector-algorithms word8 ]; - executableHaskellDepends = [ base bytestring shelly text ]; + executableHaskellDepends = [ + base bytestring clustering data-default-class optparse-applicative + shelly split text + ]; testHaskellDepends = [ - base bytestring conduit data-default-class mtl random tasty - tasty-golden tasty-hunit unordered-containers vector + base bytestring conduit conduit-combinators data-default-class mtl + random tasty tasty-golden tasty-hunit unordered-containers vector ]; description = "A collection of bioinformatics tools"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "biophd" = callPackage @@ -36987,6 +39551,7 @@ self: { homepage = "http://biohaskell.org/"; description = "Library and executables for working with SFF files"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "biostockholm" = callPackage @@ -37010,6 +39575,7 @@ self: { jailbreak = true; description = "Parsing and rendering of Stockholm files (used by Pfam, Rfam and Infernal)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bird" = callPackage @@ -37030,6 +39596,7 @@ self: { homepage = "http://github.com/moonmaster9000/bird"; description = "A simple, sinatra-inspired web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bit-array" = callPackage @@ -37060,6 +39627,7 @@ self: { homepage = "https://github.com/acfoltzer/bit-vector"; description = "Simple bit vectors for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "bitarray" = callPackage @@ -37164,6 +39732,7 @@ self: { jailbreak = true; description = "Library to communicate with the Satoshi Bitcoin daemon"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bitcoin-script" = callPackage @@ -37237,6 +39806,7 @@ self: { homepage = "http://bitbucket.org/jetxee/hs-bitly/"; description = "A command line tool to access bit.ly URL shortener."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bitmap" = callPackage @@ -37261,6 +39831,7 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "OpenGL support for Data.Bitmap."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "bitmaps" = callPackage @@ -37321,6 +39892,7 @@ self: { jailbreak = true; description = "Bitstream support for Conduit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bits-extras" = callPackage @@ -37335,6 +39907,7 @@ self: { librarySystemDepends = [ gcc_s ]; description = "Efficient high-level bit operations not found in Data.Bits"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {gcc_s = null;}; "bitset" = callPackage @@ -37351,6 +39924,7 @@ self: { jailbreak = true; description = "A space-efficient set data structure"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gmp;}; "bitspeak" = callPackage @@ -37370,6 +39944,7 @@ self: { jailbreak = true; description = "Proof-of-concept tool for writing using binary choices"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {gdk2 = null; gtk2 = pkgs.gnome2.gtk; inherit (pkgs.gnome) pango;}; @@ -37391,6 +39966,7 @@ self: { homepage = "https://github.com/phonohawk/bitstream"; description = "Fast, packed, strict and lazy bit streams with stream fusion"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bitstring" = callPackage @@ -37437,6 +40013,7 @@ self: { homepage = "https://github.com/cobit/bittorrent"; description = "Bittorrent protocol implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bitvec" = callPackage @@ -37455,6 +40032,7 @@ self: { homepage = "https://github.com/mokus0/bitvec"; description = "Unboxed vectors of bits / dense IntSets"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bitwise_0_1_0_2" = callPackage @@ -37543,6 +40121,7 @@ self: { homepage = "https://github.com/ingesson/bkr"; description = "Backup utility for backing up to cloud storage services (S3 only right now)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bktrees" = callPackage @@ -37568,6 +40147,7 @@ self: { homepage = "http://github.com/nfjinjing/bla"; description = "a stupid cron"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "black-jewel" = callPackage @@ -37589,6 +40169,7 @@ self: { homepage = "http://git.kaction.name/black-jewel"; description = "The pirate bay client"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blacktip" = callPackage @@ -37626,6 +40207,7 @@ self: { homepage = "https://github.com/centromere/blake2"; description = "A library providing BLAKE2"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "blakesum" = callPackage @@ -37639,6 +40221,7 @@ self: { homepage = "https://github.com/killerswan/Haskell-BLAKE"; description = "The BLAKE SHA-3 candidate hashes, in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blakesum-demo" = callPackage @@ -37658,6 +40241,7 @@ self: { homepage = "https://github.com/killerswan/Haskell-BLAKE"; description = "The BLAKE SHA-3 candidate hashes, in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blank-canvas_0_5" = callPackage @@ -37721,6 +40305,7 @@ self: { homepage = "http://github.com/patperry/blas"; description = "Bindings to the BLAS library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blas-hs" = callPackage @@ -37735,6 +40320,7 @@ self: { homepage = "https://github.com/Rufflewind/blas-hs"; description = "Low-level Haskell bindings to Blas"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) blas;}; "blastxml" = callPackage @@ -38024,6 +40610,7 @@ self: { homepage = "https://github.com/egonSchiele/blaze-html-contrib"; description = "Some contributions to add handy things to blaze html"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blaze-html-hexpat" = callPackage @@ -38037,6 +40624,7 @@ self: { homepage = "https://github.com/jaspervdj/blaze-html-hexpat"; description = "A hexpat backend for blaze-html"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blaze-html-truncate" = callPackage @@ -38310,6 +40898,7 @@ self: { homepage = "http://github.com/mailrank/blaze-textual"; description = "Fast rendering of common datatypes (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blazeMarker" = callPackage @@ -38321,6 +40910,7 @@ self: { libraryHaskellDepends = [ base blaze-html blaze-markup ]; description = "..."; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blink1" = callPackage @@ -38355,6 +40945,7 @@ self: { homepage = "https://github.com/bjpop/blip"; description = "Python to bytecode compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bliplib" = callPackage @@ -38404,6 +40995,7 @@ self: { executableHaskellDepends = [ base ConfigFile haskell98 old-time ]; description = "Very simple static blog software"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bloodhound_0_4_0_2" = callPackage @@ -38489,7 +41081,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "bloodhound" = callPackage + "bloodhound_0_10_0_0" = callPackage ({ mkDerivation, aeson, base, blaze-builder, bytestring, containers , data-default-class, derive, directory, doctest, doctest-prop , errors, exceptions, filepath, hashable, hspec, http-client @@ -38518,6 +41110,61 @@ self: { homepage = "https://github.com/bitemyapp/bloodhound"; description = "ElasticSearch client library for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "bloodhound" = callPackage + ({ mkDerivation, aeson, base, blaze-builder, bytestring, containers + , data-default-class, derive, directory, doctest, doctest-prop + , errors, exceptions, filepath, hashable, hspec, http-client + , http-types, mtl, mtl-compat, network-uri, QuickCheck + , quickcheck-properties, scientific, semigroups, text, time + , transformers, unordered-containers, vector + }: + mkDerivation { + pname = "bloodhound"; + version = "0.11.0.0"; + sha256 = "df3c708675ad1e113aa31f6d1492bcf55dbef6c7e86e6202b118670a6fcbb939"; + libraryHaskellDepends = [ + aeson base blaze-builder bytestring containers data-default-class + exceptions hashable http-client http-types mtl mtl-compat + network-uri scientific semigroups text time transformers + unordered-containers vector + ]; + testHaskellDepends = [ + aeson base bytestring containers derive directory doctest + doctest-prop errors filepath hspec http-client http-types mtl + QuickCheck quickcheck-properties semigroups text time + unordered-containers vector + ]; + jailbreak = true; + homepage = "https://github.com/bitemyapp/bloodhound"; + description = "ElasticSearch client library for Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "bloodhound-amazonka-auth" = callPackage + ({ mkDerivation, amazonka-core, amazonka-elasticsearch, base + , bloodhound, exceptions, http-client, http-types, tasty + , tasty-hunit, time, transformers, uri-bytestring + }: + mkDerivation { + pname = "bloodhound-amazonka-auth"; + version = "0.1.0.0"; + sha256 = "8a0bff2793fe8493e3d6239b43da5b15c1d31bfec71cad6bac0b20f0fd57c297"; + libraryHaskellDepends = [ + amazonka-core amazonka-elasticsearch base bloodhound exceptions + http-client http-types time transformers uri-bytestring + ]; + testHaskellDepends = [ + amazonka-core base http-client tasty tasty-hunit time + ]; + jailbreak = true; + homepage = "http://github.com/MichaelXavier/bloodhound-amazonka-auth#readme"; + description = "Adds convenient Amazon ElasticSearch Service authentication to Bloodhound"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bloomfilter" = callPackage @@ -38549,6 +41196,7 @@ self: { executableHaskellDepends = [ base GLFW OpenGL ]; description = "OpenGL Logic Game"; license = "GPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "blubber" = callPackage @@ -38568,6 +41216,7 @@ self: { homepage = "https://secure.plaimi.net/games/blubber.html"; description = "The blubber client; connects to the blubber server"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "blubber-server" = callPackage @@ -38612,6 +41261,7 @@ self: { homepage = "http://www.bluetile.org/"; description = "full-featured tiling for the GNOME desktop environment"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {gtk2 = pkgs.gnome2.gtk;}; "bluetileutils" = callPackage @@ -38626,6 +41276,7 @@ self: { jailbreak = true; description = "Utilities for Bluetile"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "blunt" = callPackage @@ -38683,9 +41334,11 @@ self: { testHaskellDepends = [ array base containers QuickCheck random transformers utility-ht ]; + jailbreak = true; homepage = "http://code.haskell.org/~thielema/games/"; description = "Three games for inclusion in a web server"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bogre-banana" = callPackage @@ -38703,6 +41356,7 @@ self: { ]; executableHaskellDepends = [ base hogre hois random ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bond" = callPackage @@ -38734,6 +41388,52 @@ self: { homepage = "https://github.com/Microsoft/bond"; description = "Bond schema compiler and code generator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "bond-haskell" = callPackage + ({ mkDerivation, aeson, array, base, binary, bond-haskell-compiler + , bytestring, containers, either, extra, filepath, hashable, mtl + , scientific, tasty, tasty-golden, tasty-hunit, tasty-quickcheck + , text, unordered-containers, vector + }: + mkDerivation { + pname = "bond-haskell"; + version = "0.1.2.0"; + sha256 = "edfdb9fe245a634b06d2cd309d334192043114145a0117d07a8bc55bfbbcfcf5"; + libraryHaskellDepends = [ + aeson array base binary bond-haskell-compiler bytestring containers + extra hashable mtl scientific text unordered-containers vector + ]; + testHaskellDepends = [ + aeson base bytestring containers either filepath mtl tasty + tasty-golden tasty-hunit tasty-quickcheck unordered-containers + ]; + homepage = "http://github.com/rblaze/bond-haskell#readme"; + description = "Runtime support for BOND serialization"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "bond-haskell-compiler" = callPackage + ({ mkDerivation, aeson, base, bond, bytestring, cmdargs, directory + , filepath, haskell-src-exts, monad-loops + }: + mkDerivation { + pname = "bond-haskell-compiler"; + version = "0.1.2.0"; + sha256 = "faa936e9a89dbf42919746b13fb9b1b0731d36201b5f36dd0c092a2b1942c7bc"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bond filepath haskell-src-exts ]; + executableHaskellDepends = [ + aeson base bond bytestring cmdargs directory filepath monad-loops + ]; + testHaskellDepends = [ base ]; + homepage = "http://github.com/rblaze/bond-haskell#readme"; + description = "Bond code generator for Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bool-extras" = callPackage @@ -38777,6 +41477,7 @@ self: { ]; description = "Boolean normal form: NNF, DNF & CNF"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "boolexpr" = callPackage @@ -38810,6 +41511,7 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Simplification tools for simple propositional formulas"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "boomange" = callPackage @@ -38874,6 +41576,7 @@ self: { jailbreak = true; description = "Boomshine clone"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "borel" = callPackage @@ -38907,6 +41610,7 @@ self: { homepage = "https://github.com/anchor/borel-core"; description = "Metering System for OpenStack metrics provided by Vaultaire"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bot" = callPackage @@ -38919,6 +41623,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Bot"; description = "bots for functional reactive programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "both" = callPackage @@ -39076,7 +41781,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "bower-json" = callPackage + "bower-json_0_7_0_0" = callPackage ({ mkDerivation, aeson, aeson-better-errors, base, bytestring, mtl , scientific, tasty, tasty-hunit, text, transformers , unordered-containers, vector @@ -39095,6 +41800,28 @@ self: { homepage = "https://github.com/hdgarrood/bower-json"; description = "Read bower.json from Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "bower-json" = callPackage + ({ mkDerivation, aeson, aeson-better-errors, base, bytestring, mtl + , scientific, tasty, tasty-hunit, text, transformers + , unordered-containers, vector + }: + mkDerivation { + pname = "bower-json"; + version = "0.8.0"; + sha256 = "ee8efa507020dc3f7439849a3662d6bbc72dfec8c1ae8d158e75546138dff3cf"; + libraryHaskellDepends = [ + aeson aeson-better-errors base bytestring mtl scientific text + transformers unordered-containers vector + ]; + testHaskellDepends = [ + aeson base bytestring tasty tasty-hunit text unordered-containers + ]; + homepage = "https://github.com/hdgarrood/bower-json"; + description = "Read bower.json from Haskell"; + license = stdenv.lib.licenses.mit; }) {}; "bowntz" = callPackage @@ -39111,6 +41838,7 @@ self: { homepage = "http://code.mathr.co.uk/bowntz"; description = "audio-visual pseudo-physical simulation of colliding circles"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "boxes" = callPackage @@ -39222,6 +41950,7 @@ self: { homepage = "http://github.com/Peaker/breakout/tree/master"; description = "A simple Breakout game implementation"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "breve" = callPackage @@ -39245,6 +41974,7 @@ self: { homepage = "https://github.com/rnhmjoj/breve"; description = "a url shortener"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "brians-brain" = callPackage @@ -39259,6 +41989,7 @@ self: { homepage = "http://github.com/willdonnelly/brians-brain"; description = "A Haskell implementation of the Brian's Brain cellular automaton"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "brick_0_3_1" = callPackage @@ -39308,6 +42039,30 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "brick_0_5" = callPackage + ({ mkDerivation, base, containers, contravariant, data-default + , deepseq, lens, template-haskell, text, text-zipper, transformers + , vector, vty + }: + mkDerivation { + pname = "brick"; + version = "0.5"; + sha256 = "70819394a586d768e31bbf34b225ce642f682b625256ebe3c8651ee203f5e942"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers contravariant data-default deepseq lens + template-haskell text text-zipper transformers vector vty + ]; + executableHaskellDepends = [ + base data-default lens text vector vty + ]; + homepage = "https://github.com/jtdaugherty/brick/"; + description = "A declarative terminal user interface library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "brillig" = callPackage ({ mkDerivation, base, binary, cmdargs, containers, directory , filepath, ListZipper, text @@ -39327,6 +42082,7 @@ self: { jailbreak = true; description = "Simple part of speech tagger"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "broadcast-chan" = callPackage @@ -39365,6 +42121,7 @@ self: { homepage = "https://github.com/capn-freako/broker-haskell"; description = "Haskell bindings to Broker, Bro's messaging library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {broker = null;}; "bsd-sysctl" = callPackage @@ -39376,6 +42133,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Access to the BSD sysctl(3) interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bson_0_3_1" = callPackage @@ -39475,6 +42233,7 @@ self: { jailbreak = true; description = "Generics functionality for BSON"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bson-lens" = callPackage @@ -39502,6 +42261,7 @@ self: { ]; description = "Mapping between BSON and algebraic data types"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bspack" = callPackage @@ -39554,6 +42314,7 @@ self: { homepage = "https://github.com/brinchj/btree-concurrent"; description = "A backend agnostic, concurrent BTree"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "btrfs_0_1_1_1" = callPackage @@ -39585,6 +42346,7 @@ self: { homepage = "https://github.com/redneb/hs-btrfs"; description = "Bindings to the btrfs API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "buffer-builder_0_2_4_0" = callPackage @@ -39629,6 +42391,7 @@ self: { homepage = "https://github.com/chadaustin/buffer-builder"; description = "Library for efficiently building up buffers, one piece at a time"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "buffer-builder-aeson" = callPackage @@ -39654,6 +42417,7 @@ self: { ]; description = "Serialize Aeson values with Data.BufferBuilder"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "buffer-pipe" = callPackage @@ -39684,6 +42448,7 @@ self: { homepage = "https://github.com/derekelkins/buffon"; description = "An implementation of Buffon machines"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bugzilla" = callPackage @@ -39751,6 +42516,7 @@ self: { homepage = "http://code.ouroborus.net/buildbox"; description = "Tools for working with buildbox benchmark result files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "buildwrapper" = callPackage @@ -39790,6 +42556,7 @@ self: { homepage = "https://github.com/JPMoresmau/BuildWrapper"; description = "A library and an executable that provide an easy API for a Haskell IDE"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bullet" = callPackage @@ -39804,6 +42571,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Bullet"; description = "A wrapper for the Bullet physics engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) bullet;}; "bumper_0_6_0_2" = callPackage @@ -39892,6 +42660,7 @@ self: { homepage = "http://vis.renci.org/jeff/buster"; description = "Almost but not quite entirely unlike FRP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "buster-gtk" = callPackage @@ -39909,6 +42678,7 @@ self: { homepage = "http://vis.renci.org/jeff/buster"; description = "Almost but not quite entirely unlike FRP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "buster-network" = callPackage @@ -39926,6 +42696,7 @@ self: { homepage = "http://vis.renci.org/jeff/buster"; description = "Almost but not quite entirely unlike FRP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bustle_0_5_2" = callPackage @@ -40009,6 +42780,7 @@ self: { homepage = "http://www.freedesktop.org/wiki/Software/Bustle/"; description = "Draw sequence diagrams of D-Bus traffic"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {system-glib = pkgs.glib;}; "butterflies" = callPackage @@ -40030,6 +42802,7 @@ self: { homepage = "http://code.mathr.co.uk/butterflies"; description = "butterfly tilings"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bv" = callPackage @@ -40075,6 +42848,7 @@ self: { libraryHaskellDepends = [ base bytestring word24 ]; description = "data from/to ByteString"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "byteable" = callPackage @@ -40380,6 +43154,7 @@ self: { jailbreak = true; description = "Classes for automatic conversion to and from strict and lazy bytestrings. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bytestring-conversion_0_3_0" = callPackage @@ -40433,6 +43208,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/bytestring-csv"; description = "Parse CSV formatted data efficiently"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bytestring-delta" = callPackage @@ -40646,6 +43422,7 @@ self: { homepage = "github.com/tcrayford/rematch"; description = "Rematch support for ByteString"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bytestring-short" = callPackage @@ -40731,6 +43508,7 @@ self: { libraryHaskellDepends = [ base bytestring containers ]; description = "Combinator parsing with Data.ByteString.Lazy"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bytestringparser-temporary" = callPackage @@ -40753,6 +43531,7 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "A ReadP style parser library for ByteString"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bzlib_0_5_0_4" = callPackage @@ -40826,6 +43605,7 @@ self: { libraryHaskellDepends = [ base ]; description = "C IO"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "c-storable-deriving" = callPackage @@ -41072,6 +43852,7 @@ self: { homepage = "https://github.com/benarmston/cabal-constraints"; description = "Repeatable builds for cabalized Haskell projects"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-db" = callPackage @@ -41235,6 +44016,7 @@ self: { homepage = "http://github.com/creswick/cabal-dev"; description = "Manage sandboxed Haskell build environments"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-dir" = callPackage @@ -41292,6 +44074,7 @@ self: { homepage = "http://github.com/atnnn/cabal-ghci"; description = "Set up ghci with options taken from a .cabal file"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-graphdeps" = callPackage @@ -41310,6 +44093,7 @@ self: { homepage = "https://john-millikin.com/software/cabal-graphdeps/"; description = "Generate graphs of install-time Cabal dependencies"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-helper_0_6_2_0" = callPackage @@ -41675,7 +44459,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ simons ]; }) {}; - "cabal-install" = callPackage + "cabal-install_1_22_8_0" = callPackage ({ mkDerivation, array, base, bytestring, Cabal, containers , directory, extensible-exceptions, filepath, HTTP, HUnit, mtl , network, network-uri, pretty, process, QuickCheck, random @@ -41706,10 +44490,11 @@ self: { homepage = "http://www.haskell.org/cabal/"; description = "The command-line interface for Cabal and Hackage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ simons ]; }) {}; - "cabal-install_1_22_9_0" = callPackage + "cabal-install" = callPackage ({ mkDerivation, array, base, bytestring, Cabal, containers , directory, extensible-exceptions, filepath, HTTP, HUnit, mtl , network, network-uri, pretty, process, QuickCheck, random @@ -41732,6 +44517,7 @@ self: { pretty process QuickCheck regex-posix stm test-framework test-framework-hunit test-framework-quickcheck2 time unix zlib ]; + doCheck = false; postInstall = '' mkdir $out/etc mv bash-completion $out/etc/bash_completion.d @@ -41739,7 +44525,6 @@ self: { homepage = "http://www.haskell.org/cabal/"; description = "The command-line interface for Cabal and Hackage"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ simons ]; }) {}; @@ -41760,6 +44545,7 @@ self: { executableSystemDepends = [ zlib ]; description = "The (bundled) command-line interface for Cabal and Hackage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) zlib;}; "cabal-install-ghc72" = callPackage @@ -41781,6 +44567,7 @@ self: { homepage = "http://www.haskell.org/cabal/"; description = "Temporary version of cabal-install for ghc-7.2"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-install-ghc74" = callPackage @@ -41802,6 +44589,7 @@ self: { homepage = "http://www.haskell.org/cabal/"; description = "Temporary version of cabal-install for ghc-7.4"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-lenses" = callPackage @@ -41935,6 +44723,7 @@ self: { homepage = "http://github.com/explicitcall/cabal-query"; description = "Helpers for quering .cabal files or hackageDB's 00-index.tar"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-rpm_0_9_4" = callPackage @@ -42069,6 +44858,25 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "cabal-rpm_0_9_10" = callPackage + ({ mkDerivation, base, Cabal, directory, filepath, process, time + , unix + }: + mkDerivation { + pname = "cabal-rpm"; + version = "0.9.10"; + sha256 = "6533970ff2b3d28fcdf99d20dcea9f382e2f1610b8610244073679bb82c6d88d"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base Cabal directory filepath process time unix + ]; + homepage = "https://github.com/juhp/cabal-rpm"; + description = "RPM packaging tool for Haskell Cabal-based packages"; + license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "cabal-scripts" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -42093,6 +44901,7 @@ self: { homepage = "http://www.haskell.org/cabal/"; description = "The user interface for building and installing Cabal packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-sign" = callPackage @@ -42267,6 +45076,7 @@ self: { ]; description = "Automated test tool for cabal projects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-test-bin" = callPackage @@ -42349,6 +45159,7 @@ self: { jailbreak = true; description = "Command-line tool for uploading packages to Hackage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal2arch" = callPackage @@ -42368,6 +45179,7 @@ self: { homepage = "http://github.com/archhaskell/"; description = "Create Arch Linux packages from Cabal packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal2doap" = callPackage @@ -42385,6 +45197,7 @@ self: { homepage = "http://gregheartsfield.com/cabal2doap/"; description = "Cabal to Description-of-a-Project (DOAP)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal2ebuild" = callPackage @@ -42462,6 +45275,7 @@ self: { homepage = "https://fedorahosted.org/cabal2spec/"; description = "Generates RPM Spec files from cabal files"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabalQuery" = callPackage @@ -42515,6 +45329,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/cabalgraph"; description = "Generate pretty graphs of module trees from cabal files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabalmdvrpm" = callPackage @@ -42530,6 +45345,7 @@ self: { homepage = "http://nanardon.zarb.org/darcsweb/darcsweb.cgi?r=haskell-cabalmdvrpm;a=shortlog;topi=0"; description = "Create mandriva rpm from cabal package"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabalrpmdeps" = callPackage @@ -42545,6 +45361,7 @@ self: { homepage = "http://nanardon.zarb.org/darcsweb/darcsweb.cgi?r=haskell-CabalRpmDeps;a=summary"; description = "Autogenerate rpm dependencies from cabal files"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabalvchk" = callPackage @@ -42589,6 +45406,7 @@ self: { testHaskellDepends = [ base text-format ]; homepage = "http://github.com/pecorarista/hscabocha"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {cabocha = null;}; "cached-io" = callPackage @@ -42798,6 +45616,7 @@ self: { executableHaskellDepends = [ base cairo glib gtk ]; description = "A template for building new GUI applications using GTK and Cairo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "cake" = callPackage @@ -42848,6 +45667,7 @@ self: { homepage = "https://github.com/grwlf/cake3"; description = "Third cake the Makefile EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cakyrespa" = callPackage @@ -42866,6 +45686,7 @@ self: { homepage = "http://homepage3.nifty.com/salamander/myblog/cakyrespa.html"; description = "run turtle like LOGO with lojban"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cal3d" = callPackage @@ -42879,6 +45700,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Cal3d_animation"; description = "Haskell binding to the Cal3D animation library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {cal3d = null;}; "cal3d-examples" = callPackage @@ -42894,6 +45716,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Cal3d_animation"; description = "Examples for the Cal3d animation library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cal3d-opengl" = callPackage @@ -42907,6 +45730,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Cal3d_animation"; description = "OpenGL rendering for the Cal3D animation library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "calc" = callPackage @@ -42920,6 +45744,7 @@ self: { executableHaskellDepends = [ array base harpy haskell98 mtl ]; description = "A small compiler for arithmetic expressions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "calculator" = callPackage @@ -42942,6 +45767,7 @@ self: { homepage = "https://github.com/sumitsahrawat/calculator"; description = "A calculator repl, with variables, functions & Mathematica like dynamic plots"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "caldims" = callPackage @@ -42962,6 +45788,7 @@ self: { ]; description = "Calculation tool and library supporting units"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "caledon" = callPackage @@ -42981,6 +45808,7 @@ self: { homepage = "https://github.com/mmirman/caledon"; description = "a logic programming language based on the calculus of constructions"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "call" = callPackage @@ -43008,6 +45836,7 @@ self: { homepage = "https://github.com/fumieval/call"; description = "The call game engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "call-haskell-from-anything" = callPackage @@ -43027,6 +45856,34 @@ self: { homepage = "https://github.com/nh2/call-haskell-from-anything"; description = "Call Haskell functions from other languages via serialization and dynamic libraries"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "camfort" = callPackage + ({ mkDerivation, alex, array, base, comonad, containers, directory + , fclabels, generic-deriving, happy, haskell-src, hmatrix + , language-fortran, matrix, mtl, syb, syz, template-haskell, text + , transformers, uniplate, vector + }: + mkDerivation { + pname = "camfort"; + version = "0.700"; + sha256 = "f5978dfbc1af77fc7fb0ff0190fae5d58f797301acbec7115ce66ab146913151"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base comonad containers directory fclabels generic-deriving + haskell-src hmatrix language-fortran matrix mtl syb syz + template-haskell text transformers uniplate vector + ]; + libraryToolDepends = [ alex happy ]; + executableHaskellDepends = [ + array base comonad containers directory fclabels generic-deriving + haskell-src hmatrix language-fortran matrix mtl syb syz + template-haskell text transformers uniplate vector + ]; + description = "CamFort - Cambridge Fortran infrastructure"; + license = stdenv.lib.licenses.asl20; }) {}; "camh" = callPackage @@ -43061,6 +45918,7 @@ self: { homepage = "http://github.com/michaelxavier/Campfire"; description = "Haskell implementation of the Campfire API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "canonical-filepath" = callPackage @@ -43157,6 +46015,7 @@ self: { homepage = "https://github.com/klangner/cantor"; description = "Application for analysis of java source code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cao" = callPackage @@ -43178,6 +46037,7 @@ self: { homepage = "http://haslab.uminho.pt/mbb/software/cao-domain-specific-language-cryptography"; description = "CAO Compiler"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cap" = callPackage @@ -43191,6 +46051,7 @@ self: { executableHaskellDepends = [ array base containers haskell98 ]; description = "Interprets and debug the cap language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "capped-list" = callPackage @@ -43217,6 +46078,7 @@ self: { ]; description = "A simple wrapper over cabal-install to operate in project-private mode"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "car-pool" = callPackage @@ -43266,6 +46128,7 @@ self: { homepage = "https://github.com/Noeda/caramia/"; description = "High-level OpenGL bindings"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "carboncopy" = callPackage @@ -43284,6 +46147,7 @@ self: { homepage = "http://github.com/jdevelop/carboncopy"; description = "Drop emails from threads being watched into special CC folder"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "carettah" = callPackage @@ -43303,6 +46167,7 @@ self: { homepage = "https://github.com/master-q/carettah"; description = "A presentation tool written with Haskell"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "carray_0_1_6_2" = callPackage @@ -43407,6 +46272,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "casa-abbreviations-and-acronyms" = callPackage + ({ mkDerivation, base, directory, doctest, filepath, QuickCheck + , template-haskell + }: + mkDerivation { + pname = "casa-abbreviations-and-acronyms"; + version = "0.0.1"; + sha256 = "5ebea4d5c229fbbf97fac6cd91016ef41fe712995d6f8719db330c2753e0ec8a"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ + base directory doctest filepath QuickCheck template-haskell + ]; + homepage = "https://github.com/tonymorris/casa-abbreviations-and-acronyms"; + description = "CASA Abbreviations and Acronyms"; + license = "unknown"; + }) {}; + "casadi-bindings" = callPackage ({ mkDerivation, base, binary, casadi, casadi-bindings-core , casadi-bindings-internal, cereal, containers, doctest, linear @@ -43425,6 +46307,7 @@ self: { homepage = "http://github.com/ghorn/casadi-bindings"; description = "mid-level bindings to CasADi"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {casadi = null;}; "casadi-bindings-control" = callPackage @@ -43442,6 +46325,7 @@ self: { jailbreak = true; description = "low level bindings to casadi-control"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {casadi_control = null;}; "casadi-bindings-core" = callPackage @@ -43458,6 +46342,7 @@ self: { libraryPkgconfigDepends = [ casadi ]; description = "autogenerated low level bindings to casadi"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {casadi = null;}; "casadi-bindings-internal" = callPackage @@ -43471,6 +46356,7 @@ self: { homepage = "http://github.com/ghorn/casadi-bindings"; description = "low level bindings to CasADi"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {casadi = null;}; "casadi-bindings-ipopt-interface" = callPackage @@ -43487,6 +46373,7 @@ self: { libraryPkgconfigDepends = [ casadi_ipopt_interface ]; description = "low level bindings to casadi-ipopt_interface"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {casadi_ipopt_interface = null;}; "casadi-bindings-snopt-interface" = callPackage @@ -43503,6 +46390,7 @@ self: { libraryPkgconfigDepends = [ casadi_snopt_interface ]; description = "low level bindings to casadi-snopt_interface"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {casadi_snopt_interface = null;}; "cascading" = callPackage @@ -43520,6 +46408,7 @@ self: { jailbreak = true; description = "DSL for HTML CSS (Cascading Style Sheets)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "case-conversion" = callPackage @@ -43593,7 +46482,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "case-insensitive" = callPackage + "case-insensitive_1_2_0_5" = callPackage ({ mkDerivation, base, bytestring, deepseq, hashable, HUnit , test-framework, test-framework-hunit, text }: @@ -43610,6 +46499,26 @@ self: { homepage = "https://github.com/basvandijk/case-insensitive"; description = "Case insensitive string comparison"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "case-insensitive" = callPackage + ({ mkDerivation, base, bytestring, deepseq, hashable, HUnit + , semigroups, test-framework, test-framework-hunit, text + }: + mkDerivation { + pname = "case-insensitive"; + version = "1.2.0.6"; + sha256 = "bc7b53517fefc475311bfe6dbab8ade47ab8df11a59079653aa3271e9ffcb1c4"; + libraryHaskellDepends = [ + base bytestring deepseq hashable semigroups text + ]; + testHaskellDepends = [ + base bytestring HUnit test-framework test-framework-hunit text + ]; + homepage = "https://github.com/basvandijk/case-insensitive"; + description = "Case insensitive string comparison"; + license = stdenv.lib.licenses.bsd3; }) {}; "cased" = callPackage @@ -43700,6 +46609,7 @@ self: { homepage = "http://www.cs.st-andrews.ac.uk/~hwloidl/SCIEnce/SymGrid-Par/CASH/"; description = "the Computer Algebra SHell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "casing" = callPackage @@ -43719,8 +46629,8 @@ self: { }: mkDerivation { pname = "casr-logbook"; - version = "0.0.3"; - sha256 = "467e3484e77c94f6d077048fd184ea6b50904afe80291be88114455dd9af4fd5"; + version = "0.0.4"; + sha256 = "9c0942ed3905dc6d6fc2e65a171c826f9de33b7df72f897a8e94fdf854d02f95"; libraryHaskellDepends = [ base containers ]; testHaskellDepends = [ base directory doctest filepath QuickCheck template-haskell @@ -43758,6 +46668,7 @@ self: { homepage = "http://cassandra.apache.org/"; description = "thrift bindings to the cassandra database"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cassava_0_4_2_0" = callPackage @@ -44016,6 +46927,7 @@ self: { homepage = "https://github.com/domdere/cassava-conduit"; description = "Conduit interface for cassava package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cassava-streams" = callPackage @@ -44078,6 +46990,7 @@ self: { homepage = "http://github.com/ozataman/cassy"; description = "A high level driver for the Cassandra datastore"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "castle" = callPackage @@ -44112,6 +47025,7 @@ self: { homepage = "http://code.atnnn.com/projects/casui"; description = "Equation Manipulator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "catamorphism" = callPackage @@ -44137,6 +47051,7 @@ self: { homepage = "http://github.com/sonyandy/catch-fd"; description = "MonadThrow and MonadCatch, using functional dependencies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "categorical-algebra" = callPackage @@ -44148,6 +47063,7 @@ self: { libraryHaskellDepends = [ base newtype pointless-haskell void ]; description = "Categorical Monoids and Semirings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "categories" = callPackage @@ -44188,6 +47104,7 @@ self: { homepage = "http://comonad.com/reader/"; description = "A meta-package documenting various packages inspired by category theory"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "category-traced" = callPackage @@ -44293,23 +47210,24 @@ self: { "cblrepo" = callPackage ({ mkDerivation, aeson, ansi-wl-pprint, base, bytestring, Cabal , containers, directory, filepath, mtl, optparse-applicative - , process, safe, stringsearch, tar, transformers, unix, Unixutils - , utf8-string, zlib + , process, safe, stringsearch, tar, text, transformers, unix + , Unixutils, utf8-string, zlib }: mkDerivation { pname = "cblrepo"; - version = "0.19.1"; - sha256 = "e06276a14157bf82b86f3a534bc51620134253b1e9472e676616cec58ab8b436"; + version = "0.20.0"; + sha256 = "0cc8cf5888d0dc87be47a2e11c641e8f3c8f64f3e09b242694c74b69a1b093e5"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ aeson ansi-wl-pprint base bytestring Cabal containers directory filepath mtl optparse-applicative process safe stringsearch tar - transformers unix Unixutils utf8-string zlib + text transformers unix Unixutils utf8-string zlib ]; jailbreak = true; description = "Tool to maintain a database of CABAL packages and their dependencies"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cci" = callPackage @@ -44330,6 +47248,7 @@ self: { ]; description = "Bindings for the CCI networking library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {cci = null;}; "ccnx" = callPackage @@ -44360,6 +47279,7 @@ self: { homepage = "http://bitbucket.org/badi/hs-cctools-workqueue"; description = "High-level interface to CCTools' WorkQueue library"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {dttools = null;}; "cedict" = callPackage @@ -44378,6 +47298,7 @@ self: { jailbreak = true; description = "Convenient Chinese phrase & character lookup"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cef" = callPackage @@ -44417,6 +47338,7 @@ self: { homepage = "https://github.com/anchor/ceilometer-common"; description = "Common Haskell types and encoding for OpenStack Ceilometer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cellrenderer-cairo" = callPackage @@ -44431,6 +47353,7 @@ self: { jailbreak = true; description = "Cairo-based CellRenderer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {gtk2 = pkgs.gnome2.gtk;}; "cerberus" = callPackage @@ -44530,7 +47453,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cereal-conduit" = callPackage + "cereal-conduit_0_7_2_5" = callPackage ({ mkDerivation, base, bytestring, cereal, conduit, HUnit, mtl , resourcet, transformers }: @@ -44547,6 +47470,26 @@ self: { homepage = "https://github.com/snoyberg/conduit"; description = "Turn Data.Serialize Gets and Puts into Sources, Sinks, and Conduits"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cereal-conduit" = callPackage + ({ mkDerivation, base, bytestring, cereal, conduit, HUnit, mtl + , resourcet, transformers + }: + mkDerivation { + pname = "cereal-conduit"; + version = "0.7.3"; + sha256 = "05bf926a6292ad6e17f2667c248c33f820266ea8a703749923cc936a824c00a2"; + libraryHaskellDepends = [ + base bytestring cereal conduit resourcet transformers + ]; + testHaskellDepends = [ + base bytestring cereal conduit HUnit mtl resourcet transformers + ]; + homepage = "https://github.com/snoyberg/conduit"; + description = "Turn Data.Serialize Gets and Puts into Sources, Sinks, and Conduits"; + license = stdenv.lib.licenses.bsd3; }) {}; "cereal-derive" = callPackage @@ -44570,6 +47513,7 @@ self: { libraryHaskellDepends = [ base bytestring cereal enumerator ]; description = "Deserialize things with cereal and enumerator"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cereal-ieee754" = callPackage @@ -44583,6 +47527,7 @@ self: { homepage = "http://github.com/jystic/cereal-ieee754"; description = "Floating point support for the 'cereal' serialization library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cereal-plus" = callPackage @@ -44608,6 +47553,7 @@ self: { homepage = "https://github.com/nikita-volkov/cereal-plus"; description = "An extended serialization library on top of \"cereal\""; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cereal-text" = callPackage @@ -44656,6 +47602,7 @@ self: { homepage = "http://github.com/vincenthz/hs-certificate"; description = "Certificates and Key Reader/Writer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cf" = callPackage @@ -44674,6 +47621,7 @@ self: { homepage = "http://github.com/mvr/cf"; description = "Exact real arithmetic using continued fractions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cfipu" = callPackage @@ -44692,6 +47640,7 @@ self: { homepage = "https://github.com/bairyn/cfipu"; description = "cfipu processor for toy brainfuck-like language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cflp" = callPackage @@ -44711,6 +47660,7 @@ self: { homepage = "http://www-ps.informatik.uni-kiel.de/~sebf/projects/cflp.html"; description = "Constraint Functional-Logic Programming in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cfopu" = callPackage @@ -44728,6 +47678,7 @@ self: { ]; description = "cfopu processor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cg" = callPackage @@ -44769,6 +47720,7 @@ self: { homepage = "http://anttisalonen.github.com/cgen"; description = "generates Haskell bindings and C wrappers for C++ libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cgi_3001_2_2_2" = callPackage @@ -44790,7 +47742,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cgi" = callPackage + "cgi_3001_2_2_3" = callPackage ({ mkDerivation, base, bytestring, containers, exceptions, mtl , multipart, network, network-uri, old-locale, old-time, parsec , xhtml @@ -44806,6 +47758,26 @@ self: { homepage = "https://github.com/cheecheeo/haskell-cgi"; description = "A library for writing CGI programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cgi" = callPackage + ({ mkDerivation, base, bytestring, containers, doctest, exceptions + , mtl, multipart, network, network-uri, parsec, QuickCheck, time + , xhtml + }: + mkDerivation { + pname = "cgi"; + version = "3001.3.0.0"; + sha256 = "917d08354d9b613def8412fcb096d6adab62d62379a4f761c6cd3021d8bb644b"; + libraryHaskellDepends = [ + base bytestring containers exceptions mtl multipart network + network-uri parsec time xhtml + ]; + testHaskellDepends = [ base doctest QuickCheck ]; + homepage = "https://github.com/cheecheeo/haskell-cgi"; + description = "A library for writing CGI programs"; + license = stdenv.lib.licenses.bsd3; }) {}; "cgi-undecidable" = callPackage @@ -44831,6 +47803,7 @@ self: { homepage = "http://github.com/chrisdone/haskell-cgi-utils"; description = "Simple modular utilities for CGI/FastCGI (sessions, etc.)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cgrep" = callPackage @@ -44901,6 +47874,7 @@ self: { homepage = "http://www.ittc.ku.edu/csdl/fpg/ChalkBoard"; description = "Combinators for building and processing 2D images"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chalkboard-viewer" = callPackage @@ -44914,6 +47888,7 @@ self: { homepage = "http://ittc.ku.edu/~andygill/chalkboard.php"; description = "OpenGL based viewer for chalkboard rendered images"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chalmers-lava2000" = callPackage @@ -44977,6 +47952,7 @@ self: { homepage = "https://github.com/soostone/charade"; description = "Rapid prototyping websites with Snap and Heist"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "charset_0_3_7" = callPackage @@ -45023,6 +47999,7 @@ self: { homepage = "http://www.github.com/batterseapower/charsetdetect"; description = "Character set detection using Mozilla's Universal Character Set Detector"; license = "LGPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "charsetdetect-ae" = callPackage @@ -45035,6 +48012,7 @@ self: { homepage = "http://github.com/aelve/charsetdetect-ae"; description = "Character set detection using Mozilla's Universal Character Set Detector"; license = "LGPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "chart-histogram" = callPackage @@ -45105,6 +48083,7 @@ self: { homepage = "http://github.com/creswick/chatter"; description = "A library of simple NLP algorithms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chatty" = callPackage @@ -45173,6 +48152,34 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "cheapskate-highlight" = callPackage + ({ mkDerivation, base, blaze-html, cheapskate, highlighting-kate + , text + }: + mkDerivation { + pname = "cheapskate-highlight"; + version = "0.1.0.0"; + sha256 = "5af7afb26b4ea80952963b44db695cbf18da34d3e8a7d32382a7dbfa4832d370"; + libraryHaskellDepends = [ + base blaze-html cheapskate highlighting-kate text + ]; + homepage = "http://github.com/aelve/cheapskate-highlight"; + description = "Code highlighting for cheapskate"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "cheapskate-lucid" = callPackage + ({ mkDerivation, base, blaze-html, cheapskate, lucid }: + mkDerivation { + pname = "cheapskate-lucid"; + version = "0.1.0.0"; + sha256 = "f582e512befd2707a7056c1d15541967de2e0ce5702bc2197a3fced58a777245"; + libraryHaskellDepends = [ base blaze-html cheapskate lucid ]; + homepage = "http://github.com/aelve/cheapskate-lucid"; + description = "Use cheapskate with Lucid"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "cheapskate-terminal" = callPackage ({ mkDerivation, ansi-terminal, base, cheapskate, data-default , directory, hpygments, hscolour, terminal-size, text @@ -45230,6 +48237,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Import_modules_properly"; description = "Check whether module and package imports conform to the PVP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "checked" = callPackage @@ -45241,6 +48249,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Bounds-checking integer types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "checkers_0_4_1" = callPackage @@ -45340,6 +48349,7 @@ self: { homepage = "https://john-millikin.com/software/chell/"; description = "HUnit support for the Chell testing library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chell-quickcheck_0_2_4" = callPackage @@ -45398,6 +48408,26 @@ self: { jailbreak = true; description = "Query interface for Chevalier"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "chorale" = callPackage + ({ mkDerivation, base, containers, HUnit, ieee754, QuickCheck, safe + , test-framework, test-framework-hunit, test-framework-quickcheck2 + }: + mkDerivation { + pname = "chorale"; + version = "0.1.1"; + sha256 = "1b0fb54ed282ff0189cb55b230efd616edc70030fe3bd4a990194ea5d81eb6aa"; + libraryHaskellDepends = [ base containers safe ]; + testHaskellDepends = [ + base containers HUnit ieee754 QuickCheck safe test-framework + test-framework-hunit test-framework-quickcheck2 + ]; + homepage = "https://github.com/mocnik-science/chorale"; + description = "A module containing basic functions that the prelude does not offer"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chp" = callPackage @@ -45414,6 +48444,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "An implementation of concurrency ideas from Communicating Sequential Processes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chp-mtl" = callPackage @@ -45427,6 +48458,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "MTL class instances for the CHP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chp-plus" = callPackage @@ -45444,6 +48476,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "A set of high-level concurrency utilities built on Communicating Haskell Processes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chp-spec" = callPackage @@ -45461,6 +48494,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "A mirror implementation of chp that generates a specification of the program"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chp-transformers" = callPackage @@ -45474,6 +48508,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "Transformers instances for the CHP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chronograph" = callPackage @@ -45524,6 +48559,7 @@ self: { homepage = "http://github.com/marcotmarcot/chuchu"; description = "Behaviour Driven Development like Cucumber for Haskell"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chunked-data_0_1_0_1" = callPackage @@ -45574,6 +48610,7 @@ self: { homepage = "http://www.wellquite.org/chunks/"; description = "Simple template library with static safety"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chunky" = callPackage @@ -45615,6 +48652,7 @@ self: { homepage = "http://tomahawkins.org"; description = "An interface to CIL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cinvoke" = callPackage @@ -45628,6 +48666,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Library/cinvoke"; description = "A binding to cinvoke"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {cinvoke = null;}; "cio" = callPackage @@ -45640,6 +48679,7 @@ self: { homepage = "https://github.com/nikita-volkov/cio"; description = "A monad for concurrent IO on a thread pool"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cipher-aes_0_2_9" = callPackage @@ -45830,10 +48870,9 @@ self: { ({ mkDerivation, base, split }: mkDerivation { pname = "cipher-rc5"; - version = "0.1.0.1"; - sha256 = "2e66cd9a8e8b7fe73ba7f88470781d6d0e1ec170cdd0850851f3b4056c9ba4d1"; + version = "0.1.0.2"; + sha256 = "ad060a752c1b4965e0a8165ddbedaeb28b0e224995de4a2a7fb49263b1873451"; libraryHaskellDepends = [ base split ]; - jailbreak = true; homepage = "http://github.com/fegu/cipher-rc5"; description = "Pure RC5 implementation"; license = stdenv.lib.licenses.bsd3; @@ -45934,6 +48973,7 @@ self: { homepage = "https://github.com/nushio3/citation-resolve"; description = "convert document IDs such as DOI, ISBN, arXiv ID to bibliographic reference"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "citeproc-hs" = callPackage @@ -45954,6 +48994,7 @@ self: { homepage = "http://istitutocolli.org/repos/citeproc-hs/"; description = "A Citation Style Language implementation in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "citeproc-hs-pandoc-filter" = callPackage @@ -45974,6 +49015,7 @@ self: { homepage = "http://istitutocolli.org/repos/citeproc-hs-pandoc-filter/"; description = "A Pandoc filter for processing bibliographic references with citeproc-hs"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cityhash" = callPackage @@ -45992,6 +49034,7 @@ self: { homepage = "http://github.com/thoughtpolice/hs-cityhash"; description = "Bindings to CityHash"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "cjk" = callPackage @@ -46009,6 +49052,7 @@ self: { homepage = "http://github.com/batterseapower/cjk"; description = "Data about Chinese, Japanese and Korean characters and languages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clac" = callPackage @@ -46059,10 +49103,10 @@ self: { lens lens-aeson mtl mtl-compat QuickCheck tasty tasty-hunit tasty-th transformers-compat ]; - jailbreak = true; homepage = "http://clafer.org"; description = "Compiles Clafer models to other formats: Alloy, JavaScript, JSON, HTML, Dot"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "claferIG" = callPackage @@ -46092,10 +49136,10 @@ self: { array base clafer cmdargs directory filepath HUnit tasty tasty-hunit tasty-th transformers transformers-compat ]; - jailbreak = true; homepage = "http://clafer.org"; description = "claferIG is an interactive tool that generates instances of Clafer models"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "claferwiki" = callPackage @@ -46112,10 +49156,10 @@ self: { network-uri process SHA split time transformers transformers-compat utf8-string ]; - jailbreak = true; homepage = "http://github.com/gsdlab/claferwiki"; description = "A wiki-based IDE for literate modeling with Clafer"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clang-pure" = callPackage @@ -46133,6 +49177,7 @@ self: { librarySystemDepends = [ clang ]; description = "Pure C++ code analysis with libclang"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (self.llvmPackages) clang;}; "clanki" = callPackage @@ -46186,6 +49231,7 @@ self: { homepage = "http://clash.ewi.utwente.nl/"; description = "CAES Language for Synchronous Hardware (CLaSH)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clash-ghc_0_5_11" = callPackage @@ -46385,7 +49431,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-ghc" = callPackage + "clash-ghc_0_6_10" = callPackage ({ mkDerivation, array, base, bifunctors, bytestring, clash-lib , clash-prelude, clash-systemverilog, clash-verilog, clash-vhdl , containers, directory, filepath, ghc, ghc-typelits-extra @@ -46409,6 +49455,60 @@ self: { homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clash-ghc_0_6_11" = callPackage + ({ mkDerivation, array, base, bifunctors, bytestring, clash-lib + , clash-prelude, clash-systemverilog, clash-verilog, clash-vhdl + , containers, directory, filepath, ghc, ghc-typelits-extra + , ghc-typelits-natnormalise, hashable, haskeline, lens, mtl + , process, text, transformers, unbound-generics, unix + , unordered-containers + }: + mkDerivation { + pname = "clash-ghc"; + version = "0.6.11"; + sha256 = "712ddbf0eec7184d43bdb27bf4247805e5025dae163370a898aa159f8ca9fc8c"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + array base bifunctors bytestring clash-lib clash-prelude + clash-systemverilog clash-verilog clash-vhdl containers directory + filepath ghc ghc-typelits-extra ghc-typelits-natnormalise hashable + haskeline lens mtl process text transformers unbound-generics unix + unordered-containers + ]; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware"; + license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clash-ghc" = callPackage + ({ mkDerivation, array, base, bifunctors, bytestring, clash-lib + , clash-prelude, clash-systemverilog, clash-verilog, clash-vhdl + , containers, directory, filepath, ghc, ghc-typelits-extra + , ghc-typelits-natnormalise, hashable, haskeline, lens, mtl + , process, text, transformers, unbound-generics, unix + , unordered-containers + }: + mkDerivation { + pname = "clash-ghc"; + version = "0.6.16"; + sha256 = "7c64439db47356798ca8e262f0c937a0876cec8baed4a38501ebe21cb7f9f260"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + array base bifunctors bytestring clash-lib clash-prelude + clash-systemverilog clash-verilog clash-vhdl containers directory + filepath ghc ghc-typelits-extra ghc-typelits-natnormalise hashable + haskeline lens mtl process text transformers unbound-generics unix + unordered-containers + ]; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware"; + license = stdenv.lib.licenses.bsd2; }) {}; "clash-lib_0_5_10" = callPackage @@ -46576,7 +49676,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-lib" = callPackage + "clash-lib_0_6_10" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, clash-prelude , concurrent-supply, containers, deepseq, directory, errors, fgl , filepath, hashable, lens, mtl, pretty, process, template-haskell @@ -46596,6 +49696,52 @@ self: { homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - As a Library"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clash-lib_0_6_11" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, clash-prelude + , concurrent-supply, containers, deepseq, directory, errors, fgl + , filepath, hashable, lens, mtl, pretty, process, template-haskell + , text, time, transformers, unbound-generics, unordered-containers + , uu-parsinglib, wl-pprint-text + }: + mkDerivation { + pname = "clash-lib"; + version = "0.6.11"; + sha256 = "4130917c99ad14143823e98dc8bdede4382519268d8db9dd61498d85a65216e8"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring clash-prelude concurrent-supply + containers deepseq directory errors fgl filepath hashable lens mtl + pretty process template-haskell text time transformers + unbound-generics unordered-containers uu-parsinglib wl-pprint-text + ]; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware - As a Library"; + license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clash-lib" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, clash-prelude + , concurrent-supply, containers, deepseq, directory, errors, fgl + , filepath, hashable, lens, mtl, pretty, process, template-haskell + , text, time, transformers, unbound-generics, unordered-containers + , uu-parsinglib, wl-pprint-text + }: + mkDerivation { + pname = "clash-lib"; + version = "0.6.14"; + sha256 = "c0f6fa8e3819533324f3254a38616812e4c1b2762c268d15744de5e7b5d3e8ed"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring clash-prelude concurrent-supply + containers deepseq directory errors fgl filepath hashable lens mtl + pretty process template-haskell text time transformers + unbound-generics unordered-containers uu-parsinglib wl-pprint-text + ]; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware - As a Library"; + license = stdenv.lib.licenses.bsd2; }) {}; "clash-prelude_0_9_2" = callPackage @@ -46714,6 +49860,7 @@ self: { jailbreak = true; description = "QuickCheck instances for various types in the CλaSH Prelude"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clash-systemverilog_0_5_7" = callPackage @@ -46824,7 +49971,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-systemverilog" = callPackage + "clash-systemverilog_0_6_5" = callPackage ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl , text, unordered-containers, wl-pprint-text }: @@ -46839,6 +49986,24 @@ self: { homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - SystemVerilog backend"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clash-systemverilog" = callPackage + ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl + , text, unordered-containers, wl-pprint-text + }: + mkDerivation { + pname = "clash-systemverilog"; + version = "0.6.6"; + sha256 = "89afc5fb0ed8abc66412ee28a01742be14f08b11f976dd2a9efb357ae4d8840a"; + libraryHaskellDepends = [ + base clash-lib clash-prelude fgl lens mtl text unordered-containers + wl-pprint-text + ]; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware - SystemVerilog backend"; + license = stdenv.lib.licenses.bsd2; }) {}; "clash-verilog_0_5_7" = callPackage @@ -46949,7 +50114,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-verilog" = callPackage + "clash-verilog_0_6_5" = callPackage ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl , text, unordered-containers, wl-pprint-text }: @@ -46964,6 +50129,24 @@ self: { homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - Verilog backend"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clash-verilog" = callPackage + ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl + , text, unordered-containers, wl-pprint-text + }: + mkDerivation { + pname = "clash-verilog"; + version = "0.6.6"; + sha256 = "8dda7b2d72f849016fc32f563efcf59d22efc68d29f2eb2f3c8b7338701bb844"; + libraryHaskellDepends = [ + base clash-lib clash-prelude fgl lens mtl text unordered-containers + wl-pprint-text + ]; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware - Verilog backend"; + license = stdenv.lib.licenses.bsd2; }) {}; "clash-vhdl_0_5_8" = callPackage @@ -47092,7 +50275,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-vhdl" = callPackage + "clash-vhdl_0_6_7" = callPackage ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl , text, unordered-containers, wl-pprint-text }: @@ -47107,6 +50290,42 @@ self: { homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - VHDL backend"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clash-vhdl_0_6_8" = callPackage + ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl + , text, unordered-containers, wl-pprint-text + }: + mkDerivation { + pname = "clash-vhdl"; + version = "0.6.8"; + sha256 = "3ce8c07101d625c7028360b5f311950f6a0818237d8e789231137b84a62bf3c1"; + libraryHaskellDepends = [ + base clash-lib clash-prelude fgl lens mtl text unordered-containers + wl-pprint-text + ]; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware - VHDL backend"; + license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clash-vhdl" = callPackage + ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl + , text, unordered-containers, wl-pprint-text + }: + mkDerivation { + pname = "clash-vhdl"; + version = "0.6.10"; + sha256 = "49770e564988f3501ad57b9d0edbd662ca6574faeb67b1de28999a7dcf94bbde"; + libraryHaskellDepends = [ + base clash-lib clash-prelude fgl lens mtl text unordered-containers + wl-pprint-text + ]; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware - VHDL backend"; + license = stdenv.lib.licenses.bsd2; }) {}; "classify" = callPackage @@ -47428,7 +50647,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "classy-prelude" = callPackage + "classy-prelude_0_12_5_1" = callPackage ({ mkDerivation, base, basic-prelude, bifunctors, bytestring , chunked-data, containers, dlist, enclosed-exceptions, exceptions , ghc-prim, hashable, hspec, lifted-base, mono-traversable, mtl @@ -47453,6 +50672,34 @@ self: { homepage = "https://github.com/snoyberg/classy-prelude"; description = "A typeclass-based Prelude"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "classy-prelude" = callPackage + ({ mkDerivation, base, basic-prelude, bifunctors, bytestring + , chunked-data, containers, dlist, enclosed-exceptions, exceptions + , ghc-prim, hashable, hspec, lifted-base, mono-traversable, mtl + , mutable-containers, primitive, QuickCheck, semigroups, stm, text + , time, time-locale-compat, transformers, unordered-containers + , vector, vector-instances + }: + mkDerivation { + pname = "classy-prelude"; + version = "0.12.6"; + sha256 = "85abaa21998914465e553421aacaf64b0dc734c5e785d3974e24027c5b33e333"; + libraryHaskellDepends = [ + base basic-prelude bifunctors bytestring chunked-data containers + dlist enclosed-exceptions exceptions ghc-prim hashable lifted-base + mono-traversable mtl mutable-containers primitive semigroups stm + text time time-locale-compat transformers unordered-containers + vector vector-instances + ]; + testHaskellDepends = [ + base containers hspec QuickCheck transformers unordered-containers + ]; + homepage = "https://github.com/snoyberg/classy-prelude"; + description = "A typeclass-based Prelude"; + license = stdenv.lib.licenses.mit; }) {}; "classy-prelude-conduit_0_10_2" = callPackage @@ -47643,7 +50890,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "classy-prelude-conduit" = callPackage + "classy-prelude-conduit_0_12_5" = callPackage ({ mkDerivation, base, bytestring, classy-prelude, conduit , conduit-combinators, hspec, monad-control, QuickCheck, resourcet , transformers, void @@ -47659,6 +50906,29 @@ self: { testHaskellDepends = [ base bytestring conduit hspec QuickCheck transformers ]; + jailbreak = true; + homepage = "https://github.com/snoyberg/classy-prelude"; + description = "conduit instances for classy-prelude"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "classy-prelude-conduit" = callPackage + ({ mkDerivation, base, bytestring, classy-prelude, conduit + , conduit-combinators, hspec, monad-control, QuickCheck, resourcet + , transformers, void + }: + mkDerivation { + pname = "classy-prelude-conduit"; + version = "0.12.6"; + sha256 = "afaee71828145632914ebe83d5f635367ed702a95a1d327dadac13daa93d69ee"; + libraryHaskellDepends = [ + base bytestring classy-prelude conduit conduit-combinators + monad-control resourcet transformers void + ]; + testHaskellDepends = [ + base bytestring conduit hspec QuickCheck transformers + ]; homepage = "https://github.com/snoyberg/classy-prelude"; description = "conduit instances for classy-prelude"; license = stdenv.lib.licenses.mit; @@ -47832,7 +51102,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "classy-prelude-yesod" = callPackage + "classy-prelude-yesod_0_12_5" = callPackage ({ mkDerivation, aeson, base, classy-prelude , classy-prelude-conduit, data-default, http-conduit, http-types , persistent, yesod, yesod-newsfeed, yesod-static @@ -47846,6 +51116,27 @@ self: { http-conduit http-types persistent yesod yesod-newsfeed yesod-static ]; + jailbreak = true; + homepage = "https://github.com/snoyberg/classy-prelude"; + description = "Provide a classy prelude including common Yesod functionality"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "classy-prelude-yesod" = callPackage + ({ mkDerivation, aeson, base, classy-prelude + , classy-prelude-conduit, data-default, http-conduit, http-types + , persistent, yesod, yesod-newsfeed, yesod-static + }: + mkDerivation { + pname = "classy-prelude-yesod"; + version = "0.12.6"; + sha256 = "db65c7f0d49a4edf0c27bce0e614ffcbc54dc37afd08d368f239322240f60839"; + libraryHaskellDepends = [ + aeson base classy-prelude classy-prelude-conduit data-default + http-conduit http-types persistent yesod yesod-newsfeed + yesod-static + ]; homepage = "https://github.com/snoyberg/classy-prelude"; description = "Provide a classy prelude including common Yesod functionality"; license = stdenv.lib.licenses.mit; @@ -48004,6 +51295,7 @@ self: { homepage = "http://clckwrks.com/"; description = "bug tracking plugin for clckwrks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clckwrks-plugin-ircbot" = callPackage @@ -48147,6 +51439,7 @@ self: { homepage = "http://divshot.github.com/geo-bootstrap/"; description = "geo bootstrap based template for clckwrks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cld2" = callPackage @@ -48161,6 +51454,7 @@ self: { homepage = "https://github.com/dfoxfranke/haskell-cld2"; description = "Haskell bindings to Google's Compact Language Detector 2"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "clean-home" = callPackage @@ -48225,6 +51519,7 @@ self: { homepage = "http://sandbox.pocoo.org/clevercss-hs/"; description = "A CSS preprocessor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cli" = callPackage @@ -48261,6 +51556,7 @@ self: { jailbreak = true; description = "Toy game (tetris on billiard board). Hipmunk in action."; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clientsession" = callPackage @@ -48318,6 +51614,7 @@ self: { homepage = "http://github.com/spacekitteh/haskell-clifford"; description = "A Clifford algebra library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clippard" = callPackage @@ -48343,6 +51640,7 @@ self: { homepage = "https://github.com/chetant/clipper"; description = "Haskell API to clipper (2d polygon union/intersection/xor/clipping API)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clippings" = callPackage @@ -48367,6 +51665,7 @@ self: { ]; description = "A parser/generator for Kindle-format clipping files (`My Clippings.txt`),"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clist" = callPackage @@ -48465,6 +51764,7 @@ self: { homepage = "http://patch-tag.com/r/shahn/clocked/home"; description = "timer functionality to clock IO commands"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {QtCore = null;}; "clogparse" = callPackage @@ -48481,6 +51781,7 @@ self: { ]; description = "Parse IRC logs such as the #haskell logs on tunes.org"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clone-all" = callPackage @@ -48502,6 +51803,7 @@ self: { homepage = "https://github.com/silky/clone-all"; description = "Clone all github repositories from a given user"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "closure" = callPackage @@ -48540,6 +51842,7 @@ self: { homepage = "http://github.com/haskell-distributed/cloud-haskell"; description = "The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "cloudfront-signer" = callPackage @@ -48557,6 +51860,7 @@ self: { homepage = "http://github.com/cdornan/cloudfront-signer"; description = "CloudFront URL signer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cloudyfs" = callPackage @@ -48577,6 +51881,7 @@ self: { homepage = "https://github.com/bhickey/cloudyfs"; description = "A cloud in the file system"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cltw" = callPackage @@ -48609,6 +51914,7 @@ self: { homepage = "http://zwizwa.be/-/meta"; description = "C to Lua data wrapper generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clumpiness" = callPackage @@ -48632,6 +51938,7 @@ self: { homepage = "https://github.com/Kinokkory/cluss"; description = "simple alternative to type classes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clustering" = callPackage @@ -48672,6 +51979,7 @@ self: { homepage = "http://malde.org/~ketil/"; description = "Tools for manipulating sequence clusters"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clutterhs" = callPackage @@ -48689,6 +51997,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "Bindings to the Clutter animation library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) clutter; inherit (pkgs.gnome) pango;}; "cmaes" = callPackage @@ -48759,6 +52068,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/cmath"; description = "A binding to the standard C math library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cmathml3" = callPackage @@ -48778,6 +52088,7 @@ self: { executableHaskellDepends = [ base Cabal filepath ]; description = "Data model, parser, serialiser and transformations for Content MathML 3"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cmd-item" = callPackage @@ -48873,6 +52184,7 @@ self: { homepage = "http://community.haskell.org/~ndm/cmdargs/"; description = "Helper to enter cmdargs command lines using a web browser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cmdlib" = callPackage @@ -48909,6 +52221,7 @@ self: { homepage = "http://github.com/eli-frey/cmdtheline"; description = "Declarative command-line option parsing and documentation library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cml" = callPackage @@ -48932,6 +52245,7 @@ self: { libraryHaskellDepends = [ array base ]; description = "A library for C-like programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cmu" = callPackage @@ -48967,6 +52281,7 @@ self: { homepage = "http://software.intel.com/en-us/articles/intel-concurrent-collections-for-cc/"; description = "Compiler/Translator for CnC Specification Files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cndict" = callPackage @@ -48983,6 +52298,7 @@ self: { homepage = "https://github.com/Lemmih/cndict"; description = "Chinese/Mandarin <-> English dictionary, Chinese lexer"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "code-builder" = callPackage @@ -49038,6 +52354,7 @@ self: { ]; description = "Cross-platform structure serialisation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "codec-mbox" = callPackage @@ -49072,6 +52389,7 @@ self: { homepage = "https://github.com/guillaume-nargeot/codecov-haskell"; description = "Codecov.io support for Haskell."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "codemonitor" = callPackage @@ -49091,6 +52409,7 @@ self: { homepage = "http://github.com/rickardlindberg/codemonitor"; description = "Tool that automatically runs arbitrary commands when files change on disk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "codepad" = callPackage @@ -49106,6 +52425,7 @@ self: { homepage = "http://github.com/chrisdone/codepad"; description = "Submit and retrieve paste output from CodePad.org."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "codex_0_3_0_8" = callPackage @@ -49269,6 +52589,7 @@ self: { homepage = "https://github.com/Cognimeta/cognimeta-utils"; description = "Utilities for Cognimeta products (such as perdure). API may change often."; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "coinbase-exchange" = callPackage @@ -49308,6 +52629,7 @@ self: { jailbreak = true; description = "Connector library for the coinbase exchange"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "colada" = callPackage @@ -49333,6 +52655,7 @@ self: { homepage = "https://bitbucket.org/gchrupala/colada"; description = "Colada implements incremental word class class induction using online LDA"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "colchis" = callPackage @@ -49369,6 +52692,7 @@ self: { jailbreak = true; description = "Generate animated 3d objects in COLLADA"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "collada-types" = callPackage @@ -49385,6 +52709,7 @@ self: { jailbreak = true; description = "Data exchange between graphic applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "collapse-util" = callPackage @@ -49427,6 +52752,7 @@ self: { jailbreak = true; description = "Useful standard collections types and related functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "collections-api" = callPackage @@ -49439,6 +52765,7 @@ self: { homepage = "http://code.haskell.org/collections/"; description = "API for collection data structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "collections-base-instances" = callPackage @@ -49455,6 +52782,7 @@ self: { homepage = "http://code.haskell.org/collections/"; description = "Useful standard collections types and related functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "colock" = callPackage @@ -49525,6 +52853,7 @@ self: { homepage = "https://github.com/wellecks/coltrane"; description = "A jazzy, minimal web framework for Haskell, inspired by Sinatra"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "com" = callPackage @@ -49536,6 +52865,7 @@ self: { doHaddock = false; description = "Haskell COM support library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "combinat" = callPackage @@ -49556,6 +52886,7 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "Generate and manipulate various combinatorial objects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "combinat-diagrams" = callPackage @@ -49573,6 +52904,7 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "Graphical representations for various combinatorial objects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "combinator-interactive" = callPackage @@ -49596,6 +52928,7 @@ self: { homepage = "https://github.com/fumieval/combinator-interactive"; description = "SKI Combinator interpreter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "combinatorial-problems" = callPackage @@ -49612,6 +52945,7 @@ self: { homepage = "http://www.comp.leeds.ac.uk/sc06r2s/Projects/HaskellCombinatorialProblems"; description = "A number of data structures to represent and allow the manipulation of standard combinatorial problems, used as test problems in computer science"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "combinatorics" = callPackage @@ -49689,6 +53023,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "commander" = callPackage + ({ mkDerivation, base, containers, mtl, transformers }: + mkDerivation { + pname = "commander"; + version = "0.1.0.0"; + sha256 = "acfa4916071c9b67551c08340af0ef764170c5b64c969e7f1dff8edc0786f425"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base containers mtl transformers ]; + executableHaskellDepends = [ base containers ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/jsdw/hs-commander"; + description = "pattern matching against string based commands"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "commodities" = callPackage ({ mkDerivation, base, comonad, containers, directory, distributive , doctest, filepath, hspec, hspec-expectations, keys, lens, linear @@ -49710,6 +53060,7 @@ self: { jailbreak = true; description = "Library for working with commoditized amounts and price histories"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "commsec" = callPackage @@ -49725,6 +53076,7 @@ self: { ]; description = "Provide communications security using symmetric ephemeral keys"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "commsec-keyexchange" = callPackage @@ -49744,6 +53096,7 @@ self: { homepage = "https://github.com/TomMD/commsec-keyExchange"; description = "Key agreement for commsec"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "commutative" = callPackage @@ -49922,6 +53275,7 @@ self: { homepage = "http://github.com/ekmett/comonad-extras/"; description = "Exotic comonad transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "comonad-random" = callPackage @@ -49934,6 +53288,7 @@ self: { jailbreak = true; description = "Comonadic interface for random values"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "comonad-transformers" = callPackage @@ -49975,6 +53330,7 @@ self: { ]; description = "Compact Data.Map implementation using Data.Binary"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "compact-socket" = callPackage @@ -50005,6 +53361,7 @@ self: { homepage = "http://twan.home.fmf.nl/compact-string/"; description = "Fast, packed and strict strings with Unicode support, based on bytestrings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "compact-string-fix" = callPackage @@ -50223,6 +53580,7 @@ self: { libraryHaskellDepends = [ base MissingH ]; description = "Haskell functionality for quickly assembling simple compilers"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "complex-generic" = callPackage @@ -50264,6 +53622,7 @@ self: { jailbreak = true; description = "Empirical algorithmic complexity"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "compose-ltr" = callPackage @@ -50288,6 +53647,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Composable monad transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "composition_1_0_1_0" = callPackage @@ -50400,6 +53760,7 @@ self: { homepage = "http://urchin.earth.li/~ian/cabal/compression/"; description = "Common compression algorithms"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "compstrat" = callPackage @@ -50416,6 +53777,7 @@ self: { jailbreak = true; description = "Strategy combinators for compositional data types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "comptrans" = callPackage @@ -50434,6 +53796,7 @@ self: { homepage = "https://github.com/jkoppel/comptrans"; description = "Automatically converting ASTs into compositional data types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "computational-algebra" = callPackage @@ -50453,6 +53816,7 @@ self: { homepage = "https://github.com/konn/computational-algebra"; description = "Well-kinded computational algebra library, currently supporting Groebner basis"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "computations" = callPackage @@ -50527,6 +53891,7 @@ self: { homepage = "http://zil.ipipan.waw.pl/Concraft"; description = "Morphological disambiguation based on constrained CRFs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "concraft-hr" = callPackage @@ -50549,6 +53914,7 @@ self: { homepage = "https://github.com/vjeranc/concraft-hr"; description = "Part-of-speech tagger for Croatian"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "concraft-pl" = callPackage @@ -50571,6 +53937,7 @@ self: { homepage = "http://zil.ipipan.waw.pl/Concraft"; description = "Morphological tagger for Polish"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "concrete-relaxng-parser" = callPackage @@ -50609,6 +53976,7 @@ self: { jailbreak = true; description = "Binary and Hashable instances for TypeRep"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "concurrent-barrier" = callPackage @@ -50732,7 +54100,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "concurrent-output" = callPackage + "concurrent-output_1_7_3" = callPackage ({ mkDerivation, ansi-terminal, async, base, directory, exceptions , process, stm, terminal-size, text, transformers, unix }: @@ -50746,6 +54114,23 @@ self: { ]; description = "Ungarble output from several threads or commands"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "concurrent-output" = callPackage + ({ mkDerivation, ansi-terminal, async, base, directory, exceptions + , process, stm, terminal-size, text, transformers, unix + }: + mkDerivation { + pname = "concurrent-output"; + version = "1.7.4"; + sha256 = "d95827e051a7576820fd76e2eebe7c02185870c6bb63fb953fdec1e608414e9e"; + libraryHaskellDepends = [ + ansi-terminal async base directory exceptions process stm + terminal-size text transformers unix + ]; + description = "Ungarble output from several threads or commands"; + license = stdenv.lib.licenses.bsd2; }) {}; "concurrent-sa" = callPackage @@ -50783,6 +54168,7 @@ self: { homepage = "https://github.com/joelteon/concurrent-state"; description = "MTL-like library using TVars"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "concurrent-supply_0_1_7" = callPackage @@ -50883,6 +54269,7 @@ self: { homepage = "https://github.com/klangner/Condor"; description = "Information retrieval library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "condorcet" = callPackage @@ -50895,6 +54282,7 @@ self: { homepage = "http://neugierig.org/software/darcs/condorcet"; description = "Library for Condorcet voting"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "conductive-base" = callPackage @@ -50937,6 +54325,7 @@ self: { homepage = "http://www.renickbell.net/doku.php?id=conductive-hsc3"; description = "a library with examples of using Conductive with hsc3"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "conductive-song" = callPackage @@ -51138,7 +54527,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "conduit" = callPackage + "conduit_1_2_6_2" = callPackage ({ mkDerivation, base, containers, exceptions, hspec, lifted-base , mmorph, mtl, QuickCheck, resourcet, safe, transformers , transformers-base @@ -51158,6 +54547,52 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Streaming data processing library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "conduit_1_2_6_3" = callPackage + ({ mkDerivation, base, containers, exceptions, hspec, lifted-base + , mmorph, mtl, QuickCheck, resourcet, safe, transformers + , transformers-base + }: + mkDerivation { + pname = "conduit"; + version = "1.2.6.3"; + sha256 = "6816ba600c8cbd14ce9fe89f8e101dedf10dda43d2a178576324678c1722d589"; + libraryHaskellDepends = [ + base exceptions lifted-base mmorph mtl resourcet transformers + transformers-base + ]; + testHaskellDepends = [ + base containers exceptions hspec mtl QuickCheck resourcet safe + transformers + ]; + homepage = "http://github.com/snoyberg/conduit"; + description = "Streaming data processing library"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "conduit" = callPackage + ({ mkDerivation, base, containers, exceptions, hspec, lifted-base + , mmorph, mtl, QuickCheck, resourcet, safe, transformers + , transformers-base + }: + mkDerivation { + pname = "conduit"; + version = "1.2.6.4"; + sha256 = "1fc5e407580ebfa8196f714928a5362ce215f916b96bbf5ab15c17b0b47573f3"; + libraryHaskellDepends = [ + base exceptions lifted-base mmorph mtl resourcet transformers + transformers-base + ]; + testHaskellDepends = [ + base containers exceptions hspec mtl QuickCheck resourcet safe + transformers + ]; + homepage = "http://github.com/snoyberg/conduit"; + description = "Streaming data processing library"; + license = stdenv.lib.licenses.mit; }) {}; "conduit-audio" = callPackage @@ -51188,6 +54623,7 @@ self: { homepage = "http://github.com/mtolly/conduit-audio"; description = "conduit-audio interface to the LAME MP3 library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {mp3lame = null;}; "conduit-audio-samplerate" = callPackage @@ -51206,6 +54642,7 @@ self: { homepage = "http://github.com/mtolly/conduit-audio"; description = "conduit-audio interface to the libsamplerate resampling library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {samplerate = null;}; "conduit-audio-sndfile" = callPackage @@ -51223,6 +54660,7 @@ self: { homepage = "http://github.com/mtolly/conduit-audio"; description = "conduit-audio interface to the libsndfile audio file library"; license = "LGPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "conduit-combinators_0_3_0_4" = callPackage @@ -51747,7 +55185,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "conduit-extra" = callPackage + "conduit-extra_1_1_10_1" = callPackage ({ mkDerivation, async, attoparsec, base, blaze-builder, bytestring , bytestring-builder, conduit, directory, exceptions, filepath , hspec, monad-control, network, primitive, process, resourcet, stm @@ -51770,6 +55208,32 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Batteries included conduit: adapters for common libraries"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "conduit-extra" = callPackage + ({ mkDerivation, async, attoparsec, base, blaze-builder, bytestring + , bytestring-builder, conduit, directory, exceptions, filepath + , hspec, monad-control, network, primitive, process, resourcet, stm + , streaming-commons, text, transformers, transformers-base + }: + mkDerivation { + pname = "conduit-extra"; + version = "1.1.11"; + sha256 = "670009f95b16d74d1ffab5fe7f9e667249384cdddf80b8eda32413e11861ea2f"; + libraryHaskellDepends = [ + attoparsec base blaze-builder bytestring conduit directory + exceptions filepath monad-control network primitive process + resourcet stm streaming-commons text transformers transformers-base + ]; + testHaskellDepends = [ + async attoparsec base blaze-builder bytestring bytestring-builder + conduit exceptions hspec process resourcet stm streaming-commons + text transformers transformers-base + ]; + homepage = "http://github.com/snoyberg/conduit"; + description = "Batteries included conduit: adapters for common libraries"; + license = stdenv.lib.licenses.mit; }) {}; "conduit-iconv" = callPackage @@ -51803,6 +55267,7 @@ self: { ]; description = "A base layer for network protocols using Conduits"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "conduit-parse" = callPackage @@ -51841,6 +55306,7 @@ self: { homepage = "http://github.com/A1kmm/conduit-resumablesink"; description = "Allows conduit to resume sinks to feed multiple sources into it"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "conduit-tokenize-attoparsec" = callPackage @@ -51880,6 +55346,28 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "config-manager" = callPackage + ({ mkDerivation, base, directory, filepath, HUnit, parsec + , temporary, test-framework, test-framework-hunit, text + , unordered-containers + }: + mkDerivation { + pname = "config-manager"; + version = "0.1.0.0"; + sha256 = "fbb14182265aa28076a221fc64020bd9e3338e9a88634d08c5e9e3c8edfd558d"; + libraryHaskellDepends = [ + base filepath parsec text unordered-containers + ]; + testHaskellDepends = [ + base directory HUnit temporary test-framework test-framework-hunit + text unordered-containers + ]; + homepage = "https://gitlab.com/guyonvarch/config-manager"; + description = "Configuration management"; + license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "config-select" = callPackage ({ mkDerivation, base, directory, filepath, unix, vty-menu }: mkDerivation { @@ -51893,6 +55381,7 @@ self: { ]; description = "A small program for swapping out dot files"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "config-value" = callPackage @@ -51966,8 +55455,8 @@ self: { }: mkDerivation { pname = "configuration-tools"; - version = "0.2.13"; - sha256 = "e2d3fef26b93ef82ae484ca06730d09a5d5035a85134fae81f05cd15122b1966"; + version = "0.2.14"; + sha256 = "c54c40d72423207f63c7108ea6076612a179c0c35d7e10e540858ba92946f9fb"; libraryHaskellDepends = [ aeson ansi-wl-pprint attoparsec base base-unicode-symbols base64-bytestring bytestring Cabal case-insensitive connection @@ -52086,6 +55575,7 @@ self: { ]; description = "A BitTorrent client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "conlogger" = callPackage @@ -52200,6 +55690,7 @@ self: { testHaskellDepends = [ base lifted-async transformers ]; description = "Eventually consistent STM transactions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "console-program" = callPackage @@ -52230,6 +55721,7 @@ self: { homepage = "https://github.com/kfish/const-math-ghc-plugin"; description = "Compiler plugin for constant math elimination"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "constrained-categories" = callPackage @@ -52256,6 +55748,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "constraint-classes" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "constraint-classes"; + version = "0.2.0"; + sha256 = "7cc34540b60d0e1a89230d1ea65ea05af49524e102915aa3b3d908158b134580"; + libraryHaskellDepends = [ base ]; + homepage = "http://github.com/guaraqe/constraint-classes#readme"; + description = "Prelude classes using ConstraintKinds"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "constraints_0_4" = callPackage ({ mkDerivation, base, ghc-prim, newtype }: mkDerivation { @@ -52363,6 +55867,7 @@ self: { homepage = "http://andersk.mit.edu/haskell/constructible/"; description = "Exact computation with constructible real numbers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "constructive-algebra" = callPackage @@ -52375,6 +55880,7 @@ self: { jailbreak = true; description = "A library of constructive algebra"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "consul-haskell_0_1" = callPackage @@ -52465,6 +55971,7 @@ self: { homepage = "https://github.com/scrive/consumers"; description = "Concurrent PostgreSQL data consumers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "container" = callPackage @@ -52484,6 +55991,7 @@ self: { homepage = "https://github.com/wdanilo/containers"; description = "Containers abstraction and utilities"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "container-classes" = callPackage @@ -52610,6 +56118,7 @@ self: { homepage = "http://github.com/thinkpad20/context-stack"; description = "An abstraction of a stack and stack-based monadic context"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "continue" = callPackage @@ -52627,6 +56136,7 @@ self: { jailbreak = true; description = "Monads with suspension and arbitrary-spot reentry"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "continued-fractions" = callPackage @@ -52663,6 +56173,7 @@ self: { ]; executableSystemDepends = [ hyperleveldb ]; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {hyperleveldb = null;}; "continuum-client" = callPackage @@ -52892,6 +56403,7 @@ self: { libraryHaskellDepends = [ base containers stm time ]; description = "Event scheduling system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "control-monad-attempt" = callPackage @@ -52905,6 +56417,7 @@ self: { homepage = "http://github.com/snoyberg/control-monad-attempt"; description = "Monad transformer for attempt. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "control-monad-exception" = callPackage @@ -52980,6 +56493,7 @@ self: { homepage = "http://github.com/pepeiborra/control-monad-failure"; description = "A class for monads which can fail with an error. (deprecated)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "control-monad-failure-mtl" = callPackage @@ -52993,6 +56507,7 @@ self: { homepage = "http://github.com/pepeiborra/control-monad-failure"; description = "A class for monads which can fail with an error for mtl 1 (deprecated)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "control-monad-free_0_5_3" = callPackage @@ -53089,6 +56604,7 @@ self: { libraryHaskellDepends = [ base contstuff monads-tf ]; description = "ContStuff instances for monads-tf transformers (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "contstuff-transformers" = callPackage @@ -53101,6 +56617,7 @@ self: { jailbreak = true; description = "Deprecated interface between contstuff 0.7.0 and the transformers package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "converge" = callPackage @@ -53185,6 +56702,7 @@ self: { homepage = "https://github.com/wdanilo/convert"; description = "Safe and unsafe data conversion utilities with strong type-level operation. checking."; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "convertible_1_1_0_0" = callPackage @@ -53242,6 +56760,7 @@ self: { homepage = "https://github.com/phonohawk/convertible-ascii"; description = "convertible instances for ascii"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "convertible-text" = callPackage @@ -53262,14 +56781,15 @@ self: { homepage = "http://github.com/snoyberg/convertible/tree/text"; description = "Typeclasses and instances for converting between types (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cookbook" = callPackage ({ mkDerivation, base, directory, strict }: mkDerivation { pname = "cookbook"; - version = "3.0.0.1"; - sha256 = "7142f3f1235e2ae5a7e6b040ad2d53f8ed332ca11cea8b3a0ff199b7ce2312d6"; + version = "3.0.1.1"; + sha256 = "63919cc80135e854317bc68a34d62ecf5bcd5a96e7bb66a01e706a520b6eba2d"; libraryHaskellDepends = [ base directory strict ]; description = "Tiered general-purpose libraries with domain-specific applications"; license = stdenv.lib.licenses.bsd3; @@ -53353,8 +56873,8 @@ self: { }: mkDerivation { pname = "coordinate"; - version = "0.0.19"; - sha256 = "596039a14f30eed5d732bc5b9d04f20f3f0fba675c196083fb1e4fd17d6dc605"; + version = "0.0.21"; + sha256 = "a126c5713e498514f8225af4942dfac5a2ccca501b20a1a2c1e7783f58f39a4f"; libraryHaskellDepends = [ base lens radian tagged transformers ]; testHaskellDepends = [ base directory doctest filepath QuickCheck template-haskell @@ -53388,6 +56908,7 @@ self: { homepage = "http://leepike.github.com/Copilot/"; description = "A stream DSL for writing embedded C programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "copilot-c99" = callPackage @@ -53426,6 +56947,7 @@ self: { ]; description = "Copilot interface to a C model-checker"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "copilot-core" = callPackage @@ -53539,6 +57061,7 @@ self: { libraryHaskellDepends = [ base bytestring parsec pretty ]; description = "External core parser and pretty printer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "core-haskell" = callPackage @@ -53555,6 +57078,7 @@ self: { homepage = "https://github.com/happlebao/Core-Haskell"; description = "A subset of Haskell using in UCC for teaching purpose"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "corebot-bliki" = callPackage @@ -53581,6 +57105,7 @@ self: { homepage = "http://github.com/coreyoconnor/corebot-bliki"; description = "A bliki written using yesod. Uses pandoc to process files stored in git."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "coroutine-enumerator" = callPackage @@ -53607,6 +57132,7 @@ self: { homepage = "http://trac.haskell.org/SCC/wiki/coroutine-iteratee"; description = "Bridge between the monad-coroutine and iteratee packages"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "coroutine-object" = callPackage @@ -53637,6 +57163,7 @@ self: { jailbreak = true; description = "A CouchDB view server for Haskell"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "couch-simple" = callPackage @@ -53664,6 +57191,7 @@ self: { homepage = "https://github.com/mdorman/couch-simple"; description = "A modern, lightweight, complete client for CouchDB"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) couchdb;}; "couchdb-conduit" = callPackage @@ -53695,6 +57223,7 @@ self: { homepage = "https://github.com/akaspin/couchdb-conduit"; description = "Couch DB client library using http-conduit and aeson"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "couchdb-enumerator" = callPackage @@ -53724,6 +57253,7 @@ self: { homepage = "http://bitbucket.org/wuzzeb/couchdb-enumerator"; description = "Couch DB client library using http-enumerator and aeson"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "count" = callPackage @@ -53890,6 +57420,7 @@ self: { homepage = "http://hub.darcs.net/thoferon/court"; description = "Simple and flexible CI system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "coverage" = callPackage @@ -53924,8 +57455,27 @@ self: { homepage = "http://github.com/da-x/cpio-conduit"; description = "Conduit-based CPIO"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "cplex-hs" = callPackage + ({ mkDerivation, base, containers, cplex, mtl, primitive + , transformers, vector + }: + mkDerivation { + pname = "cplex-hs"; + version = "0.2.0.1"; + sha256 = "4d2c06753d28eba293ea0a4ef6a6dc3a1a5875c9111932dface41a3f3776c7b0"; + libraryHaskellDepends = [ + base containers mtl primitive transformers vector + ]; + librarySystemDepends = [ cplex ]; + homepage = "https://github.com/stefan-j/cplex-haskell"; + description = "high-level CPLEX interface"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {cplex = null;}; + "cplusplus-th" = callPackage ({ mkDerivation, base, bytestring, containers, process, QuickCheck , template-haskell @@ -53942,6 +57492,7 @@ self: { homepage = "https://github.com/nicta/cplusplus-th"; description = "C++ Foreign Import Generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cpphs_1_18_6" = callPackage @@ -54072,7 +57623,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cpphs" = callPackage + "cpphs_1_19_3" = callPackage ({ mkDerivation, base, directory, old-locale, old-time, polyparse }: mkDerivation { @@ -54090,6 +57641,27 @@ self: { homepage = "http://projects.haskell.org/cpphs/"; description = "A liberalised re-implementation of cpp, the C pre-processor"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cpphs" = callPackage + ({ mkDerivation, base, directory, old-locale, old-time, polyparse + }: + mkDerivation { + pname = "cpphs"; + version = "1.20.1"; + sha256 = "bd6eab851ec39ed5c5e4b0eb0b956f5892a36dedabcdf127a1ffa84c8e4f6017"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base directory old-locale old-time polyparse + ]; + executableHaskellDepends = [ + base directory old-locale old-time polyparse + ]; + homepage = "http://projects.haskell.org/cpphs/"; + description = "A liberalised re-implementation of cpp, the C pre-processor"; + license = "LGPL"; }) {}; "cprng-aes" = callPackage @@ -54181,6 +57753,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/cpuperf"; description = "Modify the cpu frequency on OpenBSD systems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cpython" = callPackage @@ -54195,6 +57768,7 @@ self: { homepage = "https://john-millikin.com/software/haskell-python/"; description = "Bindings for libpython"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {python34 = null;}; "cql_3_0_5" = callPackage @@ -54400,6 +57974,7 @@ self: { jailbreak = true; description = "PostgreSQL backend for the cqrs package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cqrs-sqlite3" = callPackage @@ -54421,6 +57996,7 @@ self: { jailbreak = true; description = "SQLite3 backend for the cqrs package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cqrs-test" = callPackage @@ -54438,6 +58014,7 @@ self: { jailbreak = true; description = "Command-Query Responsibility Segregation Test Support"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cqrs-testkit" = callPackage @@ -54485,6 +58062,7 @@ self: { homepage = "https://github.com/scvalex/cr"; description = "Code review tool"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crack" = callPackage @@ -54497,6 +58075,7 @@ self: { librarySystemDepends = [ crack ]; description = "A haskell binding to cracklib"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {crack = null;}; "crackNum_1_3" = callPackage @@ -54541,6 +58120,7 @@ self: { homepage = "http://mahrz.github.com/craftwerk.html"; description = "2D graphics library with integrated TikZ output"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "craftwerk-cairo" = callPackage @@ -54554,6 +58134,7 @@ self: { homepage = "http://mahrz.github.com/craftwerk.html"; description = "Cairo backend for Craftwerk"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "craftwerk-gtk" = callPackage @@ -54573,6 +58154,7 @@ self: { homepage = "http://mahrz.github.com/craftwerk.html"; description = "Gtk UI for Craftwerk"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crc16" = callPackage @@ -54584,6 +58166,7 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Calculate the crc16-ccitt"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crc16-table" = callPackage @@ -54606,8 +58189,8 @@ self: { }: mkDerivation { pname = "creatur"; - version = "5.9.9"; - sha256 = "3662a2b632bb86edb14b5f89d5be7cbda94401e651aa43d4e24f15ddf72aa209"; + version = "5.9.10"; + sha256 = "d953d471c6dae5c10decf870103b01bd7a8f89d4f64a985951499c1d419ac9fd"; libraryHaskellDepends = [ array base bytestring cereal cond directory exceptions filepath gray-extended hdaemonize hsyslog MonadRandom mtl old-locale process @@ -54643,6 +58226,7 @@ self: { homepage = "https://github.com/kawu/crf-chain1"; description = "First-order, linear-chain conditional random fields"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crf-chain1-constrained" = callPackage @@ -54661,6 +58245,7 @@ self: { homepage = "https://github.com/kawu/crf-chain1-constrained"; description = "First-order, constrained, linear-chain conditional random fields"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crf-chain2-generic" = callPackage @@ -54680,6 +58265,7 @@ self: { homepage = "https://github.com/kawu/crf-chain2-generic"; description = "Second-order, generic, constrained, linear conditional random fields"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crf-chain2-tiers" = callPackage @@ -54698,6 +58284,7 @@ self: { homepage = "https://github.com/kawu/crf-chain2-tiers"; description = "Second-order, tiered, constrained, linear conditional random fields"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "critbit" = callPackage @@ -54752,7 +58339,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "criterion" = callPackage + "criterion_1_1_0_0" = callPackage ({ mkDerivation, aeson, ansi-wl-pprint, base, binary, bytestring , cassava, containers, deepseq, directory, filepath, Glob, hastache , HUnit, mtl, mwc-random, optparse-applicative, parsec, QuickCheck @@ -54782,9 +58369,10 @@ self: { homepage = "http://www.serpentine.com/criterion"; description = "Robust, reliable performance measurement and analysis"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "criterion_1_1_1_0" = callPackage + "criterion" = callPackage ({ mkDerivation, aeson, ansi-wl-pprint, base, binary, bytestring , cassava, containers, deepseq, directory, filepath, Glob, hastache , HUnit, mtl, mwc-random, optparse-applicative, parsec, QuickCheck @@ -54814,7 +58402,6 @@ self: { homepage = "http://www.serpentine.com/criterion"; description = "Robust, reliable performance measurement and analysis"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "criterion-plus" = callPackage @@ -54844,6 +58431,7 @@ self: { homepage = "https://github.com/nikita-volkov/criterion-plus"; description = "Enhancement of the \"criterion\" benchmarking library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "criterion-to-html" = callPackage @@ -54893,6 +58481,7 @@ self: { homepage = "https://github.com/TomHammersley/HaskellRenderer/"; description = "An offline renderer supporting ray tracing and photon mapping"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cron_0_3_0" = callPackage @@ -54917,7 +58506,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cron" = callPackage + "cron_0_3_2" = callPackage ({ mkDerivation, attoparsec, base, derive, mtl, mtl-compat , old-locale, tasty, tasty-hunit, tasty-quickcheck, text, time , transformers-compat @@ -54937,6 +58526,28 @@ self: { homepage = "http://github.com/michaelxavier/cron"; description = "Cron datatypes and Attoparsec parser"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cron" = callPackage + ({ mkDerivation, attoparsec, base, derive, mtl, mtl-compat + , old-locale, quickcheck-instances, semigroups, tasty, tasty-hunit + , tasty-quickcheck, text, time, transformers-compat + }: + mkDerivation { + pname = "cron"; + version = "0.4.0"; + sha256 = "023916c844787d40466044d8ae9af9d77da18840f1f7531fb5f8508b01a1e7b5"; + libraryHaskellDepends = [ + attoparsec base mtl mtl-compat old-locale semigroups text time + ]; + testHaskellDepends = [ + attoparsec base derive quickcheck-instances semigroups tasty + tasty-hunit tasty-quickcheck text time transformers-compat + ]; + homepage = "http://github.com/michaelxavier/cron"; + description = "Cron datatypes and Attoparsec parser"; + license = stdenv.lib.licenses.mit; }) {}; "cron-compat" = callPackage @@ -54960,6 +58571,7 @@ self: { homepage = "http://github.com/michaelxavier/cron"; description = "Cron datatypes and Attoparsec parser"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cruncher-types" = callPackage @@ -54973,6 +58585,7 @@ self: { homepage = "http://github.com/eval-so/cruncher-types"; description = "Request and Response types for Eval.so's API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crunghc" = callPackage @@ -54992,6 +58605,7 @@ self: { jailbreak = true; description = "A runghc replacement with transparent caching"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crypto-api" = callPackage @@ -55044,6 +58658,7 @@ self: { homepage = "http://github.com/vincenthz/hs-crypto-cipher"; description = "Generic cryptography cipher benchmarks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crypto-cipher-tests" = callPackage @@ -55138,6 +58753,7 @@ self: { homepage = "https://github.com/orome/crypto-enigma-hs"; description = "An Enigma machine simulator with display"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crypto-numbers_0_2_3" = callPackage @@ -55424,7 +59040,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "cryptohash" = callPackage + "cryptohash_0_11_6" = callPackage ({ mkDerivation, base, byteable, bytestring, ghc-prim, HUnit , QuickCheck, tasty, tasty-hunit, tasty-quickcheck }: @@ -55440,9 +59056,10 @@ self: { homepage = "http://github.com/vincenthz/hs-cryptohash"; description = "collection of crypto hashes, fast, pure and practical"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cryptohash_0_11_7" = callPackage + "cryptohash" = callPackage ({ mkDerivation, base, byteable, bytestring, ghc-prim, HUnit , QuickCheck, tasty, tasty-hunit, tasty-quickcheck }: @@ -55458,7 +59075,6 @@ self: { homepage = "http://github.com/vincenthz/hs-cryptohash"; description = "collection of crypto hashes, fast, pure and practical"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cryptohash-conduit" = callPackage @@ -55744,6 +59360,42 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "cryptonite-conduit" = callPackage + ({ mkDerivation, base, bytestring, conduit, conduit-extra + , cryptonite, resourcet, transformers + }: + mkDerivation { + pname = "cryptonite-conduit"; + version = "0.1"; + sha256 = "a79cd5bc2f86093bbc45290889ca5a9c502804a3c19188874bc2ff3f2a97aac0"; + libraryHaskellDepends = [ + base bytestring conduit conduit-extra cryptonite resourcet + transformers + ]; + homepage = "https://github.com/haskell-crypto/cryptonite-conduit"; + description = "cryptonite conduit"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "cryptonite-openssl" = callPackage + ({ mkDerivation, base, bytestring, cryptonite, memory, openssl + , tasty, tasty-hunit, tasty-kat, tasty-quickcheck + }: + mkDerivation { + pname = "cryptonite-openssl"; + version = "0.1"; + sha256 = "0a06b7903b069d17203f4d485033bcc7334c4cbdb478b43cbd321083de133964"; + libraryHaskellDepends = [ base bytestring memory ]; + librarySystemDepends = [ openssl ]; + testHaskellDepends = [ + base bytestring cryptonite tasty tasty-hunit tasty-kat + tasty-quickcheck + ]; + homepage = "https://github.com/haskell-crypto/cryptonite-openssl"; + description = "Crypto stuff using OpenSSL cryptographic library"; + license = stdenv.lib.licenses.bsd3; + }) {inherit (pkgs) openssl;}; + "cryptsy-api" = callPackage ({ mkDerivation, aeson, base, bytestring, deepseq, either , http-client, http-client-tls, old-locale, pipes-attoparsec @@ -55762,6 +59414,7 @@ self: { jailbreak = true; description = "Bindings for Cryptsy cryptocurrency exchange API"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crystalfontz" = callPackage @@ -55773,6 +59426,7 @@ self: { libraryHaskellDepends = [ base crc16-table MaybeT serialport ]; description = "Control Crystalfontz LCD displays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cse-ghc-plugin" = callPackage @@ -55785,6 +59439,7 @@ self: { homepage = "http://thoughtpolice.github.com/cse-ghc-plugin"; description = "Compiler plugin for common subexpression elimination"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "csound-catalog" = callPackage @@ -55801,6 +59456,7 @@ self: { homepage = "https://github.com/anton-k/csound-catalog"; description = "a gallery of Csound instruments"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "csound-expression" = callPackage @@ -55898,6 +59554,7 @@ self: { testHaskellDepends = [ base nondeterminism tasty tasty-hunit ]; description = "Discrete constraint satisfaction problem (CSP) solver"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cspmchecker" = callPackage @@ -55915,6 +59572,7 @@ self: { homepage = "https://github.com/tomgr/libcspm"; description = "A command line type checker for CSPM files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "css" = callPackage @@ -55926,6 +59584,7 @@ self: { libraryHaskellDepends = [ base mtl text ]; description = "Minimal monadic CSS DSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "css-syntax" = callPackage @@ -56101,6 +59760,7 @@ self: { homepage = "http://darcs.imperialviolet.org/ctemplate"; description = "Binding to the Google ctemplate library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {ctemplate = null;}; "ctkl" = callPackage @@ -56113,6 +59773,7 @@ self: { jailbreak = true; description = "packaging of Manuel Chakravarty's CTK Light for Hackage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ctpl" = callPackage @@ -56125,6 +59786,7 @@ self: { jailbreak = true; description = "A programming language for text modification"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ctrie" = callPackage @@ -56200,6 +59862,7 @@ self: { testHaskellDepends = [ base parsec tasty tasty-hunit ]; description = "Efficient manipulating of 2D cubic bezier curves"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cubicspline_0_1_1" = callPackage @@ -56259,6 +59922,7 @@ self: { executableHaskellDepends = [ base GLUT Yampa ]; description = "3D Yampa/GLUT Puzzle Game"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-linux" ]; }) {}; "cuda" = callPackage @@ -56294,6 +59958,7 @@ self: { homepage = "https://github.com/adamwalker/haskell_cudd"; description = "Bindings to the CUDD binary decision diagrams library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {cudd = null; dddmp = null; epd = null; inherit (pkgs) mtr; inherit (pkgs) st; util = null;}; @@ -56391,6 +60056,7 @@ self: { homepage = "http://www.curry-language.org"; description = "Functions for manipulating Curry programs"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "curry-frontend" = callPackage @@ -56410,6 +60076,7 @@ self: { homepage = "http://www.curry-language.org"; description = "Compile the functional logic language Curry to several intermediate formats"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cursedcsv" = callPackage @@ -56463,6 +60130,7 @@ self: { ]; description = "Library for drawing curve based images"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "custom-prelude" = callPackage @@ -56495,6 +60163,7 @@ self: { ]; description = "Functional Combinators for Computer Vision"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "cyclotomic" = callPackage @@ -56506,6 +60175,7 @@ self: { libraryHaskellDepends = [ arithmoi base containers ]; description = "A subfield of the complex numbers for exact calculation"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "cypher" = callPackage @@ -56526,6 +60196,7 @@ self: { jailbreak = true; description = "Haskell bindings for the neo4j \"cypher\" query language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "d-bus" = callPackage @@ -56642,6 +60313,29 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "danibot" = callPackage + ({ mkDerivation, aeson, async, attoparsec, base, bytestring + , conceit, containers, foldl, lens, lens-aeson, monoid-subclasses + , network, optparse-applicative, stm, streaming, text, transformers + , websockets, wreq, wuss + }: + mkDerivation { + pname = "danibot"; + version = "0.2.0.0"; + sha256 = "a8bd34d31eff0143a4e2fdc6cfd5070b37c5cfc8d087d21d742f3f9b0b720fa3"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson async attoparsec base bytestring conceit containers foldl + lens lens-aeson monoid-subclasses network stm streaming text + transformers websockets wreq wuss + ]; + executableHaskellDepends = [ base optparse-applicative ]; + jailbreak = true; + description = "Basic Slack bot framework"; + license = stdenv.lib.licenses.mit; + }) {}; + "dao" = callPackage ({ mkDerivation, array, base, binary, bytestring, containers , Crypto, data-binary-ieee754, deepseq, directory, filepath, mtl @@ -56670,6 +60364,7 @@ self: { ]; description = "Dao is meta programming language with its own built-in interpreted language, designed with artificial intelligence applications in mind"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dapi" = callPackage @@ -56690,18 +60385,19 @@ self: { homepage = "http://massysett.github.com/dapi"; description = "Prints a series of dates"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcs_2_10_2" = callPackage ({ mkDerivation, array, attoparsec, base, base16-bytestring, binary , bytestring, cmdargs, containers, cryptohash, curl, data-ordlist , directory, filepath, FindBin, hashable, haskeline, html, HTTP - , HUnit, mmap, mtl, network, network-uri, old-locale, old-time - , parsec, process, QuickCheck, random, regex-applicative - , regex-compat-tdfa, sandi, shelly, split, tar, terminfo - , test-framework, test-framework-hunit, test-framework-quickcheck2 - , text, time, transformers, transformers-compat, unix, unix-compat - , utf8-string, vector, zip-archive, zlib + , HUnit, mmap, mtl, network, network-uri, old-time, parsec, process + , QuickCheck, random, regex-applicative, regex-compat-tdfa, sandi + , shelly, split, tar, terminfo, test-framework + , test-framework-hunit, test-framework-quickcheck2, text, time + , transformers, transformers-compat, unix, unix-compat, utf8-string + , vector, zip-archive, zlib }: mkDerivation { pname = "darcs"; @@ -56715,9 +60411,9 @@ self: { libraryHaskellDepends = [ array attoparsec base base16-bytestring binary bytestring containers cryptohash data-ordlist directory filepath hashable - haskeline html HTTP mmap mtl network network-uri old-locale - old-time parsec process random regex-applicative regex-compat-tdfa - sandi tar terminfo text time transformers transformers-compat unix + haskeline html HTTP mmap mtl network network-uri old-time parsec + process random regex-applicative regex-compat-tdfa sandi tar + terminfo text time transformers transformers-compat unix unix-compat utf8-string vector zip-archive zlib ]; librarySystemDepends = [ curl ]; @@ -56729,7 +60425,6 @@ self: { test-framework-hunit test-framework-quickcheck2 text unix-compat zip-archive zlib ]; - jailbreak = true; postInstall = '' mkdir -p $out/etc/bash_completion.d mv contrib/darcs_completion $out/etc/bash_completion.d/darcs @@ -56806,6 +60501,7 @@ self: { homepage = "http://wiki.darcs.net/Development/Benchmarks"; description = "Comparative benchmark suite for darcs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcs-beta" = callPackage @@ -56839,6 +60535,7 @@ self: { homepage = "http://darcs.net/"; description = "a distributed, interactive, smart revision control system"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) curl;}; "darcs-buildpackage" = callPackage @@ -56857,6 +60554,7 @@ self: { ]; description = "Tools to help manage Debian packages with Darcs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcs-cabalized" = callPackage @@ -56878,6 +60576,7 @@ self: { homepage = "http://darcs.net/"; description = "David's Advanced Version Control System"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) curl; inherit (pkgs) ncurses; inherit (pkgs) zlib;}; @@ -56899,6 +60598,7 @@ self: { jailbreak = true; description = "Import/export git fast-import streams to/from darcs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcs-graph" = callPackage @@ -56918,6 +60618,7 @@ self: { jailbreak = true; description = "Generate graphs of darcs repository activity"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcs-monitor" = callPackage @@ -56936,6 +60637,7 @@ self: { homepage = "http://wiki.darcs.net/RelatedSoftware/DarcsMonitor"; description = "Darcs repository monitor (sends email)"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcs-scripts" = callPackage @@ -56966,6 +60668,7 @@ self: { jailbreak = true; description = "Outputs dependencies of darcs patches in dot format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcsden" = callPackage @@ -56995,6 +60698,7 @@ self: { homepage = "http://hackage.haskell.org/package/darcsden"; description = "Darcs repository UI and hosting/collaboration app (hub.darcs.net branch)."; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcswatch" = callPackage @@ -57017,6 +60721,7 @@ self: { homepage = "http://darcswatch.nomeata.de/"; description = "Track application of Darcs patches"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darkplaces-demo" = callPackage @@ -57043,6 +60748,7 @@ self: { homepage = "https://github.com/bacher09/darkplaces-demo"; description = "Utility and parser for DarkPlaces demo files"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darkplaces-rcon" = callPackage @@ -57340,8 +61046,8 @@ self: { ({ mkDerivation, base, deepseq, QuickCheck }: mkDerivation { pname = "data-clist"; - version = "0.0.7.4"; - sha256 = "769f40b42d01d6e917a15fdfd381daafaabaed8d550bd7f85e6d45cb1cb2d96e"; + version = "0.1.0.0"; + sha256 = "f22ba783032ad904fc797ee3ff9d015a43cf26b7670addf4d3b74f5d6f359f45"; libraryHaskellDepends = [ base deepseq QuickCheck ]; homepage = "https://github.com/sw17ch/data-clist"; description = "Simple functional ring type"; @@ -57384,6 +61090,7 @@ self: { ]; description = "a cyclic doubly linked list"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-default" = callPackage @@ -57606,6 +61313,7 @@ self: { homepage = "http://monoid.at/code"; description = "Space-efficient and privacy-preserving data dispersal algorithms"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-dword" = callPackage @@ -57643,6 +61351,7 @@ self: { homepage = "https://github.com/jcristovao/data-easy"; description = "Consistent set of utility functions for Maybe, Either, List and Monoids"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-embed" = callPackage @@ -57759,8 +61468,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "data-fix"; - version = "0.0.1"; - sha256 = "f93a17bedc61402014fa8b7ffdea2dfe3cee13866e4d5ec6356a8ab433452027"; + version = "0.0.3"; + sha256 = "f6c69e973a110c36c738d9f37bf3092eff5d25ec11782c301e255844b5010e57"; libraryHaskellDepends = [ base ]; homepage = "https://github.com/anton-k/data-fix"; description = "Fixpoint data types"; @@ -57883,6 +61592,7 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Write-once variables with concurrency support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-json-token" = callPackage @@ -57928,6 +61638,7 @@ self: { homepage = "https://github.com/wdanilo/layer"; description = "Data layering utilities. Layer is a data-type which wrapps other one, but keeping additional information. If you want to access content of simple newtype object, use Lens.Wrapper instead."; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-layout" = callPackage @@ -57984,6 +61695,7 @@ self: { homepage = "https://github.com/dag/data-lens-ixset"; description = "A Lens for IxSet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-lens-light" = callPackage @@ -58057,6 +61769,7 @@ self: { homepage = "https://github.com/kawu/data-named"; description = "Data types for named entities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-nat" = callPackage @@ -58070,6 +61783,7 @@ self: { homepage = "http://github.com/glehel/data-nat"; description = "data Nat = Zero | Succ Nat"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-object" = callPackage @@ -58101,6 +61815,7 @@ self: { homepage = "http://github.com/snoyberg/data-object-json/tree/master"; description = "Serialize JSON data to/from Haskell using the data-object library. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-object-yaml" = callPackage @@ -58121,6 +61836,7 @@ self: { homepage = "http://github.com/snoyberg/data-object-yaml"; description = "Serialize data to and from Yaml files (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-or" = callPackage @@ -58178,6 +61894,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Reference cells that need two independent indices to be accessed"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-r-tree" = callPackage @@ -58279,6 +61996,7 @@ self: { homepage = "https://github.com/wdanilo/data-result"; description = "Data types for returning results distinguishable by types"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-rev" = callPackage @@ -58303,6 +62021,7 @@ self: { libraryHaskellDepends = [ base bytestring bytestring-mmap unix ]; description = "Ropes, an alternative to (Byte)Strings"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-rtuple" = callPackage @@ -58315,6 +62034,7 @@ self: { homepage = "https://github.com/wdanilo/rtuple"; description = "Recursive tuple data structure. It is very usefull when implementing some lo-level operations, allowing to traverse different elements using Haskell's type classes."; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-size" = callPackage @@ -58363,6 +62083,7 @@ self: { homepage = "https://github.com/Palmik/data-store"; description = "Type safe, in-memory dictionary with multidimensional keys"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-stringmap" = callPackage @@ -58485,6 +62206,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Basic type wrangling types and classes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-util" = callPackage @@ -58558,6 +62280,7 @@ self: { homepage = "https://github.com/iand675/datadog"; description = "Datadog client for Haskell. Currently only StatsD supported, other support forthcoming."; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "dataenc" = callPackage @@ -58625,6 +62348,7 @@ self: { jailbreak = true; description = "An implementation of datalog in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "datapacker" = callPackage @@ -58824,6 +62548,7 @@ self: { homepage = "http://devel.comunidadhaskell.org/dbjava/"; description = "Decompiler Bytecode Java"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dbmigrations_1_0" = callPackage @@ -58863,8 +62588,8 @@ self: { }: mkDerivation { pname = "dbmigrations"; - version = "1.1"; - sha256 = "fe8075f25f1b55a55e792e654b8708e7f093c78b2cd75c1f1867efbf1a3cc2bc"; + version = "1.1.1"; + sha256 = "d36742052ed45f933e7883bb542c070c881685df721e526d4abc25e7a1444c9f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -58977,6 +62702,7 @@ self: { homepage = "http://john-millikin.com/software/haskell-dbus/"; description = "Monadic and object-oriented interfaces to DBus"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dbus-core" = callPackage @@ -58996,6 +62722,7 @@ self: { homepage = "https://john-millikin.com/software/dbus-core/"; description = "Low-level D-Bus protocol implementation"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dbus-qq" = callPackage @@ -59021,8 +62748,8 @@ self: { }: mkDerivation { pname = "dbus-th"; - version = "0.1.1.1"; - sha256 = "6c113c42bc87a9c874f0a0d408368aa021b197f88e2d0a2ce8ecb4e6503db36b"; + version = "0.1.2.0"; + sha256 = "58560b8ae7215786b6d632e05a0ab74665abc59b66e18555493dd937cbee4909"; libraryHaskellDepends = [ base containers dbus syb template-haskell text ]; @@ -59030,6 +62757,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "dbus-th-introspection" = callPackage + ({ mkDerivation, base, cmdargs, containers, dbus, dbus-th + , template-haskell + }: + mkDerivation { + pname = "dbus-th-introspection"; + version = "0.1.0.0"; + sha256 = "42c5e05f11789d9c738b5ce9495e0a25f15738db85637c49a5bb03c1ed768481"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers dbus dbus-th template-haskell + ]; + executableHaskellDepends = [ + base cmdargs containers dbus dbus-th template-haskell + ]; + jailbreak = true; + description = "Generate bindings for DBus calls by using DBus introspection and dbus-th"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "dclabel" = callPackage ({ mkDerivation, base, bytestring, cereal, containers, QuickCheck , quickcheck-instances, test-framework, test-framework-quickcheck2 @@ -59046,6 +62794,7 @@ self: { jailbreak = true; description = "This packge is deprecated. See the the \"LIO.DCLabel\" in the \"lio\" package."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dclabel-eci11" = callPackage @@ -59095,6 +62844,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler build framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-code" = callPackage @@ -59125,6 +62875,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler core language and type checker"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-core-eval" = callPackage @@ -59142,6 +62893,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler semantic evaluator for the core language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-core-flow" = callPackage @@ -59160,6 +62912,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler data flow compiler"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-core-llvm" = callPackage @@ -59178,6 +62931,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler LLVM code generator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-core-salt" = callPackage @@ -59195,6 +62949,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler C code generator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-core-simpl" = callPackage @@ -59212,6 +62967,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler code transformations"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-core-tetra" = callPackage @@ -59230,6 +62986,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler intermediate language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-driver" = callPackage @@ -59252,6 +63009,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler top-level driver"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-interface" = callPackage @@ -59283,6 +63041,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler source language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-tools" = callPackage @@ -59308,6 +63067,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler command line tools"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-war" = callPackage @@ -59347,6 +63107,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciple Core language interactive interpreter"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dead-code-detection" = callPackage @@ -59357,8 +63118,8 @@ self: { }: mkDerivation { pname = "dead-code-detection"; - version = "0.4"; - sha256 = "bcf7c5e477840d264f1e4e74c5251c140d4410f182fc96a907cad7efc28761d6"; + version = "0.5"; + sha256 = "3bb75cd30e6ed043da2cee902eddd02f75e000dbcc1b6d9edbe0523b0dc2e59c"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -59370,7 +63131,6 @@ self: { gitrev Glob graph-wrapper hspec interpolate mockery silently string-conversions uniplate ]; - jailbreak = true; homepage = "https://github.com/soenkehahn/dead-code-detection#readme"; description = "detect dead code in haskell projects"; license = stdenv.lib.licenses.bsd3; @@ -59390,6 +63150,7 @@ self: { homepage = "http://hub.darcs.net/scravy/dead-simple-json"; description = "Dead simple JSON parser, with some Template Haskell sugar"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "debian_3_87_2" = callPackage @@ -59517,6 +63278,7 @@ self: { jailbreak = true; description = "The categorical dual of transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "declarative" = callPackage @@ -59565,6 +63327,7 @@ self: { homepage = "https://github.com/hansonkd/decoder-conduit"; description = "Conduit for decoding ByteStrings using Data.Binary.Get"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dedukti" = callPackage @@ -59588,6 +63351,7 @@ self: { homepage = "http://www.lix.polytechnique.fr/dedukti"; description = "A type-checker for the λΠ-modulo calculus"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deepcontrol" = callPackage @@ -59634,6 +63398,7 @@ self: { homepage = "https://github.com/ajtulloch/deeplearning-hs"; description = "Deep Learning in Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deepseq_1_3_0_1" = callPackage @@ -59688,6 +63453,7 @@ self: { homepage = "http://fremissant.net/deepseq-bounded"; description = "Bounded deepseq, including support for generic deriving"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deepseq-generics_0_1_1_1" = callPackage @@ -59769,6 +63535,7 @@ self: { jailbreak = true; description = "Template Haskell based deriver for optimised NFData instances"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deepzoom" = callPackage @@ -59780,6 +63547,7 @@ self: { libraryHaskellDepends = [ base directory filepath hsmagick ]; description = "A DeepZoom image slicer. Only known to work on 32bit Linux"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "defargs" = callPackage @@ -59792,6 +63560,7 @@ self: { homepage = "https://github.com/Kinokkory/defargs"; description = "default arguments in haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "definitive-base" = callPackage @@ -59810,6 +63579,7 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "The base modules of the Definitive framework"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "definitive-filesystem" = callPackage @@ -59832,6 +63602,7 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A library that enable you to interact with the filesystem in a definitive way"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "definitive-graphics" = callPackage @@ -59856,6 +63627,7 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A definitive package allowing you to open windows, read image files and render text to be displayed or saved"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "definitive-parser" = callPackage @@ -59875,6 +63647,7 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A parser combinator library for the Definitive framework"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "definitive-reactive" = callPackage @@ -59895,6 +63668,7 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A simple Reactive library"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "definitive-sound" = callPackage @@ -59916,6 +63690,7 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A definitive package to handle sound and play it back"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deiko-config" = callPackage @@ -59964,6 +63739,7 @@ self: { homepage = "https://github.com/massysett/deka"; description = "Decimal floating point arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {mpdec = null;}; "deka-tests" = callPackage @@ -59986,6 +63762,7 @@ self: { homepage = "https://github.com/massysett/deka"; description = "Tests for deka, decimal floating point arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "delaunay" = callPackage @@ -60005,6 +63782,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "delay" = callPackage + ({ mkDerivation, async, base, dimensional, exceptions, mtl, time + , unbounded-delays + }: + mkDerivation { + pname = "delay"; + version = "0"; + sha256 = "2b8afda39ec409e088ea589631c47bb412f281444df481ffdf76101a8b74fbfb"; + libraryHaskellDepends = [ + base dimensional exceptions mtl time unbounded-delays + ]; + testHaskellDepends = [ async base dimensional exceptions time ]; + description = "More useful and humain delaying functions"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "delicious" = callPackage ({ mkDerivation, base, bytestring, curl, feed, json, nano-md5, xml }: @@ -60018,6 +63811,7 @@ self: { homepage = "https://github.com/sof/delicious"; description = "Accessing the del.icio.us APIs from Haskell (v2)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "delimited-text" = callPackage @@ -60070,6 +63864,7 @@ self: { homepage = "https://github.com/kryoxide/delta"; description = "A library for detecting file changes"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "delta-h" = callPackage @@ -60091,6 +63886,7 @@ self: { homepage = "https://bitbucket.org/gchrupala/delta-h"; description = "Online entropy-based model of lexical category acquisition"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "demarcate" = callPackage @@ -60104,6 +63900,7 @@ self: { homepage = "https://github.com/fizruk/demarcate"; description = "Demarcating transformed monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "denominate" = callPackage @@ -60120,6 +63917,7 @@ self: { homepage = "http://protempore.net/denominate/"; description = "Functions supporting bulk file and directory name normalization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dependent-map_0_1_1_3" = callPackage @@ -60158,6 +63956,7 @@ self: { homepage = "https://github.com/wdanilo/dependent-state"; description = "Control structure similar to Control.Monad.State, allowing multiple nested states, distinguishable by provided phantom types."; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dependent-sum_0_2_1_0" = callPackage @@ -60219,6 +64018,7 @@ self: { ]; description = "A simple configuration management tool for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dephd" = callPackage @@ -60237,6 +64037,7 @@ self: { homepage = "http://malde.org/~ketil/biohaskell/dephd"; description = "Analyze quality of nucleotide sequences"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dequeue" = callPackage @@ -60251,6 +64052,7 @@ self: { testHaskellDepends = [ base Cabal cabal-test-quickcheck ]; description = "A typeclass and an implementation for double-ended queues"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derangement" = callPackage @@ -60262,6 +64064,7 @@ self: { libraryHaskellDepends = [ base fgl ]; description = "Find derangements of lists"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derivation-trees" = callPackage @@ -60276,6 +64079,7 @@ self: { jailbreak = true; description = "Typeset Derivation Trees via MetaPost"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derive_2_5_18" = callPackage @@ -60408,6 +64212,28 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "derive_2_5_24" = callPackage + ({ mkDerivation, base, bytestring, containers, directory, filepath + , haskell-src-exts, pretty, process, syb, template-haskell + , transformers, uniplate + }: + mkDerivation { + pname = "derive"; + version = "2.5.24"; + sha256 = "ba0494092c69a301f59fbc19e08ca3834d6e6fe1fd957b381b5eaba9319bfa8a"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring containers directory filepath haskell-src-exts + pretty process syb template-haskell transformers uniplate + ]; + executableHaskellDepends = [ base ]; + homepage = "https://github.com/ndmitchell/derive#readme"; + description = "A program and library to derive instances for data types"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "derive-IG" = callPackage ({ mkDerivation, base, instant-generics, template-haskell }: mkDerivation { @@ -60419,6 +64245,7 @@ self: { homepage = "http://github.com/konn/derive-IG"; description = "Macro to derive instances for Instant-Generics using Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derive-enumerable" = callPackage @@ -60454,6 +64281,7 @@ self: { jailbreak = true; description = "Instance deriving for (a subset of) GADTs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derive-monoid" = callPackage @@ -60486,6 +64314,7 @@ self: { homepage = "https://github.com/HaskellZhangSong/derive-topdown"; description = "This library will help you generate Haskell empty Generic instances and deriving type instances from the top automatically to the bottom for composited data types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derive-trie" = callPackage @@ -60499,6 +64328,7 @@ self: { homepage = "http://github.com/baldo/derive-trie"; description = "Automatic derivation of Trie implementations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deriving-compat" = callPackage @@ -60541,6 +64371,7 @@ self: { homepage = "http://darcsden.com/kyagrd/derp-lib"; description = "combinators based on parsing with derivatives (derp) package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "descrilo" = callPackage @@ -60690,6 +64521,7 @@ self: { homepage = "https://github.com/luanzhu/devil"; description = "A small tool to make it easier to update program managed by Angel"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "dewdrop" = callPackage @@ -60704,6 +64536,7 @@ self: { homepage = "https://github.com/kmcallister/dewdrop"; description = "Find gadgets for return-oriented programming on x86"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dfrac" = callPackage @@ -60734,6 +64567,7 @@ self: { ]; description = "Build Debian From Scratch CD/DVD images"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dgim" = callPackage @@ -60748,6 +64582,7 @@ self: { homepage = "https://github.com/musically-ut/haskell-dgim"; description = "Implementation of DGIM algorithm"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dgs" = callPackage @@ -60761,6 +64596,7 @@ self: { homepage = "http://www.dmwit.com/dgs"; description = "Haskell front-end for DGS' bot interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dia-base" = callPackage @@ -60990,7 +64826,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-builder" = callPackage + "diagrams-builder_0_7_2_2" = callPackage ({ mkDerivation, base, base-orphans, bytestring, cmdargs , diagrams-cairo, diagrams-lib, diagrams-postscript , diagrams-rasterific, diagrams-svg, directory, exceptions @@ -61013,9 +64849,40 @@ self: { diagrams-postscript diagrams-rasterific diagrams-svg directory filepath JuicyPixels lens lucid-svg ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams"; description = "hint-based build service for the diagrams graphics EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "diagrams-builder" = callPackage + ({ mkDerivation, base, base-orphans, bytestring, cmdargs + , diagrams-cairo, diagrams-lib, diagrams-postscript + , diagrams-rasterific, diagrams-svg, directory, exceptions + , filepath, hashable, haskell-src-exts, hint, JuicyPixels, lens + , lucid-svg, mtl, split, transformers + }: + mkDerivation { + pname = "diagrams-builder"; + version = "0.7.2.3"; + sha256 = "4763a1e795311335dfec6b8f49deaca3b31a6f3d2bec5168a82f849df4b39029"; + configureFlags = [ "-fcairo" "-fps" "-frasterific" "-fsvg" ]; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base base-orphans cmdargs diagrams-lib directory exceptions + filepath hashable haskell-src-exts hint lens mtl split transformers + ]; + executableHaskellDepends = [ + base bytestring cmdargs diagrams-cairo diagrams-lib + diagrams-postscript diagrams-rasterific diagrams-svg directory + filepath JuicyPixels lens lucid-svg + ]; + homepage = "http://projects.haskell.org/diagrams"; + description = "hint-based build service for the diagrams graphics EDSL"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "diagrams-cairo_1_2_0_4" = callPackage @@ -61179,6 +65046,7 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "Cairo backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "diagrams-canvas_0_3_0_3" = callPackage @@ -61660,6 +65528,7 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "Backend for rendering diagrams directly to GTK windows"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "diagrams-haddock_0_2_2_12" = callPackage @@ -61833,6 +65702,7 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "Preprocessor for embedding diagrams in Haddock documentation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "diagrams-hsqml" = callPackage @@ -61851,6 +65721,7 @@ self: { homepage = "https://github.com/marcinmrotek/diagrams-hsqml"; description = "HsQML (Qt5) backend for Diagrams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "diagrams-html5_1_3_0_2" = callPackage @@ -62112,6 +65983,7 @@ self: { jailbreak = true; description = "A Pandoc filter to express diagrams inline using the Haskell EDSL _Diagrams_"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "diagrams-pdf" = callPackage @@ -62131,6 +66003,7 @@ self: { homepage = "http://www.alpheccar.org"; description = "PDF backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-pgf" = callPackage @@ -62151,6 +66024,7 @@ self: { homepage = "http://github.com/cchalmers/diagrams-pgf"; description = "PGF backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-postscript_1_1_0_3" = callPackage @@ -62418,6 +66292,7 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "reflex backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-rubiks-cube" = callPackage @@ -62684,6 +66559,7 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "TikZ backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dialog" = callPackage @@ -62701,6 +66577,7 @@ self: { homepage = "https://gitlab.com/lamefun/dialog"; description = "Simple dialog-based user interfaces"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "dice" = callPackage @@ -62733,6 +66610,7 @@ self: { homepage = "http://monoid.at/code"; description = "Cryptographically secure n-sided dice via rejection sampling"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dicom" = callPackage @@ -62763,6 +66641,7 @@ self: { homepage = "http://github.com/mwotton/dictparser"; description = "Parsec parsers for the DICT format produced by dictfmt -t"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diet" = callPackage @@ -62850,6 +66729,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/diffcabal"; description = "Diff two .cabal files syntactically"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diffdump" = callPackage @@ -63217,6 +67097,7 @@ self: { homepage = "http://src.seereason.com/digestive-functors-hsp"; description = "HSP support for digestive-functors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "digestive-functors-lucid" = callPackage @@ -63268,16 +67149,18 @@ self: { }) {}; "digit" = callPackage - ({ mkDerivation, base, directory, doctest, filepath, lens - , QuickCheck, template-haskell + ({ mkDerivation, base, directory, doctest, filepath, lens, parsec + , parsers, QuickCheck, semigroups, template-haskell }: mkDerivation { pname = "digit"; - version = "0.1.2"; - sha256 = "61b56e10673dd3e3ca7fb6bdcd9fc07bd79a38fe75fd3554c5b2598caa51ff6f"; - libraryHaskellDepends = [ base lens template-haskell ]; + version = "0.2.5"; + sha256 = "685bf3e11e88ccc17c3895f10eac5508e186fcb5fbcd9a59040612e683c227e8"; + libraryHaskellDepends = [ + base lens parsec parsers semigroups template-haskell + ]; testHaskellDepends = [ - base directory doctest filepath QuickCheck + base directory doctest filepath QuickCheck template-haskell ]; homepage = "https://github.com/NICTA/digit"; description = "A data-type representing digits 0-9 and other combinations"; @@ -63402,6 +67285,7 @@ self: { jailbreak = true; description = "Dingo is a Rich Internet Application platform based on the Warp web server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dingo-example" = callPackage @@ -63422,6 +67306,7 @@ self: { jailbreak = true; description = "Dingo Example"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dingo-widgets" = callPackage @@ -63441,6 +67326,7 @@ self: { jailbreak = true; description = "Dingo Widgets"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diophantine" = callPackage @@ -63454,6 +67340,7 @@ self: { homepage = "https://github.com/llllllllll/Math.Diophantine"; description = "A quadratic diophantine equation solving library"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diplomacy" = callPackage @@ -63496,6 +67383,7 @@ self: { homepage = "https://github.com/avieth/diplomacy-server"; description = "Play Diplomacy over HTTP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "direct-binary-files" = callPackage @@ -63508,6 +67396,7 @@ self: { homepage = "http://ireneknapp.com/software/"; description = "Serialization and deserialization monads for streams and ByteStrings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "direct-daemonize" = callPackage @@ -63537,6 +67426,7 @@ self: { homepage = "http://dankna.com/software/"; description = "Native implementation of the FastCGI protocol"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "direct-http" = callPackage @@ -63557,6 +67447,7 @@ self: { homepage = "http://ireneknapp.com/software/"; description = "Native webserver that acts as a library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "direct-murmur-hash" = callPackage @@ -63581,6 +67472,7 @@ self: { homepage = "http://dankna.com/software/"; description = "Lightweight replacement for Plugins, specific to GHC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "direct-sqlite_2_3_14" = callPackage @@ -63671,6 +67563,7 @@ self: { jailbreak = true; description = "Finite directed cubical complexes and associated algorithms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "directory_1_2_5_1" = callPackage @@ -63751,6 +67644,7 @@ self: { unordered-containers ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dirstream" = callPackage @@ -63804,6 +67698,7 @@ self: { homepage = "http://github.com/lightquake/discount"; description = "Haskell bindings to the discount Markdown library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {markdown = null;}; "discrete-space-map" = callPackage @@ -63858,6 +67753,7 @@ self: { homepage = "https://github.com/maxwellsayles/disjoint-set"; description = "Persistent disjoint-sets, a.k.a union-find."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "disjoint-sets-st" = callPackage @@ -64015,20 +67911,19 @@ self: { "distributed-process" = callPackage ({ mkDerivation, base, binary, bytestring, containers - , data-accessor, deepseq, distributed-static, ghc-prim, hashable - , mtl, network-transport, random, rank1dynamic, stm, syb + , data-accessor, deepseq, distributed-static, exceptions, ghc-prim + , hashable, mtl, network-transport, random, rank1dynamic, stm, syb , template-haskell, time, transformers }: mkDerivation { pname = "distributed-process"; - version = "0.6.0"; - sha256 = "d79f7e24e7b2896681f9f4b798da0e987742caab4c34917a0d04f40f9aef6b5b"; - revision = "2"; - editedCabalFile = "3931f513026c2190a6117df582f6ff72d06898b69fddfafe65c25d2d0460f140"; + version = "0.6.1"; + sha256 = "e533facdab2311bdfdea2dbb58e8920ad8121af36417ba98489146e5c224d555"; libraryHaskellDepends = [ base binary bytestring containers data-accessor deepseq - distributed-static ghc-prim hashable mtl network-transport random - rank1dynamic stm syb template-haskell time transformers + distributed-static exceptions ghc-prim hashable mtl + network-transport random rank1dynamic stm syb template-haskell time + transformers ]; doCheck = false; homepage = "http://haskell-distributed.github.com/"; @@ -64093,6 +67988,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-async"; description = "Cloud Haskell Async API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "distributed-process-azure" = callPackage @@ -64117,6 +68013,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process"; description = "Microsoft Azure backend for Cloud Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-client-server_0_1_2" = callPackage @@ -64181,6 +68078,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-client-server"; description = "The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "distributed-process-ekg" = callPackage @@ -64189,8 +68087,8 @@ self: { }: mkDerivation { pname = "distributed-process-ekg"; - version = "0.1.0.0"; - sha256 = "ae61370b9268a2143930eac6cf3d397ed8c15fba5cb32e20f2bb194e3b4e6fdd"; + version = "0.1.1.0"; + sha256 = "25c15ef930311ba0d6f56b460b60a2dd2e03a8dee1e80d47721b043713240a3a"; libraryHaskellDepends = [ base distributed-process ekg-core text unordered-containers ]; @@ -64267,6 +68165,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-execution"; description = "Execution Framework for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "distributed-process-extras_0_2_0" = callPackage @@ -64342,8 +68241,8 @@ self: { }: mkDerivation { pname = "distributed-process-lifted"; - version = "0.2.0.0"; - sha256 = "c0c323de903c6f6770c9e95e4c3dbbfc9295f55ad309220fd64710dae3a5e27f"; + version = "0.2.0.1"; + sha256 = "9f2d96e2148bdc3be54365810f2e8689e7ab2d133d6b8248701d997a92a32950"; libraryHaskellDepends = [ base deepseq distributed-process distributed-process-monad-control lifted-base monad-control mtl network-transport transformers @@ -64354,10 +68253,10 @@ self: { network-transport network-transport-tcp rematch test-framework test-framework-hunit transformers ]; - jailbreak = true; homepage = "https://github.com/jeremyjh/distributed-process-lifted"; description = "monad-control style typeclass and transformer instances for Process monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-monad-control" = callPackage @@ -64366,13 +68265,12 @@ self: { }: mkDerivation { pname = "distributed-process-monad-control"; - version = "0.5.1.1"; - sha256 = "dab2eb3396e4afa5fdf9f84dd51a3e6bf634c2971a28c782946cc9f4b0e7fa43"; + version = "0.5.1.2"; + sha256 = "284ff6a793a78e4d587cd5f408520b259e2e9d36ec9c69a161abe3103a18e0c7"; libraryHaskellDepends = [ base distributed-process monad-control transformers transformers-base ]; - jailbreak = true; homepage = "http://haskell-distributed.github.io"; description = "Orphan instances for MonadBase and MonadBaseControl"; license = stdenv.lib.licenses.bsd3; @@ -64429,6 +68327,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-platform"; description = "The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-registry" = callPackage @@ -64462,6 +68361,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-registry"; description = "Cloud Haskell Extended Process Registry"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-darwin" ]; }) {}; "distributed-process-simplelocalnet_0_2_2_0" = callPackage @@ -64595,6 +68495,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-supervisor"; description = "Supervisors for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "distributed-process-task_0_1_1" = callPackage @@ -64668,6 +68569,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-task"; description = "Task Framework for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "distributed-process-tests" = callPackage @@ -64692,6 +68594,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process/tree/master/distributed-process-tests"; description = "Tests and test support tools for distributed-process"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "distributed-process-zookeeper" = callPackage @@ -64702,8 +68605,8 @@ self: { }: mkDerivation { pname = "distributed-process-zookeeper"; - version = "0.2.0.0"; - sha256 = "b14f2f6a6f8f0e37bee40fd57a6e4c3491cf687a1de65f593fbac94962a912ed"; + version = "0.2.1.0"; + sha256 = "98e74ca698daf1434fda5ac2cb277e8849080ef897e907716a196c1348c84bcd"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -64717,10 +68620,10 @@ self: { lifted-base monad-control network network-transport network-transport-tcp transformers ]; - jailbreak = true; homepage = "https://github.com/jeremyjh/distributed-process-zookeeper"; description = "A Zookeeper back-end for Cloud Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-static_0_3_1_0" = callPackage @@ -64803,6 +68706,7 @@ self: { homepage = "https://github.com/redelmann/haskell-distribution"; description = "Finite discrete probability distributions"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distribution-plot" = callPackage @@ -64821,6 +68725,7 @@ self: { homepage = "https://github.com/redelmann/haskell-distribution-plot"; description = "Easily plot distributions from the distribution package.."; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributive_0_4_4" = callPackage @@ -65016,6 +68921,46 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "dixi_0_6_9_0" = callPackage + ({ mkDerivation, acid-state, aeson, aeson-pretty, attoparsec, base + , base-orphans, blaze-html, blaze-markup, bytestring + , composition-tree, containers, data-default, directory, either + , filepath, heredoc, lens, network-uri, pandoc, pandoc-types + , patches-vector, safecopy, servant, servant-blaze, servant-docs + , servant-server, shakespeare, template-haskell, text, time + , time-locale-compat, timezone-olson, timezone-series, transformers + , vector, warp, yaml + }: + mkDerivation { + pname = "dixi"; + version = "0.6.9.0"; + sha256 = "5bb30c107059f7475d6945d6e63ef9ce943e3f1f98df2c1b0f6e28ce369cd8b9"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + acid-state aeson base base-orphans blaze-html blaze-markup + bytestring composition-tree containers data-default either heredoc + lens network-uri pandoc pandoc-types patches-vector safecopy + servant servant-blaze servant-server shakespeare template-haskell + text time time-locale-compat timezone-olson timezone-series + transformers vector + ]; + executableHaskellDepends = [ + acid-state base base-orphans directory filepath servant-server text + warp yaml + ]; + testHaskellDepends = [ + aeson aeson-pretty attoparsec base base-orphans bytestring lens + patches-vector servant servant-blaze servant-docs shakespeare text + time vector + ]; + jailbreak = true; + homepage = "https://github.com/liamoc/dixi"; + description = "A wiki implemented with a firm theoretical foundation"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "djembe" = callPackage ({ mkDerivation, base, hmidi, hspec, lens, mtl, QuickCheck, random }: @@ -65030,6 +68975,7 @@ self: { homepage = "https://github.com/reedrosenbluth/Djembe"; description = "Hit drums with haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "djinn" = callPackage @@ -65103,6 +69049,7 @@ self: { homepage = "http://gitorious.org/djinn-th"; description = "Generate executable Haskell code from a type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dlist_0_7_1" = callPackage @@ -65225,6 +69172,7 @@ self: { jailbreak = true; description = "Caching DNS resolver library and mass DNS resolver utility"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dnsrbl" = callPackage @@ -65251,6 +69199,7 @@ self: { homepage = "https://github.com/maxpow4h/dnssd"; description = "DNS service discovery bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {dns_sd = null;}; "doc-review" = callPackage @@ -65277,6 +69226,7 @@ self: { homepage = "https://github.com/j3h/doc-review"; description = "Document review Web application, like http://book.realworldhaskell.org/"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "doccheck" = callPackage @@ -65296,6 +69246,7 @@ self: { homepage = "https://github.com/Fuuzetsu/doccheck"; description = "Checks Haddock comments for pitfalls and version changes"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "docidx" = callPackage @@ -65315,6 +69266,7 @@ self: { homepage = "http://github.com/gimbo/docidx.hs"; description = "Generate an HTML index of installed Haskell packages and their documentation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "docker" = callPackage @@ -65345,36 +69297,39 @@ self: { }) {}; "dockercook" = callPackage - ({ mkDerivation, attoparsec, base, base16-bytestring, bytestring - , conduit, conduit-combinators, conduit-extra, cryptohash - , directory, filepath, hashable, hslogger, HTF, lens, monad-logger - , mtl, optparse-applicative, persistent-sqlite, persistent-template + ({ mkDerivation, aeson, aeson-pretty, attoparsec, base + , base16-bytestring, bytestring, conduit, conduit-combinators + , conduit-extra, containers, cryptohash, directory, filepath + , hashable, hslogger, HTF, http-client, lens, monad-logger, mtl + , optparse-applicative, persistent-sqlite, persistent-template , process, regex-compat, resourcet, retry, stm, streaming-commons , system-filepath, temporary, text, time, transformers, unix , unordered-containers, vector, wreq }: mkDerivation { pname = "dockercook"; - version = "0.4.3.0"; - sha256 = "6c23a3e4090a0de6a0594353c4449cfd79b073dd1c0ac44f006ab4b530e04a3f"; + version = "0.5.0.0"; + sha256 = "fbb9373444c64cc1e16659f4d16edb60f80db4c6254e7e24feca16ad20f7c4fb"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - attoparsec base base16-bytestring bytestring conduit - conduit-combinators conduit-extra cryptohash directory filepath - hashable hslogger lens monad-logger mtl persistent-sqlite - persistent-template process regex-compat resourcet retry stm - streaming-commons system-filepath temporary text time transformers - unix unordered-containers vector wreq + aeson attoparsec base base16-bytestring bytestring conduit + conduit-combinators conduit-extra containers cryptohash directory + filepath hashable hslogger http-client lens monad-logger mtl + persistent-sqlite persistent-template process regex-compat + resourcet retry stm streaming-commons system-filepath temporary + text time transformers unix unordered-containers vector wreq ]; executableHaskellDepends = [ - base directory filepath hslogger optparse-applicative process + aeson-pretty base bytestring directory filepath hslogger + optparse-applicative process text unordered-containers ]; testHaskellDepends = [ base HTF text vector ]; jailbreak = true; homepage = "https://github.com/factisresearch/dockercook"; description = "A build tool for multiple docker image layers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dockerfile" = callPackage @@ -65541,6 +69496,7 @@ self: { homepage = "http://github.com/karun012/doctest-discover"; description = "Easy way to run doctests via cabal"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "doctest-discover-configurator" = callPackage @@ -65567,6 +69523,7 @@ self: { homepage = "http://github.com/relrod/doctest-discover-noaeson"; description = "Easy way to run doctests via cabal (no aeson dependency, uses configurator instead)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "doctest-prop" = callPackage @@ -65707,7 +69664,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "dotenv" = callPackage + "dotenv_0_1_0_9" = callPackage ({ mkDerivation, base, base-compat, hspec, optparse-applicative , parsec, parseerror-eq, process }: @@ -65727,6 +69684,27 @@ self: { homepage = "https://github.com/stackbuilders/dotenv-hs"; description = "Loads environment variables from dotenv files"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "dotenv" = callPackage + ({ mkDerivation, base, base-compat, hspec, megaparsec + , optparse-applicative, process, text + }: + mkDerivation { + pname = "dotenv"; + version = "0.3.0.1"; + sha256 = "b83a38f54c0be717bbc86016517a3f1ac0e1d43e6bf1ac9cb318081e9673bb2c"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base base-compat megaparsec text ]; + executableHaskellDepends = [ + base base-compat megaparsec optparse-applicative process text + ]; + testHaskellDepends = [ base base-compat hspec megaparsec text ]; + homepage = "https://github.com/stackbuilders/dotenv-hs"; + description = "Loads environment variables from dotenv files"; + license = stdenv.lib.licenses.mit; }) {}; "dotfs" = callPackage @@ -65759,6 +69737,7 @@ self: { homepage = "http://github.com/toothbrush/dotfs"; description = "Filesystem to manage and parse dotfiles"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "dotgen" = callPackage @@ -65776,6 +69755,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "dotnet-timespan" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "dotnet-timespan"; + version = "0.0.1.0"; + sha256 = "d8ca8dffbc916ff5139d6f0df4a22c947ab5f996c376f1ab8c2e120789209ac3"; + libraryHaskellDepends = [ base ]; + homepage = "http://github.com/YoEight/dotnet-timespan"; + description = ".NET TimeSpan"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "double-conversion" = callPackage ({ mkDerivation, base, bytestring, ghc-prim, integer-gmp , test-framework, test-framework-quickcheck2, text @@ -65799,10 +69790,8 @@ self: { ({ mkDerivation, base, bytestring }: mkDerivation { pname = "double-metaphone"; - version = "0.0.1"; - sha256 = "7a73926453e670475b350a7a4474fc871efacec42b150cd767c3ea34426be5d1"; - revision = "1"; - editedCabalFile = "bd8a01ddbe3c8ed20556e0f16f3bced93c6867ac51b859bd91ff8c04bf5fddde"; + version = "0.0.2"; + sha256 = "2c8255787a90709b049fc6c10972bfe74b1678e479b0d5fa6ea1de113be43c97"; libraryHaskellDepends = [ base bytestring ]; homepage = "https://github.com/christian-marie/double-metaphone"; description = "Haskell bindings to a C double-metaphone implementation"; @@ -65835,18 +69824,21 @@ self: { ]; description = "Dungeons of Wor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "download" = callPackage - ({ mkDerivation, base, bytestring, feed, tagsoup, xml }: + ({ mkDerivation, base, bytestring, feed, hspec, tagsoup, xml }: mkDerivation { pname = "download"; - version = "0.3.2"; - sha256 = "839f46eae433b824e7013b84cfd253134a718319949447ad2b6cb28411760b5a"; + version = "0.3.2.4"; + sha256 = "f8ef9cca18a4829ab640c6f00ed7e707e29e0ed40bc662dfaa1ef42d7ee358bc"; libraryHaskellDepends = [ base bytestring feed tagsoup xml ]; - homepage = "http://code.haskell.org/~dons/code/download"; + testHaskellDepends = [ base hspec ]; + homepage = "https://github.com/psibi/download"; description = "High-level file download based on URLs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "download-curl" = callPackage @@ -65880,6 +69872,7 @@ self: { homepage = "http://github.com/jaspervdj/download-media-content"; description = "Simple tool to download images from RSS feeds (e.g. Flickr, Picasa)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dozenal" = callPackage @@ -65949,6 +69942,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell example programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-lifted-base" = callPackage @@ -65967,6 +69961,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell common definitions used by other dph-lifted packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-lifted-copy" = callPackage @@ -65984,6 +69979,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell lifted array combinators. (deprecated version)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-lifted-vseg" = callPackage @@ -66002,6 +69998,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell lifted array combinators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-par" = callPackage @@ -66045,6 +70042,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell segmented arrays. (production version)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-prim-seq" = callPackage @@ -66062,6 +70060,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell segmented arrays. (sequential implementation)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-seq" = callPackage @@ -66093,6 +70092,7 @@ self: { testPkgconfigDepends = [ libdpkg ]; description = "libdpkg bindings"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) dpkg; libdpkg = null;}; "drClickOn" = callPackage @@ -66105,6 +70105,7 @@ self: { homepage = "https://github.com/cwi-swat/monadic-frp"; description = "Monadic FRP"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "draw-poker" = callPackage @@ -66161,6 +70162,7 @@ self: { jailbreak = true; description = "Library and program for querying DVB (Dresdner Verkehrsbetriebe AG)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "drifter" = callPackage @@ -66220,6 +70222,7 @@ self: { homepage = "http://github.com/cakoose/dropbox-sdk-haskell"; description = "A library to access the Dropbox HTTP API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dropsolve" = callPackage @@ -66239,6 +70242,7 @@ self: { jailbreak = true; description = "A command line tool for resolving dropbox conflicts. Deprecated! Please use confsolve."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ds-kanren" = callPackage @@ -66253,6 +70257,7 @@ self: { testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; description = "A subset of the miniKanren language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dsh-sql" = callPackage @@ -66298,6 +70303,7 @@ self: { jailbreak = true; description = "DSMC library for rarefied gas dynamics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dsmc-tools" = callPackage @@ -66317,6 +70323,7 @@ self: { jailbreak = true; description = "DSMC toolkit for rarefied gas dynamics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dson" = callPackage @@ -66371,6 +70378,7 @@ self: { homepage = "https://github.com/basvandijk/dstring"; description = "Difference strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dtab" = callPackage @@ -66412,6 +70420,7 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Parse and render DTD files (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dtd-text" = callPackage @@ -66428,6 +70437,7 @@ self: { homepage = "http://github.com/m15k/hs-dtd-text"; description = "Parse and render XML DTDs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dtd-types" = callPackage @@ -66440,6 +70450,7 @@ self: { homepage = "http://projects.haskell.org/dtd/"; description = "Basic types for representing XML DTDs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dtrace" = callPackage @@ -66471,6 +70482,7 @@ self: { jailbreak = true; description = "(Fast) Dynamic Time Warping"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dual-tree_0_2_0_5" = callPackage @@ -66591,6 +70603,7 @@ self: { jailbreak = true; description = "Frontend development build tool"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dvda" = callPackage @@ -66613,6 +70626,7 @@ self: { ]; description = "Efficient automatic differentiation and code generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dvdread" = callPackage @@ -66626,6 +70640,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "A monadic interface to libdvdread"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {dvdread = null;}; "dvi-processing" = callPackage @@ -66775,6 +70790,7 @@ self: { homepage = "https://github.com/adamwalker/dynamic-graph"; description = "Draw and update graphs in real time with OpenGL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dynamic-linker-template" = callPackage @@ -66833,6 +70849,7 @@ self: { ]; description = "Object-oriented programming with duck typing and singleton classes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dynamic-plot" = callPackage @@ -66856,6 +70873,7 @@ self: { homepage = "https://github.com/leftaroundabout/dynamic-plot"; description = "Interactive diagram windows"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dynamic-pp" = callPackage @@ -66877,6 +70895,7 @@ self: { homepage = "https://github.com/emc2/dynamic-pp"; description = "A pretty-print library that employs a dynamic programming algorithm for optimal rendering"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dynamic-state_0_2_0_0" = callPackage @@ -66949,6 +70968,7 @@ self: { ]; description = "your dynamic optimization buddy"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dyre" = callPackage @@ -67019,6 +71039,7 @@ self: { homepage = "http://github.com/sanetracker/easy-api"; description = "Utility code for building HTTP API bindings more quickly"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "easy-bitcoin" = callPackage @@ -67079,6 +71100,7 @@ self: { homepage = "https://github.com/thinkpad20/easyjson"; description = "Haskell JSON library with an emphasis on simplicity, minimal dependencies, and ease of use"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "easyplot" = callPackage @@ -67091,6 +71113,7 @@ self: { homepage = "http://hub.darcs.net/scravy/easyplot"; description = "A tiny plotting library, utilizes gnuplot for plotting"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "easyrender" = callPackage @@ -67106,6 +71129,7 @@ self: { homepage = "http://www.mathstat.dal.ca/~selinger/easyrender/"; description = "User-friendly creation of EPS, PostScript, and PDF files"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ebeats" = callPackage @@ -67137,6 +71161,7 @@ self: { jailbreak = true; description = "Parser combinators & EBNF, BFFs!"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ec2-signature" = callPackage @@ -67173,6 +71198,7 @@ self: { homepage = "https://github.com/singpolyma/ecdsa-haskell"; description = "Basic ECDSA signing implementation"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ecma262" = callPackage @@ -67193,6 +71219,7 @@ self: { homepage = "https://github.com/fabianbergmark/ECMA-262"; description = "A ECMA-262 interpreter library"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ecu" = callPackage @@ -67212,6 +71239,7 @@ self: { jailbreak = true; description = "Tools for automotive ECU development"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {canlib = null;}; "ed25519" = callPackage @@ -67231,6 +71259,7 @@ self: { homepage = "http://thoughtpolice.github.com/hs-ed25519"; description = "Ed25519 cryptographic signatures"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ed25519-donna" = callPackage @@ -67261,6 +71290,7 @@ self: { homepage = "http://chiselapp.com/user/mwm/repository/eddie/"; description = "Command line file filtering with haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ede_0_2_8" = callPackage @@ -67373,6 +71403,7 @@ self: { homepage = "http://www.mathematik.uni-marburg.de/~eden"; description = "Semi-explicit parallel programming library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "edenskel" = callPackage @@ -67384,6 +71415,7 @@ self: { libraryHaskellDepends = [ base edenmodules parallel ]; description = "Semi-explicit parallel programming skeleton library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "edentv" = callPackage @@ -67404,6 +71436,7 @@ self: { homepage = "http://www.mathematik.uni-marburg.de/~eden"; description = "A Tool to Visualize Parallel Functional Program Executions"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "edge" = callPackage @@ -67423,6 +71456,7 @@ self: { homepage = "http://frigidcode.com/code/edge"; description = "Top view space combat arcade game"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "edis" = callPackage @@ -67529,6 +71563,7 @@ self: { ]; description = "Symmetric, stateful edit lenses"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "edit-lenses-demo" = callPackage @@ -67568,6 +71603,7 @@ self: { homepage = "http://code.haskell.org/editline"; description = "Bindings to the editline library (libedit)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "editor-open" = callPackage @@ -67639,6 +71675,7 @@ self: { jailbreak = true; description = "Embeds effect systems into Haskell using parameteric effect monads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "effective-aspects" = callPackage @@ -67661,6 +71698,7 @@ self: { homepage = "http://pleiad.cl/EffectiveAspects"; description = "A monadic embedding of aspect oriented programming"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "effective-aspects-mzv" = callPackage @@ -67683,6 +71721,7 @@ self: { homepage = "http://pleiad.cl/EffectiveAspects"; description = "A monadic embedding of aspect oriented programming, using \"Monads, Zippers and Views\" instead of mtl"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "effects" = callPackage @@ -67729,8 +71768,8 @@ self: { }: mkDerivation { pname = "egison"; - version = "3.5.10"; - sha256 = "fe238837980117e0ac89dfc048e31444889d00c3d3216251ccd3dac3c471a81e"; + version = "3.6.0"; + sha256 = "16ef278a19fdd9bbc7d58fa8864049b17c47f6ad236e020d00927467726833b2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -67763,6 +71802,7 @@ self: { homepage = "https://github.com/xenophobia/Egison-Quote"; description = "A quasi quotes for using Egison expression in Haskell code"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "egison-tutorial" = callPackage @@ -67803,6 +71843,7 @@ self: { homepage = "http://homepage3.nifty.com/salamander/second/projects/ehaskell/index.xhtml"; description = "like eruby, ehaskell is embedded haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ehs" = callPackage @@ -67825,6 +71866,7 @@ self: { homepage = "http://github.com/minpou/ehs/"; description = "Embedded haskell template using quasiquotes"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eibd-client-simple" = callPackage @@ -67844,6 +71886,7 @@ self: { jailbreak = true; description = "EIBd Client"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {eibclient = null;}; "eigen" = callPackage @@ -67863,6 +71906,7 @@ self: { homepage = "https://github.com/osidorkin/haskell-eigen"; description = "Eigen C++ library (linear algebra: matrices, sparse matrices, vectors, numerical solvers)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "either_4_3_2" = callPackage @@ -68204,6 +72248,7 @@ self: { homepage = "https://bitbucket.org/davecturner/ekg-rrd"; description = "Passes ekg statistics to rrdtool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "ekg-statsd" = callPackage @@ -68232,6 +72277,7 @@ self: { testHaskellDepends = [ base tasty tasty-quickcheck ]; description = "easy to remember mnemonic for a high-entropy value"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "elerea" = callPackage @@ -68259,6 +72305,7 @@ self: { executableHaskellDepends = [ base elerea GLFW OpenGL ]; description = "Example applications for Elerea"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "elerea-sdl" = callPackage @@ -68271,6 +72318,7 @@ self: { homepage = "http://github.com/singpolyma/elerea-sdl"; description = "Elerea FRP wrapper for SDL"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "elevator" = callPackage @@ -68310,6 +72358,7 @@ self: { homepage = "http://github.com/crough/elision#readme"; description = "Arrows with holes"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "elm-bridge_0_1_0_0" = callPackage @@ -68787,6 +72836,7 @@ self: { homepage = "https://github.com/cocreature/emacs-keys"; description = "library to parse emacs style keybinding into the modifiers and the chars"; license = stdenv.lib.licenses.isc; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "email" = callPackage @@ -68804,6 +72854,7 @@ self: { jailbreak = true; description = "Sending eMail in Haskell made easy"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "email-header" = callPackage @@ -68826,6 +72877,7 @@ self: { homepage = "http://github.com/knrafto/email-header"; description = "Parsing and rendering of email and MIME headers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "email-postmark" = callPackage @@ -68842,6 +72894,7 @@ self: { jailbreak = true; description = "A simple wrapper to send emails via the api of the service postmark (http://postmarkapp.com/)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "email-validate_2_0_1" = callPackage @@ -68944,6 +72997,7 @@ self: { homepage = "https://github.com/nushio3/embeddock"; description = "Embed the values in scope in the haddock documentation of the module"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "embeddock-example" = callPackage @@ -68956,6 +73010,7 @@ self: { homepage = "https://github.com/nushio3/embeddock-example"; description = "Example of using embeddock"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "embroidery" = callPackage @@ -68975,6 +73030,7 @@ self: { homepage = "https://ludflu@github.com/ludflu/embroidery.git"; description = "support for embroidery formats in haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "emgm" = callPackage @@ -68989,6 +73045,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/EMGM"; description = "Extensible and Modular Generics for the Masses"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "empty" = callPackage @@ -69344,6 +73401,7 @@ self: { homepage = "https://github.com/sboosali/enumerate"; description = "enumerate all the values in a finite type (automatically)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "enumeration" = callPackage @@ -69363,6 +73421,7 @@ self: { homepage = "https://github.com/emc2/enumeration"; description = "A practical API for building recursive enumeration procedures and enumerating datatypes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "enumerator" = callPackage @@ -69415,6 +73474,7 @@ self: { homepage = "https://github.com/liyang/enumfun"; description = "Finitely represented /total/ EnumMaps"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "enummapmap" = callPackage @@ -69437,6 +73497,7 @@ self: { jailbreak = true; description = "Map of maps using Enum types as keys"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "enummapset" = callPackage @@ -69496,19 +73557,20 @@ self: { homepage = "http://github.com/tel/env-parser"; description = "Pull configuration information from the ENV"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "envparse" = callPackage ({ mkDerivation, base, containers, hspec }: mkDerivation { pname = "envparse"; - version = "0.2.2"; - sha256 = "72bbac6a4c6755c6f1f0b68a68475afb71cd6763e8fb90c88411457ff16f4a03"; + version = "0.3.1"; + sha256 = "ea6dc6e6939e5f80d715ec084103c6b3ba55947ba75f22551ed52084830da736"; libraryHaskellDepends = [ base containers ]; testHaskellDepends = [ base containers hspec ]; homepage = "https://supki.github.io/envparse"; description = "Parse environment variables"; - license = stdenv.lib.licenses.bsd2; + license = stdenv.lib.licenses.bsd3; }) {}; "envy" = callPackage @@ -69543,6 +73605,7 @@ self: { homepage = "http://epanet.de/developer/haskell.html"; description = "Haskell binding for EPANET"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "epass" = callPackage @@ -69573,6 +73636,7 @@ self: { homepage = "http://www.dcs.st-and.ac.uk/~eb/epic.php"; description = "Compiler for a simple functional language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "epoll" = callPackage @@ -69587,6 +73651,7 @@ self: { homepage = "https://gitlab.com/twittner/epoll"; description = "epoll bindings"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eprocess" = callPackage @@ -69636,6 +73701,7 @@ self: { homepage = "http://hub.darcs.net/dino/epub-metadata"; description = "Library for parsing epub document metadata"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "epub-tools" = callPackage @@ -69658,6 +73724,7 @@ self: { homepage = "http://hub.darcs.net/dino/epub-tools"; description = "Command line utilities for working with epub files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "epubname" = callPackage @@ -69675,6 +73742,7 @@ self: { homepage = "http://ui3.info/d/proj/epubname.html"; description = "Rename epub ebook files based on meta information"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eq_4_0_3" = callPackage @@ -69841,6 +73909,7 @@ self: { jailbreak = true; description = "DEPRECATED in favor of eros-http"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eros-http" = callPackage @@ -69950,6 +74019,7 @@ self: { homepage = "http://github.com/gcross/error-message"; description = "Composable error messages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "error-util" = callPackage @@ -70054,7 +74124,6 @@ self: { libraryHaskellDepends = [ base safe transformers transformers-compat ]; - jailbreak = true; description = "Simplified error-handling"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -70152,6 +74221,7 @@ self: { homepage = "http://github.com/ekmett/ersatz"; description = "A monad for expressing SAT or QSAT problems using observable sharing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ersatz-toysat" = callPackage @@ -70172,6 +74242,7 @@ self: { homepage = "https://github.com/msakai/ersatz-toysat"; description = "toysat driver as backend for ersatz"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ert" = callPackage @@ -70221,6 +74292,7 @@ self: { homepage = "http://www.killersmurf.com/projects/esotericbot"; description = "Esotericbot is a sophisticated, lightweight IRC bot"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "esqueleto_2_1_2_1" = callPackage @@ -70445,6 +74517,7 @@ self: { jailbreak = true; description = "Tool for managing probability estimation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "estreps" = callPackage @@ -70462,6 +74535,7 @@ self: { homepage = "http://blog.malde.org/"; description = "Repeats from ESTs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "etcd" = callPackage @@ -70496,6 +74570,7 @@ self: { ]; description = "everything breaking the Fairbairn threshold"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ether_0_3_0_0" = callPackage @@ -70589,6 +74664,7 @@ self: { ]; description = "A Haskell version of an Ethereum client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ethereum-merkle-patricia-db" = callPackage @@ -70613,6 +74689,7 @@ self: { ]; description = "A modified Merkle Patricia DB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ethereum-rlp" = callPackage @@ -70693,6 +74770,7 @@ self: { homepage = "http://github.com/tsurucapital/euphoria"; description = "Dynamic network FRP with events and continuous values"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eurofxref" = callPackage @@ -70710,6 +74788,7 @@ self: { jailbreak = true; description = "Free foreign exchange/currency feed from the European Central Bank"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "event_0_1_1" = callPackage @@ -70778,6 +74857,7 @@ self: { libraryHaskellDepends = [ base monads-tf yjtools ]; description = "library for event driven programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "event-handlers" = callPackage @@ -70826,6 +74906,7 @@ self: { homepage = "http://code.haskell.org/~mokus/event-monad"; description = "Event-graph simulation monad transformer"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eventloop" = callPackage @@ -70844,6 +74925,7 @@ self: { homepage = "-"; description = "A different take on an IO system. Based on Amanda's IO loop, this eventloop takes a function that maps input events to output events. It can easily be extended by modules that represent IO devices or join multiple modules together."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eventstore_0_10_0_1" = callPackage @@ -70870,7 +74952,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "eventstore" = callPackage + "eventstore_0_10_0_2" = callPackage ({ mkDerivation, aeson, async, base, bytestring, cereal, containers , network, protobuf, random, stm, tasty, tasty-hunit, text, time , unordered-containers, uuid @@ -70891,6 +74973,32 @@ self: { description = "EventStore TCP Client"; license = stdenv.lib.licenses.bsd3; platforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "eventstore" = callPackage + ({ mkDerivation, aeson, array, async, base, bytestring, cereal + , containers, dns, dotnet-timespan, http-client, network, protobuf + , random, semigroups, stm, tasty, tasty-hunit, text, time + , unordered-containers, uuid + }: + mkDerivation { + pname = "eventstore"; + version = "0.12.0.0"; + sha256 = "c88c65239fd37b4ede7e291ac714384f89aaff6235d65bd41cdbc7421554fda5"; + libraryHaskellDepends = [ + aeson array async base bytestring cereal containers dns + dotnet-timespan http-client network protobuf random semigroups stm + text time unordered-containers uuid + ]; + testHaskellDepends = [ + aeson base dotnet-timespan stm tasty tasty-hunit text time + ]; + doCheck = false; + homepage = "http://github.com/YoEight/eventstore"; + description = "EventStore TCP Client"; + license = stdenv.lib.licenses.bsd3; + platforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "every-bit-counts" = callPackage @@ -70903,6 +75011,7 @@ self: { homepage = "http://research.microsoft.com/en-us/people/dimitris/pearl.pdf"; description = "A functional pearl on encoding and decoding using question-and-answer strategies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ewe" = callPackage @@ -70922,6 +75031,7 @@ self: { homepage = "http://github.com/jfcmacro/ewe"; description = "A language for teaching simple programming languages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ex-pool" = callPackage @@ -71137,7 +75247,6 @@ self: { base HUnit test-framework test-framework-hunit transformers transformers-compat ]; - jailbreak = true; description = "Type classes and monads for unchecked extensible exceptions"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -71361,6 +75470,7 @@ self: { librarySystemDepends = [ exif ]; description = "A Haskell binding to a subset of libexif"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) exif;}; "exinst" = callPackage @@ -71460,6 +75570,7 @@ self: { homepage = "http://github.com/glehel/exists"; description = "Existential datatypes holding evidence of constraints"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "exit-codes" = callPackage @@ -71505,6 +75616,7 @@ self: { homepage = "https://github.com/Bodigrim/exp-pairs"; description = "Linear programming over exponent pairs"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "expand" = callPackage @@ -71519,6 +75631,7 @@ self: { jailbreak = true; description = "Extensible Pandoc"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "expat-enumerator" = callPackage @@ -71536,6 +75649,7 @@ self: { homepage = "http://john-millikin.com/software/expat-enumerator/"; description = "Enumerator-based API for Expat"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "expiring-cache-map" = callPackage @@ -71583,6 +75697,7 @@ self: { homepage = "https://github.com/joelteon/explain"; description = "Show how expressions are parsed"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "explicit-determinant" = callPackage @@ -71679,6 +75794,7 @@ self: { homepage = "http://sebfisch.github.com/explicit-sharing"; description = "Explicit Sharing of Monadic Effects"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "explore" = callPackage @@ -71693,6 +75809,7 @@ self: { homepage = "http://corsis.sourceforge.net/haskell/explore"; description = "Experimental Plot data Reconstructor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "exposed-containers" = callPackage @@ -71714,6 +75831,7 @@ self: { jailbreak = true; description = "A distribution of the 'containers' package, with all modules exposed"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "expression-parser" = callPackage @@ -71741,6 +75859,7 @@ self: { ]; description = "Libraries for processing GHC Core"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "extemp" = callPackage @@ -71764,6 +75883,7 @@ self: { homepage = "http://patch-tag.com/r/salazar/extemp"; description = "automated printing for extemp speakers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "extended-categories" = callPackage @@ -71777,6 +75897,7 @@ self: { homepage = "github.com/ian-mi/extended-categories"; description = "Extended Categories"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "extended-reals" = callPackage @@ -72067,6 +76188,7 @@ self: { homepage = "https://github.com/nikita-volkov/ez-couch"; description = "A high level static library for working with CouchDB"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "faceted" = callPackage @@ -72080,6 +76202,7 @@ self: { homepage = "http://github.com/haskell-faceted/haskell-faceted"; description = "Faceted computation for dynamic information flow security"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "factory" = callPackage @@ -72104,6 +76227,7 @@ self: { homepage = "http://functionalley.eu/Factory/factory.html"; description = "Rational arithmetic in an irrational world"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "factual-api" = callPackage @@ -72122,6 +76246,7 @@ self: { homepage = "https://github.com/rudyl313/factual-haskell-driver"; description = "A driver for the Factual API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fad" = callPackage @@ -72226,6 +76351,7 @@ self: { homepage = "http://github.com/tranma/falling-turnip"; description = "Falling sand game/cellular automata simulation using regular parallel arrays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" ]; }) {}; "fallingblocks" = callPackage @@ -72245,6 +76371,7 @@ self: { homepage = "http://bencode.blogspot.com/2009/03/falling-blocks-tetris-clone-in-haskell.html"; description = "A fun falling blocks game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "family-tree" = callPackage @@ -72263,6 +76390,7 @@ self: { homepage = "https://github.com/Taneb/family-tree"; description = "A family tree library for the Haskell programming language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "farmhash" = callPackage @@ -72276,6 +76404,7 @@ self: { homepage = "https://github.com/abhinav/farmhash"; description = "Fast hash functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "fast-builder" = callPackage @@ -72309,6 +76438,7 @@ self: { homepage = "https://github.com/Bodigrim/fast-digits"; description = "The fast library for integer-to-digits conversion"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "fast-logger_2_2_3" = callPackage @@ -72427,6 +76557,7 @@ self: { homepage = "https://github.com/elaforge/fast-tags"; description = "Fast incremental vi and emacs tags"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fast-tagsoup" = callPackage @@ -72501,6 +76632,7 @@ self: { homepage = "https://github.com/cscherrer/fastbayes"; description = "Bayesian modeling algorithms accelerated for particular model structures"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fastcgi" = callPackage @@ -72553,6 +76685,7 @@ self: { ]; description = "Fast Internet Relay Chat (IRC) library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fault-tree" = callPackage @@ -72565,6 +76698,7 @@ self: { homepage = "http://tomahawkins.org"; description = "A fault tree analysis library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fay_0_21_2_1" = callPackage @@ -72990,6 +77124,7 @@ self: { homepage = "http://www.happstack.com/"; description = "Clientside HTML generation for fay"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fay-jquery_0_6_0_2" = callPackage @@ -73412,6 +77547,7 @@ self: { homepage = "https://github.com/Neki/fcd"; description = "A faster way to navigate directories using the command line"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fckeditor" = callPackage @@ -73425,6 +77561,7 @@ self: { homepage = "http://peteg.org/"; description = "Server-Side Integration for FCKeditor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fclabels_2_0_2" = callPackage @@ -73552,6 +77689,7 @@ self: { homepage = "https://github.com/jkarlson/fdo-trash"; description = "Utilities related to freedesktop Trash standard"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "feature-flags" = callPackage @@ -73738,6 +77876,8 @@ self: { pname = "feed"; version = "0.3.11.1"; sha256 = "ed04d0fc120a4b1b47c7675d395afbb419506431bc6f8e0f2c382c73a4afc983"; + revision = "1"; + editedCabalFile = "c5f129b41daa9931f100efb01cee561e61a04b2118436e10e64141d68edab7fb"; libraryHaskellDepends = [ base old-locale old-time time time-locale-compat utf8-string xml ]; @@ -73767,6 +77907,7 @@ self: { homepage = "http://www.syntaxpolice.org/darcs_repos/feed-cli"; description = "A simple command line interface for creating and updating feeds like RSS"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "feed-collect" = callPackage @@ -73826,6 +77967,7 @@ self: { homepage = "https://github.com/dahlia/feed-translator"; description = "Translate syndication feeds"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "feed2lj" = callPackage @@ -73844,6 +77986,7 @@ self: { ]; description = "(unsupported)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "feed2twitter" = callPackage @@ -73861,6 +78004,7 @@ self: { homepage = "http://github.com/tomlokhorst/feed2twitter"; description = "Send posts from a feed to Twitter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "feldspar-compiler" = callPackage @@ -73888,6 +78032,7 @@ self: { homepage = "http://feldspar.github.com"; description = "Compiler for the Feldspar language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {gcc_s = null;}; "feldspar-language" = callPackage @@ -73913,6 +78058,7 @@ self: { homepage = "http://feldspar.github.com"; description = "A functional embedded language for DSP and parallelism"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "feldspar-signal" = callPackage @@ -73986,6 +78132,7 @@ self: { homepage = "http://fenfire.org/"; description = "Graph-based notetaking system"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {raptor = null;}; "fez-conf" = callPackage @@ -74012,6 +78159,7 @@ self: { executableHaskellDepends = [ base pretty ]; description = "Haskell binding to the FriendFeed API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fficxx" = callPackage @@ -74086,6 +78234,7 @@ self: { homepage = "http://patch-tag.com/r/VasylPasternak/ffmpeg-tutorials"; description = "Tutorials on ffmpeg usage to play video/audio"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fft_0_1_8_2" = callPackage @@ -74256,6 +78405,7 @@ self: { homepage = "http://github.com/dmpots/fibon/wiki"; description = "Tools for running and analyzing Haskell benchmarks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fibonacci" = callPackage @@ -74284,6 +78434,7 @@ self: { homepage = "http://github.com/AstraFIN/fields"; description = "First-class record field combinators with infix record field syntax"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fields-json" = callPackage @@ -74312,6 +78463,7 @@ self: { jailbreak = true; description = "Provides Fieldwise typeclass for operations of fields of records treated as independent components"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fig" = callPackage @@ -74558,6 +78710,7 @@ self: { homepage = "https://github.com/gregwebs/FileLocation.hs"; description = "common functions that show file location information"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "file-modules" = callPackage @@ -74600,6 +78753,7 @@ self: { homepage = "http://lpuppet.banquise.net/"; description = "A Linux-only cache system associating values to files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "filediff" = callPackage @@ -74755,6 +78909,7 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Use system-filepath data types with conduits. (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "filesystem-enumerator" = callPackage @@ -74771,6 +78926,7 @@ self: { homepage = "https://john-millikin.com/software/haskell-filesystem/"; description = "Enumerator-based API for manipulating the filesystem"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "filesystem-trees" = callPackage @@ -74870,6 +79026,7 @@ self: { ]; description = "A file-finding conduit that allows user control over traversals"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fingertree_0_1_0_0" = callPackage @@ -75040,6 +79197,7 @@ self: { homepage = "http://www-users.cs.york.ac.uk/~ndm/firstify/"; description = "Defunctionalisation for Yhc Core"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fishfood" = callPackage @@ -75062,6 +79220,7 @@ self: { homepage = "http://functionalley.eu"; description = "Calculates file-size frequency-distribution"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fit" = callPackage @@ -75070,8 +79229,8 @@ self: { }: mkDerivation { pname = "fit"; - version = "0.5.1"; - sha256 = "ab192e41436054b04b476670748d43ff486fc90c5f80e01397bf51103fdbf278"; + version = "0.5.2"; + sha256 = "2e5ef15c5b4ea60f9861377a133801a3e2c28dcff74fa7aa5f9d8e6b115f3cf7"; libraryHaskellDepends = [ attoparsec base bytestring containers contravariant mtl text ]; @@ -75081,6 +79240,7 @@ self: { ]; description = "FIT file decoder"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fitsio" = callPackage @@ -75094,6 +79254,7 @@ self: { homepage = "http://github.com/esessoms/fitsio"; description = "A library for reading and writing data files in the FITS data format"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) cfitsio;}; "fix-imports" = callPackage @@ -75124,6 +79285,7 @@ self: { libraryHaskellDepends = [ base mmtl ]; description = "Simple fix-expression parser"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fix-symbols-gitit" = callPackage @@ -75135,6 +79297,7 @@ self: { libraryHaskellDepends = [ base containers gitit ]; description = "Gitit plugin: Turn some Haskell symbols into pretty math symbols"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixed_0_2_1" = callPackage @@ -75211,6 +79374,7 @@ self: { jailbreak = true; description = "Binary fixed-point arithmetic"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixed-point-vector" = callPackage @@ -75223,6 +79387,7 @@ self: { jailbreak = true; description = "Unbox instances for the fixed-point package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixed-point-vector-space" = callPackage @@ -75235,6 +79400,7 @@ self: { jailbreak = true; description = "vector-space instances for the fixed-point package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixed-precision" = callPackage @@ -75252,6 +79418,7 @@ self: { homepage = "http://github.com/ekmett/fixed-precision"; description = "Fixed Precision Arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixed-storable-array" = callPackage @@ -75264,6 +79431,7 @@ self: { jailbreak = true; description = "Fixed-size wrapper for StorableArray, providing a Storable instance. Deprecated - use storable-static-array instead."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixed-vector_0_7_0_3" = callPackage @@ -75404,6 +79572,7 @@ self: { homepage = "https://github.com/revnull/fixfile"; description = "File-backed recursive data structures"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixhs" = callPackage @@ -75622,6 +79791,7 @@ self: { jailbreak = true; description = "Flexible wrappers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flexiwrap-smallcheck" = callPackage @@ -75636,6 +79806,7 @@ self: { jailbreak = true; description = "SmallCheck (Serial) instances for flexiwrap"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flickr" = callPackage @@ -75654,6 +79825,7 @@ self: { executableHaskellDepends = [ xhtml ]; description = "Haskell binding to the Flickr API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flippers" = callPackage @@ -75685,6 +79857,7 @@ self: { homepage = "http://www.cs.york.ac.uk/fp/reduceron/"; description = "f-lite compiler, interpreter and libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flo" = callPackage @@ -75734,6 +79907,7 @@ self: { testHaskellDepends = [ base ]; description = "Conversions between floating and integral values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "floatshow" = callPackage @@ -75780,7 +79954,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "flow" = callPackage + "flow_1_0_2" = callPackage ({ mkDerivation, base, doctest, QuickCheck, template-haskell }: mkDerivation { pname = "flow"; @@ -75791,6 +79965,20 @@ self: { homepage = "http://taylor.fausak.me/flow/"; description = "Write more understandable Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "flow" = callPackage + ({ mkDerivation, base, doctest, QuickCheck, template-haskell }: + mkDerivation { + pname = "flow"; + version = "1.0.5"; + sha256 = "942cec5eb0430c9e3b147d75ed9246aff651a55afaee0735de3f3fec91266190"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base doctest QuickCheck template-haskell ]; + homepage = "https://github.com/tfausak/flow#readme"; + description = "Write more understandable Haskell"; + license = stdenv.lib.licenses.mit; }) {}; "flow2dot" = callPackage @@ -75809,6 +79997,7 @@ self: { homepage = "http://adept.linux.kiev.ua:8080/repos/flow2dot"; description = "Library and binary to generate sequence/flow diagrams from plain text source"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flowdock" = callPackage @@ -75866,6 +80055,7 @@ self: { homepage = "https://github.com/gabemc/flowdock-api"; description = "API integration with Flowdock"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flowdock-rest" = callPackage @@ -75895,6 +80085,7 @@ self: { homepage = "https://github.com/futurice/haskell-flowdock-rest#readme"; description = "Flowdock REST API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flower" = callPackage @@ -75914,6 +80105,7 @@ self: { homepage = "http://biohaskell.org/Applications/Flower"; description = "Analyze 454 flowgrams (.SFF files)"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flowlocks-framework" = callPackage @@ -75926,6 +80118,7 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Generalized Flow Locks Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flowsim" = callPackage @@ -75945,6 +80138,7 @@ self: { homepage = "http://biohaskell.org/Applications/FlowSim"; description = "Simulate 454 pyrosequencing"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fltkhs" = callPackage @@ -75953,8 +80147,8 @@ self: { }: mkDerivation { pname = "fltkhs"; - version = "0.4.0.6"; - sha256 = "f449467e3094b719da3209b14330e7e57da5ced3c8bca8dd02c1cbac6f635684"; + version = "0.4.0.7"; + sha256 = "69c20beaab65c6fe76af6c1087b494891a7eff22ce719f2296f367c8ce4b0330"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring ]; @@ -75980,6 +80174,7 @@ self: { homepage = "http://github.com/deech/fltkhs-demos"; description = "FLTKHS demos. Please scroll to the bottom for more information."; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fltkhs-fluid-demos" = callPackage @@ -75994,6 +80189,7 @@ self: { homepage = "http://github.com/deech/fltkhs-fluid-demos"; description = "Fltkhs Fluid Demos"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fltkhs-fluid-examples" = callPackage @@ -76022,6 +80218,7 @@ self: { homepage = "http://github.com/deech/fltkhs-hello-world"; description = "Fltkhs template project"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fluent-logger" = callPackage @@ -76076,6 +80273,7 @@ self: { homepage = "https://github.com/MostAwesomeDude/hsfluidsynth"; description = "Haskell bindings to FluidSynth"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) fluidsynth;}; "fmark" = callPackage @@ -76131,7 +80329,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "fn" = callPackage + "fn_0_2_0_2" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, directory , filepath, hspec, http-types, text, unordered-containers, wai , wai-extra @@ -76151,17 +80349,18 @@ self: { homepage = "http://github.com/dbp/fn#readme"; description = "A functional web framework"; license = stdenv.lib.licenses.isc; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "fn_0_3_0_0" = callPackage + "fn" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, directory , filepath, hspec, http-types, text, unordered-containers, wai , wai-extra }: mkDerivation { pname = "fn"; - version = "0.3.0.0"; - sha256 = "f617f7dbd3ee30bdfdce1bcdd7637bfcaa276616c3958f15c84c58dc63b21ee5"; + version = "0.3.0.1"; + sha256 = "72cfbb697e52324f092a4436468f8f63dc063eeb6edbd4885a05d604af62d4bd"; libraryHaskellDepends = [ base blaze-builder bytestring directory filepath http-types text unordered-containers wai wai-extra @@ -76170,10 +80369,9 @@ self: { base directory filepath hspec http-types text unordered-containers wai wai-extra ]; - homepage = "http://github.com/dbp/fn#readme"; + homepage = "http://github.com/positiondev/fn#readme"; description = "A functional web framework"; license = stdenv.lib.licenses.isc; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fn-extra_0_2_0_0" = callPackage @@ -76194,7 +80392,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "fn-extra" = callPackage + "fn-extra_0_2_0_1" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, either, fn, heist , http-types, lens, mtl, text, wai, wai-util, xmlhtml }: @@ -76209,26 +80407,26 @@ self: { homepage = "http://github.com/dbp/fn#readme"; description = "Extras for Fn, a functional web framework"; license = stdenv.lib.licenses.isc; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "fn-extra_0_3_0_0" = callPackage + "fn-extra" = callPackage ({ mkDerivation, base, blaze-builder, bytestring , digestive-functors, directory, either, fn, heist, http-types , lens, mtl, resourcet, text, wai, wai-extra, wai-util, xmlhtml }: mkDerivation { pname = "fn-extra"; - version = "0.3.0.0"; - sha256 = "fbbc710d612c5fe0780e87a88a9aa70ad60208d4b2b8bdd42f7ecb8f0bfabb6b"; + version = "0.3.0.1"; + sha256 = "5aba71b4edc9b8550514d6d1ac2ce51e8f0959dd68f5d12909fb05e8a6fff207"; libraryHaskellDepends = [ base blaze-builder bytestring digestive-functors directory either fn heist http-types lens mtl resourcet text wai wai-extra wai-util xmlhtml ]; - homepage = "http://github.com/dbp/fn#readme"; + homepage = "http://github.com/positiondev/fn#readme"; description = "Extras for Fn, a functional web framework"; license = stdenv.lib.licenses.isc; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "focus_0_1_3" = callPackage @@ -76272,6 +80470,7 @@ self: { homepage = "https://github.com/debug-ito/fold-debounce"; description = "Fold multiple events that happen in a given period of time"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "fold-debounce-conduit" = callPackage @@ -76293,6 +80492,7 @@ self: { homepage = "https://github.com/debug-ito/fold-debounce-conduit"; description = "Regulate input traffic from conduit Source with Control.FoldDebounce"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "foldl_1_0_7" = callPackage @@ -76451,7 +80651,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "foldl" = callPackage + "foldl_1_1_5" = callPackage ({ mkDerivation, base, bytestring, comonad, containers, mwc-random , primitive, profunctors, text, transformers, vector }: @@ -76465,6 +80665,23 @@ self: { ]; description = "Composable, streaming, and efficient left folds"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "foldl" = callPackage + ({ mkDerivation, base, bytestring, comonad, containers, mwc-random + , primitive, profunctors, text, transformers, vector + }: + mkDerivation { + pname = "foldl"; + version = "1.1.6"; + sha256 = "aac488a29798c24f7a46bb81ecee4ec7d798ad8b6934ea17262296079df57766"; + libraryHaskellDepends = [ + base bytestring comonad containers mwc-random primitive profunctors + text transformers vector + ]; + description = "Composable, streaming, and efficient left folds"; + license = stdenv.lib.licenses.bsd3; }) {}; "foldl-incremental" = callPackage @@ -76486,6 +80703,7 @@ self: { homepage = "https://github.com/tonyday567/foldl-incremental"; description = "incremental folds"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "foldl-transduce" = callPackage @@ -76555,6 +80773,7 @@ self: { homepage = "http://github.com/ekmett/folds"; description = "Beautiful Folding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "folds-common" = callPackage @@ -76568,6 +80787,7 @@ self: { testHaskellDepends = [ base containers tasty tasty-quickcheck ]; description = "A playground of common folds for folds"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "follower" = callPackage @@ -76587,6 +80807,7 @@ self: { homepage = "http://rebworks.net/projects/follower/"; description = "Follow Tweets anonymously"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "foma" = callPackage @@ -76600,6 +80821,7 @@ self: { homepage = "http://github.com/joom/foma.hs"; description = "Simple Haskell bindings for Foma"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {foma = null;}; "font-opengl-basic4x6" = callPackage @@ -76615,6 +80837,7 @@ self: { jailbreak = true; description = "Basic4x6 font for OpenGL"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "foo" = callPackage @@ -76631,6 +80854,7 @@ self: { homepage = "http://sourceforge.net/projects/fooengine/?abmode=1"; description = "Paper soccer, an OpenGL game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "for-free" = callPackage @@ -76648,6 +80872,7 @@ self: { jailbreak = true; description = "Functor, Monad, MonadPlus, etc for free"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "forbidden-fruit" = callPackage @@ -76670,6 +80895,7 @@ self: { homepage = "http://github.com/minpou/forbidden-fruit"; description = "A library accelerates imperative style programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "force-layout_0_3_0_8" = callPackage @@ -76785,6 +81011,7 @@ self: { executableHaskellDepends = [ base process transformers ]; description = "Run a command on files with magic substituion support (sequencing and regexp)"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "forecast-io" = callPackage @@ -76913,6 +81140,7 @@ self: { jailbreak = true; description = "A statically typed, functional programming language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "format" = callPackage @@ -76927,6 +81155,7 @@ self: { homepage = "https://github.com/bytbox/hs-format"; description = "Rendering from and scanning to format strings"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "format-status" = callPackage @@ -76945,6 +81174,7 @@ self: { jailbreak = true; description = "A utility for writing the date to dzen2"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "formattable" = callPackage @@ -77063,6 +81293,7 @@ self: { homepage = "http://texodus.github.com/forml"; description = "A statically typed, functional programming language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "formlets" = callPackage @@ -77081,6 +81312,7 @@ self: { homepage = "http://github.com/chriseidhof/formlets/tree/master"; description = "Formlets implemented in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "formlets-hsp" = callPackage @@ -77097,6 +81329,7 @@ self: { libraryToolDepends = [ trhsx ]; description = "HSP support for Formlets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "formura" = callPackage @@ -77131,6 +81364,7 @@ self: { jailbreak = true; description = "A simple eDSL for generating arrayForth code"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "foscam-directory" = callPackage @@ -77168,6 +81402,7 @@ self: { testHaskellDepends = [ base directory doctest filepath parsec QuickCheck template-haskell ]; + jailbreak = true; homepage = "https://github.com/tonymorris/foscam-filename"; description = "Foscam File format"; license = stdenv.lib.licenses.bsd3; @@ -77195,9 +81430,11 @@ self: { testHaskellDepends = [ base directory doctest filepath QuickCheck template-haskell ]; + jailbreak = true; homepage = "https://github.com/tonymorris/foscam-sort"; description = "Foscam File format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fountain" = callPackage @@ -77285,6 +81522,7 @@ self: { homepage = "https://www.fpcomplete.com/page/api"; description = "Simple interface to the FP Complete IDE API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fpipe" = callPackage @@ -77331,6 +81569,7 @@ self: { ]; description = "Example implementations for FPNLA library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fptest" = callPackage @@ -77426,6 +81665,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Frag"; description = "A 3-D First Person Shooter Game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "frame" = callPackage @@ -77474,6 +81714,7 @@ self: { libraryHaskellDepends = [ base ]; description = "A package for configuring and building Haskell software"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free_4_9" = callPackage @@ -77628,6 +81869,7 @@ self: { homepage = "https://github.com/fumieval/free-game"; description = "Create games for free"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-http" = callPackage @@ -77661,6 +81903,7 @@ self: { jailbreak = true; description = "Operational Applicative, Alternative, Monad and MonadPlus from free types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-theorems" = callPackage @@ -77676,6 +81919,7 @@ self: { ]; description = "Automatic generation of free theorems"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-theorems-counterexamples" = callPackage @@ -77694,6 +81938,7 @@ self: { executableHaskellDepends = [ cgi free-theorems utf8-string xhtml ]; description = "Automatically Generating Counterexamples to Naive Free Theorems"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-theorems-seq" = callPackage @@ -77712,6 +81957,7 @@ self: { jailbreak = true; description = "Taming Selective Strictness"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-theorems-seq-webui" = callPackage @@ -77730,6 +81976,7 @@ self: { ]; description = "Taming Selective Strictness"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-theorems-webui" = callPackage @@ -77748,6 +81995,7 @@ self: { ]; description = "CGI-based web interface for the free-theorems package"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-vl" = callPackage @@ -77787,6 +82035,7 @@ self: { homepage = "http://github.com/anttisalonen/freekick2"; description = "A soccer game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "freenect_1_2" = callPackage @@ -77820,6 +82069,7 @@ self: { homepage = "https://github.com/chrisdone/freenect"; description = "Interface to the Kinect device"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) freenect; freenect_sync = null; libfreenect = null;}; @@ -77841,6 +82091,7 @@ self: { homepage = "https://gitlab.com/cpp.cabrera/freer"; description = "Implementation of the Freer Monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "freesect" = callPackage @@ -77860,6 +82111,7 @@ self: { homepage = "http://fremissant.net/freesect"; description = "A Haskell syntax extension for generalised sections"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "freesound" = callPackage @@ -77882,6 +82134,7 @@ self: { homepage = "https://github.com/kaoskorobase/freesound"; description = "Access the Freesound Project database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "freetype-simple" = callPackage @@ -77977,6 +82230,7 @@ self: { homepage = "https://github.com/TomMD/friday-juicypixels"; description = "Converts between the Friday and JuicyPixels image types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "friday-scale-dct" = callPackage @@ -78041,8 +82295,8 @@ self: { ({ mkDerivation, base, directory }: mkDerivation { pname = "frown"; - version = "0.6.2.2"; - sha256 = "d061880b6b3fca4f2a5c054f5669d9c0747139386c47ccf57db4d5521c02c447"; + version = "0.6.2.3"; + sha256 = "fcca75244343a976a397f7d50687a80d41192e9eaa47d77799d11892f5fe400c"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base directory ]; @@ -78060,6 +82314,7 @@ self: { homepage = "http://github.com/frp-arduino/frp-arduino"; description = "Arduino programming without the hassle of C"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "frpnow" = callPackage @@ -78087,6 +82342,7 @@ self: { homepage = "https://github.com/atzeus/FRPNow"; description = "Program awesome stuff with Gloss and frpnow!"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "frpnow-gtk" = callPackage @@ -78103,6 +82359,7 @@ self: { homepage = "https://github.com/atzeus/FRPNow"; description = "Program GUIs with GTK and frpnow!"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "frquotes" = callPackage @@ -78129,6 +82386,7 @@ self: { homepage = "http://github.com/nkpart/fs-events"; description = "A haskell binding to the FSEvents API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fsharp" = callPackage @@ -78156,6 +82414,7 @@ self: { homepage = "http://projects.haskell.org/fsmActions/"; description = "Finite state machines and FSM actions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fsnotify_0_1_0_3" = callPackage @@ -78273,6 +82532,7 @@ self: { jailbreak = true; description = "A thin layer over USB to communicate with FTDI chips"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ftp-conduit" = callPackage @@ -78291,6 +82551,7 @@ self: { homepage = "https://github.com/litherum/ftp-conduit"; description = "FTP client package with conduit interface based off http-conduit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ftphs" = callPackage @@ -78339,6 +82600,7 @@ self: { jailbreak = true; description = "Shell interface to the FreeTheorems library"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fugue" = callPackage @@ -78362,6 +82624,7 @@ self: { homepage = "http://www.agusa.i.is.nagoya-u.ac.jp/person/sydney/full-sessions.html"; description = "a monad for protocol-typed network programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "full-text-search" = callPackage @@ -78382,6 +82645,7 @@ self: { jailbreak = true; description = "In-memory full text search engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fullstop" = callPackage @@ -78403,6 +82667,7 @@ self: { homepage = "http://hub.darcs.net/kowey/fullstop"; description = "Simple sentence segmenter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "funbot" = callPackage @@ -78432,6 +82697,7 @@ self: { homepage = "https://notabug.org/fr33domlover/funbot"; description = "IRC bot for fun, learning, creativity and collaboration"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "funbot-client" = callPackage @@ -78451,6 +82717,7 @@ self: { homepage = "https://notabug.org/fr33domlover/funbot-client/"; description = "Report events to FunBot over a JSON/HTTP API"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "funbot-ext-events" = callPackage @@ -78483,6 +82750,7 @@ self: { homepage = "https://notabug.org/fr33domlover/funbot-git-hook/"; description = "Git hook which sends events to FunBot"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "funcmp" = callPackage @@ -78530,6 +82798,7 @@ self: { libraryHaskellDepends = [ base data-type ]; description = "Combining functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "function-instances-algebra" = callPackage @@ -78555,6 +82824,7 @@ self: { jailbreak = true; description = "Combinators that allow for a more functional/monadic style of Arrow programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "functional-kmp" = callPackage @@ -78642,6 +82912,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Data.FunctorM (compatibility package)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "functors" = callPackage @@ -78673,6 +82944,7 @@ self: { homepage = "http://github.com/nathanwiegand/funion"; description = "A unioning file-system using HFuse"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "funpat" = callPackage @@ -78708,6 +82980,7 @@ self: { homepage = "http://github.com/dbueno/funsat"; description = "A modern DPLL-style SAT solver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fusion" = callPackage @@ -78749,6 +83022,7 @@ self: { homepage = "http://hackage.haskell.org/cgi-bin/hackage-scripts/package/future"; description = "Supposed to mimics and enhance proposed C++ \"future\" features"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "future-resource" = callPackage @@ -78830,6 +83104,7 @@ self: { ]; description = "A 'ten past six' style clock"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fwgl" = callPackage @@ -78847,6 +83122,7 @@ self: { homepage = "https://github.com/ziocroc/FWGL"; description = "Game engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "fwgl-glfw" = callPackage @@ -78864,6 +83140,7 @@ self: { homepage = "https://github.com/ziocroc/FWGL"; description = "FWGL GLFW backend"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-linux" ]; }) {}; "fwgl-javascript" = callPackage @@ -78895,6 +83172,7 @@ self: { executableHaskellDepends = [ base HTTP json ]; description = "Generate Gentoo ebuilds from NodeJS/npm packages"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gact" = callPackage @@ -78912,6 +83190,7 @@ self: { ]; description = "General Alignment Clustering Tool"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "game-of-life" = callPackage @@ -78963,6 +83242,7 @@ self: { executableHaskellDepends = [ base cairo containers glib gtk time ]; description = "Game clock that shows two analog clock faces"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gamma" = callPackage @@ -79033,6 +83313,7 @@ self: { homepage = "http://www.daneel0yaitskov.000space.com"; description = "planar graph embedding into a plane"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gc" = callPackage @@ -79067,6 +83348,7 @@ self: { homepage = "https://github.com/yihuang/gc-monitoring-wai"; description = "a wai application to show GHC.GCStats"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gconf" = callPackage @@ -79128,6 +83410,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/InstantGenerics"; description = "Generic diff for the instant-generics library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gdiff-th" = callPackage @@ -79148,6 +83431,7 @@ self: { homepage = "https://github.com/jfischoff/gdiff-th"; description = "Generate gdiff GADTs and Instances"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gdo" = callPackage @@ -79181,6 +83465,7 @@ self: { homepage = "http://code.mathr.co.uk/gearbox"; description = "zooming rotating fractal gears graphics demo"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "geek" = callPackage @@ -79202,6 +83487,7 @@ self: { homepage = "http://github.com/nfjinjing/geek"; description = "Geek blog engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "geek-server" = callPackage @@ -79225,6 +83511,7 @@ self: { homepage = "http://github.com/nfjinjing/geek"; description = "Geek blog engine server"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gelatin" = callPackage @@ -79248,6 +83535,7 @@ self: { ]; description = "An experimental real time renderer"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gemstone" = callPackage @@ -79267,6 +83555,7 @@ self: { homepage = "http://corbinsimpson.com/"; description = "A simple library of helpers for SDL+GL games"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gencheck" = callPackage @@ -79284,6 +83573,7 @@ self: { homepage = "http://github.com/JacquesCarette/GenCheck"; description = "A testing framework inspired by QuickCheck and SmallCheck"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gender" = callPackage @@ -79300,6 +83590,7 @@ self: { homepage = "https://github.com/womfoo/gender"; description = "Identify a persons gender by their first name"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "genders" = callPackage @@ -79315,6 +83606,7 @@ self: { testHaskellDepends = [ base bytestring hspec network vector ]; description = "Bindings to libgenders"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {genders = null;}; "general-prelude" = callPackage @@ -79329,6 +83621,7 @@ self: { ]; description = "Prelude replacement using generalized type classes where possible"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "generator" = callPackage @@ -79354,6 +83647,7 @@ self: { homepage = "http://liamoc.net/pdf/Generator.pdf"; description = "Actually useful monadic random value generators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "generic-accessors" = callPackage @@ -79372,6 +83666,7 @@ self: { ]; description = "stringly-named getters for generic data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "generic-aeson_0_2_0_2" = callPackage @@ -79532,6 +83827,7 @@ self: { ]; description = "Automatically convert Generic instances to and from church representations"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "generic-deepseq" = callPackage @@ -79676,6 +83972,7 @@ self: { jailbreak = true; description = "Generic implementation of Storable"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "generic-tree" = callPackage @@ -79713,6 +84010,7 @@ self: { ]; description = "Marshalling Haskell values to/from XML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "generic-xmlpickler_0_1_0_0" = callPackage @@ -79915,6 +84213,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "generics-sop-lens" = callPackage + ({ mkDerivation, base, generics-sop, lens }: + mkDerivation { + pname = "generics-sop-lens"; + version = "0.1.1.0"; + sha256 = "77dad1fc8dc9a9e7bd049a46ea4917b5d6e6b1d22a7194f67965126717cfd360"; + libraryHaskellDepends = [ base generics-sop lens ]; + homepage = "https://github.com/phadej/generics-sop-lens#readme"; + description = "Lenses for types in generics-sop"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "genericserialize" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -79924,6 +84234,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Serialization library using Data.Generics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "genetics" = callPackage @@ -79937,6 +84248,7 @@ self: { executableHaskellDepends = [ base random-fu ]; description = "A Genetic Algorithm library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "geni-gui" = callPackage @@ -79959,6 +84271,7 @@ self: { homepage = "http://projects.haskell.org/GenI"; description = "GenI graphical user interface"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "geni-util" = callPackage @@ -79983,6 +84296,7 @@ self: { homepage = "http://kowey.github.io/GenI"; description = "Companion tools for use with the GenI surface realiser"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "geniconvert" = callPackage @@ -80003,6 +84317,7 @@ self: { homepage = "http://wiki.loria.fr/wiki/GenI"; description = "Conversion utility for the GenI generator"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "genifunctors" = callPackage @@ -80075,6 +84390,7 @@ self: { jailbreak = true; description = "Simple HTTP server for GenI results"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "genprog" = callPackage @@ -80125,6 +84441,7 @@ self: { homepage = "https://github.com/markenwerk/haskell-geo-resolver/"; description = "Performs geo location lookups and parses the results"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "geo-uk" = callPackage @@ -80230,6 +84547,7 @@ self: { ]; description = "Pure haskell interface to MaxMind GeoIP database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "geojson" = callPackage @@ -80239,8 +84557,8 @@ self: { }: mkDerivation { pname = "geojson"; - version = "1.3.0"; - sha256 = "1adba5e0bcfc4efad8ed9742279d78cc85d45be845257dd64999f66a872dd9a1"; + version = "1.3.1"; + sha256 = "b4f6624c79d7f1ba66519b3711c2f67b682c6c7b126fb7b4ccf87edd4c7f9661"; libraryHaskellDepends = [ aeson base lens semigroups text transformers validation vector ]; @@ -80252,6 +84570,7 @@ self: { homepage = "https://github.com/domdere/hs-geojson"; description = "A thin GeoJSON Layer above the aeson library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "geom2d" = callPackage @@ -80265,6 +84584,7 @@ self: { jailbreak = true; description = "package for geometry in euklidean 2d space"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-linux" ]; }) {}; "getemx" = callPackage @@ -80284,6 +84604,7 @@ self: { homepage = "http://bitbucket.org/kenko/getemx"; description = "Fetch from emusic using .emx files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "getflag" = callPackage @@ -80295,6 +84616,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Command-line parser"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "getopt-generics_0_10_0_1" = callPackage @@ -80400,6 +84722,7 @@ self: { homepage = "http://a319-101.ipm.edu.mo/~wke/ggts/impl/"; description = "A type checker and runtime system of rCOS/g (impl. of ggts-FCS)."; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-core" = callPackage @@ -80483,6 +84806,7 @@ self: { jailbreak = true; description = "Explicitly prevent sharing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-events" = callPackage @@ -80550,6 +84874,7 @@ self: { ]; description = "Library and tool for parsing .eventlog files from parallel GHC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-exactprint" = callPackage @@ -80571,6 +84896,7 @@ self: { ]; description = "ExactPrint for GHC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ghc-gc-tune" = callPackage @@ -80956,6 +85282,7 @@ self: { jailbreak = true; description = "Simple utility to fix BROKEN package dependencies for cabal-install"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-pkg-lib" = callPackage @@ -81090,6 +85417,7 @@ self: { homepage = "http://github.com/nominolo/ghc-syb"; description = "Data and Typeable instances for the GHC API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-syb-utils_0_2_2" = callPackage @@ -81267,6 +85595,7 @@ self: { homepage = "http://felsin9.de/nnis/ghc-vis"; description = "Live visualization of data structures in GHCi"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ghci-diagrams" = callPackage @@ -81279,6 +85608,7 @@ self: { jailbreak = true; description = "Display simple diagrams from ghci"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghci-haskeline" = callPackage @@ -81299,6 +85629,7 @@ self: { homepage = "http://code.haskell.org/~judah/ghci-haskeline"; description = "An implementation of ghci using the Haskeline line-input library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghci-lib" = callPackage @@ -81440,7 +85771,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ghcid" = callPackage + "ghcid_0_5" = callPackage ({ mkDerivation, ansi-terminal, base, cmdargs, containers , directory, extra, filepath, fsnotify, process, tasty, tasty-hunit , terminal-size, time @@ -81468,9 +85799,10 @@ self: { homepage = "https://github.com/ndmitchell/ghcid#readme"; description = "GHCi based bare bones IDE"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ghcid_0_5_1" = callPackage + "ghcid" = callPackage ({ mkDerivation, ansi-terminal, base, cmdargs, containers , directory, extra, filepath, fsnotify, process, tasty, tasty-hunit , terminal-size, time @@ -81492,10 +85824,10 @@ self: { ansi-terminal base cmdargs containers directory extra filepath fsnotify process tasty tasty-hunit terminal-size time ]; + doCheck = false; homepage = "https://github.com/ndmitchell/ghcid#readme"; description = "GHCi based bare bones IDE"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghcjs-codemirror" = callPackage @@ -81522,6 +85854,7 @@ self: { ]; description = "DOM library that supports both GHCJS and WebKitGTK"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ghcjs-dom-hello" = callPackage @@ -81536,6 +85869,7 @@ self: { homepage = "https://github.com/ghcjs/ghcjs-dom-hello"; description = "GHCJS DOM Hello World, an example package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ghcjs-websockets" = callPackage @@ -81579,6 +85913,7 @@ self: { homepage = "http://github.com/shapr/ghclive/"; description = "Interactive Haskell interpreter in a browser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghczdecode" = callPackage @@ -81616,6 +85951,7 @@ self: { ]; description = "Trivial routines for inspecting git repositories"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gi-atk" = callPackage @@ -81634,6 +85970,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Atk bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-linux" ]; }) {inherit (pkgs) atk;}; "gi-cairo" = callPackage @@ -81651,6 +85988,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "cairo bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {cairo-gobject = null;}; "gi-gdk" = callPackage @@ -81670,6 +86008,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Gdk bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {gdk3 = null;}; "gi-gdkpixbuf" = callPackage @@ -81688,6 +86027,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GdkPixbuf bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-linux" ]; }) {inherit (pkgs) gdk_pixbuf;}; "gi-gio" = callPackage @@ -81706,6 +86046,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Gio bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {inherit (pkgs) glib;}; "gi-girepository" = callPackage @@ -81725,6 +86066,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GIRepository bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-linux" ]; }) {inherit (pkgs) gobjectIntrospection;}; "gi-glib" = callPackage @@ -81742,6 +86084,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GLib bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {inherit (pkgs) glib;}; "gi-gobject" = callPackage @@ -81760,6 +86103,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GObject bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {inherit (pkgs) glib;}; "gi-gtk" = callPackage @@ -81780,6 +86124,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Gtk bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {gtk3 = pkgs.gnome2.gtk;}; "gi-javascriptcore" = callPackage @@ -81797,6 +86142,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "JavaScriptCore bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {javascriptcoregtk = null;}; "gi-notify" = callPackage @@ -81816,6 +86162,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Notify bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-linux" ]; }) {inherit (pkgs) gdk_pixbuf;}; "gi-pango" = callPackage @@ -81834,6 +86181,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Pango bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-linux" ]; }) {inherit (pkgs.gnome) pango;}; "gi-poppler" = callPackage @@ -81852,6 +86200,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Poppler bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) poppler;}; "gi-soup" = callPackage @@ -81870,6 +86219,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Soup bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-linux" ]; }) {inherit (pkgs.gnome) libsoup;}; "gi-vte" = callPackage @@ -81889,6 +86239,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Vte bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) vte;}; "gi-webkit" = callPackage @@ -81911,6 +86262,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "WebKit bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) webkit;}; "gi-webkit2" = callPackage @@ -81931,6 +86283,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "WebKit2 bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {webkit2gtk = null;}; "gi-webkit2webextension" = callPackage @@ -81950,6 +86303,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "WebKit2WebExtension bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {webkit2gtk-web-extension = null;}; "gimlh" = callPackage @@ -81971,8 +86325,8 @@ self: { }: mkDerivation { pname = "ginger"; - version = "0.1.5.0"; - sha256 = "3bce9121a6a351288878839c4dc189dca3e178e89ebe2c9b717bdb54808c361a"; + version = "0.1.7.0"; + sha256 = "07acb34e888171d765487e559d2e6bfa018ad0e040c06d3fc66b7f5903b32b16"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -82198,6 +86552,33 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "giphy-api" = callPackage + ({ mkDerivation, aeson, base, basic-prelude, bytestring, containers + , directory, either, hspec, lens, microlens, microlens-th, mtl + , network-uri, optparse-applicative, servant, servant-client, text + }: + mkDerivation { + pname = "giphy-api"; + version = "0.1.0.0"; + sha256 = "b854ab4ffc977bf54a8b7c45b23799a3d81747394c4c4c3d93f32e9242653dd6"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base containers either microlens microlens-th mtl network-uri + servant servant-client text + ]; + executableHaskellDepends = [ + base lens network-uri optparse-applicative text + ]; + testHaskellDepends = [ + aeson base basic-prelude bytestring containers directory hspec lens + network-uri text + ]; + homepage = "http://github.com/passy/giphy-api#readme"; + description = "Giphy HTTP API wrapper and CLI search tool"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "gist" = callPackage ({ mkDerivation, aeson, base, bytestring, conduit, http-conduit , text @@ -82215,6 +86596,7 @@ self: { homepage = "http://github.com/simonmichael/gist"; description = "A reliable command-line client for gist.github.com"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git-all" = callPackage @@ -82234,6 +86616,7 @@ self: { homepage = "https://github.com/jwiegley/git-all"; description = "Determine which Git repositories need actions to be taken"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git-annex_5_20150727" = callPackage @@ -82297,6 +86680,7 @@ self: { homepage = "http://git-annex.branchable.com/"; description = "manage files with git, without checking their contents into git"; license = stdenv.lib.licenses.gpl3; + platforms = [ "i686-linux" "x86_64-linux" ]; hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ simons ]; }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git; @@ -82363,6 +86747,7 @@ self: { homepage = "http://git-annex.branchable.com/"; description = "manage files with git, without checking their contents into git"; license = stdenv.lib.licenses.gpl3; + platforms = [ "i686-linux" "x86_64-linux" ]; hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ simons ]; }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git; @@ -82429,6 +86814,7 @@ self: { homepage = "http://git-annex.branchable.com/"; description = "manage files with git, without checking their contents into git"; license = stdenv.lib.licenses.gpl3; + platforms = [ "i686-linux" "x86_64-linux" ]; hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ simons ]; }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git; @@ -82441,25 +86827,25 @@ self: { , bloomfilter, bup, byteable, bytestring, case-insensitive , clientsession, concurrent-output, conduit, conduit-extra , containers, crypto-api, cryptonite, curl, data-default, DAV, dbus - , directory, dlist, dns, edit-distance, esqueleto, exceptions - , fdo-notify, feed, filepath, git, gnupg, gnutls, hinotify - , hslogger, http-client, http-conduit, http-types, IfElse, json - , lsof, magic, MissingH, monad-control, monad-logger, mtl, network - , network-info, network-multicast, network-protocol-xmpp - , network-uri, old-locale, openssh, optparse-applicative - , path-pieces, perl, persistent, persistent-sqlite - , persistent-template, process, QuickCheck, random, regex-tdfa - , resourcet, rsync, SafeSemaphore, sandi, securemem, shakespeare - , stm, tasty, tasty-hunit, tasty-quickcheck, tasty-rerun - , template-haskell, text, time, torrent, transformers, unix - , unix-compat, utf8-string, uuid, wai, wai-extra, warp, warp-tls - , wget, which, xml-types, yesod, yesod-core, yesod-default - , yesod-form, yesod-static + , directory, disk-free-space, dlist, dns, edit-distance, esqueleto + , exceptions, fdo-notify, feed, filepath, git, gnupg, gnutls + , hinotify, hslogger, http-client, http-conduit, http-types, IfElse + , json, lsof, magic, MissingH, monad-control, monad-logger + , mountpoints, mtl, network, network-info, network-multicast + , network-protocol-xmpp, network-uri, old-locale, openssh + , optparse-applicative, path-pieces, perl, persistent + , persistent-sqlite, persistent-template, process, QuickCheck + , random, regex-tdfa, resourcet, rsync, SafeSemaphore, sandi + , securemem, shakespeare, stm, tasty, tasty-hunit, tasty-quickcheck + , tasty-rerun, template-haskell, text, time, torrent, transformers + , unix, unix-compat, utf8-string, uuid, wai, wai-extra, warp + , warp-tls, wget, which, xml-types, yesod, yesod-core + , yesod-default, yesod-form, yesod-static }: mkDerivation { pname = "git-annex"; - version = "6.20160229"; - sha256 = "1eac609eeedbf01cf088461577b478a3aa99f7ecefa668214308e3b5509c1506"; + version = "6.20160318"; + sha256 = "5c0067d161a3cd6b93822f85eb82e5cb4895d913b2593bc4fe3b74d3ed426e0b"; configureFlags = [ "-fassistant" "-fcryptonite" "-fdbus" "-fdesktopnotify" "-fdns" "-ffeed" "-finotify" "-fpairing" "-fproduction" "-fquvi" "-fs3" @@ -82472,17 +86858,18 @@ self: { aeson async aws base blaze-builder bloomfilter byteable bytestring case-insensitive clientsession concurrent-output conduit conduit-extra containers crypto-api cryptonite data-default DAV - dbus directory dlist dns edit-distance esqueleto exceptions - fdo-notify feed filepath gnutls hinotify hslogger http-client - http-conduit http-types IfElse json magic MissingH monad-control - monad-logger mtl network network-info network-multicast - network-protocol-xmpp network-uri old-locale optparse-applicative - path-pieces persistent persistent-sqlite persistent-template - process QuickCheck random regex-tdfa resourcet SafeSemaphore sandi - securemem shakespeare stm tasty tasty-hunit tasty-quickcheck - tasty-rerun template-haskell text time torrent transformers unix - unix-compat utf8-string uuid wai wai-extra warp warp-tls xml-types - yesod yesod-core yesod-default yesod-form yesod-static + dbus directory disk-free-space dlist dns edit-distance esqueleto + exceptions fdo-notify feed filepath gnutls hinotify hslogger + http-client http-conduit http-types IfElse json magic MissingH + monad-control monad-logger mountpoints mtl network network-info + network-multicast network-protocol-xmpp network-uri old-locale + optparse-applicative path-pieces persistent persistent-sqlite + persistent-template process QuickCheck random regex-tdfa resourcet + SafeSemaphore sandi securemem shakespeare stm tasty tasty-hunit + tasty-quickcheck tasty-rerun template-haskell text time torrent + transformers unix unix-compat utf8-string uuid wai wai-extra warp + warp-tls xml-types yesod yesod-core yesod-default yesod-form + yesod-static ]; executableSystemDepends = [ bup curl git gnupg lsof openssh perl rsync wget which @@ -82495,6 +86882,7 @@ self: { homepage = "http://git-annex.branchable.com/"; description = "manage files with git, without checking their contents into git"; license = stdenv.lib.licenses.gpl3; + platforms = [ "i686-linux" "x86_64-linux" ]; maintainers = with stdenv.lib.maintainers; [ simons ]; }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git; inherit (pkgs) gnupg; inherit (pkgs) lsof; inherit (pkgs) openssh; @@ -82518,6 +86906,7 @@ self: { homepage = "https://github.com/dougalstanton/git-checklist"; description = "Maintain per-branch checklists in Git"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git-date" = callPackage @@ -82536,6 +86925,7 @@ self: { homepage = "https://github.com/singpolyma/git-date-haskell"; description = "Bindings to the date parsing from Git"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git-embed" = callPackage @@ -82617,6 +87007,7 @@ self: { homepage = "http://github.com/jwiegley/gitlib"; description = "More intelligent push-to-GitHub utility"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git-jump" = callPackage @@ -82694,6 +87085,7 @@ self: { homepage = "http://git-repair.branchable.com/"; description = "repairs a damanged git repisitory"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git-sanity" = callPackage @@ -82803,6 +87195,7 @@ self: { homepage = "https://github.com/mattyhall/gitdo"; description = "Create Github issues out of TODO comments in code"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "github_0_14_0" = callPackage @@ -82872,25 +87265,26 @@ self: { ({ mkDerivation, base, bytestring, containers, directory , exceptions, filepath, git, github, hslogger, IfElse, MissingH , mtl, network, network-uri, optparse-applicative, pretty-show - , process, text, transformers, unix, unix-compat + , process, text, transformers, unix, unix-compat, utf8-string + , vector }: mkDerivation { pname = "github-backup"; - version = "1.20160207"; - sha256 = "7502179fe38bc00b21f9352a013334bfb9ca51488854bd9c01092cedf2330c64"; + version = "1.20160319"; + sha256 = "6831013f8ce72b5bfbe8ba19cd46bcca61e134d463d64f614db54526a944f73f"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base bytestring containers directory exceptions filepath github hslogger IfElse MissingH mtl network network-uri optparse-applicative pretty-show process text transformers unix - unix-compat + unix-compat utf8-string vector ]; executableToolDepends = [ git ]; - jailbreak = true; homepage = "https://github.com/joeyh/github-backup"; description = "backs up everything github knows about a repository, to the repository"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) git;}; "github-post-receive" = callPackage @@ -82939,6 +87333,7 @@ self: { homepage = "https://github.com/greenrd/github-utils"; description = "Useful functions that use the GitHub API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "github-webhook-handler" = callPackage @@ -82979,15 +87374,14 @@ self: { }: mkDerivation { pname = "gitignore"; - version = "1.0.1"; - sha256 = "14bf2fb4a56ec53514986536c1b63bd5c0b1404f5c9f7b7d645cf7733585520f"; + version = "1.1"; + sha256 = "59cc0668488d3fc587b48b04293cd67fcefde64125fefc4f1d0f5682b9401084"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ aeson base base64-bytestring bytestring http-conduit network safe text ]; - jailbreak = true; homepage = "https://github.com/relrod/gitignore"; description = "Apply GitHub .gitignore templates to already existing repositories."; license = stdenv.lib.licenses.bsd3; @@ -83005,8 +87399,8 @@ self: { }: mkDerivation { pname = "gitit"; - version = "0.12.1"; - sha256 = "c2cf094e7553e1ad6eefe59b4b7d924fe42f31dd51545193b56bcd0596f57d73"; + version = "0.12.1.1"; + sha256 = "c95f78a9d3060c6695c0d8f3f6e2cc01f64d0b535d8c6c3e591a9fd802d534a5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -83135,6 +87529,7 @@ self: { ]; description = "Run tests between repositories"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gitlib-libgit2_3_1_0_3" = callPackage @@ -83278,6 +87673,7 @@ self: { ]; description = "Gitlib repository backend for storing Git objects in Amazon S3"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gitlib-sample" = callPackage @@ -83346,6 +87742,7 @@ self: { ]; description = "Generic utility functions for working with Git repositories"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gitrev_1_0_0" = callPackage @@ -83585,6 +87982,7 @@ self: { librarySystemDepends = [ mesa ]; description = "Complete OpenGL raw bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) mesa;}; "gl-capture" = callPackage @@ -83596,6 +87994,7 @@ self: { libraryHaskellDepends = [ base bytestring OpenGL ]; description = "simple image capture from OpenGL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "glade" = callPackage @@ -83611,6 +88010,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the glade library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) libglade;}; "gladexml-accessor" = callPackage @@ -83622,6 +88022,7 @@ self: { libraryHaskellDepends = [ base glade HaXml template-haskell ]; description = "Automagically declares getters for widget handles in specified interface file"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "glambda" = callPackage @@ -83665,6 +88066,7 @@ self: { homepage = "zyghost.com"; description = "An OpenGL micro framework"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "glasso" = callPackage @@ -83813,6 +88215,7 @@ self: { testHaskellDepends = [ base data-default hspec lens QuickCheck ]; description = "Glicko-2 implementation in Haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "glider-nlp" = callPackage @@ -83827,6 +88230,7 @@ self: { homepage = "https://github.com/klangner/glider-nlp"; description = "Natural Language Processing library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "glintcollider" = callPackage @@ -83872,6 +88276,7 @@ self: { homepage = "https://github.com/bairyn/global"; description = "Library enabling unique top-level declarations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "global-config" = callPackage @@ -83941,6 +88346,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Glome"; description = "ray tracer"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gloss_1_9_2_1" = callPackage @@ -83976,6 +88382,7 @@ self: { homepage = "http://gloss.ouroborus.net"; description = "Painless 2D vector graphics, animations and simulations"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gloss-accelerate" = callPackage @@ -83989,6 +88396,7 @@ self: { libraryHaskellDepends = [ accelerate base gloss gloss-rendering ]; description = "Extras to interface Gloss and Accelerate"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gloss-algorithms" = callPackage @@ -84001,6 +88409,7 @@ self: { homepage = "http://gloss.ouroborus.net"; description = "Data structures and algorithms for working with 2D graphics"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gloss-banana" = callPackage @@ -84016,6 +88425,7 @@ self: { homepage = "https://github.com/Twey/gloss-banana"; description = "An Interface for gloss in terms of a reactive-banana Behavior"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gloss-devil" = callPackage @@ -84027,6 +88437,7 @@ self: { libraryHaskellDepends = [ base bytestring gloss repa repa-devil ]; description = "Display images in Gloss using libdevil for decoding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gloss-examples" = callPackage @@ -84049,6 +88460,7 @@ self: { homepage = "http://gloss.ouroborus.net"; description = "Examples using the gloss library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gloss-game" = callPackage @@ -84061,6 +88473,7 @@ self: { homepage = "https://github.com/mchakravarty/gloss-game"; description = "Gloss wrapper that simplifies writing games"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gloss-juicy" = callPackage @@ -84081,6 +88494,7 @@ self: { homepage = "http://github.com/alpmestan/gloss-juicy"; description = "Load any image supported by Juicy.Pixels in your gloss application"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gloss-raster" = callPackage @@ -84097,6 +88511,7 @@ self: { homepage = "http://gloss.ouroborus.net"; description = "Parallel rendering of raster images"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gloss-raster-accelerate" = callPackage @@ -84127,6 +88542,7 @@ self: { jailbreak = true; description = "Gloss picture data types and rendering functions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gloss-sodium" = callPackage @@ -84140,6 +88556,7 @@ self: { homepage = "https://github.com/Twey/gloss-sodium"; description = "A Sodium interface to the Gloss drawing package"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "glpk-hs" = callPackage @@ -84282,6 +88699,7 @@ self: { ]; description = "turtle like LOGO with glut"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gmap" = callPackage @@ -84297,6 +88715,7 @@ self: { ]; description = "Composable maps and generic tries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gmndl" = callPackage @@ -84316,6 +88735,7 @@ self: { jailbreak = true; description = "Mandelbrot Set explorer using GTK"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gnome-desktop" = callPackage @@ -84331,6 +88751,7 @@ self: { ]; description = "Randomly set a picture as the GNOME desktop background"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gnome-keyring" = callPackage @@ -84347,6 +88768,7 @@ self: { homepage = "https://john-millikin.com/software/haskell-gnome-keyring/"; description = "Bindings for libgnome-keyring"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) gnome_keyring;}; "gnomevfs" = callPackage @@ -84366,6 +88788,7 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Binding to the GNOME Virtual File System library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) gnome_vfs; gnome_vfs_module = null;}; "gnss-converters" = callPackage @@ -84375,8 +88798,8 @@ self: { }: mkDerivation { pname = "gnss-converters"; - version = "0.1.5"; - sha256 = "832993a18cb5561ec396061e6f1beeb206ea5e4b4103a34bef601f29f25cda96"; + version = "0.1.6"; + sha256 = "3d88c38c096cd3887a18acb6b8947436b9b5a6f64e7d2168e946387b817a0993"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -84389,6 +88812,7 @@ self: { homepage = "http://github.com/swift-nav/gnss-converters"; description = "GNSS Converters"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gnuidn_0_2_1" = callPackage @@ -84476,6 +88900,7 @@ self: { libraryHaskellDepends = [ base directory filepath process ]; description = "GHCi bindings to lambdabot"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "goal-core" = callPackage @@ -84496,6 +88921,7 @@ self: { jailbreak = true; description = "Core imports for Geometric Optimization Libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "goal-geometry" = callPackage @@ -84510,6 +88936,7 @@ self: { executableHaskellDepends = [ base goal-core ]; description = "Scientific computing on geometric objects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "goal-probability" = callPackage @@ -84529,6 +88956,7 @@ self: { executableHaskellDepends = [ base goal-core goal-geometry vector ]; description = "Manifolds of probability distributions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "goal-simulation" = callPackage @@ -84552,6 +88980,7 @@ self: { ]; description = "Mealy based simulation tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "goatee" = callPackage @@ -84592,6 +89021,7 @@ self: { homepage = "http://khumba.net/projects/goatee"; description = "A monadic take on a 2,500-year-old board game - GTK+ UI"; license = stdenv.lib.licenses.agpl3; + platforms = [ "i686-linux" "x86_64-linux" ]; maintainers = with stdenv.lib.maintainers; [ khumba ]; }) {}; @@ -84605,6 +89035,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/gofer-prelude"; description = "The Gofer 2.30 standard prelude"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol" = callPackage @@ -85706,6 +90137,7 @@ self: { jailbreak = true; description = "Graphical user interfaces that are renderable, change over time and eventually produce a value"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "google-cloud" = callPackage @@ -85777,6 +90209,7 @@ self: { jailbreak = true; description = "Google HTML5 Slide generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "google-mail-filters" = callPackage @@ -85794,6 +90227,7 @@ self: { homepage = "https://github.com/liyang/google-mail-filters"; description = "Write GMail filters and output to importable XML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "google-oauth2" = callPackage @@ -85825,6 +90259,7 @@ self: { homepage = "https://github.com/liyang/google-search"; description = "EDSL for Google and GMail search expressions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "google-translate" = callPackage @@ -85859,6 +90294,7 @@ self: { homepage = "http://github.com/michaelxavier/GooglePlus"; description = "Haskell implementation of the Google+ API v1"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "googlepolyline" = callPackage @@ -85896,6 +90332,7 @@ self: { ]; description = "Spidering robot to download files from Gopherspace"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gore-and-ash" = callPackage @@ -85905,8 +90342,8 @@ self: { }: mkDerivation { pname = "gore-and-ash"; - version = "1.1.0.1"; - sha256 = "3fc41721e92097558f4247a5b195bac9d9d9bd9313b2d92f402d3535aa90d149"; + version = "1.2.1.0"; + sha256 = "216c58cf971d991aedcdda7100da3dfda433371c6fa47404df9431357cd84f82"; libraryHaskellDepends = [ base containers deepseq exceptions hashable linear mtl parallel profunctors random semigroups time transformers @@ -85982,6 +90419,7 @@ self: { homepage = "https://github.com/Teaspot-Studio/gore-and-ash-demo"; description = "Demonstration game for Gore&Ash game engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gore-and-ash-glfw" = callPackage @@ -85999,20 +90437,22 @@ self: { homepage = "https://github.com/Teaspot-Studio/gore-and-ash-glfw"; description = "Core module for Gore&Ash engine for GLFW input events"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gore-and-ash-logging" = callPackage - ({ mkDerivation, base, containers, deepseq, exceptions - , gore-and-ash, mtl, resourcet, text, text-show, transformers - , transformers-base + ({ mkDerivation, base, containers, deepseq, exceptions, extra + , gore-and-ash, hashable, mtl, resourcet, text, text-show + , transformers, transformers-base, unordered-containers }: mkDerivation { pname = "gore-and-ash-logging"; - version = "1.2.1.0"; - sha256 = "e036991edeaf1ba9eefa57a8668d1793a63bba816ffbf856a001fb5674881293"; + version = "2.0.0.0"; + sha256 = "a01fa0ba3867c791462f17f4910a155e5d814c113789b2b5d12766c399d65b93"; libraryHaskellDepends = [ - base containers deepseq exceptions gore-and-ash mtl resourcet text - text-show transformers transformers-base + base containers deepseq exceptions extra gore-and-ash hashable mtl + resourcet text text-show transformers transformers-base + unordered-containers ]; homepage = "https://github.com/Teaspot-Studio/gore-and-ash-logging"; description = "Core module for gore-and-ash with logging utilities"; @@ -86039,6 +90479,7 @@ self: { homepage = "https://github.com/Teaspot-Studio/gore-and-ash-network"; description = "Core module for Gore&Ash engine with low level network API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gore-and-ash-sdl" = callPackage @@ -86080,6 +90521,7 @@ self: { homepage = "https://github.com/Teaspot-Studio/gore-and-ash-sync"; description = "Gore&Ash module for high level network synchronization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gpah" = callPackage @@ -86100,6 +90542,7 @@ self: { ]; description = "Generic Programming Use in Hackage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gpcsets" = callPackage @@ -86143,6 +90586,7 @@ self: { ]; description = "For manipulating GPS coordinates and trails"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gps2htmlReport" = callPackage @@ -86165,6 +90609,7 @@ self: { homepage = "https://github.com/robstewart57/Gps2HtmlReport"; description = "GPS to HTML Summary Report"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gpx-conduit" = callPackage @@ -86182,6 +90627,7 @@ self: { jailbreak = true; description = "Read GPX files using conduits"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graceful" = callPackage @@ -86216,6 +90662,7 @@ self: { homepage = "http://projects.haskell.org/grammar-combinators/"; description = "A parsing library of context-free grammar combinators"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "grapefruit-examples" = callPackage @@ -86233,6 +90680,7 @@ self: { homepage = "http://grapefruit-project.org/"; description = "Examples using the Grapefruit library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "grapefruit-frp" = callPackage @@ -86250,6 +90698,7 @@ self: { homepage = "http://grapefruit-project.org/"; description = "Functional Reactive Programming core"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "grapefruit-records" = callPackage @@ -86262,6 +90711,7 @@ self: { homepage = "http://grapefruit-project.org/"; description = "A record system for Functional Reactive Programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "grapefruit-ui" = callPackage @@ -86279,6 +90729,7 @@ self: { homepage = "http://grapefruit-project.org/"; description = "Declarative user interface programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "grapefruit-ui-gtk" = callPackage @@ -86297,6 +90748,7 @@ self: { homepage = "http://grapefruit-project.org/"; description = "GTK+-based backend for declarative user interface programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graph-core_0_2_1_0" = callPackage @@ -86438,6 +90890,7 @@ self: { homepage = "http://rochel.info/#graph-rewriting"; description = "Interactive graph rewriting system implementing various well-known combinators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graph-rewriting-gl" = callPackage @@ -86455,6 +90908,7 @@ self: { homepage = "http://rochel.info/#graph-rewriting"; description = "OpenGL interface for interactive port graph rewriting"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "graph-rewriting-lambdascope" = callPackage @@ -86476,6 +90930,7 @@ self: { homepage = "http://rochel.info/#graph-rewriting"; description = "Lambdascope, an optimal evaluator of the lambda calculus, as an interactive graph-rewriting system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "graph-rewriting-layout" = callPackage @@ -86511,6 +90966,7 @@ self: { homepage = "http://rochel.info/#graph-rewriting"; description = "Two evalutors of the SKI combinator calculus as interactive graph rewrite systems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "graph-rewriting-strategies" = callPackage @@ -86548,6 +91004,7 @@ self: { homepage = "http://rochel.info/#graph-rewriting"; description = "Evaluate first-order applicative term rewrite systems interactively using graph reduction"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "graph-rewriting-ww" = callPackage @@ -86568,6 +91025,7 @@ self: { homepage = "http://rochel.info/#graph-rewriting"; description = "Evaluator of the lambda-calculus in an interactive graph rewriting system with explicit sharing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "graph-serialize" = callPackage @@ -86597,6 +91055,7 @@ self: { homepage = "http://github.com/konn/graph-utils/"; description = "A simple wrapper & quasi quoter for fgl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graph-visit" = callPackage @@ -86649,6 +91108,7 @@ self: { homepage = "https://github.com/tel/graphbuilder"; description = "A declarative, monadic graph construction language for small graphs"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graphene" = callPackage @@ -86686,6 +91146,7 @@ self: { homepage = "http://github.com/luqui/graphics-drawingcombinators"; description = "A functional interface to 2D drawing in OpenGL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "graphics-formats-collada" = callPackage @@ -86703,6 +91164,7 @@ self: { homepage = "http://github.com/luqui/collada"; description = "Load 3D geometry in the COLLADA format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graphicsFormats" = callPackage @@ -86714,6 +91176,7 @@ self: { libraryHaskellDepends = [ base haskell98 OpenGL QuickCheck ]; description = "Classes for renderable objects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graphicstools" = callPackage @@ -86733,6 +91196,7 @@ self: { homepage = "https://yousource.it.jyu.fi/cvlab/pages/GraphicsTools"; description = "Tools for creating graphical UIs, based on wxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graphmod" = callPackage @@ -86829,6 +91293,7 @@ self: { homepage = "http://github.com/explicitcall/graphtype"; description = "A simple tool to illustrate dependencies between Haskell types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graphviz_2999_17_0_1" = callPackage @@ -87026,6 +91491,7 @@ self: { homepage = "https://github.com/AndrewRademacher/haskell-graylog"; description = "Support for graylog output"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "greencard" = callPackage @@ -87041,6 +91507,7 @@ self: { homepage = "https://github.com/sof/greencard"; description = "GreenCard, a foreign function pre-processor for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "greencard-lib" = callPackage @@ -87053,6 +91520,7 @@ self: { homepage = "http://www.haskell.org/greencard/"; description = "A foreign function interface pre-processor library for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "greg-client" = callPackage @@ -87069,6 +91537,7 @@ self: { homepage = "http://code.google.com/p/greg/"; description = "A scalable distributed logger with a high-precision global time axis"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gremlin-haskell" = callPackage @@ -87093,6 +91562,7 @@ self: { homepage = "http://github.com/nakaji-dayo/gremlin-haskell"; description = "Graph database client for TinkerPop3 Gremlin Server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "greplicate" = callPackage @@ -87146,6 +91616,7 @@ self: { homepage = "http://github.com/btubbs/haskell-gridfs#readme"; description = "GridFS (MongoDB file storage) implementation"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gridland" = callPackage @@ -87164,6 +91635,7 @@ self: { ]; description = "Grid-based multimedia engine"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "grm" = callPackage @@ -87185,6 +91657,7 @@ self: { executableToolDepends = [ happy ]; description = "grm grammar converter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "groom" = callPackage @@ -87286,6 +91759,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "groundhog-converters" = callPackage + ({ mkDerivation, aeson, base, bimap, bytestring, containers + , groundhog, groundhog-sqlite, groundhog-th, tasty, tasty-hunit + , tasty-quickcheck + }: + mkDerivation { + pname = "groundhog-converters"; + version = "0.1.0"; + sha256 = "394f213aba5f33fa564dbdb22cbaec38ad1a4fd6e779704700b0cf1b0e7f90ed"; + libraryHaskellDepends = [ aeson base bimap bytestring containers ]; + testHaskellDepends = [ + aeson base bimap bytestring containers groundhog groundhog-sqlite + groundhog-th tasty tasty-hunit tasty-quickcheck + ]; + description = "Extended Converter Library for groundhog embedded types"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "groundhog-inspector" = callPackage ({ mkDerivation, aeson-pretty, base, bytestring, cmdargs , containers, groundhog, groundhog-sqlite, groundhog-th, mtl @@ -87609,6 +92101,7 @@ self: { jailbreak = true; description = "fractal explorer GUI using the ruff library"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gruff-examples" = callPackage @@ -87628,6 +92121,7 @@ self: { jailbreak = true; description = "Mandelbrot Set examples using ruff and gruff"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gsasl" = callPackage @@ -87665,6 +92159,7 @@ self: { homepage = "http://github.com/patperry/hs-gsl-random"; description = "Bindings the the GSL random number generation facilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gsl-random-fu" = callPackage @@ -87677,6 +92172,7 @@ self: { homepage = "http://code.haskell.org/~mokus/gsl-random-fu"; description = "Instances for using gsl-random with random-fu"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gsmenu" = callPackage @@ -87696,6 +92192,7 @@ self: { homepage = "http://sigkill.dk/programs/gsmenu"; description = "A visual generic menu"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gstreamer" = callPackage @@ -87715,6 +92212,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GStreamer open source multimedia framework"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gst_plugins_base; inherit (pkgs) gstreamer;}; "gt-tools" = callPackage @@ -87748,6 +92246,7 @@ self: { ]; description = "The General Transit Feed Specification format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk_0_13_3" = callPackage @@ -87889,6 +92388,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Gtk+ graphical user interface library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {gtk2 = pkgs.gnome2.gtk;}; "gtk-helpers" = callPackage @@ -87905,6 +92405,7 @@ self: { homepage = "http://keera.es/blog/community"; description = "A collection of auxiliary operations and widgets related to Gtk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gtk-jsinput" = callPackage @@ -87917,6 +92418,7 @@ self: { homepage = "http://github.com/timthelion/gtk-jsinput"; description = "A simple custom form widget for gtk which allows inputing of JSON values"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gtk-largeTreeStore" = callPackage @@ -87933,6 +92435,7 @@ self: { testHaskellDepends = [ base containers gtk3 hspec ]; description = "Large TreeStore support for gtk2hs"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gtk-mac-integration" = callPackage @@ -87949,6 +92452,7 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Bindings for the Gtk/OS X integration library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {gtk-mac-integration-gtk2 = null;}; "gtk-serialized-event" = callPackage @@ -87967,6 +92471,7 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "GTK+ Serialized event"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {gdk2 = null;}; "gtk-simple-list-view" = callPackage @@ -87979,6 +92484,7 @@ self: { homepage = "http://github.com/timthelion/gtk-simple-list-view"; description = "A simple custom form widget for gtk which allows single LOC creation/updating of list views"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gtk-toggle-button-list" = callPackage @@ -87991,6 +92497,7 @@ self: { homepage = "http://github.com/timthelion/gtk-toggle-button-list"; description = "A simple custom form widget for gtk which allows single LOC creation/updating of toggle button lists"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gtk-toy" = callPackage @@ -88003,6 +92510,7 @@ self: { jailbreak = true; description = "Convenient Gtk canvas with mouse and keyboard input"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk-traymanager" = callPackage @@ -88016,6 +92524,7 @@ self: { homepage = "http://github.com/travitch/gtk-traymanager"; description = "A wrapper around the eggtraymanager library for Linux system trays"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {gtk2 = pkgs.gnome2.gtk; inherit (pkgs) x11;}; "gtk2hs-buildtools_0_13_0_3" = callPackage @@ -88093,6 +92602,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: glade package"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk2hs-cast-glib" = callPackage @@ -88119,6 +92629,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gnomevfs package"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk2hs-cast-gtk" = callPackage @@ -88134,6 +92645,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gtk package"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk2hs-cast-gtkglext" = callPackage @@ -88149,6 +92661,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gtkglext package"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk2hs-cast-gtksourceview2" = callPackage @@ -88165,6 +92678,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gtksourceview2 package"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gtk2hs-cast-th" = callPackage @@ -88191,6 +92705,7 @@ self: { homepage = "http://www.haskell.org/hello/"; description = "Gtk2Hs Hello World, an example package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gtk2hs-rpn" = callPackage @@ -88203,6 +92718,7 @@ self: { jailbreak = true; description = "Adds a module to gtk2hs allowing layouts to be defined using reverse polish notation"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk3_0_13_4" = callPackage @@ -88412,6 +92928,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Gtk+ 3 graphical user interface library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) gtk3;}; "gtk3-mac-integration" = callPackage @@ -88428,6 +92945,7 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Bindings for the Gtk/OS X integration library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {gtk-mac-integration-gtk3 = null;}; "gtkglext" = callPackage @@ -88445,6 +92963,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GTK+ OpenGL Extension"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) gtkglext;}; "gtkimageview" = callPackage @@ -88464,6 +92983,7 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Binding to the GtkImageView library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gtkimageview;}; "gtkrsync" = callPackage @@ -88482,6 +93002,7 @@ self: { homepage = "http://hg.complete.org/gtkrsync"; description = "Gnome rsync progress display"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtksourceview2" = callPackage @@ -88501,6 +93022,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GtkSourceView library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs.gnome) gtksourceview;}; "gtksourceview3" = callPackage @@ -88519,6 +93041,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GtkSourceView library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs.gnome) gtksourceview;}; "guarded-rewriting" = callPackage @@ -88543,6 +93066,7 @@ self: { homepage = "http://code.atnnn.com/project/guess"; description = "Generate simple combinators given their type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gulcii" = callPackage @@ -88558,6 +93082,7 @@ self: { homepage = "http://code.mathr.co.uk/gulcii"; description = "graphical untyped lambda calculus interactive interpreter"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gutenberg-fibonaccis" = callPackage @@ -88607,6 +93132,7 @@ self: { homepage = "https://github.com/Fuuzetsu/h-booru"; description = "Haskell library for retrieving data from various booru image sites"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "h-gpgme" = callPackage @@ -88616,8 +93142,8 @@ self: { }: mkDerivation { pname = "h-gpgme"; - version = "0.3.0.0"; - sha256 = "7dd4cba600967609af287f09bbe5bbb7573032115e226b775c8d7e1412e44a9c"; + version = "0.4.0.0"; + sha256 = "35755834fd45de534ddbdbc66df6f1b1623410971d647bcb2e465879ca5f056d"; libraryHaskellDepends = [ base bindings-gpgme bytestring either time unix ]; @@ -88627,7 +93153,9 @@ self: { ]; jailbreak = true; homepage = "https://github.com/rethab/h-gpgme"; + description = "High Level Binding for GnuPG Made Easy (gpgme)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "h2048" = callPackage @@ -88692,6 +93220,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "An FFI binding to CMU/Long's BDD library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {bdd = null; mem = null;}; "hBDD-CUDD" = callPackage @@ -88707,6 +93236,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "An FFI binding to the CUDD library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {cudd = null; epd = null; inherit (pkgs) mtr; inherit (pkgs) st; util = null;}; @@ -88724,6 +93254,7 @@ self: { jailbreak = true; description = "interface to CSound API"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {csound64 = null; inherit (pkgs) libsndfile;}; "hDFA" = callPackage @@ -88735,6 +93266,7 @@ self: { libraryHaskellDepends = [ base containers directory process ]; description = "A simple library for representing and minimising DFAs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hF2" = callPackage @@ -88746,6 +93278,7 @@ self: { libraryHaskellDepends = [ base cereal vector ]; description = "F(2^e) math for cryptography"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hGelf" = callPackage @@ -88805,6 +93338,7 @@ self: { homepage = "http://github.com/itkovian/hMollom"; description = "Library to interact with the @Mollom anti-spam service"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hOpenPGP_1_11" = callPackage @@ -88971,7 +93505,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hOpenPGP" = callPackage + "hOpenPGP_2_4_3" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring , bifunctors, binary, binary-conduit, byteable, bytestring, bzlib , conduit, conduit-extra, containers, crypto-cipher-types @@ -89009,6 +93543,47 @@ self: { homepage = "http://floss.scru.org/hOpenPGP/"; description = "native Haskell implementation of OpenPGP (RFC4880)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hOpenPGP" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base64-bytestring + , bifunctors, binary, binary-conduit, byteable, bytestring, bzlib + , conduit, conduit-extra, containers, crypto-cipher-types + , cryptonite, data-default-class, errors, hashable + , incremental-parser, ixset-typed, lens, memory, monad-loops + , nettle, network, network-uri, newtype, openpgp-asciiarmor + , QuickCheck, quickcheck-instances, resourcet, securemem + , semigroups, split, tasty, tasty-hunit, tasty-quickcheck, text + , time, time-locale-compat, transformers, unordered-containers + , wl-pprint-extras, zlib + }: + mkDerivation { + pname = "hOpenPGP"; + version = "2.4.4"; + sha256 = "6d137b38a2a60f711fd34612849f34a1731271c6a2cc83aa57c37cfea1f5a806"; + libraryHaskellDepends = [ + aeson attoparsec base base64-bytestring bifunctors binary + binary-conduit byteable bytestring bzlib conduit conduit-extra + containers crypto-cipher-types cryptonite data-default-class errors + hashable incremental-parser ixset-typed lens memory monad-loops + nettle network network-uri newtype openpgp-asciiarmor resourcet + securemem semigroups split text time time-locale-compat + transformers unordered-containers wl-pprint-extras zlib + ]; + testHaskellDepends = [ + aeson attoparsec base bifunctors binary binary-conduit byteable + bytestring bzlib conduit conduit-extra containers + crypto-cipher-types cryptonite data-default-class errors hashable + incremental-parser ixset-typed lens memory monad-loops nettle + network network-uri newtype QuickCheck quickcheck-instances + resourcet securemem semigroups split tasty tasty-hunit + tasty-quickcheck text time time-locale-compat transformers + unordered-containers wl-pprint-extras zlib + ]; + homepage = "http://floss.scru.org/hOpenPGP/"; + description = "native Haskell implementation of OpenPGP (RFC4880)"; + license = stdenv.lib.licenses.mit; }) {}; "hPDB_1_2_0" = callPackage @@ -89185,6 +93760,7 @@ self: { homepage = "https://github.com/BioHaskell/hPDB-examples"; description = "Examples for hPDB library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hPushover" = callPackage @@ -89213,6 +93789,7 @@ self: { libraryHaskellDepends = [ array base containers unix ]; description = "R bindings and interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hRESP" = callPackage @@ -89278,6 +93855,7 @@ self: { jailbreak = true; description = "Interface to Amazon's SimpleDB service"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hTalos" = callPackage @@ -89292,6 +93870,7 @@ self: { homepage = "https://github.com/mgajda/hTalos"; description = "Parser, print and manipulate structures in PDB file format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hTensor" = callPackage @@ -89319,6 +93898,7 @@ self: { homepage = "http://dslsrv4.cs.missouri.edu/~qqbm9"; description = "Optimal variable selection in chain graphical model"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; "hXmixer" = callPackage @@ -89336,6 +93916,7 @@ self: { ]; description = "A Gtk mixer GUI application for FreeBSD"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "haar" = callPackage @@ -89354,6 +93935,7 @@ self: { homepage = "https://github.com/mhwombat/haar"; description = "Haar wavelet transforms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hacanon-light" = callPackage @@ -89396,6 +93978,7 @@ self: { homepage = "http://github.com/nfjinjing/hack-contrib"; description = "Hack contrib"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-contrib-press" = callPackage @@ -89413,6 +93996,7 @@ self: { homepage = "http://github.com/bickfordb/hack-contrib-press"; description = "Hack helper that renders Press templates"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-frontend-happstack" = callPackage @@ -89430,6 +94014,7 @@ self: { homepage = "http://github.com/nfjinjing/hack/tree/master"; description = "hack-frontend-happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-frontend-monadcgi" = callPackage @@ -89473,6 +94058,7 @@ self: { homepage = "https://gitlab.com/twittner/hack-handler-epoll"; description = "hack handler implementation using epoll"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-handler-evhttp" = callPackage @@ -89491,6 +94077,7 @@ self: { homepage = "http://github.com/bickfordb/hack-handler-evhttp"; description = "Hack EvHTTP (libevent) Handler"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {event = null;}; "hack-handler-fastcgi" = callPackage @@ -89505,6 +94092,7 @@ self: { homepage = "http://github.com/snoyberg/hack-handler-fastcgi/tree/master"; description = "Hack handler direct to fastcgi (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) fcgi;}; "hack-handler-happstack" = callPackage @@ -89522,6 +94110,7 @@ self: { homepage = "http://github.com/nfjinjing/hack-handler-happstack"; description = "Hack Happstack server handler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-handler-hyena" = callPackage @@ -89538,6 +94127,7 @@ self: { homepage = "http://github.com/nfjinjing/hack-handler-hyena"; description = "Hyena hack handler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-handler-kibro" = callPackage @@ -89552,6 +94142,7 @@ self: { homepage = "http://github.com/nfjinjing/hack/tree/master"; description = "Hack Kibro handler"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-handler-simpleserver" = callPackage @@ -89569,6 +94160,7 @@ self: { homepage = "http://github.com/snoyberg/hack-handler-simpleserver/tree/master"; description = "A simplistic HTTP server handler for Hack. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-middleware-cleanpath" = callPackage @@ -89583,6 +94175,7 @@ self: { homepage = "http://github.com/snoyberg/hack-middleware-cleanpath/tree/master"; description = "Applies some basic redirect rules to get cleaner paths. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-middleware-clientsession" = callPackage @@ -89599,6 +94192,7 @@ self: { homepage = "http://github.com/snoyberg/hack-middleware-clientsession/tree/master"; description = "Middleware for easily keeping session data in client cookies. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-middleware-gzip" = callPackage @@ -89627,6 +94221,7 @@ self: { homepage = "http://github.com/snoyberg/hack-middleware-jsonp/tree/master"; description = "Automatic wrapping of JSON responses to convert into JSONP. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack2" = callPackage @@ -89692,6 +94287,7 @@ self: { homepage = "https://github.com/nfjinjing/hack2-handler-happstack-server"; description = "Hack2 Happstack server handler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack2-handler-mongrel2-http" = callPackage @@ -89712,6 +94308,7 @@ self: { homepage = "https://github.com/nfjinjing/hack2-handler-mongrel2-http"; description = "Hack2 Mongrel2 HTTP handler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack2-handler-snap-server" = callPackage @@ -89747,6 +94344,7 @@ self: { homepage = "https://github.com/nfjinjing/hack2-handler-warp"; description = "Hack2 warp handler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack2-interface-wai" = callPackage @@ -89765,6 +94363,7 @@ self: { homepage = "https://github.com/nfjinjing/hack2-interface-wai"; description = "Hack2 interface of WAI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-db" = callPackage @@ -89911,6 +94510,7 @@ self: { homepage = "http://github.com/snoyberg/hackage-proxy"; description = "Provide a proxy for Hackage which modifies responses in some way. (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-repo-tool" = callPackage @@ -89933,6 +94533,7 @@ self: { homepage = "https://github.com/well-typed/hackage-security"; description = "Utility to manage secure file-based package repositories"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-security" = callPackage @@ -89959,6 +94560,7 @@ self: { homepage = "https://github.com/well-typed/hackage-security"; description = "Hackage security library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-security-HTTP" = callPackage @@ -89976,6 +94578,7 @@ self: { homepage = "https://github.com/well-typed/hackage-security"; description = "Hackage security bindings against the HTTP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-server" = callPackage @@ -90014,6 +94617,7 @@ self: { jailbreak = true; description = "The Hackage web server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-sparks" = callPackage @@ -90033,6 +94637,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/hackage-sparks"; description = "Generate sparkline graphs of hackage statistics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-whatsnew" = callPackage @@ -90065,6 +94670,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/hackage2hwn"; description = "Convert Hackage RSS feeds to wiki format for publishing on Haskell.org"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage2twitter" = callPackage @@ -90079,6 +94685,7 @@ self: { homepage = "http://github.com/tomlokhorst/hackage2twitter"; description = "Send new Hackage releases to Twitter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackager" = callPackage @@ -90115,6 +94722,7 @@ self: { testHaskellDepends = [ base hspec transformers ]; description = "API for Hacker News"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackertyper" = callPackage @@ -90195,6 +94803,7 @@ self: { homepage = "https://github.com/Forkk/hactor"; description = "Lightweight Erlang-style actors for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hactors" = callPackage @@ -90323,6 +94932,7 @@ self: { homepage = "http://www.haskell.org/haddock/"; description = "A documentation-generation tool for Haskell libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haddock-library_1_1_1" = callPackage @@ -90497,6 +95107,7 @@ self: { homepage = "http://github.com/tych0/haggis"; description = "A static site generator with blogging/comments support"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haha" = callPackage @@ -90550,6 +95161,7 @@ self: { ]; description = "A typed template engine, subset of jinja2"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hailgun" = callPackage @@ -90559,14 +95171,13 @@ self: { }: mkDerivation { pname = "hailgun"; - version = "0.4.0.3"; - sha256 = "2cdcc286430fe94c00ea2db6d5588f920bb30ff7ddbb6f27047cc26e42688eb0"; + version = "0.4.0.4"; + sha256 = "ccd6088dbd1d5a8562364ad643db49059f498db621b288f891d5197d338d1859"; libraryHaskellDepends = [ aeson base bytestring email-validate exceptions filepath http-client http-client-tls http-types tagsoup text time transformers ]; - jailbreak = true; description = "Mailgun REST api interface for Haskell"; license = stdenv.lib.licenses.mit; }) {}; @@ -90674,6 +95285,7 @@ self: { homepage = "https://github.com/tfausak/hairy"; description = "A JSON REST API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hakaru" = callPackage @@ -90704,6 +95316,7 @@ self: { homepage = "http://indiana.edu/~ppaml/"; description = "A probabilistic programming embedded DSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hake" = callPackage @@ -90734,6 +95347,7 @@ self: { homepage = "https://code.reaktor42.de/projects/hakismet"; description = "Akismet spam protection library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hako" = callPackage @@ -91131,7 +95745,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hakyll" = callPackage + "hakyll_4_7_5_1" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring , cmdargs, containers, cryptohash, data-default, deepseq, directory , filepath, fsnotify, http-conduit, http-types, HUnit, lrucache @@ -91169,6 +95783,46 @@ self: { homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hakyll" = callPackage + ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring + , cmdargs, containers, cryptohash, data-default, deepseq, directory + , filepath, fsnotify, http-conduit, http-types, HUnit, lrucache + , mtl, network, network-uri, pandoc, pandoc-citeproc, parsec + , process, QuickCheck, random, regex-base, regex-tdfa, snap-core + , snap-server, system-filepath, tagsoup, test-framework + , test-framework-hunit, test-framework-quickcheck2, text, time + , time-locale-compat + }: + mkDerivation { + pname = "hakyll"; + version = "4.7.5.2"; + sha256 = "86359589370266cc6fecad41ad1574a54382e9981aa08203d931d684fdc70bf3"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary blaze-html blaze-markup bytestring cmdargs containers + cryptohash data-default deepseq directory filepath fsnotify + http-conduit http-types lrucache mtl network network-uri pandoc + pandoc-citeproc parsec process random regex-base regex-tdfa + snap-core snap-server system-filepath tagsoup text time + time-locale-compat + ]; + executableHaskellDepends = [ base directory filepath ]; + testHaskellDepends = [ + base binary blaze-html blaze-markup bytestring cmdargs containers + cryptohash data-default deepseq directory filepath fsnotify + http-conduit http-types HUnit lrucache mtl network network-uri + pandoc pandoc-citeproc parsec process QuickCheck random regex-base + regex-tdfa snap-core snap-server system-filepath tagsoup + test-framework test-framework-hunit test-framework-quickcheck2 text + time time-locale-compat + ]; + homepage = "http://jaspervdj.be/hakyll"; + description = "A static website compiler library"; + license = stdenv.lib.licenses.bsd3; }) {}; "hakyll-R" = callPackage @@ -91184,6 +95838,7 @@ self: { jailbreak = true; description = "A package allowing to write Hakyll blog posts in Rmd"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hakyll-agda" = callPackage @@ -91202,6 +95857,7 @@ self: { homepage = "https://github.com/bitonic/hakyll-agda"; description = "Wrapper to integrate literate Agda files with Hakyll"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hakyll-blaze-templates" = callPackage @@ -91214,6 +95870,7 @@ self: { jailbreak = true; description = "Blaze templates for Hakyll"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hakyll-contrib" = callPackage @@ -91230,6 +95887,7 @@ self: { homepage = "http://jaspervdj.be/hakyll"; description = "Extra modules for the hakyll website compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hakyll-contrib-hyphenation" = callPackage @@ -91263,6 +95921,7 @@ self: { jailbreak = true; description = "A hakyll library that helps maintain a separate links database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hakyll-convert" = callPackage @@ -91284,6 +95943,7 @@ self: { homepage = "http://github.com/kowey/hakyll-convert"; description = "Convert from other blog engines to Hakyll"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hakyll-elm" = callPackage @@ -91362,6 +96022,7 @@ self: { homepage = "http://github.com/haskell-suite/halberd/"; description = "A tool to generate missing import statements for Haskell modules"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "half_0_2_0_1" = callPackage @@ -91439,6 +96100,7 @@ self: { jailbreak = true; description = "The HAskelL File System (\"halfs\" -- intended for use on the HaLVM)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "halipeto" = callPackage @@ -91452,6 +96114,7 @@ self: { homepage = "http://github.com/peti/halipeto"; description = "Haskell Static Web Page Generator"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "halive" = callPackage @@ -91502,6 +96165,7 @@ self: { homepage = "https://github.com/timjb/halma"; description = "Library implementing Halma rules"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "haltavista" = callPackage @@ -91526,6 +96190,7 @@ self: { libraryHaskellDepends = [ base HCodecs newtype ]; description = "Binding to the OS level Midi services (fork of system-midi)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hamlet" = callPackage @@ -91559,6 +96224,7 @@ self: { jailbreak = true; description = "Haskell macro preprocessor"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hamtmap" = callPackage @@ -91571,6 +96237,7 @@ self: { homepage = "https://github.com/exclipy/pdata"; description = "A purely functional and persistent hash map"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hamusic" = callPackage @@ -91592,6 +96259,7 @@ self: { homepage = "https://troglodita.di.uminho.pt/svn/musica/work/HaMusic"; description = "Library to handle abstract music"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "handa-gdata" = callPackage @@ -91659,6 +96327,7 @@ self: { homepage = "https://bitbucket.org/bwbush/handa-opengl"; description = "Utility functions for OpenGL and GLUT"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "handle-like" = callPackage @@ -91692,6 +96361,31 @@ self: { homepage = "https://github.com/utdemir/handsy"; description = "A DSL to describe common shell operations and interpeters for running them locally and remotely"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "handwriting" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, directory + , filepath, lens, lens-aeson, random, split, text, transformers + , wreq + }: + mkDerivation { + pname = "handwriting"; + version = "0.1.0.3"; + sha256 = "7e1b406d19b2f39b34910462dce214c7ca91bb9d78bf9fafb9f906dd44d5beaa"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring containers lens lens-aeson split text + transformers wreq + ]; + executableHaskellDepends = [ + base bytestring directory filepath random text + ]; + testHaskellDepends = [ base ]; + homepage = "http://github.com/ismailmustafa/handwriting-haskell#readme"; + description = "API Client for the handwriting.io API."; + license = stdenv.lib.licenses.bsd3; }) {}; "hangman" = callPackage @@ -91726,6 +96420,7 @@ self: { jailbreak = true; description = "Simple Continuous Integration/Deployment System"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hans" = callPackage @@ -91784,14 +96479,15 @@ self: { }: mkDerivation { pname = "haphviz"; - version = "0.1.2.0"; - sha256 = "d7dcb9cc3c345a3886206fc2c50ce375fbafea5c44124602a6124d144d172f8e"; + version = "0.2.0.0"; + sha256 = "352fd5f9b696341f33ef262a15df817d3831f0bea09de1d5babb34d4388e238d"; libraryHaskellDepends = [ base mtl text ]; testHaskellDepends = [ base checkers hspec QuickCheck quickcheck-text text ]; description = "Graphviz code generation with Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hapistrano" = callPackage @@ -91834,6 +96530,7 @@ self: { jailbreak = true; description = "Binding to the appindicator library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {appindicator = null;}; "happindicator3" = callPackage @@ -91851,6 +96548,7 @@ self: { homepage = "https://github.com/mlacorte/happindicator3"; description = "Binding to the appindicator library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {appindicator = null;}; "happraise" = callPackage @@ -91864,6 +96562,7 @@ self: { executableHaskellDepends = [ base directory filepath ]; description = "A small program for counting the comments in haskell source"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happs-hsp" = callPackage @@ -91877,6 +96576,7 @@ self: { base bytestring HAppS-Server hsp mtl plugins ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happs-hsp-template" = callPackage @@ -91893,6 +96593,7 @@ self: { ]; description = "Utilities for using HSP templates in HAppS applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happs-tutorial" = callPackage @@ -91918,6 +96619,7 @@ self: { jailbreak = true; description = "A Happstack Tutorial that is its own web 2.0-type demo."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack" = callPackage @@ -91954,6 +96656,7 @@ self: { homepage = "http://n-sch.de/happstack-auth"; description = "A Happstack Authentication Suite"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-authenticate_2_3_2" = callPackage @@ -92011,6 +96714,38 @@ self: { time unordered-containers userid web-routes web-routes-boomerang web-routes-happstack web-routes-hsp web-routes-th ]; + jailbreak = true; + homepage = "http://www.happstack.com/"; + description = "Happstack Authentication Library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "happstack-authenticate_2_3_4" = callPackage + ({ mkDerivation, acid-state, aeson, authenticate, base + , base64-bytestring, boomerang, bytestring, containers + , data-default, email-validate, filepath, happstack-hsp + , happstack-jmacro, happstack-server, hsp, hsx-jmacro, hsx2hs + , http-conduit, http-types, ixset-typed, jmacro, jwt, lens + , mime-mail, mtl, pwstore-purehaskell, random, safecopy + , shakespeare, text, time, unordered-containers, userid, web-routes + , web-routes-boomerang, web-routes-happstack, web-routes-hsp + , web-routes-th + }: + mkDerivation { + pname = "happstack-authenticate"; + version = "2.3.4"; + sha256 = "e844770a331e5a9fcd64e62ccaaf5c6509afed01ed871306e6da630b48b8be43"; + libraryHaskellDepends = [ + acid-state aeson authenticate base base64-bytestring boomerang + bytestring containers data-default email-validate filepath + happstack-hsp happstack-jmacro happstack-server hsp hsx-jmacro + hsx2hs http-conduit http-types ixset-typed jmacro jwt lens + mime-mail mtl pwstore-purehaskell random safecopy shakespeare text + time unordered-containers userid web-routes web-routes-boomerang + web-routes-happstack web-routes-hsp web-routes-th + ]; + jailbreak = true; homepage = "http://www.happstack.com/"; description = "Happstack Authentication Library"; license = stdenv.lib.licenses.bsd3; @@ -92030,8 +96765,8 @@ self: { }: mkDerivation { pname = "happstack-authenticate"; - version = "2.3.4"; - sha256 = "e844770a331e5a9fcd64e62ccaaf5c6509afed01ed871306e6da630b48b8be43"; + version = "2.3.4.1"; + sha256 = "d5d4ff8f3d4344e8e46010bcc178e15df58d98a542682d42221bb7ba2686da31"; libraryHaskellDepends = [ acid-state aeson authenticate base base64-bytestring boomerang bytestring containers data-default email-validate filepath @@ -92084,6 +96819,7 @@ self: { homepage = "http://happstack.com"; description = "Web related tools and services"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-data" = callPackage @@ -92107,6 +96843,7 @@ self: { homepage = "http://happstack.com"; description = "Happstack data manipulation libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-dlg" = callPackage @@ -92125,6 +96862,7 @@ self: { homepage = "http://patch-tag.com/r/cdsmith/happstack-dlg"; description = "Cross-request user interactions for Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-facebook" = callPackage @@ -92152,6 +96890,7 @@ self: { homepage = "http://src.seereason.com/happstack-facebook/"; description = "A package for building Facebook applications using Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-fastcgi" = callPackage @@ -92185,6 +96924,7 @@ self: { homepage = "http://www.happstack.com/"; description = "Support for using Fay with Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-fay-ajax" = callPackage @@ -92249,6 +96989,7 @@ self: { homepage = "http://www.happstack.com/"; description = "Support for using Heist templates in Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-helpers" = callPackage @@ -92274,6 +97015,7 @@ self: { homepage = "http://patch-tag.com/r/tphyahoo/HAppSHelpers/home"; description = "Convenience functions for Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-hsp" = callPackage @@ -92328,6 +97070,7 @@ self: { homepage = "http://happstack.com"; description = "Efficient relational queries on Haskell sets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-jmacro" = callPackage @@ -92375,6 +97118,7 @@ self: { ]; description = "monad-peel instances for Happstack types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-plugins" = callPackage @@ -92392,6 +97136,7 @@ self: { homepage = "http://happstack.com"; description = "The haskell application server stack + reload"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-server_7_3_9" = callPackage @@ -92484,7 +97229,6 @@ self: { testHaskellDepends = [ base bytestring containers HUnit parsec zlib ]; - jailbreak = true; homepage = "http://happstack.com"; description = "Web related tools and services"; license = stdenv.lib.licenses.bsd3; @@ -92515,7 +97259,6 @@ self: { testHaskellDepends = [ base bytestring containers HUnit parsec zlib ]; - jailbreak = true; homepage = "http://happstack.com"; description = "Web related tools and services"; license = stdenv.lib.licenses.bsd3; @@ -92637,6 +97380,7 @@ self: { homepage = "http://happstack.com"; description = "Event-based distributed state"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-static-routing" = callPackage @@ -92653,6 +97397,7 @@ self: { homepage = "https://github.com/scrive/happstack-static-routing"; description = "Support for static URL routing with overlap detection for Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-util" = callPackage @@ -92676,6 +97421,7 @@ self: { homepage = "http://happstack.com"; description = "Web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-yui" = callPackage @@ -92698,6 +97444,7 @@ self: { homepage = "http://hub.darcs.net/dag/yui/browse/happstack-yui"; description = "Utilities for using YUI3 with Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happy_1_19_4" = callPackage @@ -92769,6 +97516,7 @@ self: { homepage = "https://github.com/cstrahan/happybara"; description = "Acceptance test framework for web applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happybara-webkit" = callPackage @@ -92790,6 +97538,7 @@ self: { homepage = "https://github.com/cstrahan/happybara/happybara-webkit"; description = "WebKit Happybara driver"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happybara-webkit-server" = callPackage @@ -92803,6 +97552,7 @@ self: { homepage = "https://github.com/cstrahan/happybara/happybara-webkit-server"; description = "WebKit Server binary for Happybara (taken from capybara-webkit)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "har" = callPackage @@ -92838,6 +97588,7 @@ self: { homepage = "http://www.davidb.org/darcs/harchive/"; description = "Networked content addressed backup and restore software"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl; inherit (pkgs) sqlite;}; "hardware-edsl" = callPackage @@ -92855,6 +97606,7 @@ self: { homepage = "https://github.com/markus-git/hardware-edsl"; description = "Deep embedding of hardware descriptions with code generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hark" = callPackage @@ -92874,6 +97626,7 @@ self: { homepage = "http://code.google.com/p/hark/"; description = "A Gentoo package query tool"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "harmony" = callPackage @@ -92898,6 +97651,7 @@ self: { ]; description = "A web service specification compiler that generates implementation and tests"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haroonga" = callPackage @@ -92914,6 +97668,7 @@ self: { libraryPkgconfigDepends = [ groonga ]; description = "Low level bindings for Groonga"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {groonga = null;}; "haroonga-httpd" = callPackage @@ -92933,6 +97688,7 @@ self: { jailbreak = true; description = "Yet another Groonga http server"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "harp" = callPackage @@ -92976,6 +97732,7 @@ self: { homepage = "http://github.com/nonowarn/has"; description = "Entity based records"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "has-th" = callPackage @@ -92988,6 +97745,7 @@ self: { homepage = "http://github.com/chrisdone/has-th"; description = "Template Haskell function for Has records"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hascal" = callPackage @@ -93005,6 +97763,7 @@ self: { homepage = "http://darcsden.com/mekeor/hascal"; description = "A minimalistic but extensible and precise calculator"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hascat" = callPackage @@ -93024,6 +97783,7 @@ self: { jailbreak = true; description = "Hascat Web Server"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hascat-lib" = callPackage @@ -93042,6 +97802,7 @@ self: { jailbreak = true; description = "Hascat Package"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hascat-setup" = callPackage @@ -93063,6 +97824,7 @@ self: { doHaddock = false; description = "Hascat Installation helper"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hascat-system" = callPackage @@ -93080,6 +97842,7 @@ self: { jailbreak = true; description = "Hascat System Package"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hash" = callPackage @@ -93100,6 +97863,7 @@ self: { homepage = "http://github.com/analytics/hash/"; description = "Hashing tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hashable_1_2_3_0" = callPackage @@ -93316,6 +98080,7 @@ self: { homepage = "https://github.com/wowus/hashable-generics"; description = "Automatically generates Hashable instances with GHC.Generics."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hashable-time" = callPackage @@ -93364,6 +98129,7 @@ self: { ]; description = "Hashed file storage support code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hashids" = callPackage @@ -93377,6 +98143,7 @@ self: { homepage = "http://hashids.org/"; description = "Hashids generates short, unique, non-sequential ids from numbers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hashmap" = callPackage @@ -93494,6 +98261,7 @@ self: { homepage = "http://huygens.functor.nl/hasim/"; description = "Process-Based Discrete Event Simulation library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hask" = callPackage @@ -93512,6 +98280,7 @@ self: { homepage = "http://github.com/ekmett/hask"; description = "Categories"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hask-home" = callPackage @@ -93531,6 +98300,7 @@ self: { homepage = "http://gregheartsfield.com/hask-home"; description = "Generate homepages for cabal packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskades" = callPackage @@ -93570,6 +98340,7 @@ self: { homepage = "http://github.com/cosbynator/haskakafka"; description = "Kafka bindings for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) rdkafka;}; "haskanoid" = callPackage @@ -93589,6 +98360,7 @@ self: { homepage = "http://github.com/ivanperez-keera/haskanoid"; description = "A breakout game written in Yampa using SDL"; license = "unknown"; + hydraPlatforms = [ "x86_64-linux" ]; }) {}; "haskarrow" = callPackage @@ -93606,6 +98378,7 @@ self: { ]; description = "A dialect of haskell with order of execution based on dependency resolution"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskbot-core" = callPackage @@ -93692,6 +98465,7 @@ self: { homepage = "http://www.korgwal.com/haskeem/"; description = "A small scheme interpreter"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskeline_0_7_2_1" = callPackage @@ -93743,6 +98517,7 @@ self: { homepage = "http://community.haskell.org/~aslatter/code/haskeline-class"; description = "Class interface for working with Haskeline"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-aliyun" = callPackage @@ -93766,6 +98541,7 @@ self: { homepage = "https://github.com/yihuang/haskell-aliyun/"; description = "haskell client of aliyun service"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-awk" = callPackage @@ -93796,6 +98572,7 @@ self: { ]; description = "Transform text from the command-line using Haskell expressions"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-bcrypt" = callPackage @@ -93829,6 +98606,7 @@ self: { jailbreak = true; description = "BrainFuck interpreter"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-cnc" = callPackage @@ -93850,6 +98628,7 @@ self: { homepage = "http://software.intel.com/en-us/articles/intel-concurrent-collections-for-cc/"; description = "Library for parallel programming in the Intel Concurrent Collections paradigm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-coffee" = callPackage @@ -93892,6 +98671,7 @@ self: { jailbreak = true; description = "Small modules for a Haskell course in which Haskell is taught by implementing Prelude functionality"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-docs" = callPackage @@ -93958,6 +98738,7 @@ self: { homepage = "https://github.com/evolutics/haskell-formatter"; description = "Haskell source code formatter"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-ftp" = callPackage @@ -93986,6 +98767,7 @@ self: { homepage = "https://github.com/yihuang/haskell-ftp"; description = "A Haskell ftp server with configurable backend"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-generate" = callPackage @@ -94026,6 +98808,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Generate Haskell bindings for GObject Introspection capable libraries"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-linux" ]; }) {inherit (pkgs) glib; inherit (pkgs) gobjectIntrospection;}; "haskell-gi-base" = callPackage @@ -94043,6 +98826,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi-base"; description = "Foundation for libraries generated by haskell-gi"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {inherit (pkgs) glib;}; "haskell-import-graph" = callPackage @@ -94141,6 +98925,7 @@ self: { homepage = "http://github.com/comius/haskell-mpfr"; description = "Correctly-rounded arbitrary-precision floating-point arithmetic"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-mpi" = callPackage @@ -94163,6 +98948,7 @@ self: { homepage = "http://github.com/bjpop/haskell-mpi"; description = "Distributed parallel programming in Haskell using MPI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {open-pal = null; open-rte = null; inherit (pkgs) openmpi;}; "haskell-names_0_4_1" = callPackage @@ -94276,6 +99062,7 @@ self: { homepage = "http://documentup.com/haskell-suite/haskell-names"; description = "Name resolution library for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-neo4j-client_0_3_1_4" = callPackage @@ -94388,6 +99175,7 @@ self: { homepage = "https://github.com/brooksbp/haskell-openflow"; description = "OpenFlow protocol in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-packages_0_2_4_3" = callPackage @@ -94474,6 +99262,7 @@ self: { homepage = "http://michaeldadams.org/projects/haskell-pdf-presenter/"; description = "Tool for presenting PDF-based presentations"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-platform-test" = callPackage @@ -94504,6 +99293,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/haskell-platform-test"; description = "A test system for the Haskell Platform environment"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-plot" = callPackage @@ -94521,6 +99311,7 @@ self: { homepage = "https://github.com/kaizhang/haskell-plot"; description = "A library for generating 2D plots painlessly"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-qrencode" = callPackage @@ -94563,6 +99354,7 @@ self: { ]; description = "Reflect Haskell types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-rules" = callPackage @@ -94574,6 +99366,7 @@ self: { libraryHaskellDepends = [ base syb ]; description = "A DSL for expressing natural deduction rules in Haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-spacegoo" = callPackage @@ -94816,6 +99609,7 @@ self: { jailbreak = true; description = "Parse source to template-haskell abstract syntax"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-token-utils" = callPackage @@ -94841,6 +99635,7 @@ self: { homepage = "https://github.com/alanz/haskell-token-utils"; description = "Utilities to tie up tokens to an AST"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-tor" = callPackage @@ -94876,6 +99671,7 @@ self: { homepage = "http://github.com/GaloisInc/haskell-tor"; description = "A Haskell Tor Node"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-type-exts" = callPackage @@ -94890,6 +99686,7 @@ self: { homepage = "http://code.haskell.org/haskell-type-exts"; description = "A type checker for Haskell/haskell-src-exts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-typescript" = callPackage @@ -94914,6 +99711,7 @@ self: { homepage = "https://github.com/PeterScott/haskell-tyrant"; description = "Haskell implementation of the Tokyo Tyrant binary protocol"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-updater" = callPackage @@ -94951,6 +99749,7 @@ self: { homepage = "http://patch-tag.com/r/adept/haskell-xmpp/home"; description = "Haskell XMPP (eXtensible Message Passing Protocol, a.k.a. Jabber) library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell2010" = callPackage @@ -94964,6 +99763,7 @@ self: { homepage = "http://www.haskell.org/onlinereport/haskell2010/"; description = "Compatibility with Haskell 2010"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell98" = callPackage @@ -94981,6 +99781,7 @@ self: { homepage = "http://www.haskell.org/definition/"; description = "Compatibility with Haskell 98"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell98libraries" = callPackage @@ -95026,6 +99827,7 @@ self: { homepage = "http://twitter.com/khibino"; description = "Bracketed HDBC session for HaskellDB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-connect-hdbc-catchio-mtl" = callPackage @@ -95042,6 +99844,7 @@ self: { homepage = "http://twitter.com/khibino"; description = "Bracketed HaskellDB HDBC session using MonadCatchIO-mtl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-connect-hdbc-catchio-tf" = callPackage @@ -95059,6 +99862,7 @@ self: { homepage = "http://twitter.com/khibino"; description = "Bracketed HaskellDB HDBC session using MonadCatchIO-transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-connect-hdbc-catchio-transformers" = callPackage @@ -95076,6 +99880,7 @@ self: { homepage = "http://twitter.com/khibino"; description = "Bracketed HaskellDB HDBC session using MonadCatchIO-transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-connect-hdbc-lifted" = callPackage @@ -95093,6 +99898,7 @@ self: { homepage = "http://twitter.com/khibino"; description = "Bracketed HaskellDB HDBC session using lifted-base"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-dynamic" = callPackage @@ -95109,6 +99915,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the dynamically loaded drivers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-flat" = callPackage @@ -95162,6 +99969,7 @@ self: { jailbreak = true; description = "HaskellDB support for the HDBC MySQL driver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-hdbc-odbc" = callPackage @@ -95230,6 +100038,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for HSQL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-hsql-mysql" = callPackage @@ -95249,6 +100058,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HSQL MySQL driver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-hsql-odbc" = callPackage @@ -95268,6 +100078,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HSQL ODBC driver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-hsql-oracle" = callPackage @@ -95307,6 +100118,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HSQL PostgreSQL driver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-hsql-sqlite" = callPackage @@ -95346,6 +100158,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HSQL SQLite3 driver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-th" = callPackage @@ -95370,6 +100183,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for WXHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskellscrabble" = callPackage @@ -95395,6 +100209,7 @@ self: { homepage = "http://www.github.com/happy0/haskellscrabble"; description = "A scrabble library capturing the core game logic of scrabble"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskellscript" = callPackage @@ -95458,6 +100273,7 @@ self: { homepage = "http://haskell.org/haskellwiki/HaskGame"; description = "Haskell game library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskheap" = callPackage @@ -95476,6 +100292,7 @@ self: { homepage = "https://github.com/Raynes/haskheap"; description = "Haskell bindings to refheap"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskhol-core" = callPackage @@ -95496,6 +100313,7 @@ self: { homepage = "http://haskhol.org"; description = "The core logical system of HaskHOL, an EDSL for HOL theorem proving"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskintex_0_5_0_2" = callPackage @@ -95537,6 +100355,7 @@ self: { haskell-src-exts HaTeX hint parsec process text transformers ]; executableHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://daniel-diaz.github.io/projects/haskintex"; description = "Haskell Evaluation inside of LaTeX code"; license = stdenv.lib.licenses.bsd3; @@ -95559,6 +100378,30 @@ self: { haskell-src-exts HaTeX hint parsec process text transformers ]; executableHaskellDepends = [ base ]; + jailbreak = true; + homepage = "http://daniel-diaz.github.io/projects/haskintex"; + description = "Haskell Evaluation inside of LaTeX code"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "haskintex_0_6_0_0" = callPackage + ({ mkDerivation, base, binary, bytestring, containers, directory + , filepath, haskell-src-exts, HaTeX, hint, parsec, process, text + , transformers + }: + mkDerivation { + pname = "haskintex"; + version = "0.6.0.0"; + sha256 = "229a817b9a688f23d2e394a7e76aff80973707df86fe628214577e863072914f"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary bytestring containers directory filepath + haskell-src-exts HaTeX hint parsec process text transformers + ]; + executableHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://daniel-diaz.github.io/projects/haskintex"; description = "Haskell Evaluation inside of LaTeX code"; license = stdenv.lib.licenses.bsd3; @@ -95572,8 +100415,8 @@ self: { }: mkDerivation { pname = "haskintex"; - version = "0.6.0.0"; - sha256 = "229a817b9a688f23d2e394a7e76aff80973707df86fe628214577e863072914f"; + version = "0.6.0.1"; + sha256 = "9b45463a0d77e8665cc82b656b6d9f8020c873d73f2dd9fe92fcb85a45e90f44"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -95592,13 +100435,12 @@ self: { }: mkDerivation { pname = "haskmon"; - version = "0.2.1.0"; - sha256 = "69ac7e21a62f20c2fce94db01c373dbd66876a0cb016ab25a99a9dedc4f62677"; + version = "0.2.2.0"; + sha256 = "8bdf7eb4ca3f41d24b3d05195835215b20327d034752fd18149c132dd82d7f0c"; libraryHaskellDepends = [ aeson base bytestring containers http-streams io-streams time vector ]; - jailbreak = true; description = "A haskell wrapper for PokeAPI.co (www.pokeapi.co)"; license = stdenv.lib.licenses.mit; }) {}; @@ -95626,6 +100468,7 @@ self: { homepage = "http://github.com/haskoin/haskoin"; description = "Implementation of the Bitcoin protocol"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoin-core" = callPackage @@ -95655,6 +100498,7 @@ self: { homepage = "http://github.com/haskoin/haskoin"; description = "Implementation of the core Bitcoin protocol features"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoin-crypto" = callPackage @@ -95679,6 +100523,7 @@ self: { homepage = "http://github.com/plaprade/haskoin-crypto"; description = "Implementation of Bitcoin cryptographic primitives"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoin-node" = callPackage @@ -95709,6 +100554,7 @@ self: { homepage = "http://github.com/haskoin/haskoin"; description = "Implementation of a Bitoin node"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoin-protocol" = callPackage @@ -95731,6 +100577,7 @@ self: { homepage = "http://github.com/plaprade/haskoin-protocol"; description = "Implementation of the Bitcoin network protocol messages"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoin-script" = callPackage @@ -95755,6 +100602,7 @@ self: { homepage = "http://github.com/plaprade/haskoin-script"; description = "Implementation of Bitcoin script parsing and evaluation"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoin-util" = callPackage @@ -95777,6 +100625,7 @@ self: { homepage = "http://github.com/plaprade/haskoin-util"; description = "Utility functions for the Network.Haskoin project"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoin-wallet" = callPackage @@ -95817,6 +100666,7 @@ self: { homepage = "http://github.com/haskoin/haskoin"; description = "Implementation of a Bitcoin SPV Wallet with BIP32 and multisig support"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoon" = callPackage @@ -95834,6 +100684,7 @@ self: { ]; description = "Web Application Abstraction"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoon-httpspec" = callPackage @@ -95849,6 +100700,7 @@ self: { ]; description = "Integrating HttpSpec with Haskoon"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoon-salvia" = callPackage @@ -95866,6 +100718,7 @@ self: { ]; description = "Integrating HttpSpec with Haskoon"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskore" = callPackage @@ -95891,6 +100744,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Haskore"; description = "The Haskore Computer Music System"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskore-realtime" = callPackage @@ -95909,6 +100763,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Haskore/"; description = "Routines for realtime playback of Haskore songs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskore-supercollider" = callPackage @@ -95932,6 +100787,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/SuperCollider"; description = "Haskore back-end for SuperCollider"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskore-synthesizer" = callPackage @@ -95953,6 +100809,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Music rendering coded in Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskore-vintage" = callPackage @@ -95998,6 +100855,7 @@ self: { executableHaskellDepends = [ mtl old-time QuickCheck time wtk ]; description = "Loan calculator engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hasloGUI" = callPackage @@ -96016,6 +100874,7 @@ self: { ]; description = "Loan calculator Gtk GUI. Based on haslo (Haskell Loan) library."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hasparql-client" = callPackage @@ -96028,6 +100887,7 @@ self: { homepage = "https://github.com/lhpaladin/HaSparql-Client"; description = "This package enables to write SPARQL queries to remote endpoints"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haspell" = callPackage @@ -96891,6 +101751,7 @@ self: { homepage = "https://github.com/nikita-volkov/hasql-postgres"; description = "A \"PostgreSQL\" backend for the \"hasql\" library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hasql-postgres-options" = callPackage @@ -96907,6 +101768,7 @@ self: { homepage = "https://github.com/nikita-volkov/hasql-postgres-options"; description = "An \"optparse-applicative\" parser for \"hasql-postgres\""; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hasql-th" = callPackage @@ -97041,8 +101903,8 @@ self: { }: mkDerivation { pname = "haste-compiler"; - version = "0.5.4.1"; - sha256 = "e10aa93a2a0507301d984f2e446ac12250a769a7142ad3a68a65108824ae1bf8"; + version = "0.5.4.2"; + sha256 = "bfbf3a0f2c8a8c4387ef19aedf1a298a7ae15c6e77d01368044c13efb56bbcab"; configureFlags = [ "-fportable" ]; isLibrary = true; isExecutable = true; @@ -97089,6 +101951,7 @@ self: { homepage = "https://github.com/agocorona/haste-perch"; description = "Create, navigate and modify the DOM tree with composable syntax, with the haste compiler"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hastily" = callPackage @@ -97155,6 +102018,7 @@ self: { homepage = "http://projects.haskell.org/hat/"; description = "The Haskell tracer, generating and viewing Haskell execution traces"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hatex-guide" = callPackage @@ -97171,6 +102035,7 @@ self: { ]; description = "HaTeX User's Guide"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hath" = callPackage @@ -97241,6 +102106,7 @@ self: { jailbreak = true; description = "Implementation of the rules of Love Letter"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hawitter" = callPackage @@ -97262,6 +102128,7 @@ self: { homepage = "http://d.hatena.ne.jp/xanxys/20100321/1269137834"; description = "A twitter client for GTK+. Beta version."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haxl" = callPackage @@ -97273,6 +102140,8 @@ self: { pname = "haxl"; version = "0.3.1.0"; sha256 = "fba961b0f3a9a9b6f7cf6ac24689d48fb8404d79ec86a36c2784f3f45d06669a"; + revision = "1"; + editedCabalFile = "223c00b89badaca423837b8a831c90e59f2826d359dccf22500e1fbbb96d7f07"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -97357,6 +102226,7 @@ self: { homepage = "https://github.com/joelteon/haxparse"; description = "Readable HaxBall replays"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haxr_3000_10_3_1" = callPackage @@ -97448,7 +102318,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "haxr" = callPackage + "haxr_3000_11_1_3" = callPackage ({ mkDerivation, array, base, base-compat, base64-bytestring , blaze-builder, bytestring, HaXml, HsOpenSSL, http-streams , http-types, io-streams, mtl, mtl-compat, network, network-uri @@ -97467,6 +102337,28 @@ self: { homepage = "http://www.haskell.org/haskellwiki/HaXR"; description = "XML-RPC client and server library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "haxr" = callPackage + ({ mkDerivation, array, base, base-compat, base64-bytestring + , blaze-builder, bytestring, HaXml, HsOpenSSL, http-streams + , http-types, io-streams, mtl, mtl-compat, network, network-uri + , old-locale, old-time, template-haskell, time, utf8-string + }: + mkDerivation { + pname = "haxr"; + version = "3000.11.1.4"; + sha256 = "cc8a9bac11beae5ea08984c91cd7abde6dd16cedbad42e54bae028fbf8e9b8fb"; + libraryHaskellDepends = [ + array base base-compat base64-bytestring blaze-builder bytestring + HaXml HsOpenSSL http-streams http-types io-streams mtl mtl-compat + network network-uri old-locale old-time template-haskell time + utf8-string + ]; + homepage = "http://www.haskell.org/haskellwiki/HaXR"; + description = "XML-RPC client and server library"; + license = stdenv.lib.licenses.bsd3; }) {}; "haxr-th" = callPackage @@ -97518,6 +102410,7 @@ self: { jailbreak = true; description = "Haskell bindings for the C Wayland library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) mesa; inherit (pkgs) wayland;}; "hayoo-cli" = callPackage @@ -97538,6 +102431,7 @@ self: { homepage = "https://github.com/Gonzih/hayoo-cli"; description = "Hayoo CLI"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hback" = callPackage @@ -97556,6 +102450,7 @@ self: { homepage = "http://hback.googlecode.com/"; description = "N-back memory game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hbayes" = callPackage @@ -97577,6 +102472,7 @@ self: { homepage = "http://www.alpheccar.org"; description = "Bayesian Networks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hbb" = callPackage @@ -97595,6 +102491,7 @@ self: { homepage = "https://bitbucket.org/bhris/hbb"; description = "Haskell Busy Bee, a backend for text editors"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hbcd" = callPackage @@ -97641,6 +102538,7 @@ self: { homepage = "http://www.dockerz.net/software/hbeat.html"; description = "A simple step sequencer GUI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) SDL_mixer;}; "hblas" = callPackage @@ -97660,6 +102558,7 @@ self: { homepage = "http://github.com/wellposed/hblas/"; description = "Human friendly BLAS and Lapack bindings for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; "hblock" = callPackage @@ -97680,6 +102579,7 @@ self: { jailbreak = true; description = "A mutable vector that provides indexation on the datatype fields it stores"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hbro" = callPackage @@ -97709,6 +102609,7 @@ self: { homepage = "https://github.com/k0ral/hbro"; description = "Minimal extensible web-browser"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hbro-contrib" = callPackage @@ -97747,6 +102648,7 @@ self: { homepage = "http://www.bytelabs.org/hburg.html"; description = "Haskell Bottom Up Rewrite Generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hcc" = callPackage @@ -97802,6 +102704,7 @@ self: { homepage = "http://github.com/nfjinjing/hcheat/"; description = "A collection of code cheatsheet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hchesslib" = callPackage @@ -97819,6 +102722,7 @@ self: { homepage = "https://github.com/nablaa/hchesslib"; description = "Chess library"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hcltest" = callPackage @@ -97882,6 +102786,7 @@ self: { homepage = "http://github.com/tbh/hcron"; description = "A simple job scheduler, which just runs some IO action at a given time"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hcube" = callPackage @@ -97901,6 +102806,7 @@ self: { ]; description = "Virtual Rubik's cube of arbitrary size"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hcwiid" = callPackage @@ -97914,6 +102820,7 @@ self: { homepage = "https://github.com/ivanperez-keera/hcwiid"; description = "Library to interface with the wiimote"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {bluetooth = null; inherit (pkgs) cwiid;}; "hdaemonize_0_5_0_0" = callPackage @@ -97963,6 +102870,7 @@ self: { homepage = "http://github.com/madhadron/hdaemonize"; description = "Library to handle the details of writing daemons for UNIX"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdbc-aeson" = callPackage @@ -98034,6 +102942,7 @@ self: { homepage = "https://github.com/s9gf4ult/hdbi"; description = "Haskell Database Independent interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdbi-conduit" = callPackage @@ -98055,6 +102964,7 @@ self: { homepage = "https://github.com/s9gf4ult/hdbi-conduit"; description = "Conduit glue for HDBI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdbi-postgresql" = callPackage @@ -98084,6 +102994,7 @@ self: { homepage = "https://github.com/s9gf4ult/hdbi-postgresql"; description = "PostgreSQL driver for hdbi"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdbi-sqlite" = callPackage @@ -98104,6 +103015,7 @@ self: { homepage = "https://github.com/s9gf4ult/hdbi-sqlite"; description = "SQlite driver for HDBI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdbi-tests" = callPackage @@ -98125,6 +103037,7 @@ self: { homepage = "https://github.com/s9gf4ult/hdbi-tests"; description = "test suite for testing HDBI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdevtools_0_1_0_6" = callPackage @@ -98297,6 +103210,7 @@ self: { ]; description = "Server-side HTTP Digest (RFC2617) in the CGI monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdirect" = callPackage @@ -98314,6 +103228,7 @@ self: { homepage = "http://www.haskell.org/hdirect/"; description = "An IDL compiler for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdis86" = callPackage @@ -98326,6 +103241,7 @@ self: { homepage = "https://github.com/kmcallister/hdis86"; description = "Interface to the udis86 disassembler for x86 and x86-64 / AMD64"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdiscount" = callPackage @@ -98340,6 +103256,7 @@ self: { homepage = "https://github.com/jamwt/hdiscount"; description = "Haskell bindings to the Discount markdown library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {markdown = null;}; "hdm" = callPackage @@ -98353,6 +103270,7 @@ self: { executableHaskellDepends = [ base directory process unix vty ]; description = "a small display manager"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdocs_0_4_1_3" = callPackage @@ -98382,7 +103300,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hdocs" = callPackage + "hdocs_0_4_4_0" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, bytestring, Cabal , containers, filepath, ghc, ghc-paths, haddock-api , haddock-library, MonadCatchIO-transformers, mtl, network, process @@ -98407,6 +103325,34 @@ self: { homepage = "https://github.com/mvoidex/hdocs"; description = "Haskell docs tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hdocs" = callPackage + ({ mkDerivation, aeson, aeson-pretty, base, bytestring, Cabal + , containers, filepath, ghc, ghc-paths, haddock-api + , haddock-library, MonadCatchIO-transformers, mtl, network, process + , text, transformers + }: + mkDerivation { + pname = "hdocs"; + version = "0.4.4.1"; + sha256 = "2a3bef807c3b56d0ca580db8cd5f3547dd9da906a815208f03786ce5a8313d3a"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring Cabal containers filepath ghc ghc-paths + haddock-api haddock-library MonadCatchIO-transformers mtl network + process text transformers + ]; + executableHaskellDepends = [ + aeson aeson-pretty base bytestring containers filepath mtl network + text + ]; + testHaskellDepends = [ base containers mtl ]; + homepage = "https://github.com/mvoidex/hdocs"; + description = "Haskell docs tool"; + license = stdenv.lib.licenses.bsd3; }) {}; "hdph" = callPackage @@ -98435,6 +103381,7 @@ self: { homepage = "https://github.com/PatrickMaier/HdpH"; description = "Haskell distributed parallel Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdph-closure" = callPackage @@ -98452,6 +103399,7 @@ self: { homepage = "https://github.com/PatrickMaier/HdpH"; description = "Explicit closures in Haskell distributed parallel Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdr-histogram" = callPackage @@ -98471,6 +103419,7 @@ self: { homepage = "http://github.com/joshbohde/hdr-histogram#readme"; description = "Haskell implementation of High Dynamic Range (HDR) Histograms"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "headergen" = callPackage @@ -98623,6 +103572,7 @@ self: { libraryHaskellDepends = [ base cereal crypto-api hF2 ]; description = "Elliptic Curve Cryptography for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hedis_0_6_9" = callPackage @@ -98674,21 +103624,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hedis_0_7_1" = callPackage - ({ mkDerivation, attoparsec, base, BoundedChan, bytestring - , bytestring-lexing, deepseq, HUnit, mtl, network, resource-pool + "hedis_0_7_8" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, bytestring-lexing + , deepseq, HUnit, mtl, network, resource-pool, slave-thread , test-framework, test-framework-hunit, time, vector }: mkDerivation { pname = "hedis"; - version = "0.7.1"; - sha256 = "741dce86d4a331c64f7720ad9650e5af77ccb8c0a3301266287ae07093f7a0a0"; + version = "0.7.8"; + sha256 = "079cdbde01306818003ce306f98fcc5b4b51ef0bdcf8ac5154ebbf58824d43a8"; libraryHaskellDepends = [ - attoparsec base BoundedChan bytestring bytestring-lexing deepseq - mtl network resource-pool time vector + attoparsec base bytestring bytestring-lexing deepseq mtl network + resource-pool time vector ]; testHaskellDepends = [ - base bytestring HUnit mtl test-framework test-framework-hunit time + base bytestring HUnit mtl slave-thread test-framework + test-framework-hunit time ]; homepage = "https://github.com/informatikr/hedis"; description = "Client library for the Redis datastore: supports full command set, pipelining"; @@ -98805,6 +103756,7 @@ self: { homepage = "https://bitbucket.org/dpwiz/hedn"; description = "EDN parsing and encoding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hein" = callPackage @@ -98878,7 +103830,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "heist" = callPackage + "heist_0_14_1_1" = callPackage ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html , bytestring, containers, directory, directory-tree, dlist, either , filepath, hashable, map-syntax, MonadCatchIO-transformers, mtl @@ -98900,6 +103852,29 @@ self: { homepage = "http://snapframework.com/"; description = "An Haskell template system supporting both HTML5 and XML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "heist" = callPackage + ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html + , bytestring, containers, directory, directory-tree, dlist, either + , filepath, hashable, map-syntax, MonadCatchIO-transformers, mtl + , process, random, text, time, transformers, unordered-containers + , vector, xmlhtml + }: + mkDerivation { + pname = "heist"; + version = "0.14.1.2"; + sha256 = "e8609f87a31cd750ceab30f1eeb43dc098ce603f113d5d17bacfa19670139f7e"; + libraryHaskellDepends = [ + aeson attoparsec base blaze-builder blaze-html bytestring + containers directory directory-tree dlist either filepath hashable + map-syntax MonadCatchIO-transformers mtl process random text time + transformers unordered-containers vector xmlhtml + ]; + homepage = "http://snapframework.com/"; + description = "An Haskell template system supporting both HTML5 and XML"; + license = stdenv.lib.licenses.bsd3; }) {}; "heist-aeson" = callPackage @@ -98916,6 +103891,7 @@ self: { ]; description = "Use JSON directly from Heist templates"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "heist-async" = callPackage @@ -98954,6 +103930,7 @@ self: { homepage = "https://github.com/philopon/helics"; description = "New Relic® agent SDK wrapper for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {newrelic-collector-client = null; newrelic-common = null; newrelic-transaction = null;}; @@ -98974,6 +103951,7 @@ self: { homepage = "https://github.com/philopon/helics"; description = "New Relic® agent SDK wrapper for wai"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "helisp" = callPackage @@ -99011,6 +103989,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/bin/view/Helium/WebHome"; description = "The Helium Compiler"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "helix" = callPackage @@ -99060,6 +104039,7 @@ self: { executableHaskellDepends = [ base transformers utf8-string ]; description = "A Haskell shell based on shell-conduit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hellage" = callPackage @@ -99080,6 +104060,7 @@ self: { homepage = "http://bitcheese.net/wiki/hellnet/hellage"; description = "Distributed hackage mirror"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hellnet" = callPackage @@ -99105,6 +104086,7 @@ self: { homepage = "http://bitcheese.net/wiki/hellnet/hspawn"; description = "Simple, distributed, anonymous data sharing network"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hello" = callPackage @@ -99143,6 +104125,7 @@ self: { homepage = "http://github.com/switchface/helm"; description = "A functionally reactive game engine"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "help-esb" = callPackage @@ -99177,6 +104160,7 @@ self: { ]; description = "A module music mixer and player"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hemkay-core" = callPackage @@ -99217,6 +104201,7 @@ self: { homepage = "https://github.com/nh2/hemokit"; description = "Haskell port of the Emokit EEG project"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hen" = callPackage @@ -99239,6 +104224,7 @@ self: { homepage = "https://github.com/selectel/hen"; description = "Haskell bindings to Xen hypervisor interface"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {xenctrl = null;}; "henet" = callPackage @@ -99253,6 +104239,7 @@ self: { ]; description = "Bindings and high level interface for to ENet v1.3.9"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hepevt" = callPackage @@ -99264,6 +104251,7 @@ self: { libraryHaskellDepends = [ bytestring haskell2010 lha ]; description = "HEPEVT parser"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "her-lexer" = callPackage @@ -99276,6 +104264,7 @@ self: { homepage = "http://personal.cis.strath.ac.uk/~conor/pub/she"; description = "A lexer for Haskell source code"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "her-lexer-parsec" = callPackage @@ -99287,6 +104276,7 @@ self: { libraryHaskellDepends = [ base her-lexer parsec transformers ]; description = "Parsec frontend to \"her-lexer\" for Haskell source code"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "herbalizer" = callPackage @@ -99305,6 +104295,7 @@ self: { homepage = "https://github.com/danchoi/herbalizer"; description = "HAML to ERB translator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "here_1_2_6" = callPackage @@ -99392,6 +104383,7 @@ self: { ]; description = "Haskell Equational Reasoning Model-to-Implementation Tunnel"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hermit-syb" = callPackage @@ -99407,6 +104399,7 @@ self: { ]; description = "HERMIT plugin for optimizing Scrap-Your-Boilerplate traversals"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hero-club-five-tenets" = callPackage @@ -99443,8 +104436,8 @@ self: { }: mkDerivation { pname = "heroku-persistent"; - version = "0.1.0"; - sha256 = "6ef14323b7f054fd140aa3300199f0a7ea5326e68ed7f4bda04891d9cc0144f3"; + version = "0.2.0"; + sha256 = "f0c2101361dbdc91aecd642f07099bb421b5abca00284f69a7406ad56dbfc80c"; libraryHaskellDepends = [ base bytestring heroku persistent-postgresql text ]; @@ -99470,6 +104463,7 @@ self: { ]; description = "A library for compiling and serving static web assets"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "herringbone-embed" = callPackage @@ -99486,6 +104480,7 @@ self: { ]; description = "Embed preprocessed web assets in your executable with Template Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "herringbone-wai" = callPackage @@ -99502,6 +104497,7 @@ self: { ]; description = "Wai adapter for the Herringbone web asset preprocessor"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hesh" = callPackage @@ -99512,8 +104508,8 @@ self: { }: mkDerivation { pname = "hesh"; - version = "1.0.0"; - sha256 = "22244996bb3bd911aff18e8008454f9407034a8422ebddbe76736248e6955aab"; + version = "1.5.0"; + sha256 = "1e79b396d448fd7e98c293c14efed69e65ece14a5fd77bb408b8e4d0a5a024f6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -99524,10 +104520,10 @@ self: { directory filepath hackage-db haskell-src-exts parsec process text time uniplate ]; - jailbreak = true; homepage = "https://github.com/jekor/hesh"; description = "the Haskell Extensible Shell: Haskell for Bash-style scripts"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hesql" = callPackage @@ -99546,6 +104542,7 @@ self: { jailbreak = true; description = "Haskell's embedded SQL"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hetero-map" = callPackage @@ -99574,6 +104571,7 @@ self: { homepage = "http://web.comlab.ox.ac.uk/oucl/work/ian.lynagh/Hetris/"; description = "Text Tetris"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ncurses;}; "heukarya" = callPackage @@ -99589,6 +104587,7 @@ self: { homepage = "https://github.com/t3476/heukarya"; description = "A genetic programming based on tree structure"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hevolisa" = callPackage @@ -99604,6 +104603,7 @@ self: { ]; description = "Genetic Mona Lisa problem in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hevolisa-dph" = callPackage @@ -99621,6 +104621,7 @@ self: { ]; description = "Genetic Mona Lisa problem in Haskell - using Data Parallel Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hex" = callPackage @@ -99692,6 +104693,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Hexpat/"; description = "Chunked XML parsing using iteratees"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hexpat-lens" = callPackage @@ -99742,6 +104744,7 @@ self: { ]; description = "Picklers for de/serialising Generic data types to and from XML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hexpat-tagsoup" = callPackage @@ -99784,6 +104787,7 @@ self: { ]; description = "Hexadecimal ByteString literals, with placeholders that bind variables"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hexstring" = callPackage @@ -99850,6 +104854,7 @@ self: { executableSystemDepends = [ doublefann ]; description = "Haskell binding to the FANN library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {doublefann = null; fann = null;}; "hfd" = callPackage @@ -99869,6 +104874,7 @@ self: { jailbreak = true; description = "Flash debugger"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hfiar" = callPackage @@ -99885,9 +104891,10 @@ self: { homepage = "http://github.com/elbrujohalcon/hfiar"; description = "Four in a Row in Haskell!!"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hflags" = callPackage + "hflags_0_4" = callPackage ({ mkDerivation, base, containers, template-haskell, text }: mkDerivation { pname = "hflags"; @@ -99897,6 +104904,19 @@ self: { homepage = "http://github.com/errge/hflags"; description = "Command line flag parser, very similar to Google's gflags"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hflags" = callPackage + ({ mkDerivation, base, containers, template-haskell, text }: + mkDerivation { + pname = "hflags"; + version = "0.4.1"; + sha256 = "147d65cba2959b682e4a33378a80766a1011a78ed767a4d08ae463af6d428a0c"; + libraryHaskellDepends = [ base containers template-haskell text ]; + homepage = "http://github.com/errge/hflags"; + description = "Command line flag parser, very similar to Google's gflags"; + license = stdenv.lib.licenses.asl20; }) {}; "hfmt" = callPackage @@ -99924,6 +104944,7 @@ self: { homepage = "http://github.com/danstiner/hfmt"; description = "Haskell source code formatter"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hfoil" = callPackage @@ -99943,6 +104964,7 @@ self: { executableHaskellDepends = [ base ]; description = "Hess-Smith panel code for inviscid 2-d airfoil analysis"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hformat" = callPackage @@ -99988,6 +105010,7 @@ self: { homepage = "http://github.com/cmh/Hfractal"; description = "OpenGL fractal renderer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hfsevents_0_1_5" = callPackage @@ -100030,6 +105053,7 @@ self: { homepage = "http://www.fing.edu.uy/inco/proyectos/fusion"; description = "A library for fusing a subset of Haskell programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hg-buildpackage" = callPackage @@ -100048,6 +105072,7 @@ self: { ]; description = "Tools to help manage Debian packages with Mercurial"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgal" = callPackage @@ -100070,6 +105095,7 @@ self: { libraryHaskellDepends = [ array base haskell98 mtl ]; description = "Haskell Genetic Algorithm Library"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgdbmi" = callPackage @@ -100124,6 +105150,7 @@ self: { homepage = "http://www.glyc.dc.uba.ar/intohylo/hgen.php"; description = "Random generation of modal and hybrid logic formulas"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgeometric" = callPackage @@ -100136,6 +105163,7 @@ self: { homepage = "ftp://ftp.cs.man.ac.uk/pub/toby/gpc/"; description = "A geometric library with bindings to GPC"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgeometry" = callPackage @@ -100158,6 +105186,7 @@ self: { homepage = "http://fstaals.net/software/hgeometry"; description = "Data types for geometric objects, geometric algorithms, and data structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgettext" = callPackage @@ -100199,6 +105228,7 @@ self: { homepage = "https://github.com/noteed/hgithub"; description = "Haskell bindings to the GitHub API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgl-example" = callPackage @@ -100235,6 +105265,7 @@ self: { homepage = "http://github.com/polux/hgom"; description = "An haskell port of the java version of gom"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgopher" = callPackage @@ -100284,6 +105315,7 @@ self: { homepage = "https://github.com/mjakob/hgrib"; description = "Unofficial bindings for GRIB API"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {grib_api = null;}; "hharp" = callPackage @@ -100298,6 +105330,7 @@ self: { homepage = "http://www.harphttp.org"; description = "Binding to libharp"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {harp = null;}; "hi" = callPackage @@ -100369,6 +105402,7 @@ self: { homepage = "http://hiccup.googlecode.com/"; description = "Relatively efficient Tcl interpreter with support for basic operations"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hichi" = callPackage @@ -100382,6 +105416,7 @@ self: { executableHaskellDepends = [ array base bytestring mtl network ]; description = "haskell robot for IChat protocol"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hid_0_2_1" = callPackage @@ -100410,6 +105445,7 @@ self: { homepage = "https://github.com/phaazon/hid"; description = "Interface to hidapi library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) hidapi;}; "hidapi" = callPackage @@ -100423,6 +105459,7 @@ self: { homepage = "https://github.com/vahokif/haskell-hidapi"; description = "Haskell bindings to HIDAPI"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) systemd;}; "hieraclus" = callPackage @@ -100434,6 +105471,7 @@ self: { libraryHaskellDepends = [ base containers HUnit mtl multiset ]; description = "Automated clustering of arbitrary elements in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hierarchical-clustering" = callPackage @@ -100467,6 +105505,7 @@ self: { jailbreak = true; description = "Draw diagrams of dendrograms made by hierarchical-clustering"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hierarchical-exceptions" = callPackage @@ -100518,6 +105557,7 @@ self: { homepage = "http://github.com/paolino/hiernotify"; description = "Notification library for a filesystem hierarchy"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "highWaterMark" = callPackage @@ -100532,6 +105572,7 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; description = "Memory usage statistics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "higher-leveldb" = callPackage @@ -100541,8 +105582,8 @@ self: { }: mkDerivation { pname = "higher-leveldb"; - version = "0.3.0.0"; - sha256 = "668557a64c3df44ab1ddb3f9ffd9bdaf2a88fb6f56b7712daf8ee8418370f051"; + version = "0.3.0.1"; + sha256 = "42d99bd80aa8ca53b537529a580ba9222ad840f50bc7d300120254165cb888fa"; libraryHaskellDepends = [ base bytestring cereal data-default leveldb-haskell lifted-base monad-control mtl resourcet transformers transformers-base @@ -100551,10 +105592,10 @@ self: { base bytestring cereal hspec leveldb-haskell lifted-base monad-control mtl process resourcet transformers transformers-base ]; - jailbreak = true; homepage = "https://github.com/jeremyjh/higher-leveldb"; description = "A rich monadic API for working with leveldb databases"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "higherorder" = callPackage @@ -100568,6 +105609,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Some higher order functions for Bool and []"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "highjson" = callPackage @@ -100587,6 +105629,7 @@ self: { homepage = "https://github.com/agrafix/highjson"; description = "Very fast JSON serialisation and parsing library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "highlight-versions" = callPackage @@ -100752,7 +105795,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "highlighting-kate" = callPackage + "highlighting-kate_0_6_1" = callPackage ({ mkDerivation, base, blaze-html, bytestring, containers, Diff , directory, filepath, mtl, parsec, pcre-light, process , utf8-string @@ -100775,6 +105818,32 @@ self: { homepage = "http://github.com/jgm/highlighting-kate"; description = "Syntax highlighting"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "highlighting-kate" = callPackage + ({ mkDerivation, base, blaze-html, bytestring, containers, Diff + , directory, filepath, mtl, parsec, pcre-light, process + , utf8-string + }: + mkDerivation { + pname = "highlighting-kate"; + version = "0.6.2"; + sha256 = "728f10ccba6dfa1604398ae527520d2debeef870472fe104c2bf0714c513b411"; + configureFlags = [ "-fpcre-light" ]; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base blaze-html bytestring containers mtl parsec pcre-light + utf8-string + ]; + executableHaskellDepends = [ base blaze-html containers filepath ]; + testHaskellDepends = [ + base blaze-html containers Diff directory filepath process + ]; + homepage = "http://github.com/jgm/highlighting-kate"; + description = "Syntax highlighting"; + license = "GPL"; }) {}; "hills" = callPackage @@ -100837,6 +105906,7 @@ self: { homepage = "http://github.com/Fuuzetsu/himg"; description = "Simple gtk2hs image viewer. Point it at an image and fire away."; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "himpy" = callPackage @@ -100860,6 +105930,7 @@ self: { homepage = "https://github.com/pyr/himpy"; description = "multithreaded snmp poller for riemann"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hindent_4_4_1" = callPackage @@ -101035,6 +106106,7 @@ self: { libraryHaskellDepends = [ base hinduce-missingh layout ]; description = "Interface and utilities for classifiers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hinduce-classifier-decisiontree" = callPackage @@ -101050,6 +106122,7 @@ self: { ]; description = "Decision Tree Classifiers for hInduce"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hinduce-examples" = callPackage @@ -101068,6 +106141,7 @@ self: { ]; description = "Example data for hInduce"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hinduce-missingh" = callPackage @@ -101193,7 +106267,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hint" = callPackage + "hint_0_4_2_3" = callPackage ({ mkDerivation, base, directory, exceptions, extensible-exceptions , filepath, ghc, ghc-mtl, ghc-paths, HUnit, mtl, random, unix }: @@ -101213,6 +106287,50 @@ self: { homepage = "http://hub.darcs.net/jcpetruzza/hint"; description = "Runtime Haskell interpreter (GHC API wrapper)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hint_0_4_3" = callPackage + ({ mkDerivation, base, directory, exceptions, extensible-exceptions + , filepath, ghc, ghc-mtl, ghc-paths, HUnit, mtl, random, unix + }: + mkDerivation { + pname = "hint"; + version = "0.4.3"; + sha256 = "5f66ecbd8e36b4c277c9a8603f1218bf6fbfab086a5deeeeb5713a2903af7ddb"; + libraryHaskellDepends = [ + base directory exceptions extensible-exceptions filepath ghc + ghc-mtl ghc-paths mtl random unix + ]; + testHaskellDepends = [ + base directory exceptions extensible-exceptions filepath HUnit mtl + ]; + jailbreak = true; + doCheck = false; + homepage = "https://github.com/mvdan/hint"; + description = "Runtime Haskell interpreter (GHC API wrapper)"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hint" = callPackage + ({ mkDerivation, base, directory, exceptions, extensible-exceptions + , filepath, ghc, ghc-paths, HUnit, mtl, random, unix + }: + mkDerivation { + pname = "hint"; + version = "0.5.1"; + sha256 = "c774c56859366ead6fa88605bd69dad6314cc3c1f4fb732a1910cd9d17ca1666"; + libraryHaskellDepends = [ + base directory exceptions filepath ghc ghc-paths mtl random unix + ]; + testHaskellDepends = [ + base directory exceptions extensible-exceptions filepath HUnit + ]; + doCheck = false; + homepage = "https://github.com/mvdan/hint"; + description = "Runtime Haskell interpreter (GHC API wrapper)"; + license = stdenv.lib.licenses.bsd3; }) {}; "hint-server" = callPackage @@ -101225,6 +106343,7 @@ self: { libraryHaskellDepends = [ base eprocess exceptions hint monad-loops mtl ]; + jailbreak = true; description = "A server process that runs hint"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -101241,6 +106360,7 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; description = "Space Invaders"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hinze-streams" = callPackage @@ -101253,25 +106373,27 @@ self: { homepage = "http://code.haskell.org/~dons/code/hinze-streams"; description = "Streams and Unique Fixed Points"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hip" = callPackage - ({ mkDerivation, base, bytestring, deepseq, filepath, JuicyPixels - , netpbm, primitive, process, repa, temporary, vector - , vector-th-unbox + ({ mkDerivation, base, bytestring, Chart, Chart-cairo, colour + , deepseq, filepath, JuicyPixels, netpbm, primitive, process, repa + , temporary, vector }: mkDerivation { pname = "hip"; - version = "1.0.0.0"; - sha256 = "5da5f20c32dc907b1d5b918dcfe49662c43dbf004cead970571f912d91fba39a"; + version = "1.0.1.1"; + sha256 = "e2b2eaf7786f56b50ac814c5ac8a2966c7bd0ee1c132dcca48234188f47f0101"; libraryHaskellDepends = [ - base bytestring deepseq filepath JuicyPixels netpbm primitive - process repa temporary vector vector-th-unbox + base bytestring Chart Chart-cairo colour deepseq filepath + JuicyPixels netpbm primitive process repa temporary vector ]; jailbreak = true; homepage = "https://github.com/lehins/hip"; description = "Haskell Image Processing (HIP) Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hipbot" = callPackage @@ -101314,6 +106436,7 @@ self: { ]; description = "Hipchat API bindings in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hipe" = callPackage @@ -101330,6 +106453,7 @@ self: { homepage = "http://fstaals.net/software/hipe"; description = "Support for reading and writing ipe7 files (http://ipe7.sourceforge.net)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hips" = callPackage @@ -101364,6 +106488,7 @@ self: { ]; description = "IRC client"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hirt" = callPackage @@ -101386,6 +106511,7 @@ self: { homepage = "https://people.ksp.sk/~ivan/hirt"; description = "Calculates IRT 2PL and 3PL models"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hissmetrics" = callPackage @@ -101403,6 +106529,7 @@ self: { homepage = "https://github.com/prowdsponsor/hissmetrics"; description = "Unofficial API bindings to KISSmetrics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hist-pl" = callPackage @@ -101428,6 +106555,7 @@ self: { homepage = "https://github.com/kawu/hist-pl/tree/master/umbrella"; description = "Umbrella package for the historical dictionary of Polish"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hist-pl-dawg" = callPackage @@ -101460,6 +106588,7 @@ self: { homepage = "https://github.com/kawu/hist-pl/tree/master/fusion"; description = "Merging historical dictionary with PoliMorf"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hist-pl-lexicon" = callPackage @@ -101491,6 +106620,7 @@ self: { homepage = "https://github.com/kawu/hist-pl/tree/master/lmf"; description = "LMF parsing for the historical dictionary of Polish"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hist-pl-transliter" = callPackage @@ -101590,6 +106720,7 @@ self: { jailbreak = true; description = "Extract the interesting bits from shell history"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hit_0_6_2" = callPackage @@ -101691,6 +106822,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Libraries_and_tools/HJS"; description = "JavaScript Parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hjsmin_0_1_4_7" = callPackage @@ -101874,6 +107006,30 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hjsmin_0_2_0_1" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring, containers + , language-javascript, optparse-applicative, text + }: + mkDerivation { + pname = "hjsmin"; + version = "0.2.0.1"; + sha256 = "333e13cfd2b00f0ebeddf08aa9f0ed5ca689dcc21224cd0d9e6416e50fe1acae"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base blaze-builder bytestring containers language-javascript text + ]; + executableHaskellDepends = [ + base blaze-builder bytestring containers language-javascript + optparse-applicative text + ]; + jailbreak = true; + homepage = "http://github.com/erikd/hjsmin"; + description = "Haskell implementation of a javascript minifier"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hjson" = callPackage ({ mkDerivation, base, containers, parsec }: mkDerivation { @@ -101971,6 +107127,7 @@ self: { homepage = "https://github.com/seagreen/hjsonschema"; description = "JSON Schema library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hkdf" = callPackage @@ -102025,6 +107182,7 @@ self: { homepage = "http://people.ksp.sk/~ivan/hlbfgsb"; description = "Haskell binding to L-BFGS-B version 3.0"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gfortran;}; "hlcm" = callPackage @@ -102047,6 +107205,7 @@ self: { homepage = "http://membres-liglab.imag.fr/termier/HLCM/hlcm.html"; description = "Fast algorithm for mining closed frequent itemsets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hleap" = callPackage @@ -102287,6 +107446,7 @@ self: { homepage = "http://hledger.org"; description = "A pie chart image generator for the hledger accounting tool"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hledger-diff" = callPackage @@ -102516,6 +107676,7 @@ self: { homepage = "http://hledger.org"; description = "A curses-style console interface for the hledger accounting tool"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hledger-web_0_24_1" = callPackage @@ -102654,6 +107815,7 @@ self: { homepage = "https://victoredwardocallaghan.github.io/hlibBladeRF"; description = "Haskell binding to libBladeRF SDR library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) libbladeRF;}; "hlibev" = callPackage @@ -102667,6 +107829,7 @@ self: { homepage = "http://github.com/aycanirican/hlibev"; description = "FFI interface to libev"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {ev = null;}; "hlibfam" = callPackage @@ -102679,6 +107842,7 @@ self: { librarySystemDepends = [ fam ]; description = "FFI interface to libFAM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) fam;}; "hlibgit2_0_18_0_13" = callPackage @@ -103009,6 +108173,29 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hlint_1_9_32" = callPackage + ({ mkDerivation, ansi-terminal, base, cmdargs, containers, cpphs + , directory, extra, filepath, haskell-src-exts, hscolour, process + , refact, transformers, uniplate + }: + mkDerivation { + pname = "hlint"; + version = "1.9.32"; + sha256 = "09b135c4811b7a9eae06702fbdc42e0b45fc8c10d091d3d83e9428b64e3e73d7"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + ansi-terminal base cmdargs containers cpphs directory extra + filepath haskell-src-exts hscolour process refact transformers + uniplate + ]; + executableHaskellDepends = [ base ]; + homepage = "https://github.com/ndmitchell/hlint#readme"; + description = "Source code suggestions"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hlogger" = callPackage ({ mkDerivation, base, old-locale, time }: mkDerivation { @@ -103019,6 +108206,7 @@ self: { homepage = "http://www.pontarius.org/sub-projects/hlogger/"; description = "Simple, concurrent, extendable and easy-to-use logging library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hlongurl" = callPackage @@ -103082,6 +108270,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hly"; description = "Haskell LilyPond"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmark" = callPackage @@ -103101,6 +108290,7 @@ self: { homepage = "http://bitcheese.net/wiki/code/hmark"; description = "A tool and library for Markov chains based text generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmarkup" = callPackage @@ -103114,6 +108304,7 @@ self: { ]; description = "Simple wikitext-like markup format implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix_0_16_1_0" = callPackage @@ -103274,6 +108465,7 @@ self: { homepage = "http://code.haskell.org/~thielema/hmatrix-banded/"; description = "HMatrix interface to LAPACK functions for banded matrices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) liblapack;}; "hmatrix-csv" = callPackage @@ -103422,6 +108614,7 @@ self: { homepage = "http://github.com/alanfalloon/hmatrix-mmap"; description = "Memory map Vector from disk into memory efficiently"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix-nipals" = callPackage @@ -103436,6 +108629,7 @@ self: { homepage = "http://github.com/alanfalloon/hmatrix-nipals"; description = "NIPALS method for Principal Components Analysis on large data-sets"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix-quadprogpp" = callPackage @@ -103448,6 +108642,7 @@ self: { librarySystemDepends = [ QuadProgpp ]; description = "Bindings to the QuadProg++ quadratic programming library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {QuadProgpp = null;}; "hmatrix-repa" = callPackage @@ -103460,6 +108655,7 @@ self: { homepage = "http://code.haskell.org/hmatrix-repa"; description = "Adaptors for interoperability between hmatrix and repa"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix-special" = callPackage @@ -103472,6 +108668,7 @@ self: { homepage = "https://github.com/albertoruiz/hmatrix"; description = "Interface to GSL special functions"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hmatrix-static" = callPackage @@ -103489,6 +108686,7 @@ self: { homepage = "http://code.haskell.org/hmatrix-static/"; description = "hmatrix with vector and matrix sizes encoded in types"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix-svdlibc" = callPackage @@ -103505,6 +108703,7 @@ self: { homepage = "http://github.com/bgamari/hmatrix-svdlibc"; description = "SVDLIBC bindings for HMatrix"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix-syntax" = callPackage @@ -103522,6 +108721,7 @@ self: { homepage = "http://github.com/reinerp/hmatrix-syntax"; description = "MATLAB-like syntax for hmatrix vectors and matrices"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix-tests" = callPackage @@ -103555,6 +108755,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hmeap"; description = "Haskell Meapsoft Parser"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmeap-utils" = callPackage @@ -103575,6 +108776,7 @@ self: { homepage = "http://slavepianos.org/rd/?t=hmeap-utils"; description = "Haskell Meapsoft Parser Utilities"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmemdb" = callPackage @@ -103604,18 +108806,20 @@ self: { jailbreak = true; description = "CLI fuzzy finder and launcher"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmidi" = callPackage ({ mkDerivation, base, stm }: mkDerivation { pname = "hmidi"; - version = "0.2.2.0"; - sha256 = "8b2924618203f50042cec2bdf6724a20ebd8cd41bfff8b241e6e0d960c8718ce"; + version = "0.2.2.1"; + sha256 = "5e81917354f6bf85a398b1fd5c910e4545c0a20c27f5858eadeb5b94bb2c4e97"; libraryHaskellDepends = [ base stm ]; homepage = "http://code.haskell.org/~bkomuves/"; description = "Binding to the OS level MIDI services"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hmk" = callPackage @@ -103636,6 +108840,7 @@ self: { homepage = "http://www.github.com/mboes/hmk"; description = "A make alternative based on Plan9's mk"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmm" = callPackage @@ -103652,6 +108857,7 @@ self: { homepage = "https://github.com/mikeizbicki/hmm"; description = "A hidden markov model library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmm-hmatrix" = callPackage @@ -103671,6 +108877,7 @@ self: { homepage = "http://hub.darcs.net/thielema/hmm-hmatrix"; description = "Hidden Markov Models using HMatrix primitives"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmp3" = callPackage @@ -103692,6 +108899,7 @@ self: { homepage = "http://www.cse.unsw.edu.au/~dons/hmp3.html"; description = "An ncurses mp3 player written in Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ncurses;}; "hmpfr" = callPackage @@ -103705,6 +108913,7 @@ self: { homepage = "http://code.google.com/p/hmpfr/"; description = "Haskell binding to the MPFR library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) mpfr;}; "hmt" = callPackage @@ -103761,6 +108970,7 @@ self: { jailbreak = true; description = "Interpreter for the MUMPS langugae"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hnetcdf" = callPackage @@ -103792,6 +109002,7 @@ self: { homepage = "https://github.com/ian-ross/hnetcdf"; description = "Haskell NetCDF library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) netcdf;}; "hnix" = callPackage @@ -103835,6 +109046,7 @@ self: { homepage = "http://github.com/alpmestan/hnn"; description = "A reasonably fast and simple neural network library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hnop" = callPackage @@ -103882,6 +109094,7 @@ self: { ]; description = "A Haskell implementation of OAuth 1.0a protocol."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoauth2_0_4_3" = callPackage @@ -104097,6 +109310,7 @@ self: { homepage = "http://svalaskevicius.github.io/hob/"; description = "A source code editor aiming for the convenience of use"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hobbes" = callPackage @@ -104116,6 +109330,7 @@ self: { homepage = "http://github.com/jhickner/hobbes"; description = "A small file watcher for OSX"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hobbits" = callPackage @@ -104134,6 +109349,7 @@ self: { jailbreak = true; description = "A library for canonically representing terms with binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoe" = callPackage @@ -104165,6 +109381,7 @@ self: { jailbreak = true; description = "defining @mtl@-ready monads as * -> * fixed-points"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hog" = callPackage @@ -104183,6 +109400,7 @@ self: { jailbreak = true; description = "Simple IRC logger bot"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hogg" = callPackage @@ -104201,6 +109419,7 @@ self: { homepage = "http://www.kfish.org/software/hogg/"; description = "Library and tools to manipulate the Ogg container format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hogre" = callPackage @@ -104217,6 +109436,7 @@ self: { homepage = "http://anttisalonen.github.com/hogre"; description = "Haskell binding to a subset of OGRE"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {OGRE = null; OgreMain = null; cgen-hs = null; grgen = null;}; "hogre-examples" = callPackage @@ -104232,6 +109452,7 @@ self: { homepage = "http://github.com/anttisalonen/hogre-examples"; description = "Examples for using Hogre"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {OgreMain = null;}; "hois" = callPackage @@ -104248,6 +109469,7 @@ self: { jailbreak = true; description = "OIS bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {OIS = null;}; "hoist-error" = callPackage @@ -104284,6 +109506,7 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Higher kinded type removal"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "holey-format" = callPackage @@ -104411,6 +109634,7 @@ self: { homepage = "http://www-users.cs.york.ac.uk/~ndm/homeomorphic/"; description = "Homeomorphic Embedding Test"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hommage" = callPackage @@ -104424,6 +109648,7 @@ self: { ]; description = "Haskell Offline Music Manipulation And Generation EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hommage-ds" = callPackage @@ -104463,6 +109688,7 @@ self: { homepage = "https://github.com/mgajda/homplexity"; description = "Haskell code quality tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "honi" = callPackage @@ -104479,6 +109705,7 @@ self: { testSystemDepends = [ freenect OpenNI2 ]; description = "OpenNI 2 binding"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {OpenNI2 = null; inherit (pkgs) freenect;}; "honk" = callPackage @@ -104491,6 +109718,7 @@ self: { homepage = "https://lambda.xyz/honk/"; description = "Cross-platform interface to the PC speaker"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hoobuddy" = callPackage @@ -104536,6 +109764,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Dummy package to disable Hood without having to remove all the calls to observe"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hood2" = callPackage @@ -104566,6 +109795,7 @@ self: { jailbreak = true; description = "A small, toy roguelike"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle" = callPackage @@ -104586,6 +109816,7 @@ self: { homepage = "http://ianwookim.org/hoodle"; description = "Executable for hoodle"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle-builder" = callPackage @@ -104602,6 +109833,7 @@ self: { ]; description = "text builder for hoodle file format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle-core" = callPackage @@ -104635,6 +109867,7 @@ self: { homepage = "http://ianwookim.org/hoodle"; description = "Core library for hoodle"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXi;}; "hoodle-extra" = callPackage @@ -104661,6 +109894,7 @@ self: { homepage = "http://ianwookim.org/hoodle"; description = "extra hoodle tools"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle-parser" = callPackage @@ -104679,6 +109913,7 @@ self: { homepage = "http://ianwookim.org/hoodle"; description = "Hoodle file parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle-publish" = callPackage @@ -104706,6 +109941,7 @@ self: { homepage = "http://ianwookim.org/hoodle"; description = "publish hoodle files as a static web site"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle-render" = callPackage @@ -104726,6 +109962,7 @@ self: { ]; description = "Hoodle file renderer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle-types" = callPackage @@ -104741,6 +109978,7 @@ self: { ]; description = "Data types for programs for hoodle file format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoogle_4_2_36" = callPackage @@ -105101,6 +110339,7 @@ self: { homepage = "https://bitbucket.org/pvdbrand/hoovie"; description = "Haskell Media Server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hopencc" = callPackage @@ -105119,6 +110358,7 @@ self: { homepage = "https://github.com/MnO2/hopencc"; description = "Haskell binding to libopencc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {opencc = null;}; "hopencl" = callPackage @@ -105139,6 +110379,7 @@ self: { homepage = "https://github.com/merijn/hopencl"; description = "Haskell bindings for OpenCL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {OpenCL = null;}; "hopenpgp-tools_0_13" = callPackage @@ -105260,6 +110501,37 @@ self: { license = "unknown"; }) {}; + "hopenpgp-tools_0_17_1" = callPackage + ({ mkDerivation, aeson, alex, ansi-wl-pprint, array, attoparsec + , base, base16-bytestring, binary, binary-conduit, bytestring + , conduit, conduit-extra, containers, crypto-pubkey, cryptohash + , directory, errors, fgl, graphviz, happy, hOpenPGP, ixset-typed + , lens, monad-loops, openpgp-asciiarmor, optparse-applicative + , resourcet, text, time, time-locale-compat, transformers + , unordered-containers, wl-pprint-extras, wl-pprint-terminfo, yaml + }: + mkDerivation { + pname = "hopenpgp-tools"; + version = "0.17.1"; + sha256 = "1715f4c74b2299c50bba11a3315b960c510b20cc9a74a0cc371df9ed2f56ccfe"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson ansi-wl-pprint array attoparsec base base16-bytestring binary + binary-conduit bytestring conduit conduit-extra containers + crypto-pubkey cryptohash directory errors fgl graphviz hOpenPGP + ixset-typed lens monad-loops openpgp-asciiarmor + optparse-applicative resourcet text time time-locale-compat + transformers unordered-containers wl-pprint-extras + wl-pprint-terminfo yaml + ]; + executableToolDepends = [ alex happy ]; + homepage = "http://floss.scru.org/hopenpgp-tools"; + description = "hOpenPGP-based command-line tools"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hopenssl" = callPackage ({ mkDerivation, base, bytestring, mtl, openssl }: mkDerivation { @@ -105304,6 +110576,7 @@ self: { homepage = "https://github.com/imperialhopfield/hopfield"; description = "Hopfield Networks, Boltzmann Machines and Clusters"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {MagickCore = null; inherit (pkgs) imagemagick;}; "hopfield-networks" = callPackage @@ -105393,8 +110666,8 @@ self: { }: mkDerivation { pname = "hops"; - version = "0.4.1"; - sha256 = "e28a457b5f75c3e375f17143244da60e7754c6948bb0f8826c6d5efcbcf07d49"; + version = "0.5.0"; + sha256 = "94045ae1eed0a54e62e144943c132df95ca1c9804722bb773852077e745be607"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -105410,6 +110683,7 @@ self: { homepage = "http://akc.is/hops"; description = "Handy Operations on Power Series"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoq" = callPackage @@ -105429,6 +110703,7 @@ self: { homepage = "http://github.com/valis/hoq"; description = "A language based on homotopy type theory with an interval type"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "horizon" = callPackage @@ -105544,6 +110819,7 @@ self: { homepage = "https://github.com/yihuang/hosts-server"; description = "An dns server which is extremely easy to config"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hothasktags" = callPackage @@ -105560,9 +110836,11 @@ self: { array base containers cpphs filemanip filepath Glob haskell-src-exts optparse-applicative split ]; + jailbreak = true; homepage = "http://github.com/luqui/hothasktags"; description = "Generates ctags for Haskell, incorporating import lists and qualified imports"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hotswap" = callPackage @@ -105663,6 +110941,7 @@ self: { homepage = "https://gitlab.com/doshitan/hourglass-fuzzy-parsing"; description = "A small library for parsing more human friendly date/time formats"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hp2any-core" = callPackage @@ -105680,6 +110959,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Hp2any"; description = "Heap profiling helper library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hp2any-graph" = callPackage @@ -105702,6 +110982,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Hp2any"; description = "Real-time heap graphing utility and profile stream server with a reusable graphing module"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; "hp2any-manager" = callPackage @@ -105722,6 +111003,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Hp2any"; description = "A utility to visualise and compare heap profiles"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hp2html" = callPackage @@ -105756,27 +111038,28 @@ self: { }) {}; "hpack" = callPackage - ({ mkDerivation, aeson, aeson-qq, base, base-compat, deepseq - , directory, filepath, Glob, hspec, interpolate, mockery, temporary - , text, unordered-containers, yaml + ({ mkDerivation, aeson, aeson-qq, base, base-compat, containers + , deepseq, directory, filepath, Glob, hspec, interpolate, mockery + , temporary, text, unordered-containers, yaml }: mkDerivation { pname = "hpack"; - version = "0.10.0"; - sha256 = "1c35a222ab76c418115e9fca2b88eea0ac63fd75149155440ff54d9ae7278f7a"; + version = "0.11.2"; + sha256 = "e44b9118ffd1ac4fda00b488f48b57e8fc7818ab784944f4c7835264408eb8d9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base base-compat deepseq directory filepath Glob text - unordered-containers yaml + aeson base base-compat containers deepseq directory filepath Glob + text unordered-containers yaml ]; executableHaskellDepends = [ - aeson base base-compat deepseq directory filepath Glob text - unordered-containers yaml + aeson base base-compat containers deepseq directory filepath Glob + text unordered-containers yaml ]; testHaskellDepends = [ - aeson aeson-qq base base-compat deepseq directory filepath Glob - hspec interpolate mockery temporary text unordered-containers yaml + aeson aeson-qq base base-compat containers deepseq directory + filepath Glob hspec interpolate mockery temporary text + unordered-containers yaml ]; jailbreak = true; homepage = "https://github.com/sol/hpack#readme"; @@ -105842,6 +111125,7 @@ self: { homepage = "http://haskell.hpage.com"; description = "A scrapbook for Haskell developers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpapi" = callPackage @@ -105854,6 +111138,7 @@ self: { librarySystemDepends = [ papi ]; description = "Binding for the PAPI library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {papi = null;}; "hpaste" = callPackage @@ -105883,6 +111168,7 @@ self: { homepage = "http://hpaste.org/"; description = "Haskell paste web site"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpasteit" = callPackage @@ -105904,6 +111190,7 @@ self: { homepage = "http://github.com/parcs/hpasteit"; description = "A command-line client for hpaste.org"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpc_0_6_0_2" = callPackage @@ -106002,19 +111289,20 @@ self: { ]; description = "Tracer with AJAX interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpdft" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, directory - , file-embed, parsec, text, utf8-string, zlib + ({ mkDerivation, attoparsec, base, binary, bytestring, containers + , directory, file-embed, parsec, text, utf8-string, zlib }: mkDerivation { pname = "hpdft"; - version = "0.1.0.3"; - sha256 = "e8ea8a57e82685a3b178df4a2048fe229a6c3794d9613836cd5b7d0f028b64b6"; + version = "0.1.0.4"; + sha256 = "51ba7bc799184d8fa1fbb27845d0424e6e84b504fce0bd3d047333a31d16b9e7"; libraryHaskellDepends = [ - base binary bytestring containers directory file-embed parsec text - utf8-string zlib + attoparsec base binary bytestring containers directory file-embed + parsec text utf8-string zlib ]; homepage = "https://github.com/k16shikano/hpdft"; description = "A tool for looking through PDF file using Haskell"; @@ -106036,6 +111324,7 @@ self: { homepage = "https://github.com/agocorona/hplayground"; description = "monadic, reactive Formlets running in the Web browser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hplaylist" = callPackage @@ -106049,6 +111338,7 @@ self: { executableHaskellDepends = [ base directory filepath process ]; description = "Application for managing playlist files on a music player"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpodder" = callPackage @@ -106070,6 +111360,7 @@ self: { homepage = "http://software.complete.org/hpodder"; description = "Podcast Aggregator (downloader)"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpp" = callPackage @@ -106119,6 +111410,7 @@ self: { homepage = "https://github.com/scrive/hpqtypes"; description = "Haskell bindings to libpqtypes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) postgresql;}; "hprotoc_2_1_4" = callPackage @@ -106271,7 +111563,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hprotoc" = callPackage + "hprotoc_2_1_12" = callPackage ({ mkDerivation, alex, array, base, binary, bytestring, containers , directory, filepath, haskell-src-exts, mtl, parsec , protocol-buffers, protocol-buffers-descriptor, utf8-string @@ -106294,12 +111586,14 @@ self: { protocol-buffers-descriptor utf8-string ]; executableToolDepends = [ alex ]; + jailbreak = true; homepage = "https://github.com/k-bx/protocol-buffers"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hprotoc_2_2_0" = callPackage + "hprotoc" = callPackage ({ mkDerivation, alex, array, base, binary, bytestring, containers , directory, filepath, haskell-src-exts, mtl, parsec , protocol-buffers, protocol-buffers-descriptor, utf8-string @@ -106322,6 +111616,34 @@ self: { protocol-buffers-descriptor utf8-string ]; executableToolDepends = [ alex ]; + homepage = "https://github.com/k-bx/protocol-buffers"; + description = "Parse Google Protocol Buffer specifications"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "hprotoc_2_3_0" = callPackage + ({ mkDerivation, alex, array, base, binary, bytestring, containers + , directory, filepath, haskell-src-exts, mtl, parsec + , protocol-buffers, protocol-buffers-descriptor, utf8-string + }: + mkDerivation { + pname = "hprotoc"; + version = "2.3.0"; + sha256 = "c6666c0407a10d8aaa6072b11d20b0829ab07eabb2c65c4e0ffcc1047c893a02"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base binary bytestring containers directory filepath + haskell-src-exts mtl parsec protocol-buffers + protocol-buffers-descriptor utf8-string + ]; + libraryToolDepends = [ alex ]; + executableHaskellDepends = [ + array base binary bytestring containers directory filepath + haskell-src-exts mtl parsec protocol-buffers + protocol-buffers-descriptor utf8-string + ]; + executableToolDepends = [ alex ]; jailbreak = true; homepage = "https://github.com/k-bx/protocol-buffers"; description = "Parse Google Protocol Buffer specifications"; @@ -106357,6 +111679,7 @@ self: { homepage = "http://darcs.factisresearch.com/pub/protocol-buffers-fork/"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hps" = callPackage @@ -106390,6 +111713,7 @@ self: { homepage = "http://slavepianos.org/rd/?t=hps-cairo"; description = "Cairo rendering for the haskell postscript library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hps-kmeans" = callPackage @@ -106448,6 +111772,7 @@ self: { homepage = "http://sourceforge.net/projects/hpylos/"; description = "AI of Pylos game with GLUT interface"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpyrg" = callPackage @@ -106487,6 +111812,7 @@ self: { homepage = "http://github.com/paulrzcz/hquantlib.git"; description = "HQuantLib is a port of essencial parts of QuantLib to Haskell"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hquery" = callPackage @@ -106517,6 +111843,7 @@ self: { executableHaskellDepends = [ base HCL NonEmpty ]; description = "Basic utility for ranking a list of items"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hreader" = callPackage @@ -106570,6 +111897,7 @@ self: { ]; description = "Embed a Ruby intepreter in your Haskell program !"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {inherit (pkgs) ruby;}; "hs-GeoIP" = callPackage @@ -106583,6 +111911,7 @@ self: { homepage = "http://github.com/ozataman/hs-GeoIP"; description = "Haskell bindings to the MaxMind GeoIPCity database via the C library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {GeoIP = null;}; "hs-bibutils_5_0" = callPackage @@ -106611,7 +111940,7 @@ self: { }) {}; "hs-blake2" = callPackage - ({ mkDerivation, b2, base, bytestring, bytestring-arbitrary + ({ mkDerivation, base, bytestring, bytestring-arbitrary, libb2 , QuickCheck, tasty, tasty-quickcheck }: mkDerivation { @@ -106619,17 +111948,17 @@ self: { version = "0.0.2"; sha256 = "043efd374194998f4ea54a3e43713fb6a2c6f233673eb0deadf8950f22c31e44"; libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ b2 ]; + librarySystemDepends = [ libb2 ]; testHaskellDepends = [ base bytestring bytestring-arbitrary QuickCheck tasty tasty-quickcheck ]; - testSystemDepends = [ b2 ]; + testSystemDepends = [ libb2 ]; jailbreak = true; homepage = "https://github.com/tsuraan/hs-blake2"; description = "A cryptohash-inspired library for blake2"; license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) b2;}; + }) {inherit (pkgs) libb2;}; "hs-captcha" = callPackage ({ mkDerivation, base, bytestring, gd, random }: @@ -106670,6 +111999,7 @@ self: { ]; description = "Example Monte Carlo simulations implemented with Carbon"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-cdb" = callPackage @@ -106686,6 +112016,7 @@ self: { homepage = "http://github.com/adamsmasher/hs-cdb"; description = "A library for reading CDB (Constant Database) files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-dotnet" = callPackage @@ -106698,6 +112029,7 @@ self: { librarySystemDepends = [ ole32 oleaut32 ]; description = "Pragmatic .NET interop for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {ole32 = null; oleaut32 = null;}; "hs-duktape" = callPackage @@ -106719,6 +112051,7 @@ self: { homepage = "https://github.com/myfreeweb/hs-duktape"; description = "Haskell bindings for a very compact embedded ECMAScript (JavaScript) engine"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-excelx" = callPackage @@ -106748,6 +112081,7 @@ self: { homepage = "http://patch-tag.com/r/VasylPasternak/hs-ffmpeg"; description = "Bindings to FFMPEG library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-fltk" = callPackage @@ -106761,6 +112095,7 @@ self: { homepage = "http://www.cs.helsinki.fi/u/ekarttun/hs-fltk/"; description = "Binding to GUI library FLTK"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {fltk = null; fltk_images = null;}; "hs-gchart" = callPackage @@ -106773,6 +112108,7 @@ self: { homepage = "http://github.com/deepakjois/hs-gchart"; description = "Haskell wrapper for the Google Chart API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-gen-iface" = callPackage @@ -106791,6 +112127,7 @@ self: { ]; description = "Utility to generate haskell-names interface files"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-gizapp" = callPackage @@ -106838,6 +112175,7 @@ self: { ]; description = "Java .class files assembler/disassembler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-json-rpc" = callPackage @@ -106852,6 +112190,7 @@ self: { homepage = "http://patch-tag.com/r/Azel/hs-json-rpc"; description = "JSON-RPC client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-logo" = callPackage @@ -106879,6 +112218,7 @@ self: { homepage = "http://deepakjois.github.com/hs-logo"; description = "Logo interpreter written in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-mesos" = callPackage @@ -106903,6 +112243,7 @@ self: { tasty-quickcheck ]; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) mesos; inherit (pkgs) protobuf;}; "hs-nombre-generator" = callPackage @@ -106917,6 +112258,7 @@ self: { jailbreak = true; description = "Name generator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-pgms" = callPackage @@ -106935,6 +112277,7 @@ self: { ]; description = "Programmer's Mine Sweeper in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-php-session" = callPackage @@ -106983,6 +112326,7 @@ self: { homepage = "https://github.com/tazjin/hs-pkpass"; description = "A library for Passbook pass creation & signing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-re" = callPackage @@ -107032,6 +112376,7 @@ self: { ]; description = "Haskell binding to the Twitter API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-twitterarchiver" = callPackage @@ -107046,6 +112391,7 @@ self: { homepage = "https://github.com/deepakjois/hs-twitterarchiver"; description = "Commandline Twitter feed archiver"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-vcard" = callPackage @@ -107058,6 +112404,7 @@ self: { homepage = "http://qrcard.us/"; description = "Implements the RFC 2426 vCard 3.0 spec"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs2048" = callPackage @@ -107098,6 +112445,7 @@ self: { homepage = "http://www.xanxys.net/hs2bf/"; description = "Haskell to Brainfuck compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs2dot" = callPackage @@ -107117,6 +112465,7 @@ self: { homepage = "http://www.github.com/finnsson/hs2graphviz"; description = "Generate graphviz-code from Haskell-code"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsConfigure" = callPackage @@ -107147,6 +112496,7 @@ self: { jailbreak = true; description = "Sqlite3 bindings"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsXenCtrl" = callPackage @@ -107161,6 +112511,7 @@ self: { homepage = "http://haskell.org/haskellwiki/HsXenCtrl"; description = "FFI bindings to the Xen Control library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {xenctrl = null;}; "hsass_0_3_0" = callPackage @@ -107253,6 +112604,7 @@ self: { ]; description = "simple utility for rolling filesystem backups"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsbencher" = callPackage @@ -107316,6 +112668,7 @@ self: { ]; description = "Backend for uploading benchmark data to Google Fusion Tables"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc2hs" = callPackage @@ -107330,6 +112683,7 @@ self: { jailbreak = true; description = "A preprocessor that helps with writing Haskell bindings to C code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3" = callPackage @@ -107364,6 +112718,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-auditor"; description = "Haskell SuperCollider Auditor"; license = "GPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hsc3-cairo" = callPackage @@ -107377,6 +112732,7 @@ self: { homepage = "http://rd.slavepianos.org/?t=hsc3-cairo"; description = "haskell supercollider cairo drawing"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-data" = callPackage @@ -107394,6 +112750,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-data"; description = "haskell supercollider data"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-db" = callPackage @@ -107437,6 +112794,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-forth"; description = "FORTH SUPERCOLLIDER"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-graphs" = callPackage @@ -107468,6 +112826,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-graphs"; description = "Haskell SuperCollider Graphs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-lang" = callPackage @@ -107488,6 +112847,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-lang"; description = "Haskell SuperCollider Language"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-lisp" = callPackage @@ -107507,6 +112867,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-lisp"; description = "LISP SUPERCOLLIDER"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-plot" = callPackage @@ -107524,6 +112885,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-plot"; description = "Haskell SuperCollider Plotting"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-process" = callPackage @@ -107558,6 +112920,7 @@ self: { homepage = "http://rd.slavepianos.org/?t=hsc3-rec"; description = "Haskell SuperCollider Record Variants"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-rw" = callPackage @@ -107605,6 +112968,7 @@ self: { homepage = "https://github.com/kaoskorobase/hsc3-server"; description = "SuperCollider server resource management and synchronization"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-sf" = callPackage @@ -107633,6 +112997,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-sf-hsndfile"; description = "Haskell SuperCollider SoundFile"; license = "GPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hsc3-unsafe" = callPackage @@ -107646,6 +113011,7 @@ self: { homepage = "http://rd.slavepianos.org/?t=hsc3-unsafe"; description = "Unsafe Haskell SuperCollider"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-utils" = callPackage @@ -107682,6 +113048,7 @@ self: { jailbreak = true; description = "Haskell bindings to IIDC1394 cameras, via Camwire"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {camwire_1394 = null; dc1394_control = null; raw1394 = null;}; "hscassandra" = callPackage @@ -107699,6 +113066,7 @@ self: { homepage = "https://github.com/necrobious/hscassandra"; description = "cassandra database interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hscd" = callPackage @@ -107729,6 +113097,7 @@ self: { homepage = "http://haskell.org/gtk2hs/archives/2006/01/26/cairo-eye-candy/"; description = "An elegant analog clock using Haskell, GTK and Cairo"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hscolour_1_20_3" = callPackage @@ -107930,8 +113299,8 @@ self: { }: mkDerivation { pname = "hsdev"; - version = "0.1.6.6"; - sha256 = "9b4fa60291ad1e6f2d47ec2b90fd254a2df0224a346ad3099bf047d10526d523"; + version = "0.1.7.1"; + sha256 = "adc1df9c7706445daccec30b6a71e5286de338059f696919e368e10b61b6a7c6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -107951,8 +113320,8 @@ self: { unordered-containers vector ]; testHaskellDepends = [ - aeson aeson-lens async base containers data-default deepseq hformat - hspec lens mtl text + aeson aeson-lens async base containers data-default deepseq + directory filepath hformat hspec lens mtl text ]; doHaddock = false; doCheck = false; @@ -107986,6 +113355,7 @@ self: { homepage = "http://neugierig.org/software/darcs/hsdip/"; description = "hsdip - a Diplomacy parser/renderer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsdns" = callPackage @@ -108016,6 +113386,7 @@ self: { homepage = "https://github.com/bazqux/hsdns-cache"; description = "Caching asynchronous DNS resolver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hse-cpp" = callPackage @@ -108064,6 +113435,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hsebaysdk_0_3_1_0" = callPackage + ({ mkDerivation, aeson, base, bytestring, http-client, http-types + , text, time, transformers, unordered-containers + }: + mkDerivation { + pname = "hsebaysdk"; + version = "0.3.1.0"; + sha256 = "491ba5adf18c8d09be59346f236c9bfceed6f6db353438e8b595c3fb6f3df173"; + libraryHaskellDepends = [ + aeson base bytestring http-client http-types text time transformers + unordered-containers + ]; + homepage = "https://github.com/creichert/hsebaysdk"; + description = "Haskell eBay SDK"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hsemail" = callPackage ({ mkDerivation, base, doctest, hspec, mtl, old-time, parsec }: mkDerivation { @@ -108139,7 +113528,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hsexif" = callPackage + "hsexif_0_6_0_7" = callPackage ({ mkDerivation, base, binary, bytestring, containers, hspec, HUnit , iconv, text, time }: @@ -108156,6 +113545,26 @@ self: { homepage = "https://github.com/emmanueltouzery/hsexif"; description = "EXIF handling library in pure Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hsexif" = callPackage + ({ mkDerivation, base, binary, bytestring, containers, hspec, HUnit + , iconv, text, time + }: + mkDerivation { + pname = "hsexif"; + version = "0.6.0.8"; + sha256 = "ad7644484993252ae6eec48e7d9b583ac0f311737068a35ea43781adc61c7590"; + libraryHaskellDepends = [ + base binary bytestring containers iconv text time + ]; + testHaskellDepends = [ + base binary bytestring containers hspec HUnit iconv text time + ]; + homepage = "https://github.com/emmanueltouzery/hsexif"; + description = "EXIF handling library in pure Haskell"; + license = stdenv.lib.licenses.bsd3; }) {}; "hsfacter" = callPackage @@ -108168,6 +113577,7 @@ self: { homepage = "http://lpuppet.banquise.net"; description = "A small and ugly library that emulates the output of the puppet facter program"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsfcsh" = callPackage @@ -108212,6 +113622,7 @@ self: { homepage = "http://www.cs.helsinki.fi/u/ekarttun/hsgnutls"; description = "Library wrapping the GnuTLS API"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {gcrypt = null; inherit (pkgs) gnutls;}; "hsgnutls-yj" = callPackage @@ -108225,6 +113636,7 @@ self: { homepage = "http://www.cs.helsinki.fi/u/ekarttun/hsgnutls"; description = "Library wrapping the GnuTLS API"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {gcrypt = null; inherit (pkgs) gnutls;}; "hsgsom" = callPackage @@ -108236,6 +113648,7 @@ self: { libraryHaskellDepends = [ base containers random stm time ]; description = "An implementation of the GSOM clustering algorithm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsgtd" = callPackage @@ -108330,6 +113743,7 @@ self: { homepage = "http://code.haskell.org/hsignal"; description = "Signal processing and EEG data analysis"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) blas; inherit (pkgs) gsl; inherit (pkgs) liblapack;}; @@ -108399,6 +113813,7 @@ self: { libraryHaskellDepends = [ base Cabal ]; description = "Skeleton for new Haskell programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hslackbuilder" = callPackage @@ -108415,6 +113830,7 @@ self: { homepage = "http://code.haskell.org/~arossato/hslackbuilder"; description = "HSlackBuilder automatically generates slackBuild scripts from a cabal package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hslibsvm" = callPackage @@ -108427,6 +113843,7 @@ self: { librarySystemDepends = [ svm ]; description = "A FFI binding to libsvm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {svm = null;}; "hslinks" = callPackage @@ -108649,6 +114066,7 @@ self: { homepage = "https://github.com/vincentg/hsmagick"; description = "FFI bindings for the GraphicsMagick library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {GraphicsMagick = null; inherit (pkgs) bzip2; freetype2 = null; inherit (pkgs) jasper; inherit (pkgs) lcms; inherit (pkgs) libjpeg; inherit (pkgs) libpng; @@ -108682,6 +114100,7 @@ self: { homepage = "http://code.google.com/p/hsmtpclient/"; description = "Simple SMTP Client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsndfile" = callPackage @@ -108696,6 +114115,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Hsndfile"; description = "Haskell bindings for libsndfile"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) libsndfile;}; "hsndfile-storablevector" = callPackage @@ -108708,6 +114128,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Hsndfile"; description = "Haskell bindings for libsndfile (Data.StorableVector interface)"; license = stdenv.lib.licenses.lgpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsndfile-vector" = callPackage @@ -108720,6 +114141,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Hsndfile"; description = "Haskell bindings for libsndfile (Data.Vector interface)"; license = stdenv.lib.licenses.lgpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hsnock" = callPackage @@ -108741,6 +114163,7 @@ self: { homepage = "https://github.com/mrdomino/hsnock/"; description = "Nock 5K interpreter"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsnoise" = callPackage @@ -108766,6 +114189,7 @@ self: { executableHaskellDepends = [ base network pcap ]; description = "a miniature network sniffer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsnsq" = callPackage @@ -108802,6 +114226,7 @@ self: { homepage = "http://www.cs.helsinki.fi/u/ekarttun/util/"; description = "Libraries to use SNTP protocol and small client/server implementations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsoptions" = callPackage @@ -108828,6 +114253,7 @@ self: { homepage = "https://github.com/josercruz01/hsoptions"; description = "Haskell library that supports command-line flag processing"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsp" = callPackage @@ -108852,6 +114278,7 @@ self: { homepage = "http://code.google.com/p/hsp"; description = "Facilitates running Haskell Server Pages web pages as CGI programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsparklines" = callPackage @@ -108886,6 +114313,7 @@ self: { homepage = "https://github.com/robstewart57/hsparql"; description = "A SPARQL query generator and DSL, and a client to query a SPARQL server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspear" = callPackage @@ -108902,6 +114330,7 @@ self: { homepage = "http://rd.slavepianos.org/?t=hspear"; description = "Haskell Spear Parser"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspec_2_1_2" = callPackage @@ -109689,6 +115118,7 @@ self: { jailbreak = true; description = "An experimental DSL for testing on top of Hspec"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspec-jenkins" = callPackage @@ -109909,6 +115339,7 @@ self: { libraryHaskellDepends = [ hspec test-shouldbe ]; description = "Convenience wrapper and utilities for hspec"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspec-smallcheck_0_3_0" = callPackage @@ -109991,6 +115422,31 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hspec-snap_0_4_0_1" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers + , digestive-functors, directory, HandsomeSoup, hspec, hspec-core + , hxt, lens, mtl, snap, snap-core, text, transformers + }: + mkDerivation { + pname = "hspec-snap"; + version = "0.4.0.1"; + sha256 = "42fead47290131c3072453aee3883b7c4a7a34d5dde989ca6e0b9df8b3e08d3a"; + libraryHaskellDepends = [ + aeson base bytestring containers digestive-functors HandsomeSoup + hspec hspec-core hxt lens mtl snap snap-core text transformers + ]; + testHaskellDepends = [ + aeson base bytestring containers digestive-functors directory + HandsomeSoup hspec hspec-core hxt lens mtl snap snap-core text + transformers + ]; + jailbreak = true; + homepage = "https://github.com/dbp/hspec-snap"; + description = "A library for testing with Hspec and the Snap Web Framework"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hspec-structured-formatter" = callPackage ({ mkDerivation, base, hspec }: mkDerivation { @@ -110094,7 +115550,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hspec-wai" = callPackage + "hspec-wai_0_6_4" = callPackage ({ mkDerivation, base, base-compat, bytestring, case-insensitive , hspec, hspec-core, hspec-expectations, http-types, QuickCheck , text, transformers, wai, wai-extra @@ -110116,6 +115572,59 @@ self: { homepage = "https://github.com/hspec/hspec-wai#readme"; description = "Experimental Hspec support for testing WAI applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hspec-wai_0_6_5" = callPackage + ({ mkDerivation, base, base-compat, bytestring, case-insensitive + , hspec, hspec-core, hspec-expectations, http-types, QuickCheck + , text, transformers, wai, wai-extra, with-location + }: + mkDerivation { + pname = "hspec-wai"; + version = "0.6.5"; + sha256 = "186f8ca2b8412f7e3305fbe1054e27ca217fdbcca8478235f15ab7019f4f9525"; + revision = "1"; + editedCabalFile = "9311aeec0d3be1445b3c0e0f9b0bcad67df22b697c947afa6b93ecb213137956"; + libraryHaskellDepends = [ + base base-compat bytestring case-insensitive hspec-core + hspec-expectations http-types QuickCheck text transformers wai + wai-extra with-location + ]; + testHaskellDepends = [ + base base-compat bytestring case-insensitive hspec hspec-core + hspec-expectations http-types QuickCheck text transformers wai + wai-extra with-location + ]; + jailbreak = true; + homepage = "https://github.com/hspec/hspec-wai#readme"; + description = "Experimental Hspec support for testing WAI applications"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hspec-wai" = callPackage + ({ mkDerivation, base, base-compat, bytestring, case-insensitive + , hspec, hspec-core, hspec-expectations, http-types, QuickCheck + , text, transformers, wai, wai-extra, with-location + }: + mkDerivation { + pname = "hspec-wai"; + version = "0.6.6"; + sha256 = "89a1753cd56b6f312a0af11b7f312c744c73a97d8ab3facfd87f8e4e3080b0e0"; + libraryHaskellDepends = [ + base base-compat bytestring case-insensitive hspec-core + hspec-expectations http-types QuickCheck text transformers wai + wai-extra with-location + ]; + testHaskellDepends = [ + base base-compat bytestring case-insensitive hspec hspec-core + hspec-expectations http-types QuickCheck text transformers wai + wai-extra with-location + ]; + homepage = "https://github.com/hspec/hspec-wai#readme"; + description = "Experimental Hspec support for testing WAI applications"; + license = stdenv.lib.licenses.mit; }) {}; "hspec-wai-json_0_6_0" = callPackage @@ -110254,6 +115763,7 @@ self: { ]; description = "A client library for the spread toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspresent" = callPackage @@ -110269,6 +115779,7 @@ self: { jailbreak = true; description = "A terminal presentation tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsprocess" = callPackage @@ -110294,6 +115805,7 @@ self: { ]; description = "The Haskell Stream Processor command line utility"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsql" = callPackage @@ -110319,6 +115831,7 @@ self: { librarySystemDepends = [ mysqlclient ]; description = "MySQL driver for HSQL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {mysqlclient = null;}; "hsql-odbc" = callPackage @@ -110376,6 +115889,7 @@ self: { homepage = "http://www.gekkou.co.uk/software/hsqml/"; description = "Haskell binding for Qt Quick"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {qt5 = null;}; "hsqml-datamodel" = callPackage @@ -110389,6 +115903,7 @@ self: { homepage = "https://github.com/marcinmrotek/hsqml-datamodel"; description = "HsQML (Qt5) data model"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {qt5 = null;}; "hsqml-datamodel-vinyl" = callPackage @@ -110406,6 +115921,7 @@ self: { homepage = "https://github.com/marcinmrotek/hsqml-datamodel-vinyl"; description = "HsQML DataModel instances for Vinyl Rec"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsqml-demo-morris" = callPackage @@ -110424,6 +115940,7 @@ self: { homepage = "http://www.gekkou.co.uk/software/hsqml/"; description = "HsQML-based implementation of Nine Men's Morris"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-linux" ]; }) {}; "hsqml-demo-notes" = callPackage @@ -110442,6 +115959,7 @@ self: { homepage = "http://www.gekkou.co.uk/software/hsqml/"; description = "Sticky notes example program implemented in HsQML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hsqml-demo-samples" = callPackage @@ -110457,6 +115975,7 @@ self: { homepage = "http://www.gekkou.co.uk/software/hsqml/"; description = "HsQML sample programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsqml-morris" = callPackage @@ -110476,6 +115995,7 @@ self: { homepage = "http://www.gekkou.co.uk/"; description = "HsQML-based implementation of Nine Men's Morris"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsreadability" = callPackage @@ -110514,6 +116034,7 @@ self: { testHaskellDepends = [ base tasty tasty-hunit unix ]; description = "Haskell bindings to libseccomp"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {seccomp = null;}; "hsshellscript" = callPackage @@ -110527,6 +116048,7 @@ self: { homepage = "http://www.volker-wysk.de/hsshellscript/"; description = "Haskell for Unix shell scripting tasks"; license = "LGPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hssourceinfo" = callPackage @@ -110542,6 +116064,7 @@ self: { ]; description = "get haskell source code info"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hssqlppp" = callPackage @@ -110641,6 +116164,7 @@ self: { homepage = "http://bitbucket.org/dave4420/hstest/wiki/Home"; description = "Runs tests via QuickCheck1 and HUnit; like quickCheck-script but uses GHC api"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hstidy" = callPackage @@ -110655,6 +116179,7 @@ self: { homepage = "http://code.haskell.org/~morrow/code/haskell/hstidy"; description = "Takes haskell source on stdin, parses it, then prettyprints it to stdout"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hstorchat" = callPackage @@ -110683,6 +116208,7 @@ self: { jailbreak = true; description = "Distributed instant messaging over Tor"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hstradeking" = callPackage @@ -110708,6 +116234,7 @@ self: { jailbreak = true; description = "Tradeking API bindings for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hstyle" = callPackage @@ -110726,6 +116253,7 @@ self: { jailbreak = true; description = "Checks Haskell source code for style compliance"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hstzaar" = callPackage @@ -110746,6 +116274,7 @@ self: { homepage = "http://www.dcc.fc.up.pt/~pbv/stuff/hstzaar"; description = "A two player abstract strategy game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsubconvert" = callPackage @@ -110768,6 +116297,7 @@ self: { homepage = "https://github.com/jwiegley/hsubconvert"; description = "One-time, faithful conversion of Subversion repositories to Git"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsverilog" = callPackage @@ -110799,6 +116329,7 @@ self: { librarySystemDepends = [ ncurses readline swipl ]; description = "embedding prolog in haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ncurses; inherit (pkgs) readline; swipl = null;}; @@ -110817,6 +116348,7 @@ self: { homepage = "http://patch-tag.com/r/nibro/hsx"; description = "HSX (Haskell Source with XML) allows literal XML syntax in Haskell source code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsx-jmacro" = callPackage @@ -110843,6 +116375,7 @@ self: { homepage = "http://code.google.com/hsp"; description = "XHTML utilities to use together with HSX"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsx2hs" = callPackage @@ -110874,6 +116407,7 @@ self: { homepage = "http://github.com/aycanirican/hsyscall"; description = "FFI to syscalls"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsyslog" = callPackage @@ -110900,9 +116434,10 @@ self: { librarySystemDepends = [ com_err zephyr ]; description = "Simple libzephyr bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {com_err = null; zephyr = null;}; - "htaglib" = callPackage + "htaglib_1_0_1" = callPackage ({ mkDerivation, base, bytestring, directory, filepath, HUnit , taglib, test-framework, test-framework-hunit, text }: @@ -110918,6 +116453,25 @@ self: { homepage = "https://github.com/mrkkrp/htaglib"; description = "Bindings to TagLib, audio meta-data library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) taglib;}; + + "htaglib" = callPackage + ({ mkDerivation, base, bytestring, directory, filepath, HUnit + , taglib, test-framework, test-framework-hunit, text + }: + mkDerivation { + pname = "htaglib"; + version = "1.0.2"; + sha256 = "dbf110578fb4f30426a538756efa6b0bb9af5650c9d3752732973c9725385478"; + libraryHaskellDepends = [ base bytestring text ]; + librarySystemDepends = [ taglib ]; + testHaskellDepends = [ + base directory filepath HUnit test-framework test-framework-hunit + ]; + homepage = "https://github.com/mrkkrp/htaglib"; + description = "Bindings to TagLib, audio meta-data library"; + license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) taglib;}; "htags" = callPackage @@ -111119,6 +116673,7 @@ self: { homepage = "https://github.com/nikita-volkov/html-entities"; description = "A codec library for HTML-escaped text and HTML-entities"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "html-kure" = callPackage @@ -111156,6 +116711,7 @@ self: { homepage = "http://github.com/kylcarte/html-rules/"; description = "Perform traversals of HTML structures using sets of rules"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "html-tokenizer" = callPackage @@ -111266,6 +116822,7 @@ self: { homepage = "https://github.com/cies/htoml"; description = "Parser for TOML files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "htrace" = callPackage @@ -111354,6 +116911,7 @@ self: { ]; description = "Import XML files from The Sports Network into an RDBMS"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-accept" = callPackage @@ -111376,6 +116934,8 @@ self: { pname = "http-api-data"; version = "0.2.1"; sha256 = "856138d79945770cdb4b522f58893a1c45014d39238cfc5b2eceeac089c56f71"; + revision = "1"; + editedCabalFile = "d51bcb90ab64f4b262ddbd657f9306fc8d313a296faeffcd57f3b8ce974bc4e2"; libraryHaskellDepends = [ base bytestring text time ]; testHaskellDepends = [ base doctest Glob hspec HUnit QuickCheck text time @@ -111394,6 +116954,8 @@ self: { pname = "http-api-data"; version = "0.2.2"; sha256 = "fba6a38c0f3a39e2ce02b42351953d9aa82f48ef83e5c921a9a1e719b8bc45dc"; + revision = "1"; + editedCabalFile = "10f995529774bcf3fada98f7f30c106076446c78db5c89a9e43ad95de69c4d3f"; libraryHaskellDepends = [ base bytestring text time time-locale-compat ]; @@ -112352,6 +117914,23 @@ self: { homepage = "https://github.com/spl/http-client-request-modifiers"; description = "Convenient monadic HTTP request modifiers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "http-client-session" = callPackage + ({ mkDerivation, base-prelude, bytestring, either, http-client + , mtl-prelude + }: + mkDerivation { + pname = "http-client-session"; + version = "0.1.1"; + sha256 = "41d9210795f0a0bdb984ca462d8d1e214679dda1b1a606dbce69ee52189162ca"; + libraryHaskellDepends = [ + base-prelude bytestring either http-client mtl-prelude + ]; + homepage = "https://github.com/sannsyn/http-client-session"; + description = "A simple abstraction over the \"http-client\" connection manager"; + license = stdenv.lib.licenses.mit; }) {}; "http-client-streams" = callPackage @@ -112591,6 +118170,7 @@ self: { homepage = "https://github.com/exbb2/http-conduit-browser"; description = "Browser interface to the http-conduit package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-conduit-downloader" = callPackage @@ -112611,6 +118191,7 @@ self: { homepage = "https://github.com/bazqux/http-conduit-downloader"; description = "HTTP downloader tailored for web-crawler needs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-date_0_0_4" = callPackage @@ -112722,6 +118303,7 @@ self: { homepage = "http://github.com/snoyberg/http-enumerator"; description = "HTTP client package with enumerator interface and HTTPS support. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-kinder" = callPackage @@ -112886,6 +118468,7 @@ self: { jailbreak = true; description = "Monad abstraction for HTTP allowing lazy transfer and non-I/O simulation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-proxy" = callPackage @@ -112908,6 +118491,7 @@ self: { homepage = "https://github.com/erikd/http-proxy"; description = "A library for writing HTTP and HTTPS proxies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-querystring" = callPackage @@ -113067,6 +118651,7 @@ self: { libraryHaskellDepends = [ base network ]; description = "A simple websever with an interact style API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-streams" = callPackage @@ -113107,8 +118692,8 @@ self: { }: mkDerivation { pname = "http-test"; - version = "0.2.4"; - sha256 = "03e5ea74bc05ce46b2cfabae00c307db86fdc31dc6636d33cb32655f67b4c71b"; + version = "0.2.5"; + sha256 = "06254d86b26a7df3ac6e5bee7e8c4cf74bdde12e825567a10ca81c8ae6fdb3a3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -113334,8 +118919,8 @@ self: { }: mkDerivation { pname = "http2"; - version = "1.5.1"; - sha256 = "3beba1a59d5c533ef58c715a3b54a069b24f81170e80d662e6267a2ad218eb5d"; + version = "1.5.4"; + sha256 = "f3851948d57fd532f37b1f74d2d975272ff7da218720b5f519765f1c274f257e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -113351,7 +118936,6 @@ self: { containers directory doctest filepath Glob hex hspec psqueues stm text unordered-containers vector word8 ]; - doCheck = false; description = "HTTP/2.0 library including frames and HPACK"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -113392,6 +118976,7 @@ self: { homepage = "https://github.com/fmap/https-everywhere-rules"; description = "High-level access to HTTPS Everywhere rulesets"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "https-everywhere-rules-raw" = callPackage @@ -113424,6 +119009,7 @@ self: { ]; description = "Specification of HTTP request/response generators and parsers"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "htune" = callPackage @@ -113438,6 +119024,7 @@ self: { jailbreak = true; description = "harmonic analyser and tuner for musical instruments"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "htzaar" = callPackage @@ -113453,6 +119040,7 @@ self: { homepage = "http://tomahawkins.org"; description = "A two player abstract strategy game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hub" = callPackage @@ -113509,6 +119097,7 @@ self: { jailbreak = true; description = "Support library for Hubris, the Ruby <=> Haskell bridge"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ruby;}; "huckleberry" = callPackage @@ -113549,6 +119138,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Yhc"; description = "Hugs Front-end to Yhc Core"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hulk" = callPackage @@ -113576,6 +119166,7 @@ self: { jailbreak = true; description = "IRC server written in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "human-readable-duration_0_1_0_0" = callPackage @@ -113638,6 +119229,7 @@ self: { jailbreak = true; description = "Haskell UPnP Media Server"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hunch" = callPackage @@ -113689,6 +119281,7 @@ self: { homepage = "http://patch-tag.com/r/kwallmar/hunit_gui/home"; description = "A GUI testrunner for HUnit"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hunit-parsec" = callPackage @@ -113714,6 +119307,7 @@ self: { homepage = "github.com/tcrayford/rematch"; description = "HUnit support for rematch"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hunp" = callPackage @@ -113764,6 +119358,7 @@ self: { homepage = "http://github.com/hunt-framework/"; description = "A search and indexing engine"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hunt-server" = callPackage @@ -113789,6 +119384,7 @@ self: { homepage = "http://github.com/hunt-framework"; description = "A search and indexing engine server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hunt-server-cli" = callPackage @@ -113832,6 +119428,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Extract function names from Windows DLLs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "husk-scheme" = callPackage @@ -113891,6 +119488,7 @@ self: { homepage = "http://github.com/markusle/husky/tree/master"; description = "A simple command line calculator"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hutton" = callPackage @@ -113912,6 +119510,7 @@ self: { jailbreak = true; description = "A program for the button on Reddit"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "huttons-razor" = callPackage @@ -113938,6 +119537,7 @@ self: { jailbreak = true; description = "Fuzzy logic library with support for T1, IT2, GT2"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hvect_0_2_0_0" = callPackage @@ -114060,6 +119660,7 @@ self: { jailbreak = true; description = "Simple Haskell Web Server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hwsl2" = callPackage @@ -114133,6 +119734,7 @@ self: { jailbreak = true; description = "Haskell XMPP (Jabber Client) Command Line Interface (CLI)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hxournal" = callPackage @@ -114160,6 +119762,7 @@ self: { homepage = "http://ianwookim.org/hxournal"; description = "A pen notetaking program written in haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hxt_9_3_1_7" = callPackage @@ -114256,6 +119859,7 @@ self: { homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html"; description = "Serialisation and deserialisation of HXT XmlTrees"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hxt-cache" = callPackage @@ -114366,6 +119970,7 @@ self: { homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html"; description = "A collection of tools for processing XML with Haskell (Filter variant)"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hxt-http_9_1_5" = callPackage @@ -114618,6 +120223,7 @@ self: { jailbreak = true; description = "Helper functions for HXT"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hxweb" = callPackage @@ -114629,6 +120235,7 @@ self: { libraryHaskellDepends = [ base cgi fastcgi libxml mtl xslt ]; description = "Minimal webframework using fastcgi, libxml2 and libxslt"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hyahtzee" = callPackage @@ -114681,6 +120288,7 @@ self: { homepage = "http://repos.mine.nu/davve/darcs/hybrid"; description = "A implementation of a type-checker for Lambda-H"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hybrid-vectors_0_1_2" = callPackage @@ -114740,6 +120348,7 @@ self: { homepage = "https://github.com/mruegenberg/hydra-hs"; description = "Haskell binding to the Sixense SDK for the Razer Hydra"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {sixense_x64 = null;}; "hydra-print" = callPackage @@ -114811,6 +120420,7 @@ self: { homepage = "https://scravy.de/hydrogen-cli/"; description = "Hydrogen Data"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydrogen-cli-args" = callPackage @@ -114828,6 +120438,7 @@ self: { homepage = "https://scravy.de/hydrogen-cli-args/"; description = "Hydrogen Command Line Arguments Parser"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydrogen-data" = callPackage @@ -114841,6 +120452,7 @@ self: { homepage = "https://scravy.de/hydrogen-data/"; description = "Hydrogen Data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydrogen-multimap" = callPackage @@ -114868,6 +120480,7 @@ self: { homepage = "https://scravy.de/hydrogen-parsing/"; description = "Hydrogen Parsing Utilities"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydrogen-prelude" = callPackage @@ -114888,6 +120501,7 @@ self: { homepage = "http://scravy.de/hydrogen-prelude/"; description = "Hydrogen Prelude"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydrogen-prelude-parsec" = callPackage @@ -114901,6 +120515,7 @@ self: { homepage = "http://scravy.de/hydrogen-prelude-parsec/"; description = "Hydrogen Prelude /w Parsec"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydrogen-syntax" = callPackage @@ -114919,6 +120534,7 @@ self: { homepage = "https://scravy.de/hydrogen-syntax/"; description = "Hydrogen Syntax"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydrogen-util" = callPackage @@ -114935,6 +120551,7 @@ self: { homepage = "https://scravy.de/hydrogen-util/"; description = "Hydrogen Tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydrogen-version" = callPackage @@ -114966,6 +120583,7 @@ self: { homepage = "http://github.com/tibbe/hyena"; description = "Simple web application server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hylolib" = callPackage @@ -114982,6 +120600,7 @@ self: { jailbreak = true; description = "Tools for hybrid logics related programs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hylotab" = callPackage @@ -114996,6 +120615,7 @@ self: { homepage = "http://www.glyc.dc.uba.ar/intohylo/hylotab.php"; description = "Tableau based theorem prover for hybrid logics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hyloutils" = callPackage @@ -115011,6 +120631,7 @@ self: { ]; description = "Very small programs for hybrid logics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hyperdrive" = callPackage @@ -115030,6 +120651,7 @@ self: { jailbreak = true; description = "a fast, trustworthy HTTP(s) server built"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hyperfunctions" = callPackage @@ -115117,6 +120739,7 @@ self: { homepage = "https://github.com/mkscrg/hyperpublic-haskell"; description = "A thin wrapper for the Hyperpublic API"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hyphenate" = callPackage @@ -115259,6 +120882,7 @@ self: { homepage = "https://github.com/zoetic-community/hypher"; description = "A Haskell neo4j client"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hzaif" = callPackage @@ -115364,6 +120988,7 @@ self: { ]; description = "Internationalization for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iCalendar" = callPackage @@ -115394,6 +121019,7 @@ self: { libraryHaskellDepends = [ base interleavableIO mtl ]; description = "Version of Control.Exception using InterleavableIO."; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iap-verifier" = callPackage @@ -116156,6 +121782,7 @@ self: { homepage = "http://ideas.cs.uu.nl/www/"; description = "Feedback services for intelligent tutoring systems"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ideas-math" = callPackage @@ -116175,6 +121802,7 @@ self: { homepage = "http://ideas.cs.uu.nl/www/"; description = "Interactive domain reasoner for logic and mathematics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "idempotent" = callPackage @@ -116234,6 +121862,7 @@ self: { ]; description = "ID3v2 (tagging standard for MP3 files) library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "idna" = callPackage @@ -116257,22 +121886,23 @@ self: { jailbreak = true; description = "Converts Unicode hostnames into ASCII"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "idris" = callPackage ({ mkDerivation, annotated-wl-pprint, ansi-terminal, ansi-wl-pprint , async, base, base64-bytestring, binary, blaze-html, blaze-markup , bytestring, cheapskate, containers, deepseq, directory, filepath - , fingertree, fsnotify, gmp, haskeline, hscurses, libffi, mtl - , network, optparse-applicative, parsers, pretty, process, safe - , split, text, time, transformers, transformers-compat, trifecta - , uniplate, unix, unordered-containers, utf8-string, vector - , vector-binary-instances, zip-archive + , fingertree, fsnotify, gmp, haskeline, libffi, mtl, network + , optparse-applicative, parsers, pretty, process, safe, split + , terminal-size, text, time, transformers, transformers-compat + , trifecta, uniplate, unix, unordered-containers, utf8-string + , vector, vector-binary-instances, zip-archive }: mkDerivation { pname = "idris"; - version = "0.10.2"; - sha256 = "797f848d073b14772e20b13507272a2bf490644e005a978423c4bf057d021d19"; + version = "0.10.3"; + sha256 = "63fd7bade38873e3c9933fa883bacdedffc73c5fec5a6e79a981ccf7ae990e85"; configureFlags = [ "-fcurses" "-fffi" "-fgmp" ]; isLibrary = true; isExecutable = true; @@ -116280,8 +121910,8 @@ self: { annotated-wl-pprint ansi-terminal ansi-wl-pprint async base base64-bytestring binary blaze-html blaze-markup bytestring cheapskate containers deepseq directory filepath fingertree - fsnotify haskeline hscurses libffi mtl network optparse-applicative - parsers pretty process safe split text time transformers + fsnotify haskeline libffi mtl network optparse-applicative parsers + pretty process safe split terminal-size text time transformers transformers-compat trifecta uniplate unix unordered-containers utf8-string vector vector-binary-instances zip-archive ]; @@ -116296,6 +121926,7 @@ self: { homepage = "http://www.idris-lang.org/"; description = "Functional Programming Language with Dependent Types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gmp;}; "ieee" = callPackage @@ -116319,6 +121950,7 @@ self: { libraryHaskellDepends = [ base ]; description = "ieee-utils"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ieee-utils-tempfix" = callPackage @@ -116433,7 +122065,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "ig" = callPackage + "ig_0_6_1" = callPackage ({ mkDerivation, aeson, base, base16-bytestring, bytestring , conduit, conduit-extra, crypto-api, cryptohash , cryptohash-cryptoapi, data-default, http-conduit, http-types @@ -116453,6 +122085,29 @@ self: { homepage = "https://github.com/prowdsponsor/ig"; description = "Bindings to Instagram's API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ig" = callPackage + ({ mkDerivation, aeson, base, base16-bytestring, bytestring + , conduit, conduit-extra, crypto-api, cryptohash + , cryptohash-cryptoapi, data-default, http-conduit, http-types + , lifted-base, monad-control, resourcet, text, time, transformers + , transformers-base, unordered-containers + }: + mkDerivation { + pname = "ig"; + version = "0.7"; + sha256 = "31763aae55c9cfa47a8f3f8e04ba0b91adb4b6aa5f92e3401208205b873d5c55"; + libraryHaskellDepends = [ + aeson base base16-bytestring bytestring conduit conduit-extra + crypto-api cryptohash cryptohash-cryptoapi data-default + http-conduit http-types lifted-base monad-control resourcet text + time transformers transformers-base unordered-containers + ]; + homepage = "https://github.com/prowdsponsor/ig"; + description = "Bindings to Instagram's API"; + license = stdenv.lib.licenses.bsd3; }) {}; "ige-mac-integration" = callPackage @@ -116472,6 +122127,7 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Bindings for the Gtk/OS X integration library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {ige-mac-integration = null;}; "ignore" = callPackage @@ -116510,6 +122166,7 @@ self: { homepage = "http://giorgidze.github.com/igraph/"; description = "Bindings to the igraph C library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {igraph = null;}; "igrf" = callPackage @@ -116613,7 +122270,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ihaskell" = callPackage + "ihaskell_0_8_3_0" = callPackage ({ mkDerivation, aeson, base, base64-bytestring, bin-package-db , bytestring, cereal, cmdargs, containers, directory, filepath, ghc , ghc-parser, ghc-paths, haskeline, haskell-src-exts, hlint, hspec @@ -116654,6 +122311,48 @@ self: { homepage = "http://github.com/gibiansky/IHaskell"; description = "A Haskell backend kernel for the IPython project"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ihaskell" = callPackage + ({ mkDerivation, aeson, base, base64-bytestring, bin-package-db + , bytestring, cereal, cmdargs, containers, directory, filepath, ghc + , ghc-parser, ghc-paths, haskeline, haskell-src-exts, hlint, hspec + , http-client, http-client-tls, HUnit, ipython-kernel, mtl, parsec + , process, random, setenv, shelly, split, stm, strict, system-argv0 + , text, transformers, unix, unordered-containers, utf8-string, uuid + , vector + }: + mkDerivation { + pname = "ihaskell"; + version = "0.8.4.0"; + sha256 = "f77909f31fc5c8b0792460c09248a3b4f2a54cbbce060d393bd542c4fae27f27"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base base64-bytestring bin-package-db bytestring cereal + cmdargs containers directory filepath ghc ghc-parser ghc-paths + haskeline haskell-src-exts hlint http-client http-client-tls + ipython-kernel mtl parsec process random shelly split stm strict + system-argv0 text transformers unix unordered-containers + utf8-string uuid vector + ]; + executableHaskellDepends = [ + aeson base bin-package-db bytestring containers directory ghc + ipython-kernel process strict text transformers unix + ]; + testHaskellDepends = [ + aeson base base64-bytestring bin-package-db bytestring cereal + cmdargs containers directory filepath ghc ghc-parser ghc-paths + haskeline haskell-src-exts hlint hspec http-client http-client-tls + HUnit ipython-kernel mtl parsec process random setenv shelly split + stm strict system-argv0 text transformers unix unordered-containers + utf8-string uuid vector + ]; + doCheck = false; + homepage = "http://github.com/gibiansky/IHaskell"; + description = "A Haskell backend kernel for the IPython project"; + license = stdenv.lib.licenses.mit; }) {}; "ihaskell-aeson" = callPackage @@ -116746,6 +122445,7 @@ self: { homepage = "http://www.github.com/gibiansky/ihaskell"; description = "IHaskell display instances for diagram types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ihaskell-display" = callPackage @@ -116789,6 +122489,7 @@ self: { homepage = "https://tweag.github.io/HaskellR/"; description = "Embed R quasiquotes and plots in IHaskell notebooks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ihaskell-juicypixels" = callPackage @@ -116850,6 +122551,7 @@ self: { homepage = "http://www.github.com/gibiansky/ihaskell"; description = "IHaskell display instance for Plot (from plot package)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ihaskell-rlangqq" = callPackage @@ -116871,21 +122573,21 @@ self: { "ihaskell-widgets" = callPackage ({ mkDerivation, aeson, base, containers, ihaskell, ipython-kernel - , nats, scientific, singletons, text, unix, unordered-containers - , vector, vinyl + , scientific, singletons, text, unix, unordered-containers, vector + , vinyl }: mkDerivation { pname = "ihaskell-widgets"; - version = "0.2.2.1"; - sha256 = "c085e47379547e61009d9ffc2c48f2b038a7bbd55d537e328d0e2cb064cf12d9"; + version = "0.2.3.1"; + sha256 = "77ff4cce8bf62831ccb22984bc9539accfb72eafdf5f36fcdcdd7b85f6e5c32b"; libraryHaskellDepends = [ - aeson base containers ihaskell ipython-kernel nats scientific - singletons text unix unordered-containers vector vinyl + aeson base containers ihaskell ipython-kernel scientific singletons + text unix unordered-containers vector vinyl ]; - jailbreak = true; homepage = "http://www.github.com/gibiansky/IHaskell"; description = "IPython standard widgets for IHaskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ihttp" = callPackage @@ -116904,6 +122606,7 @@ self: { executableHaskellDepends = [ base network ]; description = "Incremental HTTP iteratee"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "illuminate" = callPackage @@ -116925,6 +122628,7 @@ self: { homepage = "http://github.com/jgm/illuminate"; description = "A fast syntax highlighting library built with alex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "image-type" = callPackage @@ -116977,6 +122681,7 @@ self: { testPkgconfigDepends = [ imagemagick ]; description = "bindings to imagemagick library"; license = "unknown"; + hydraPlatforms = [ "x86_64-linux" ]; }) {inherit (pkgs) imagemagick;}; "imagepaste" = callPackage @@ -116997,6 +122702,7 @@ self: { homepage = "https://bitbucket.org/balta2ar/imagepaste"; description = "Command-line image paste utility"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "imagesize-conduit_1_0_0_4" = callPackage @@ -117061,6 +122767,7 @@ self: { ]; description = "An efficient IMAP client library, with SSL and streaming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "imapget" = callPackage @@ -117100,6 +122807,7 @@ self: { jailbreak = true; description = "Minimalistic reference manager"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "imgurder" = callPackage @@ -117120,6 +122828,7 @@ self: { ]; description = "Uploader for Imgur"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "imm" = callPackage @@ -117149,9 +122858,10 @@ self: { jailbreak = true; description = "Retrieve RSS/Atom feeds and write one mail per new item in a maildir"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "immortal" = callPackage + "immortal_0_2" = callPackage ({ mkDerivation, base, lifted-base, monad-control, stm, tasty , tasty-hunit, transformers, transformers-base }: @@ -117168,6 +122878,26 @@ self: { homepage = "https://github.com/feuerbach/immortal"; description = "Spawn threads that never die (unless told to do so)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "immortal" = callPackage + ({ mkDerivation, base, lifted-base, monad-control, stm, tasty + , tasty-hunit, transformers, transformers-base + }: + mkDerivation { + pname = "immortal"; + version = "0.2.2"; + sha256 = "b3858f3830f5eacd7380184d57845ba6b1aee638193fbbf2b285cc31e2c3623a"; + libraryHaskellDepends = [ + base lifted-base monad-control stm transformers-base + ]; + testHaskellDepends = [ + base lifted-base stm tasty tasty-hunit transformers + ]; + homepage = "https://github.com/feuerbach/immortal"; + description = "Spawn threads that never die (unless told to do so)"; + license = stdenv.lib.licenses.mit; }) {}; "imparse" = callPackage @@ -117192,6 +122922,7 @@ self: { jailbreak = true; description = "Multi-platform parser analyzer and generator"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "imperative-edsl" = callPackage @@ -117215,6 +122946,7 @@ self: { homepage = "https://github.com/emilaxelsson/imperative-edsl"; description = "Deep embedding of imperative programs with code generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-linux" ]; }) {}; "imperative-edsl-vhdl" = callPackage @@ -117231,6 +122963,7 @@ self: { ]; description = "Deep embedding of VHDL programs with code generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "implicit" = callPackage @@ -117258,6 +122991,18 @@ self: { license = "GPL"; }) {}; + "implicit-logging" = callPackage + ({ mkDerivation, base, mtl, time, transformers }: + mkDerivation { + pname = "implicit-logging"; + version = "0.1.0.0"; + sha256 = "98032042eee95714c2f0e0c1a25a03f15e75223bacc85b9857b1d66d639805c0"; + libraryHaskellDepends = [ base mtl time transformers ]; + homepage = "https://github.com/revnull/implicit-logging"; + description = "A logging framework built around implicit parameters"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "implicit-params" = callPackage ({ mkDerivation, base, data-default-class }: mkDerivation { @@ -117306,6 +123051,7 @@ self: { homepage = "http://github.com/tomahawkins/improve/wiki/ImProve"; description = "An imperative, verifiable programming language for high assurance applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "inc-ref" = callPackage @@ -117341,6 +123087,7 @@ self: { homepage = "https://github.com/adamgundry/inch/"; description = "A type-checker for Haskell with integer constraints"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "include-file_0_1_0_2" = callPackage @@ -117390,6 +123137,7 @@ self: { homepage = "http://darcs.wolfgang.jeltsch.info/haskell/incremental-computing"; description = "Incremental computing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "incremental-parser_0_2_3_3" = callPackage @@ -117475,6 +123223,7 @@ self: { homepage = "http://github.com/sebfisch/incremental-sat-solver"; description = "Simple, Incremental SAT Solving as a Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "increments" = callPackage @@ -117495,6 +123244,7 @@ self: { jailbreak = true; description = "type classes for incremental updates to data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "indentation" = callPackage @@ -117503,13 +123253,11 @@ self: { }: mkDerivation { pname = "indentation"; - version = "0.2.1.1"; - sha256 = "72134a7c01812ccadacf1c5db86e40892136e7bf583b85c083b088cec19e65f1"; - revision = "1"; - editedCabalFile = "642875a7d7d3b8bd626f1671ff1dad1a8584bfa0fab236e5e404d8b26345317e"; + version = "0.2.1.2"; + sha256 = "dd7161daaf85a26af3ac18113760ef2af69c6d2ccef6e3febab103cd299205df"; libraryHaskellDepends = [ base mtl parsec parsers trifecta ]; testHaskellDepends = [ base parsec tasty tasty-hunit trifecta ]; - homepage = "https://bitbucket.org/adamsmd/indentation"; + homepage = "https://bitbucket.org/mdmkolbe/indentation"; description = "Indentation sensitive parsing combinators for Parsec and Trifecta"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -117552,6 +123300,7 @@ self: { jailbreak = true; description = "Indexed Types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "indexed" = callPackage @@ -117615,6 +123364,7 @@ self: { libraryHaskellDepends = [ base gtk HDBC HDBC-sqlite3 ]; description = "Indian Language Font Converter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "indices" = callPackage @@ -117627,6 +123377,7 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Multi-dimensional statically bounded indices"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "indieweb-algorithms" = callPackage @@ -117653,6 +123404,7 @@ self: { homepage = "https://github.com/myfreeweb/indieweb-algorithms"; description = "A collection of implementations of IndieWeb algorithms"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "inf-interval" = callPackage @@ -117667,6 +123419,7 @@ self: { homepage = "https://github.com/RaminHAL9001/inf-interval"; description = "Non-contiguous interval data types with potentially infinite ranges"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "infer-upstream" = callPackage @@ -117686,6 +123439,7 @@ self: { homepage = "https://github.com/silky/infer-upstream"; description = "Find the repository from where a given repo was forked"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "infernu" = callPackage @@ -117735,6 +123489,7 @@ self: { ]; jailbreak = true; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "infix" = callPackage @@ -117747,6 +123502,7 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; description = "Infix expression re-parsing (for HsParser library)"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "inflections" = callPackage @@ -117778,6 +123534,7 @@ self: { homepage = "https://bitbucket.org/eegg/inflist"; description = "An infinite list type and operations thereon"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "influxdb" = callPackage @@ -117809,6 +123566,7 @@ self: { homepage = "https://github.com/maoe/influxdb-haskell"; description = "Haskell client library for InfluxDB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "informative" = callPackage @@ -117837,6 +123595,7 @@ self: { homepage = "http://doomanddarkness.eu/pub/informative"; description = "A yesod subsite serving a wiki"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ini_0_2_2" = callPackage @@ -117943,6 +123702,7 @@ self: { homepage = "https://chiselapp.com/user/mwm/repository/inilist"; description = "Processing for .ini files with duplicate sections and options"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "inject" = callPackage @@ -118044,6 +123804,7 @@ self: { testHaskellDepends = [ base ]; description = "Lets you embed C++ code into Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "inline-c-win32" = callPackage @@ -118091,6 +123852,7 @@ self: { ]; description = "Seamlessly call R from Haskell and vice versa. No FFI required."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-linux" ]; }) {inherit (pkgs) R;}; "inquire" = callPackage @@ -118108,6 +123870,29 @@ self: { broken = true; }) {aether = null;}; + "insert-ordered-containers" = callPackage + ({ mkDerivation, aeson, base, base-compat, hashable, lens + , QuickCheck, semigroupoids, semigroups, tasty, tasty-quickcheck + , text, transformers, unordered-containers + }: + mkDerivation { + pname = "insert-ordered-containers"; + version = "0.1.0.1"; + sha256 = "4905e5d128c19887a79b281150acb16cb3b043ab2c5a7788b0151ba7d46b900a"; + libraryHaskellDepends = [ + aeson base base-compat hashable lens semigroupoids semigroups text + transformers unordered-containers + ]; + testHaskellDepends = [ + aeson base base-compat hashable lens QuickCheck semigroupoids + semigroups tasty tasty-quickcheck text transformers + unordered-containers + ]; + homepage = "https://github.com/phadej/insert-ordered-containers#readme"; + description = "Associative containers retating insertion order for traversals"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "inserts" = callPackage ({ mkDerivation, attoparsec, base, bytestring, dlist }: mkDerivation { @@ -118222,6 +124007,7 @@ self: { jailbreak = true; description = "Heterogenous Zipper in Instant Generics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "instinct" = callPackage @@ -118288,6 +124074,7 @@ self: { homepage = "http://projects.haskell.org/~malcolm/integer-pure"; description = "A pure-Haskell implementation of arbitrary-precision Integers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "integration_0_2_0_1" = callPackage @@ -118332,6 +124119,7 @@ self: { homepage = "https://github.com/rrnewton/intel-aes/wiki"; description = "Hardware accelerated AES encryption and Random Number Generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {intel_aes = null;}; "interchangeable" = callPackage @@ -118357,6 +124145,7 @@ self: { executableHaskellDepends = [ base directory haskell-src hint mtl ]; description = "Generates a version of a module using InterleavableIO"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "interleavableIO" = callPackage @@ -118368,6 +124157,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Use other Monads in functions that asks for an IO Monad"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "interleave" = callPackage @@ -118426,6 +124216,7 @@ self: { homepage = "http://code.haskell.org/~thielema/internetmarke/"; description = "Shell command for constructing custom stamps for German Post"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "interpol" = callPackage @@ -118511,6 +124302,7 @@ self: { ]; description = "QuasiQuoter for Ruby-style multi-line interpolated strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "interpolatedstring-qq-mwotton" = callPackage @@ -118526,6 +124318,7 @@ self: { jailbreak = true; description = "DO NOT USE THIS. interpolatedstring-qq works now."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "interpolation" = callPackage @@ -118606,8 +124399,8 @@ self: { }: mkDerivation { pname = "intricacy"; - version = "0.6"; - sha256 = "8cd3cdd44e80f65f79c88a3a18580ce4bf02dc5086652f8af46ec90d18cadb42"; + version = "0.6.1"; + sha256 = "da202b4ce7d57dd675695fedfbf5bbc2a203d160e72c5fae8994a7bb7eca254c"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -118618,6 +124411,7 @@ self: { homepage = "http://mbays.freeshell.org/intricacy"; description = "A game of competitive puzzle-design"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "intset" = callPackage @@ -118635,6 +124429,7 @@ self: { homepage = "https://github.com/pxqr/intset"; description = "Pure, mergeable, succinct Int sets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "invariant_0_2" = callPackage @@ -118810,6 +124605,7 @@ self: { executableHaskellDepends = [ base ]; description = "An API for generating TIMBER style reactive objects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "io-region" = callPackage @@ -119021,6 +124817,7 @@ self: { homepage = "https://bitbucket.org/dshearer/iotransaction/"; description = "Supports the automatic undoing of IO operations when an exception is thrown"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ip-quoter" = callPackage @@ -119069,6 +124866,7 @@ self: { homepage = "http://darcs.nomeata.de/ipatch"; description = "interactive patch editor"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ipc" = callPackage @@ -119085,6 +124883,7 @@ self: { jailbreak = true; description = "High level inter-process communication library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ipcvar" = callPackage @@ -119120,6 +124919,7 @@ self: { jailbreak = true; description = "haskell binding to ipopt and nlopt including automatic differentiation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ipopt; nlopt = null;}; "ipprint" = callPackage @@ -119235,6 +125035,7 @@ self: { jailbreak = true; description = "iptables rules parser/printer library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iptadmin" = callPackage @@ -119261,6 +125062,7 @@ self: { homepage = "http://iptadmin.117.su"; description = "web-interface for iptables"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ipython-kernel_0_6_1_2" = callPackage @@ -119312,7 +125114,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ipython-kernel" = callPackage + "ipython-kernel_0_8_3_0" = callPackage ({ mkDerivation, aeson, base, bytestring, cereal, containers , directory, filepath, mtl, parsec, process, SHA, temporary, text , transformers, unordered-containers, uuid, zeromq4-haskell @@ -119334,6 +125136,31 @@ self: { homepage = "http://github.com/gibiansky/IHaskell"; description = "A library for creating kernels for IPython frontends"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ipython-kernel" = callPackage + ({ mkDerivation, aeson, base, bytestring, cereal, containers + , directory, filepath, mtl, parsec, process, SHA, temporary, text + , transformers, unordered-containers, uuid, zeromq4-haskell + }: + mkDerivation { + pname = "ipython-kernel"; + version = "0.8.4.0"; + sha256 = "ac4c822836d5b2cecf7ac4c61fe32ed876b09d18bcbe44760a6096bcd7338264"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring cereal containers directory filepath mtl + process SHA temporary text transformers unordered-containers uuid + zeromq4-haskell + ]; + executableHaskellDepends = [ + base filepath mtl parsec text transformers + ]; + homepage = "http://github.com/gibiansky/IHaskell"; + description = "A library for creating kernels for IPython frontends"; + license = stdenv.lib.licenses.mit; }) {}; "irc" = callPackage @@ -119472,6 +125299,28 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "irc-dcc" = callPackage + ({ mkDerivation, attoparsec, base, binary, bytestring, errors + , hspec-attoparsec, io-streams, iproute, irc-ctcp, network, path + , tasty, tasty-hspec, transformers, utf8-string + }: + mkDerivation { + pname = "irc-dcc"; + version = "1.0.0"; + sha256 = "5cb2dc63d786b76a6d6145a2b6e5599855284c1c3d9609a59f21842905d9cd3f"; + libraryHaskellDepends = [ + attoparsec base binary bytestring errors io-streams iproute + irc-ctcp network path transformers utf8-string + ]; + testHaskellDepends = [ + attoparsec base binary bytestring hspec-attoparsec iproute irc-ctcp + network path tasty tasty-hspec utf8-string + ]; + homepage = "https://github.com/JanGe/irc-dcc"; + description = "A DCC message parsing and helper library for IRC clients"; + license = stdenv.lib.licenses.mit; + }) {}; + "irc-fun-bot" = callPackage ({ mkDerivation, aeson, auto-update, base, case-insensitive, clock , containers, data-default-class, fast-logger, formatting @@ -119518,8 +125367,8 @@ self: { }: mkDerivation { pname = "irc-fun-color"; - version = "0.2.0.0"; - sha256 = "d08930a2d5b39411515cd1477804416a0d1882cb4af716cfdddffc0bf3e20780"; + version = "0.2.1.0"; + sha256 = "f8423b38b4309fa55af87cd6b3fabe277b47c77fe412cc660712d41663f0bc87"; libraryHaskellDepends = [ base dlist formatting irc-fun-types text text-show ]; @@ -119594,6 +125443,33 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "iridium" = callPackage + ({ mkDerivation, ansi-terminal, base, bytestring, Cabal, containers + , extra, foldl, http-conduit, lifted-base, monad-control + , multistate, process, split, system-filepath, tagged, text + , transformers, transformers-base, turtle, unordered-containers + , unsafe, vector, xmlhtml, yaml + }: + mkDerivation { + pname = "iridium"; + version = "0.1.5.2"; + sha256 = "97709297aae761e274de08e9d47cab14e87065e9787357a0e45f817cfefaa640"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + ansi-terminal base bytestring Cabal containers extra foldl + http-conduit lifted-base monad-control multistate process split + system-filepath tagged text transformers transformers-base turtle + unordered-containers unsafe vector xmlhtml yaml + ]; + executableHaskellDepends = [ + base extra multistate text transformers unordered-containers yaml + ]; + homepage = "https://github.com/lspitzner/iridium"; + description = "Automated Testing and Package Uploading"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "iron-mq" = callPackage ({ mkDerivation, aeson, base, http-client, lens, text, wreq }: mkDerivation { @@ -119670,6 +125546,7 @@ self: { jailbreak = true; description = "Check whether a value has been evaluated"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "isiz" = callPackage @@ -119683,6 +125560,7 @@ self: { executableHaskellDepends = [ base gtk3 ]; description = "A program to show the size of image and whether suitable for wallpaper"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "islink" = callPackage @@ -119711,6 +125589,7 @@ self: { ]; description = "Advanced ESMTP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iso3166-country-codes" = callPackage @@ -119819,6 +125698,7 @@ self: { homepage = "https://github.com/JohnLato/iter-stats"; description = "iteratees for statistical processing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iterIO" = callPackage @@ -119839,6 +125719,7 @@ self: { homepage = "http://www.scs.stanford.edu/~dm/iterIO"; description = "Iteratee-based IO with pipe operators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) zlib;}; "iterable" = callPackage @@ -119878,6 +125759,7 @@ self: { homepage = "http://www.tiresiaspress.us/haskell/iteratee"; description = "Iteratee-based I/O"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iteratee-compress" = callPackage @@ -119890,6 +125772,7 @@ self: { librarySystemDepends = [ bzip2 zlib ]; description = "Enumeratees for compressing and decompressing streams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) bzip2; inherit (pkgs) zlib;}; "iteratee-mtl" = callPackage @@ -119926,6 +125809,7 @@ self: { jailbreak = true; description = "Package allowing parsec parser initeratee"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iteratee-stm" = callPackage @@ -119941,6 +125825,7 @@ self: { homepage = "http://www.tiresiaspress.us/~jwlato/haskell/iteratee-stm"; description = "Concurrent iteratees using STM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iterio-server" = callPackage @@ -119959,6 +125844,7 @@ self: { homepage = "https://github.com/alevy/iterio-server"; description = "Library for building servers with IterIO"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivar-simple" = callPackage @@ -119989,6 +125875,7 @@ self: { homepage = "http://www.dcs.st-and.ac.uk/~eb/Ivor/"; description = "Theorem proving library based on dependent type theory"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory" = callPackage @@ -120006,6 +125893,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Safe embedded C programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-backend-c" = callPackage @@ -120026,6 +125914,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory C backend"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-bitdata" = callPackage @@ -120046,6 +125935,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory bit-data support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-examples" = callPackage @@ -120068,6 +125958,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory examples"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-hw" = callPackage @@ -120085,6 +125976,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory hardware model (STM32F4)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-opts" = callPackage @@ -120102,6 +125994,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory compiler optimizations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-quickcheck" = callPackage @@ -120115,6 +126008,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "QuickCheck driver for Ivory"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-stdlib" = callPackage @@ -120128,6 +126022,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory standard library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivy-web" = callPackage @@ -120144,6 +126039,7 @@ self: { homepage = "https://github.com/lilac/ivy-web/"; description = "A lightweight web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ix-shapable" = callPackage @@ -120170,6 +126066,7 @@ self: { homepage = "http://www.eecs.harvard.edu/~tov/pubs/haskell-session-types/"; description = "A preprocessor for expanding \"ixdo\" notation for indexed monads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ixmonad" = callPackage @@ -120253,6 +126150,7 @@ self: { ]; description = "CLI (command line interface) to YQL"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "j2hs" = callPackage @@ -120274,6 +126172,7 @@ self: { jailbreak = true; description = "j2hs"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ja-base-extra" = callPackage @@ -120306,6 +126205,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/JACK"; description = "Bindings for the JACK Audio Connection Kit"; license = "GPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) libjack2;}; "jack-bindings" = callPackage @@ -120319,6 +126219,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "DEPRECATED Bindings to the JACK Audio Connection Kit"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libjack2;}; "jackminimix" = callPackage @@ -120332,6 +126233,7 @@ self: { homepage = "http://www.renickbell.net/doku.php?id=jackminimix"; description = "control JackMiniMix"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jacobi-roots" = callPackage @@ -120345,6 +126247,7 @@ self: { homepage = "http://github.com/ghorn/jacobi-roots"; description = "Roots of two shifted Jacobi polynomials (Legendre and Radau) to double precision"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jail" = callPackage @@ -120413,6 +126316,7 @@ self: { homepage = "https://github.com/cgo/jalla"; description = "Higher level functions for linear algebra. Wraps BLAS and LAPACKE."; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) blas; cblas = null; lapacke = null;}; "jammittools" = callPackage @@ -120422,8 +126326,8 @@ self: { }: mkDerivation { pname = "jammittools"; - version = "0.5.0.2"; - sha256 = "2d633a0410423ad12840449bb809f3bc3ffbc9aae7db6b365379b02ebeb3829c"; + version = "0.5.0.3"; + sha256 = "90917b080f69f47982c0c8851e7a7781e1627b42f291f11f6543214da2a7a1b4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -120432,7 +126336,6 @@ self: { vector xml ]; executableHaskellDepends = [ base boxes directory filepath ]; - jailbreak = true; homepage = "https://github.com/mtolly/jammittools"; description = "Export sheet music and audio from Windows/Mac app Jammit"; license = "GPL"; @@ -120456,6 +126359,7 @@ self: { ]; description = "Tool for searching java classes, members and fields in classfiles and JAR archives"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "java-bridge" = callPackage @@ -120479,6 +126383,7 @@ self: { ]; description = "Bindings to the JNI and a high level interface generator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "java-bridge-extras" = callPackage @@ -120491,6 +126396,7 @@ self: { jailbreak = true; description = "Utilities for working with the java-bridge package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "java-character" = callPackage @@ -120530,6 +126436,29 @@ self: { jailbreak = true; description = "Tools for reflecting on Java classes"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "javaclass" = callPackage + ({ mkDerivation, base, bytestring, directory, doctest, filepath + , greplicate, lens, QuickCheck, semigroupoids, semigroups, tagged + , template-haskell, tickle + }: + mkDerivation { + pname = "javaclass"; + version = "0.0.1"; + sha256 = "d449613b21b5d124c9bbde4ba2354af57122f5364c29fc188371b39a64d164f5"; + libraryHaskellDepends = [ + base bytestring greplicate lens semigroupoids semigroups tagged + tickle + ]; + testHaskellDepends = [ + base directory doctest filepath QuickCheck template-haskell + ]; + homepage = "https://github.com/NICTA/javaclass"; + description = "Java class files"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "javasf" = callPackage @@ -120551,6 +126480,7 @@ self: { homepage = "https://github.com/tonymorris/javasf"; description = "A utility to print the SourceFile attribute of one or more Java class files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "javav" = callPackage @@ -120568,6 +126498,7 @@ self: { homepage = "https://github.com/tonymorris/javav"; description = "A utility to print the target version of Java class files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jcdecaux-vls" = callPackage @@ -120636,6 +126567,7 @@ self: { homepage = "http://github.com/achudnov/jespresso"; description = "Extract all JavaScript from an HTML page and consolidate it in one script"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "jmacro_0_6_11" = callPackage @@ -120832,6 +126764,7 @@ self: { homepage = "http://sulzmann.blogspot.com/2008/12/parallel-join-patterns-with-guards-and.html"; description = "Parallel Join Patterns with Guards and Propagation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "joinlist" = callPackage @@ -120844,6 +126777,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Join list - symmetric list type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jonathanscard" = callPackage @@ -120861,6 +126795,7 @@ self: { homepage = "http://rawr.mschade.me/jonathanscard/"; description = "An implementation of the Jonathan's Card API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jort" = callPackage @@ -120875,6 +126810,7 @@ self: { jailbreak = true; description = "JP's own ray tracer"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jose" = callPackage @@ -121028,6 +126964,7 @@ self: { homepage = "https://github.com/sseefried/js-good-parts.git"; description = "Javascript: The Good Parts -- AST & Pretty Printer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "js-jquery_1_11_1" = callPackage @@ -121104,6 +127041,21 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "js-jquery_1_12_2" = callPackage + ({ mkDerivation, base, HTTP }: + mkDerivation { + pname = "js-jquery"; + version = "1.12.2"; + sha256 = "858dffb2d7ad9b4e3d0989881199825da3b350dca7f759fd6b806a41f5342db6"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base HTTP ]; + doCheck = false; + homepage = "https://github.com/ndmitchell/js-jquery#readme"; + description = "Obtain minified jQuery code"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "jsaddle" = callPackage ({ mkDerivation, base, doctest, glib, gtk3, lens, QuickCheck , template-haskell, text, transformers, vector, webkitgtk3 @@ -121123,6 +127075,7 @@ self: { ]; description = "High level interface for webkit-javascriptcore"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "jsaddle-hello" = callPackage @@ -121138,6 +127091,7 @@ self: { homepage = "https://github.com/ghcjs/jsaddle-hello"; description = "JSaddle Hello World, an example package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jsc" = callPackage @@ -121160,6 +127114,7 @@ self: { jailbreak = true; description = "High level interface for webkit-javascriptcore"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jsmw" = callPackage @@ -121172,6 +127127,7 @@ self: { jailbreak = true; description = "Javascript Monadic Writer base package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json" = callPackage @@ -121412,7 +127368,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "json-autotype" = callPackage + "json-autotype_1_0_10" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, directory , filepath, GenericPretty, hashable, hflags, hint, lens, mtl , pretty, process, QuickCheck, scientific, smallcheck, text @@ -121439,9 +127395,11 @@ self: { hashable hflags lens mtl pretty process QuickCheck scientific smallcheck text uniplate unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/mgajda/json-autotype"; description = "Automatic type declaration for JSON input data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json-autotype_1_0_11" = callPackage @@ -121471,12 +127429,45 @@ self: { hashable hflags lens mtl pretty process QuickCheck scientific smallcheck text uniplate unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/mgajda/json-autotype"; description = "Automatic type declaration for JSON input data"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "json-autotype" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, directory + , filepath, GenericPretty, hashable, hflags, hint, lens, mmap, mtl + , pretty, process, QuickCheck, scientific, smallcheck, text + , uniplate, unordered-containers, vector + }: + mkDerivation { + pname = "json-autotype"; + version = "1.0.13"; + sha256 = "ae564db762724c1ac50c1c2afff69bfd9021a1b083d064c5400caa80e3a12ea9"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring containers filepath GenericPretty hashable + hflags hint lens mmap mtl pretty process scientific text uniplate + unordered-containers vector + ]; + executableHaskellDepends = [ + aeson base bytestring containers filepath GenericPretty hashable + hflags hint lens mtl pretty process scientific text uniplate + unordered-containers vector + ]; + testHaskellDepends = [ + aeson base bytestring containers directory filepath GenericPretty + hashable hflags lens mtl pretty process QuickCheck scientific + smallcheck text uniplate unordered-containers vector + ]; + homepage = "https://github.com/mgajda/json-autotype"; + description = "Automatic type declaration for JSON input data"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "json-b" = callPackage ({ mkDerivation, base, bytestring, bytestring-nums, bytestring-trie , bytestringparser-temporary, containers, utf8-string @@ -121499,6 +127490,7 @@ self: { homepage = "http://github.com/jsnx/JSONb/"; description = "JSON parser that uses byte strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json-builder" = callPackage @@ -121553,6 +127545,7 @@ self: { homepage = "http://github.com/snoyberg/json-enumerator"; description = "Pure-Haskell utilities for dealing with JSON with the enumerator package. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json-extra" = callPackage @@ -121638,6 +127631,7 @@ self: { homepage = "https://github.com/sannsyn/json-pointer-hasql"; description = "JSON Pointer extensions for Hasql"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json-python" = callPackage @@ -121671,6 +127665,7 @@ self: { homepage = "http://github.com/finnsson/json-qq"; description = "Json Quasiquatation library for Haskell"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json-rpc" = callPackage @@ -122053,6 +128048,7 @@ self: { homepage = "https://github.com/ondrap/json-stream"; description = "Incremental applicative JSON parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "json-togo" = callPackage @@ -122090,6 +128086,7 @@ self: { ]; description = "A collection of JSON tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json-types" = callPackage @@ -122117,6 +128114,7 @@ self: { ]; description = "Library provides support for JSON"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json2-hdbc" = callPackage @@ -122132,6 +128130,7 @@ self: { ]; description = "Support JSON for SQL Database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json2-types" = callPackage @@ -122174,6 +128173,7 @@ self: { homepage = "https://github.com/dpwright/jsonresume.hs"; description = "Parser and datatypes for the JSON Resume format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jsonrpc-conduit" = callPackage @@ -122274,6 +128274,7 @@ self: { ]; description = "Extract substructures from JSON by following a path"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "judy" = callPackage @@ -122290,6 +128291,7 @@ self: { homepage = "http://github.com/mwotton/judy"; description = "Fast, scalable, mutable dynamic arrays, maps and hashes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {Judy = null;}; "jukebox" = callPackage @@ -122299,8 +128301,8 @@ self: { }: mkDerivation { pname = "jukebox"; - version = "0.2.3"; - sha256 = "e57562e66b77b22f9297f5bc9e8c0e0fb00d6073f3ab0a04839284db5c6f67f9"; + version = "0.2.7"; + sha256 = "7b52f0890ed569f5962fbbb3fa9a340496711b4ca13fb4ab6bb843aea64828ab"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -122311,6 +128313,20 @@ self: { executableHaskellDepends = [ base ]; description = "A first-order reasoning toolbox"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + }) {}; + + "jump" = callPackage + ({ mkDerivation, base, criterion, hspec }: + mkDerivation { + pname = "jump"; + version = "0.0.0.0"; + sha256 = "3144c838fb44e18619f9dfb0e28284264e9c0a26b33e91fbad98921e66f07ea4"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base criterion hspec ]; + homepage = "http://github.com/commercialhaskell/jump#readme"; + description = "Nothing to see here, move along"; + license = stdenv.lib.licenses.mit; }) {}; "jumpthefive" = callPackage @@ -122343,7 +128359,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "jwt" = callPackage + "jwt_0_6_0" = callPackage ({ mkDerivation, aeson, base, base64-bytestring, bytestring , containers, cryptohash, data-default, http-types, HUnit, lens , lens-aeson, network, network-uri, QuickCheck, scientific @@ -122365,6 +128381,34 @@ self: { QuickCheck scientific semigroups tasty tasty-hunit tasty-quickcheck tasty-th text time unordered-containers vector ]; + homepage = "https://bitbucket.org/ssaasen/haskell-jwt"; + description = "JSON Web Token (JWT) decoding and encoding"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "jwt" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, cryptonite + , data-default, doctest, http-types, HUnit, lens, lens-aeson + , memory, network-uri, QuickCheck, scientific, semigroups, tasty + , tasty-hunit, tasty-quickcheck, tasty-th, text, time + , unordered-containers, vector + }: + mkDerivation { + pname = "jwt"; + version = "0.7.0"; + sha256 = "a0eef3f59a4d115c47ffe75baa4f0347fc8fc714eac5fb258bdbeb42d501cff5"; + libraryHaskellDepends = [ + aeson base bytestring containers cryptonite data-default http-types + memory network-uri scientific semigroups text time + unordered-containers vector + ]; + testHaskellDepends = [ + aeson base bytestring containers cryptonite data-default doctest + http-types HUnit lens lens-aeson memory network-uri QuickCheck + scientific semigroups tasty tasty-hunit tasty-quickcheck tasty-th + text time unordered-containers vector + ]; doCheck = false; homepage = "https://bitbucket.org/ssaasen/haskell-jwt"; description = "JSON Web Token (JWT) decoding and encoding"; @@ -122412,6 +128456,7 @@ self: { homepage = "https://github.com/abhinav/kafka-client"; description = "Low-level Haskell client library for Apache Kafka 0.7."; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "kan-extensions_4_1_1" = callPackage @@ -122547,6 +128592,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Binary parsing with random access"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kanji" = callPackage @@ -122625,6 +128671,7 @@ self: { homepage = "http://ittc.ku.edu/csdl/fpg/Tools/KansasLava"; description = "Kansas Lava is a hardware simulator and VHDL generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kansas-lava-cores" = callPackage @@ -122645,6 +128692,7 @@ self: { homepage = "http://ittc.ku.edu/csdl/fpg/Tools/KansasLava"; description = "FPGA Cores Written in Kansas Lava"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kansas-lava-papilio" = callPackage @@ -122662,6 +128710,7 @@ self: { ]; description = "Kansas Lava support files for the Papilio FPGA board"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kansas-lava-shake" = callPackage @@ -122673,6 +128722,7 @@ self: { libraryHaskellDepends = [ base hastache kansas-lava shake text ]; description = "Shake rules for building Kansas Lava projects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "karakuri" = callPackage @@ -122690,6 +128740,7 @@ self: { homepage = "https://github.com/fumieval/karakuri"; description = "Good stateful automata"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "karver" = callPackage @@ -122710,6 +128761,60 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "katip" = callPackage + ({ mkDerivation, aeson, auto-update, base, bytestring, containers + , directory, either, exceptions, hostname, lens, lens-aeson + , monad-control, mtl, old-locale, quickcheck-instances + , regex-tdfa-rc, resourcet, string-conv, tasty, tasty-hunit + , tasty-quickcheck, template-haskell, temporary, text, time + , time-locale-compat, transformers, transformers-base + , transformers-compat, unix, unordered-containers + }: + mkDerivation { + pname = "katip"; + version = "0.1.1.0"; + sha256 = "37b3c7e8975343a0f3e819b402b39b97c838916a42f00a497fcdf4e04512c1e8"; + libraryHaskellDepends = [ + aeson auto-update base bytestring containers either exceptions + hostname lens lens-aeson monad-control mtl old-locale resourcet + string-conv template-haskell text time time-locale-compat + transformers transformers-base transformers-compat unix + unordered-containers + ]; + testHaskellDepends = [ + aeson base directory quickcheck-instances regex-tdfa-rc tasty + tasty-hunit tasty-quickcheck template-haskell temporary text time + ]; + description = "A structured logging framework"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "katip-elasticsearch" = callPackage + ({ mkDerivation, aeson, async, base, bloodhound, containers + , enclosed-exceptions, exceptions, http-client, http-types, katip + , lens, lens-aeson, quickcheck-instances, random, retry, scientific + , stm, stm-chans, tasty, tasty-hunit, tasty-quickcheck, text, time + , transformers, unordered-containers, uuid, vector + }: + mkDerivation { + pname = "katip-elasticsearch"; + version = "0.1.1.0"; + sha256 = "4985289f907ce8b00041bd5dd5126745eff3b7f55a5a5e8aec349869413b990f"; + libraryHaskellDepends = [ + aeson async base bloodhound enclosed-exceptions exceptions + http-client http-types katip random retry scientific stm stm-chans + text time transformers unordered-containers uuid + ]; + testHaskellDepends = [ + aeson base bloodhound containers http-client http-types katip lens + lens-aeson quickcheck-instances scientific stm tasty tasty-hunit + tasty-quickcheck text time transformers unordered-containers vector + ]; + description = "ElasticSearch scribe for the Katip logging framework"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "katt" = callPackage ({ mkDerivation, aeson, base, bytestring, ConfigFile, containers , directory, errors, filepath, lens, mtl, parsec, text, url, wreq @@ -122731,6 +128836,7 @@ self: { homepage = "https://github.com/davnils/katt"; description = "Client for the Kattis judge system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kazura-queue" = callPackage @@ -122752,6 +128858,7 @@ self: { homepage = "http://github.com/asakamirai/kazura-queue"; description = "Fast concurrent queues much inspired by unagi-chan"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-darwin" ]; }) {}; "kbq-gu" = callPackage @@ -122819,7 +128926,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "kdt" = callPackage + "kdt_0_2_3" = callPackage ({ mkDerivation, base, deepseq, deepseq-generics, heap, QuickCheck }: mkDerivation { @@ -122831,6 +128938,21 @@ self: { homepage = "https://github.com/giogadi/kdt"; description = "Fast and flexible k-d trees for various types of point queries"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "kdt" = callPackage + ({ mkDerivation, base, deepseq, deepseq-generics, heap, QuickCheck + }: + mkDerivation { + pname = "kdt"; + version = "0.2.4"; + sha256 = "bc0f8f9ac0cb01466273171f47b627abe170d1130bd59657fb9198b4f9479f9a"; + libraryHaskellDepends = [ base deepseq deepseq-generics heap ]; + testHaskellDepends = [ base deepseq deepseq-generics QuickCheck ]; + homepage = "https://github.com/giogadi/kdt"; + description = "Fast and flexible k-d trees for various types of point queries"; + license = stdenv.lib.licenses.mit; }) {}; "keera-callbacks" = callPackage @@ -122888,6 +129010,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Gtk rails - Gtk-based global environment for MVC applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-mvc-model-lightmodel" = callPackage @@ -122905,6 +129028,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Rapid Gtk Application Development - Reactive Protected Light Models"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-mvc-model-protectedmodel" = callPackage @@ -122922,6 +129046,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Rapid Gtk Application Development - Protected Reactive Models"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-mvc-solutions-config" = callPackage @@ -122956,6 +129081,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Gtk rails - Common solutions to recurrent problems in Gtk applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-mvc-view" = callPackage @@ -122982,6 +129108,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Gtk rails - Gtk-based View for MVC applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "keera-hails-reactive-fs" = callPackage @@ -122998,6 +129125,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - Files as Reactive Values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactive-gtk" = callPackage @@ -123015,6 +129143,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Gtk rails - Reactive Fields for Gtk widgets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactive-network" = callPackage @@ -123029,6 +129158,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - Sockets as Reactive Values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactive-polling" = callPackage @@ -123044,6 +129174,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - Polling based Readable RVs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactive-wx" = callPackage @@ -123058,6 +129189,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - Reactive Fields for WX widgets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactive-yampa" = callPackage @@ -123074,6 +129206,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - FRP Yampa Signal Functions as RVs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactivelenses" = callPackage @@ -123086,6 +129219,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Reactive Haskell on Rails - Lenses applied to Reactive Values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactivevalues" = callPackage @@ -123105,6 +129239,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - Reactive Values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-posture" = callPackage @@ -123139,6 +129274,7 @@ self: { homepage = "http://keera.co.uk/projects/keera-posture"; description = "Get notifications when your sitting posture is inappropriate"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) SDL_mixer;}; "keiretsu" = callPackage @@ -123161,6 +129297,7 @@ self: { jailbreak = true; description = "Multi-process orchestration for development and integration testing"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keter_1_3_6" = callPackage @@ -123506,6 +129643,7 @@ self: { ]; description = "a dAmn ↔ IRC proxy"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keycode_0_1" = callPackage @@ -123562,6 +129700,7 @@ self: { homepage = "https://github.com/lunaryorn/haskell-keyring"; description = "Keyring access"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keys_3_10_1" = callPackage @@ -123651,6 +129790,7 @@ self: { homepage = "http://github.com/cdornan/keystore"; description = "Managing stores of secret things"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keyvaluehash" = callPackage @@ -123722,6 +129862,7 @@ self: { homepage = "http://github.com/kasbah/haskell-kicad-data"; description = "Parser and writer for KiCad files"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kickass-torrents-dump-parser" = callPackage @@ -123740,6 +129881,7 @@ self: { jailbreak = true; description = "Parses kat.ph torrent dumps"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kickchan" = callPackage @@ -123776,6 +129918,7 @@ self: { ]; description = "Process KIF iOS test logs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kinds" = callPackage @@ -123809,6 +129952,7 @@ self: { homepage = "http://github.com/nkpart/kit"; description = "A dependency manager for Xcode (Objective-C) projects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kmeans" = callPackage @@ -123837,6 +129981,7 @@ self: { ]; description = "Sequential and parallel implementations of Lloyd's algorithm"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kmeans-vector" = callPackage @@ -123896,6 +130041,7 @@ self: { doHaddock = false; description = "\"map German words to code representing pronunciation\""; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kontrakcja-templates" = callPackage @@ -123954,6 +130100,7 @@ self: { homepage = "http://blog.malde.org/"; description = "The Korfu ORF Utility"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kqueue" = callPackage @@ -123969,6 +130116,7 @@ self: { homepage = "http://github.com/hesselink/kqueue"; description = "A binding to the kqueue event library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kraken" = callPackage @@ -124032,6 +130180,7 @@ self: { homepage = "https://github.com/corngood/ktx"; description = "A binding for libktx from Khronos"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {egl = null; inherit (pkgs) glew;}; "kure_2_4_10" = callPackage @@ -124122,6 +130271,7 @@ self: { homepage = "http://ittc.ku.edu/~andygill/kure.php"; description = "Generator for Boilerplate KURE Combinators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kyotocabinet" = callPackage @@ -124134,6 +130284,7 @@ self: { librarySystemDepends = [ kyotocabinet ]; description = "Mid level bindings to Kyoto Cabinet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) kyotocabinet;}; "l-bfgs-b" = callPackage @@ -124147,6 +130298,7 @@ self: { homepage = "http://nonempty.org/software/haskell-l-bfgs-b"; description = "Bindings to L-BFGS-B, Fortran code for limited-memory quasi-Newton bound-constrained optimization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {lbfgsb = null;}; "labeled-graph" = callPackage @@ -124158,6 +130310,7 @@ self: { libraryHaskellDepends = [ base labeled-tree ]; description = "Labeled graph structure"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "labeled-tree" = callPackage @@ -124194,6 +130347,7 @@ self: { homepage = "https://github.com/lucasdicioccio/laborantin-hs"; description = "an experiment management framework"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "labyrinth" = callPackage @@ -124217,6 +130371,7 @@ self: { homepage = "https://github.com/koterpillar/labyrinth"; description = "A complicated turn-based game"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "labyrinth-server" = callPackage @@ -124252,18 +130407,19 @@ self: { homepage = "https://github.com/koterpillar/labyrinth-server"; description = "A complicated turn-based game - Web server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lackey" = callPackage ({ mkDerivation, base, servant, tasty, tasty-hspec }: mkDerivation { pname = "lackey"; - version = "0.1.0"; - sha256 = "3d7c49e9598f14711518a2dc0c420c42246c64ea8ad92fe340845dcabf7b0bb9"; + version = "0.2.0"; + sha256 = "8c54bd4c8901fe0a16149d57e366c3d11d21b9656f8be9ffe8eb86f25e0d0f19"; libraryHaskellDepends = [ base servant ]; testHaskellDepends = [ base servant tasty tasty-hspec ]; - jailbreak = true; - description = "A library for generating Ruby consumers of Servant APIs"; + homepage = "https://github.com/tfausak/lackey#readme"; + description = "Generate Ruby consumers of Servant APIs"; license = stdenv.lib.licenses.mit; }) {}; @@ -124287,6 +130443,7 @@ self: { homepage = "http://github.com/jfischoff/lagrangian"; description = "Solve Lagrange multiplier problems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "laika" = callPackage @@ -124308,6 +130465,7 @@ self: { homepage = "https://github.com/nikita-volkov/laika"; description = "Minimalistic type-checked compile-time template engine"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambda-ast" = callPackage @@ -124334,6 +130492,7 @@ self: { homepage = "http://www.ittc.ku.edu/csdl/fpg/Tools/LambdaBridge"; description = "A bridge from Haskell (on a CPU) to VHDL on a FPGA"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lambda-canvas" = callPackage @@ -124346,6 +130505,7 @@ self: { jailbreak = true; description = "Educational drawing canvas for FP explorers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "lambda-devs" = callPackage @@ -124373,6 +130533,7 @@ self: { homepage = "http://github.com/alios/lambda-devs"; description = "a Paralell-DEVS implementaion based on distributed-process"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambda-options" = callPackage @@ -124412,6 +130573,7 @@ self: { homepage = "http://scravy.de/blog/2012-02-20/a-lambda-toolbox-in-haskell.htm"; description = "An application to work with the lambda calculus (for learning)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambda2js" = callPackage @@ -124438,6 +130600,7 @@ self: { libraryHaskellDepends = [ base parsec ]; testHaskellDepends = [ base parsec ]; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdaFeed" = callPackage @@ -124452,6 +130615,7 @@ self: { homepage = "http://www.cse.unsw.edu.au/~chak/haskell/lambdaFeed/"; description = "RSS 2.0 feed generator"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdaLit" = callPackage @@ -124469,6 +130633,7 @@ self: { ]; description = "..."; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot" = callPackage @@ -124491,6 +130656,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Lambdabot is a development tool and advanced IRC bot"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot-core" = callPackage @@ -124517,6 +130683,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Lambdabot core functionality"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot-haskell-plugins" = callPackage @@ -124546,6 +130713,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Lambdabot Haskell plugins"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot-irc-plugins" = callPackage @@ -124564,6 +130732,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "IRC plugins for lambdabot"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot-misc-plugins" = callPackage @@ -124587,6 +130756,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Lambdabot miscellaneous plugins"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot-novelty-plugins" = callPackage @@ -124607,6 +130777,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Novelty plugins for Lambdabot"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot-reference-plugins" = callPackage @@ -124625,6 +130796,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Lambdabot reference plugins"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot-social-plugins" = callPackage @@ -124643,6 +130815,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Social plugins for Lambdabot"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot-trusted" = callPackage @@ -124677,6 +130850,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Utility libraries for the advanced IRC bot, Lambdabot"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdacat" = callPackage @@ -124696,6 +130870,7 @@ self: { homepage = "http://github.com/baldo/lambdacat"; description = "Webkit Browser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdacms-core" = callPackage @@ -124751,6 +130926,7 @@ self: { executableHaskellDepends = [ base editline mtl pretty ]; description = "A simple lambda cube type checker"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdacube-bullet" = callPackage @@ -124765,6 +130941,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine"; description = "Example for combining LambdaCube and Bullet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdacube-compiler" = callPackage @@ -124792,7 +130969,6 @@ self: { QuickCheck tasty tasty-quickcheck text time vect vector websockets wl-pprint ]; - doHaddock = false; homepage = "http://lambdacube3d.com"; description = "LambdaCube 3D is a DSL to program GPUs"; license = stdenv.lib.licenses.bsd3; @@ -124851,6 +131027,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine"; description = "3D rendering engine written entirely in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdacube-examples" = callPackage @@ -124867,6 +131044,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine"; description = "Examples for LambdaCube"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdacube-gl" = callPackage @@ -124877,8 +131055,8 @@ self: { }: mkDerivation { pname = "lambdacube-gl"; - version = "0.5.0.1"; - sha256 = "7a54a39726b993d81fc8e9e0fa58595bd5f69ad317e4a26229d065a82432a9fd"; + version = "0.5.0.3"; + sha256 = "ecdf2c200238b635a1d52cf2cf3d9cf29874cee46dadc3b62d7e1da3525a1510"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -124890,10 +131068,10 @@ self: { GLFW-b JuicyPixels lambdacube-ir network OpenGLRaw text time vector websockets ]; - doHaddock = false; homepage = "http://lambdacube3d.com"; description = "OpenGL 3.3 Core Profile backend for LambdaCube 3D"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "lambdacube-ir" = callPackage @@ -124927,6 +131105,7 @@ self: { homepage = "http://lambdacube3d.wordpress.com/"; description = "Samples for LambdaCube 3D"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdatex" = callPackage @@ -124974,6 +131153,7 @@ self: { homepage = "http://github.com/ashyisme/lambdatwit"; description = "Lambdabot running as a twitter bot. Similar to the @fsibot f# bot."; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdiff" = callPackage @@ -124993,6 +131173,7 @@ self: { homepage = "https://github.com/jamwt/lambdiff.git"; description = "Diff Viewer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lame-tester" = callPackage @@ -125010,6 +131191,7 @@ self: { homepage = "http://github.com/TheBizzle"; description = "A strange and unnecessary selective test-running library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-asn1" = callPackage @@ -125041,6 +131223,7 @@ self: { homepage = "http://github.com/knrafto/language-bash/"; description = "Parsing and pretty-printing Bash shell scripts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "language-boogie" = callPackage @@ -125066,6 +131249,7 @@ self: { homepage = "https://bitbucket.org/nadiapolikarpova/boogaloo"; description = "Interpreter and language infrastructure for Boogie"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-c" = callPackage @@ -125116,6 +131300,7 @@ self: { homepage = "http://github.com/ghulette/language-c-comments"; description = "Extracting comments from C code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-c-inline" = callPackage @@ -125135,6 +131320,7 @@ self: { homepage = "https://github.com/mchakravarty/language-c-inline/"; description = "Inline C & Objective-C code in Haskell for language interoperability"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-c-quote_0_10_2" = callPackage @@ -125379,7 +131565,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "language-c-quote" = callPackage + "language-c-quote_0_11_4" = callPackage ({ mkDerivation, alex, array, base, bytestring, containers , exception-mtl, exception-transformers, filepath, happy , haskell-src-meta, HUnit, mainland-pretty, mtl, srcloc, syb @@ -125403,6 +131589,32 @@ self: { homepage = "http://www.cs.drexel.edu/~mainland/"; description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "language-c-quote" = callPackage + ({ mkDerivation, alex, array, base, bytestring, containers + , exception-mtl, exception-transformers, filepath, happy + , haskell-src-meta, HUnit, mainland-pretty, mtl, srcloc, syb + , symbol, template-haskell, test-framework, test-framework-hunit + }: + mkDerivation { + pname = "language-c-quote"; + version = "0.11.4.1"; + sha256 = "37c2183ddbf95ee21d298e241266a09f73ac74065e51a0cf2fb28b45aefa9591"; + libraryHaskellDepends = [ + array base bytestring containers exception-mtl + exception-transformers filepath haskell-src-meta mainland-pretty + mtl srcloc syb symbol template-haskell + ]; + libraryToolDepends = [ alex happy ]; + testHaskellDepends = [ + base bytestring HUnit mainland-pretty srcloc symbol test-framework + test-framework-hunit + ]; + homepage = "http://www.cs.drexel.edu/~mainland/"; + description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; + license = stdenv.lib.licenses.bsd3; }) {}; "language-cil" = callPackage @@ -125572,6 +131784,7 @@ self: { mtl parsec QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 uniplate wl-pprint ]; + doCheck = false; homepage = "http://github.com/jswebtools/language-ecmascript"; description = "JavaScript parser and pretty-printer library"; license = stdenv.lib.licenses.bsd3; @@ -125610,6 +131823,7 @@ self: { homepage = "https://github.com/scottgw/language-eiffel"; description = "Parser and pretty printer for the Eiffel language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-fortran" = callPackage @@ -125617,8 +131831,8 @@ self: { }: mkDerivation { pname = "language-fortran"; - version = "0.4"; - sha256 = "6274cb5cf9ebea85f616bd0276345bda76160766e67ad4d7f6173f5f19b7780e"; + version = "0.5.1"; + sha256 = "44cd3f3e76dc627cce8f442dbaf4f1d54b1db633c313868c8ad1d5dbe16e7f9a"; libraryHaskellDepends = [ array base haskell-src parsec syb ]; libraryToolDepends = [ alex happy ]; description = "Fortran lexer and parser, language support, and extensions"; @@ -125686,6 +131900,7 @@ self: { jailbreak = true; description = "A library for analysis and synthesis of Go code"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-guess" = callPackage @@ -125771,6 +131986,7 @@ self: { ]; description = "Parser for Java .class files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-javascript_0_5_13" = callPackage @@ -125846,7 +132062,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "language-javascript" = callPackage + "language-javascript_0_5_14_2" = callPackage ({ mkDerivation, alex, array, base, blaze-builder, bytestring , Cabal, containers, happy, HUnit, mtl, QuickCheck, test-framework , test-framework-hunit, utf8-light, utf8-string @@ -125867,6 +132083,54 @@ self: { homepage = "http://github.com/erikd/language-javascript"; description = "Parser for JavaScript"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "language-javascript" = callPackage + ({ mkDerivation, alex, array, base, blaze-builder, bytestring + , Cabal, containers, happy, HUnit, mtl, QuickCheck, test-framework + , test-framework-hunit, utf8-light, utf8-string + }: + mkDerivation { + pname = "language-javascript"; + version = "0.5.14.6"; + sha256 = "a15fb579434a08d9d77b7730f1fedf6918597d815b4172fcf11e8e40eedea2bf"; + libraryHaskellDepends = [ + array base blaze-builder bytestring containers mtl utf8-string + ]; + libraryToolDepends = [ alex happy ]; + testHaskellDepends = [ + array base blaze-builder bytestring Cabal containers HUnit mtl + QuickCheck test-framework test-framework-hunit utf8-light + utf8-string + ]; + homepage = "http://github.com/erikd/language-javascript"; + description = "Parser for JavaScript"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "language-javascript_0_6_0_3" = callPackage + ({ mkDerivation, alex, array, base, blaze-builder, bytestring + , Cabal, containers, happy, hspec, mtl, QuickCheck, text + , utf8-light, utf8-string + }: + mkDerivation { + pname = "language-javascript"; + version = "0.6.0.3"; + sha256 = "d6010de849a0783705fc34755cb540be98a15979bfeee41f3660b50cddafa49f"; + libraryHaskellDepends = [ + array base blaze-builder bytestring containers mtl text utf8-string + ]; + libraryToolDepends = [ alex happy ]; + testHaskellDepends = [ + array base blaze-builder bytestring Cabal containers hspec mtl + QuickCheck utf8-light utf8-string + ]; + jailbreak = true; + homepage = "http://github.com/erikd/language-javascript"; + description = "Parser for JavaScript"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-kort" = callPackage @@ -125975,6 +132239,7 @@ self: { homepage = "http://github.com/jtdaugherty/language-mixal/"; description = "Parser, pretty-printer, and AST types for the MIXAL assembly language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-nix" = callPackage @@ -126014,6 +132279,7 @@ self: { homepage = "http://www.tiresiaspress.us/haskell/language-objc"; description = "Analysis and generation of Objective C code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-openscad" = callPackage @@ -126057,8 +132323,8 @@ self: { ({ mkDerivation, aeson, ansi-wl-pprint, attoparsec, base , base16-bytestring, bytestring, case-insensitive, containers , cryptonite, directory, either, exceptions, filecache, formatting - , Glob, hashable, hruby, hslogger, hslua, hspec, HUnit, lens - , lens-aeson, megaparsec, memory, mtl, operational + , Glob, hashable, hruby, hslogger, hslua, hspec, hspec-megaparsec + , HUnit, lens, lens-aeson, megaparsec, memory, mtl, operational , optparse-applicative, parallel-io, parsec, pcre-utils, process , random, regex-pcre-builtin, scientific, semigroups, servant , servant-client, split, stm, strict-base-types, temporary, text @@ -126066,8 +132332,8 @@ self: { }: mkDerivation { pname = "language-puppet"; - version = "1.1.5"; - sha256 = "1448e6a601ccf3468b856c6c53e0ba1e0b3d7df91da26e727e80ee203189fccc"; + version = "1.1.5.1"; + sha256 = "d4f237f460294564d34de5d9fb781d4d6f9fbd465a9fb5d3396af8270f2e2438"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -126086,14 +132352,15 @@ self: { yaml ]; testHaskellDepends = [ - ansi-wl-pprint base either Glob hspec HUnit lens megaparsec - scientific strict-base-types temporary text unix - unordered-containers vector + ansi-wl-pprint base either Glob hslogger hspec hspec-megaparsec + HUnit lens megaparsec mtl scientific strict-base-types temporary + text unix unordered-containers vector ]; jailbreak = true; homepage = "http://lpuppet.banquise.net/"; description = "Tools to parse and evaluate the Puppet DSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-python" = callPackage @@ -126127,6 +132394,7 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/"; description = "Generate coloured XHTML for Python code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-python-test" = callPackage @@ -126159,6 +132427,7 @@ self: { homepage = "https://github.com/qux-lang/language-qux"; description = "Utilities for working with the Qux language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-sh" = callPackage @@ -126175,6 +132444,7 @@ self: { homepage = "http://code.haskell.org/shsh/"; description = "A package for parsing shell scripts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-slice" = callPackage @@ -126215,6 +132485,7 @@ self: { homepage = "https://github.com/bitonic/language-spelling"; description = "Various tools to detect/correct mistakes in words"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-sqlite" = callPackage @@ -126231,6 +132502,7 @@ self: { homepage = "http://dankna.com/software/"; description = "Full parser and generator for SQL as implemented by SQLite3"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-thrift_0_6_2_0" = callPackage @@ -126336,8 +132608,8 @@ self: { ({ mkDerivation, base, pretty }: mkDerivation { pname = "language-vhdl"; - version = "0.1.2.6"; - sha256 = "87d000bdf5872b26329980825c0dd668ae6070f48e32836d13e3817ad10f7ddc"; + version = "0.1.2.8"; + sha256 = "6a245c5330b5df15ad3f8345a3351846bcedda6d4ea3f73a0156f3bf4292c580"; libraryHaskellDepends = [ base pretty ]; homepage = "https://github.com/markus-git/language-vhdl"; description = "VHDL AST and pretty printer in Haskell"; @@ -126400,6 +132672,7 @@ self: { jailbreak = true; description = "Tool to track security alerts on LWN"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "latest-npm-version" = callPackage @@ -126432,6 +132705,7 @@ self: { homepage = "https://github.com/passy/latest-npm-version"; description = "Find the latest version of a package on npm"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "latex" = callPackage @@ -126635,6 +132909,7 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "High and low-level interface to the Novation Launchpad midi controller"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lax" = callPackage @@ -126660,6 +132935,7 @@ self: { homepage = "http://github.com/duairc/layers"; description = "Modular type class machinery for monad transformer stacks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "layers-game" = callPackage @@ -126679,6 +132955,7 @@ self: { jailbreak = true; description = "A prototypical 2d platform game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "layout" = callPackage @@ -126690,6 +132967,7 @@ self: { libraryHaskellDepends = [ base convertible hinduce-missingh ]; description = "Turn values into pretty text or markup"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "layout-bootstrap" = callPackage @@ -126702,6 +132980,7 @@ self: { homepage = "https://bitbucket.org/dpwiz/layout-bootstrap"; description = "Template and widgets for Bootstrap2 to use with Text.Blaze.Html5"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lazy-csv_0_5" = callPackage @@ -126756,6 +133035,7 @@ self: { libraryHaskellDepends = [ array base ]; description = "Efficient implementation of lazy monolithic arrays (lazy in indexes)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lazyio" = callPackage @@ -126793,6 +133073,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Differential solving with lazy splines"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lbfgs" = callPackage @@ -126843,6 +133124,7 @@ self: { homepage = "http://urchin.earth.li/~ian/cabal/lcs/"; description = "Find longest common sublist of two lists"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lda" = callPackage @@ -126902,6 +133184,7 @@ self: { homepage = "http://rampa.sk/static/ldif.html"; description = "The LDAP Data Interchange Format (LDIF) tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "leaf" = callPackage @@ -126921,6 +133204,7 @@ self: { homepage = "https://github.com/skypers/leaf"; description = "A simple portfolio generator"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "leaky" = callPackage @@ -126941,6 +133225,7 @@ self: { homepage = "http://fremissant.net/leaky"; description = "Robust space leak, and its strictification"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "leankit-api" = callPackage @@ -126998,6 +133283,7 @@ self: { ]; description = "Haskell code for learning physics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "learn-physics-examples" = callPackage @@ -127016,6 +133302,7 @@ self: { jailbreak = true; description = "examples for learn-physics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "learning-hmm" = callPackage @@ -127086,9 +133373,11 @@ self: { leksah-server ltk monad-loops QuickCheck stm text transformers webkitgtk3 ]; + jailbreak = true; homepage = "http://www.leksah.org"; description = "Haskell IDE written in Haskell"; license = "GPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "leksah-server" = callPackage @@ -127126,6 +133415,7 @@ self: { homepage = "http://leksah.org"; description = "Metadata collection for leksah"; license = "GPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "lendingclub" = callPackage @@ -127758,6 +134048,31 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "lentil_0_1_11_0" = callPackage + ({ mkDerivation, ansi-wl-pprint, base, csv, directory, filemanip + , filepath, hspec, natural-sort, optparse-applicative, parsec + , regex-tdfa + }: + mkDerivation { + pname = "lentil"; + version = "0.1.11.0"; + sha256 = "7185c00900bb288df3f335c87e522e12a4ba2052c4937d98d50a053a609bb71f"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + ansi-wl-pprint base csv directory filemanip filepath natural-sort + optparse-applicative parsec regex-tdfa + ]; + testHaskellDepends = [ + ansi-wl-pprint base csv directory filemanip filepath hspec + natural-sort optparse-applicative parsec regex-tdfa + ]; + homepage = "http://www.ariis.it/static/articles/lentil/page.html"; + description = "frugal issue tracker"; + license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "lenz" = callPackage ({ mkDerivation, base, base-unicode-symbols, transformers }: mkDerivation { @@ -127822,6 +134137,7 @@ self: { homepage = "http://github.com/kim/leveldb-haskell"; description = "Haskell bindings to LevelDB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) leveldb;}; "leveldb-haskell-fork" = callPackage @@ -127849,6 +134165,7 @@ self: { homepage = "http://github.com/kim/leveldb-haskell"; description = "Haskell bindings to LevelDB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) leveldb;}; "levmar" = callPackage @@ -127862,6 +134179,7 @@ self: { homepage = "https://github.com/basvandijk/levmar"; description = "An implementation of the Levenberg-Marquardt algorithm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "levmar-chart" = callPackage @@ -127880,6 +134198,7 @@ self: { jailbreak = true; description = "Plots the results of the Levenberg-Marquardt algorithm in a chart"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lexer-applicative" = callPackage @@ -127899,6 +134218,19 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "lfst" = callPackage + ({ mkDerivation, base, containers, doctest, lattices, QuickCheck }: + mkDerivation { + pname = "lfst"; + version = "1.0.2"; + sha256 = "daf5167b5239834939082783c17b39bebf47400ccf2286077360a40902b1f1f4"; + libraryHaskellDepends = [ base containers doctest lattices ]; + testHaskellDepends = [ base doctest QuickCheck ]; + homepage = "https://github.com/ci-fst/lfst"; + description = "L-Fuzzy Set Theory implementation in Haskell"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "lgtk" = callPackage ({ mkDerivation, array, base, cairo, colour, containers , diagrams-cairo, diagrams-lib, directory, filepath, fsnotify @@ -127926,6 +134258,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/LGtk"; description = "Lens GUI Toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lha" = callPackage @@ -127938,6 +134271,7 @@ self: { homepage = "https://github.com/bytbox/lha.hs"; description = "Data structures for the Les Houches Accord"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lhae" = callPackage @@ -127959,6 +134293,7 @@ self: { homepage = "http://www.imn.htwk-leipzig.de/~abau/lhae"; description = "Simple spreadsheet program"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lhc" = callPackage @@ -127996,6 +134331,7 @@ self: { libraryHaskellDepends = [ bytestring haskell2010 HaXml lha ]; description = "Parser and writer for Les-Houches event files"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lhs2TeX-hl" = callPackage @@ -128098,6 +134434,7 @@ self: { homepage = "http://trac.loria.fr/~geni"; description = "A natural language generator (specifically, an FB-LTAG surface realiser)"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libarchive-conduit" = callPackage @@ -128114,6 +134451,7 @@ self: { librarySystemDepends = [ archive ]; description = "Read many archive formats with libarchive and conduit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {archive = null;}; "libconfig" = callPackage @@ -128135,6 +134473,7 @@ self: { homepage = "https://github.com/peddie/libconfig-haskell"; description = "Haskell bindings to libconfig"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libconfig;}; "libcspm" = callPackage @@ -128157,6 +134496,7 @@ self: { homepage = "https://github.com/tomgr/libcspm"; description = "A library providing a parser, type checker and evaluator for CSPM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libexpect" = callPackage @@ -128169,6 +134509,7 @@ self: { librarySystemDepends = [ expect tcl ]; description = "Library for interacting with console applications via pseudoterminals"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) expect; inherit (pkgs) tcl;}; "libffi" = callPackage @@ -128223,6 +134564,7 @@ self: { homepage = "http://maartenfaddegon.nl"; description = "Store and manipulate data in a graph"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libhbb" = callPackage @@ -128247,6 +134589,7 @@ self: { homepage = "https://bitbucket.org/bhris/libhbb"; description = "Backend for text editors to provide better Haskell editing support"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libinfluxdb" = callPackage @@ -128291,6 +134634,7 @@ self: { ]; description = "Jenkins API interface"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "liblastfm" = callPackage @@ -128332,6 +134676,7 @@ self: { homepage = "http://github.com/NathanHowell/liblinear-enumerator"; description = "liblinear iteratee"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "libltdl" = callPackage @@ -128347,6 +134692,7 @@ self: { homepage = "http://www.eecs.harvard.edu/~mainland/projects/libffi"; description = "FFI interface to libltdl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libmpd" = callPackage @@ -128381,6 +134727,7 @@ self: { librarySystemDepends = [ libnotify ]; description = "Bindings to libnotify library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) libnotify;}; "libnvvm" = callPackage @@ -128417,6 +134764,7 @@ self: { homepage = "http://okmij.org/ftp/"; description = "An evolving collection of Oleg Kiselyov's Haskell modules"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libpafe" = callPackage @@ -128431,6 +134779,7 @@ self: { jailbreak = true; description = "Wrapper for libpafe"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {pafe = null;}; "libpq" = callPackage @@ -128444,6 +134793,7 @@ self: { homepage = "http://github.com/tnarg/haskell-libpq"; description = "libpq binding for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) postgresql;}; "librandomorg" = callPackage @@ -128528,6 +134878,7 @@ self: { homepage = "http://redmine.iportnov.ru/projects/libssh2-hs"; description = "Conduit wrappers for libssh2 FFI bindings (see libssh2 package)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libstackexchange" = callPackage @@ -128564,6 +134915,7 @@ self: { ]; description = "Haskell bindings for libsystemd-daemon"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {libsystemd-daemon = null; systemd-daemon = null;}; "libsystemd-journal" = callPackage @@ -128583,6 +134935,7 @@ self: { homepage = "http://github.com/ocharles/libsystemd-journal"; description = "Haskell bindings to libsystemd-journal"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) systemd;}; "libtagc" = callPackage @@ -128601,18 +134954,19 @@ self: { }) {inherit (pkgs) taglib;}; "libvirt-hs" = callPackage - ({ mkDerivation, base, c2hs, syb, virt }: + ({ mkDerivation, base, c2hs, libvirt, syb, unix }: mkDerivation { pname = "libvirt-hs"; - version = "0.1"; - sha256 = "8cac2bdf11da09cef333fe7f88315cc4d24e4dd680a28134245a14eefedffd39"; - libraryHaskellDepends = [ base syb ]; - librarySystemDepends = [ virt ]; + version = "0.2.0"; + sha256 = "52549a02bb9c736eb55e89c5353da74397a981ce990f1cb32eea1f98c8bd26a8"; + libraryHaskellDepends = [ base syb unix ]; + libraryPkgconfigDepends = [ libvirt ]; libraryToolDepends = [ c2hs ]; homepage = "http://redmine.iportnov.ru/projects/libvirt-hs"; description = "FFI bindings to libvirt virtualization API (http://libvirt.org)"; license = stdenv.lib.licenses.bsd3; - }) {virt = null;}; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) libvirt;}; "libvorbis" = callPackage ({ mkDerivation, base, bytestring, cpu }: @@ -128635,6 +134989,7 @@ self: { libraryHaskellDepends = [ base bindings-DSL ]; description = "Bindings to libxls"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libxml" = callPackage @@ -128647,6 +135002,7 @@ self: { librarySystemDepends = [ libxml2 ]; description = "Binding to libxml2"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libxml2;}; "libxml-enumerator" = callPackage @@ -128691,6 +135047,7 @@ self: { jailbreak = true; description = "Binding to libxslt"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {xslt = null;}; "life" = callPackage @@ -128705,6 +135062,7 @@ self: { homepage = "http://github.com/sproingie/haskell-cells/"; description = "Conway's Life cellular automaton"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "lift-generics" = callPackage @@ -128934,6 +135292,7 @@ self: { homepage = "http://icfpcontest2012.wordpress.com/"; description = "A boulderdash-like game and solution validator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ligature" = callPackage @@ -128974,6 +135333,7 @@ self: { libraryToolDepends = [ alex happy ]; description = "Lighttpd configuration file tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lighttpd-conf-qq" = callPackage @@ -128990,6 +135350,7 @@ self: { ]; description = "A QuasiQuoter for lighttpd configuration files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lilypond" = callPackage @@ -129006,6 +135367,7 @@ self: { ]; description = "Bindings to Lilypond"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "limp" = callPackage @@ -129039,6 +135401,7 @@ self: { homepage = "https://github.com/amosr/limp-cbc"; description = "bindings for integer linear programming solver Coin/CBC"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lin-alg" = callPackage @@ -129050,6 +135413,7 @@ self: { libraryHaskellDepends = [ base NumInstances vector ]; description = "Low-dimensional matrices and vectors for graphics and physics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linda" = callPackage @@ -129061,6 +135425,7 @@ self: { libraryHaskellDepends = [ base hmatrix HUnit ]; description = "LINear Discriminant Analysis"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lindenmayer" = callPackage @@ -129302,6 +135667,8 @@ self: { pname = "linear"; version = "1.20.3"; sha256 = "50f63a5b6019acb53ae06886749dea80443b18876c2990ca5376578c94537ac4"; + revision = "1"; + editedCabalFile = "3c3139b3d84be69cc9ec8b122cbce075d498076a4e5b4e4f8bfbda34523b91de"; libraryHaskellDepends = [ adjunctions base binary bytes cereal containers deepseq distributive ghc-prim hashable lens reflection semigroupoids @@ -129331,6 +135698,8 @@ self: { pname = "linear"; version = "1.20.4"; sha256 = "7bd91c482611f9b7226ec346a9630d2cf1975672b3a67e1b52ae24cdd039ddd3"; + revision = "1"; + editedCabalFile = "0f9612cde0983a35d53d29dee617abdd1d350f602ac1da7f3fcfbbc3012572b1"; libraryHaskellDepends = [ adjunctions base base-orphans binary bytes cereal containers deepseq distributive ghc-prim hashable lens reflection @@ -129377,6 +135746,7 @@ self: { homepage = "http://github.com/cartazio/hs-cblas"; description = "A linear algebra library with bindings to BLAS and LAPACK"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linear-circuit" = callPackage @@ -129398,6 +135768,7 @@ self: { homepage = "http://hub.darcs.net/thielema/linear-circuit"; description = "Compute resistance of linear electrical circuits"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linear-grammar" = callPackage @@ -129424,6 +135795,7 @@ self: { jailbreak = true; description = "Finite maps for linear use"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linear-opengl" = callPackage @@ -129441,6 +135813,7 @@ self: { homepage = "http://www.github.com/bgamari/linear-opengl"; description = "Isomorphisms between linear and OpenGL types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linear-vect" = callPackage @@ -129501,6 +135874,7 @@ self: { homepage = "http://github.com/jwiegley/linearscan-hoopl"; description = "Makes it easy to use the linearscan register allocator with Hoopl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linebreak" = callPackage @@ -129558,6 +135932,7 @@ self: { homepage = "http://www.haskell.org/~petersen/haskell/linkchk/"; description = "linkchk is a network interface link ping monitor"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linkcore" = callPackage @@ -129573,6 +135948,7 @@ self: { ]; description = "Combines multiple GHC Core modules into a single module"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linkedhashmap" = callPackage @@ -129634,6 +136010,7 @@ self: { homepage = "http://github.com/Helkafen/haskell-linode#readme"; description = "Bindings to the Linode API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linux-blkid" = callPackage @@ -129651,6 +136028,7 @@ self: { jailbreak = true; description = "Linux libblkid"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {blkid = null;}; "linux-cgroup" = callPackage @@ -129675,6 +136053,7 @@ self: { homepage = "http://github.com/bgamari/linux-evdev"; description = "Bindings to Linux evdev input device interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "linux-file-extents" = callPackage @@ -129689,6 +136068,7 @@ self: { homepage = "https://github.com/redneb/linux-file-extents"; description = "Retrieve file fragmentation information under Linux"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "linux-inotify" = callPackage @@ -129700,6 +136080,7 @@ self: { libraryHaskellDepends = [ base bytestring hashable unix ]; description = "Thinner binding to the Linux Kernel's inotify interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "linux-kmod" = callPackage @@ -129713,6 +136094,7 @@ self: { homepage = "https://github.com/tensor5/linux-kmod"; description = "Linux kernel modules support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {libkmod = null;}; "linux-mount" = callPackage @@ -129725,6 +136107,7 @@ self: { homepage = "https://github.com/tensor5/linux-mount"; description = "Mount and unmount filesystems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "linux-namespaces" = callPackage @@ -129737,6 +136120,7 @@ self: { homepage = "https://github.com/redneb/hs-linux-namespaces"; description = "Create new or enter an existing linux namespaces"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "linux-perf" = callPackage @@ -129760,6 +136144,7 @@ self: { homepage = "https://github.com/bjpop/haskell-linux-perf"; description = "Read files generated by perf on Linux"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linux-ptrace" = callPackage @@ -129776,6 +136161,7 @@ self: { jailbreak = true; description = "Wrapping of Linux' ptrace(2)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linux-xattr" = callPackage @@ -129837,6 +136223,7 @@ self: { ]; description = "Labeled IO library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lio-fs" = callPackage @@ -129852,6 +136239,7 @@ self: { ]; description = "Labeled File System interface for LIO"; license = "GPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "lio-simple" = callPackage @@ -129877,6 +136265,7 @@ self: { homepage = "http://simple.cx"; description = "LIO support for the Simple web framework"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lipsum-gen" = callPackage @@ -129926,7 +136315,7 @@ self: { homepage = "https://github.com/ucsd-progsys/liquid-fixpoint"; description = "Predicate Abstraction-based Horn-Clause/Implication Constraint Solver"; license = stdenv.lib.licenses.bsd3; - maintainers = with stdenv.lib.maintainers; [ gridaphobe ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ocaml; inherit (pkgs) z3;}; "liquidhaskell" = callPackage @@ -129969,7 +136358,7 @@ self: { homepage = "http://goto.ucsd.edu/liquidhaskell"; description = "Liquid Types for Haskell"; license = stdenv.lib.licenses.bsd3; - maintainers = with stdenv.lib.maintainers; [ gridaphobe ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) z3;}; "lispparser" = callPackage @@ -130336,6 +136725,7 @@ self: { homepage = "https://github.com/nikita-volkov/list-t-html-parser"; description = "Streaming HTML parser"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "list-t-http-client" = callPackage @@ -130431,6 +136821,7 @@ self: { homepage = "http://jwlato.webfactional.com/haskell/listlike-instances"; description = "Extra instances of the ListLike class"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lists" = callPackage @@ -130486,6 +136877,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Non-overloaded functions for concrete literals"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "live-sequencer" = callPackage @@ -130514,6 +136906,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Live-Sequencer"; description = "Live coding of MIDI music"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ll-picosat" = callPackage @@ -130526,6 +136919,7 @@ self: { librarySystemDepends = [ picosat ]; jailbreak = true; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) picosat;}; "llrbtree" = callPackage @@ -130559,6 +136953,7 @@ self: { homepage = "http://wiki.secondlife.com/wiki/LLSD"; description = "An implementation of the LLSD data system"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm" = callPackage @@ -130576,6 +136971,7 @@ self: { homepage = "https://github.com/bos/llvm"; description = "Bindings to the LLVM compiler toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-analysis" = callPackage @@ -130603,6 +136999,7 @@ self: { ]; description = "A Haskell library for analyzing LLVM bitcode"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-base" = callPackage @@ -130615,6 +137012,7 @@ self: { homepage = "https://github.com/bos/llvm"; description = "FFI bindings to the LLVM compiler toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-base-types" = callPackage @@ -130634,6 +137032,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "The base types for a mostly pure Haskell LLVM analysis library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-base-util" = callPackage @@ -130646,6 +137045,7 @@ self: { homepage = "https://github.com/bos/llvm"; description = "Utilities for bindings to the LLVM compiler toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-data-interop" = callPackage @@ -130666,6 +137066,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "A low-level data interoperability binding for LLVM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-extra" = callPackage @@ -130685,6 +137086,7 @@ self: { homepage = "http://code.haskell.org/~thielema/llvm-extra/"; description = "Utility functions for the llvm interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-ffi" = callPackage @@ -130700,6 +137102,7 @@ self: { homepage = "http://haskell.org/haskellwiki/LLVM"; description = "FFI bindings to the LLVM compiler toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (self.llvmPackages) llvm;}; "llvm-general" = callPackage @@ -130727,6 +137130,7 @@ self: { homepage = "http://github.com/bscarlet/llvm-general/"; description = "General purpose LLVM bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {llvm-config = null;}; "llvm-general-pure" = callPackage @@ -130773,6 +137177,7 @@ self: { homepage = "https://github.com/tvh/llvm-general-quote"; description = "QuasiQuoting llvm code for llvm-general"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-ht" = callPackage @@ -130789,6 +137194,7 @@ self: { homepage = "http://darcs.serpentine.com/llvm/"; description = "Bindings to the LLVM compiler toolkit with some custom extensions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-pkg-config" = callPackage @@ -130862,6 +137268,7 @@ self: { ]; description = "Bindings to the LLVM compiler toolkit using type families"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-tools" = callPackage @@ -130889,6 +137296,7 @@ self: { jailbreak = true; description = "Useful tools built on llvm-analysis"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lmdb" = callPackage @@ -130902,6 +137310,7 @@ self: { homepage = "http://github.com/dmbarbour/haskell-lmdb"; description = "Lightning MDB bindings"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) lmdb;}; "lmonad" = callPackage @@ -130922,6 +137331,7 @@ self: { ]; description = "LMonad is an Information Flow Control (IFC) framework for Haskell applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lmonad-yesod" = callPackage @@ -130942,6 +137352,7 @@ self: { ]; description = "LMonad for Yesod integrates LMonad's IFC with Yesod web applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "load-env" = callPackage @@ -130993,6 +137404,7 @@ self: { homepage = "http://www.comp.leeds.ac.uk/sc06r2s/Projects/HaskellLocalSearch"; description = "Generalised local search within Haskell, for applications in combinatorial optimisation"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "located-base" = callPackage @@ -131039,6 +137451,7 @@ self: { executableHaskellDepends = [ base ]; description = "Support for precise error locations in source files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "loch-th" = callPackage @@ -131097,6 +137510,7 @@ self: { ]; description = "Very simple poll lock"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lockfree-queue" = callPackage @@ -131139,6 +137553,7 @@ self: { homepage = "https://github.com/scrive/log"; description = "Structured logging solution with multiple backends"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "log-domain_0_9_3" = callPackage @@ -131358,6 +137773,7 @@ self: { homepage = "https://github.com/ibotty/log-effect"; description = "An extensible log effect using extensible-effects"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "log2json" = callPackage @@ -131373,6 +137789,7 @@ self: { homepage = "https://github.com/haroldl/log2json"; description = "Turn log file records into JSON"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "logfloat_0_12_1" = callPackage @@ -131511,6 +137928,7 @@ self: { ]; description = "Journald back-end for logging-facade"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "logic-TPTP" = callPackage @@ -131551,6 +137969,7 @@ self: { homepage = "https://github.com/seereason/logic-classes"; description = "Framework for propositional and first order logic, theorem proving"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "logicst" = callPackage @@ -131635,6 +138054,7 @@ self: { jailbreak = true; description = "Useful utilities for the Lojban language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lojbanParser" = callPackage @@ -131649,6 +138069,7 @@ self: { executableHaskellDepends = [ base ]; description = "lojban parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lojbanXiragan" = callPackage @@ -131663,6 +138084,7 @@ self: { executableHaskellDepends = [ base ]; description = "lojban to xiragan"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lojysamban" = callPackage @@ -131677,6 +138099,7 @@ self: { homepage = "http://homepage3.nifty.com/salamander/myblog/lojysamban.html"; description = "Prolog with lojban"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lol" = callPackage @@ -131707,6 +138130,7 @@ self: { homepage = "https://github.com/cpeikert/Lol"; description = "A library for lattice cryptography"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-linux" ]; }) {}; "lol-apps" = callPackage @@ -131730,6 +138154,7 @@ self: { homepage = "https://github.com/cpeikert/Lol"; description = "Lattice-based cryptographic applications using Lol"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "loli" = callPackage @@ -131748,6 +138173,7 @@ self: { homepage = "http://github.com/nfjinjing/loli"; description = "A minimum web dev DSL in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lookup-tables" = callPackage @@ -131803,6 +138229,7 @@ self: { homepage = "https://github.com/konn/loop-effin"; description = "control-monad-loop port for effin"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "loop-while" = callPackage @@ -131850,6 +138277,7 @@ self: { homepage = "http://www.esc.cam.ac.uk/people/research-students/emily-king"; description = "Find all biological feedback loops within an ecosystem graph"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lord" = callPackage @@ -131890,6 +138318,7 @@ self: { homepage = "https://github.com/rnons/lord"; description = "A command line interface to online radios"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lorem" = callPackage @@ -131921,6 +138350,7 @@ self: { homepage = "http://www.tiresiaspress.us/haskell/loris"; description = "interface to Loris API"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {loris = null;}; "loshadka" = callPackage @@ -131960,6 +138390,7 @@ self: { homepage = "http://www.ncc.up.pt/~pbv/stuff/lostcities"; description = "An implementation of an adictive two-player card game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lowgl" = callPackage @@ -131972,46 +138403,52 @@ self: { jailbreak = true; description = "Basic gl wrapper and reference"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "lp-diagrams" = callPackage - ({ mkDerivation, base, containers, glpk-hs, graphviz, labeled-tree - , lens, mtl, polynomials-bernstein, text, typography-geometry - , vector + ({ mkDerivation, base, containers, gasp, graphviz, labeled-tree + , lens, mtl, parsek, polynomials-bernstein, process, reflection + , text, typography-geometry, vector }: mkDerivation { pname = "lp-diagrams"; - version = "1.0"; - sha256 = "f10a4e0258fed5fde24a787d248a6e115c912374314f4091f11421500159b6a1"; + version = "2.0.0"; + sha256 = "8ff64960d7874d4a34867d8834eac9c535b73175f0abe8743b50dfd886aabf50"; libraryHaskellDepends = [ - base containers glpk-hs graphviz labeled-tree lens mtl - polynomials-bernstein text typography-geometry vector + base containers gasp graphviz labeled-tree lens mtl parsek + polynomials-bernstein process reflection text typography-geometry + vector ]; + jailbreak = true; description = "An EDSL for diagrams based based on linear constraints"; license = stdenv.lib.licenses.agpl3; - }) {}; + broken = true; + }) {gasp = null;}; "lp-diagrams-svg" = callPackage - ({ mkDerivation, base, containers, FontyFruity, JuicyPixels, lens - , linear, lp-diagrams, lucid-svg, mtl, optparse-applicative + ({ mkDerivation, base, containers, FontyFruity, gasp, JuicyPixels + , lens, linear, lp-diagrams, lucid-svg, mtl, optparse-applicative , svg-tree, text, vector }: mkDerivation { pname = "lp-diagrams-svg"; - version = "1.0"; - sha256 = "05b67150d7f4559f9b6aea62ffa9382551b1fb1ad56cfaf204ff2dc3c7db6325"; + version = "1.1"; + sha256 = "6cc63a8bf914fbc67e42c54c0c4327e81b650d56d9aee5b189946473453463b2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base containers FontyFruity JuicyPixels lens linear lp-diagrams - lucid-svg mtl optparse-applicative svg-tree text vector + base containers FontyFruity gasp JuicyPixels lens linear + lp-diagrams lucid-svg mtl optparse-applicative svg-tree text vector ]; executableHaskellDepends = [ - base containers FontyFruity lens lp-diagrams + base containers FontyFruity gasp lens lp-diagrams ]; + jailbreak = true; description = "SVG Backend for lp-diagrams"; - license = stdenv.lib.licenses.agpl3; - }) {}; + license = "GPL"; + broken = true; + }) {gasp = null;}; "lrucache" = callPackage ({ mkDerivation, base, containers, contravariant }: @@ -132043,6 +138480,7 @@ self: { homepage = "https://github.com/roelvandijk/ls-usb"; description = "List USB devices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lscabal" = callPackage @@ -132061,6 +138499,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/lscabal"; description = "List exported modules from a set of .cabal files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lss" = callPackage @@ -132099,6 +138538,7 @@ self: { ]; description = "Paint an L-System Grammar"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ltext" = callPackage @@ -132141,6 +138581,7 @@ self: { homepage = "http://www.leksah.org"; description = "Leksah tool kit"; license = "GPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ltl" = callPackage @@ -132186,6 +138627,7 @@ self: { jailbreak = true; description = "Library functions for reading and writing Lua chunks"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "luautils" = callPackage @@ -132291,7 +138733,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "lucid" = callPackage + "lucid_2_9_4" = callPackage ({ mkDerivation, base, bifunctors, blaze-builder, bytestring , containers, hashable, hspec, HUnit, mtl, parsec, text , transformers, unordered-containers @@ -132310,6 +138752,28 @@ self: { homepage = "https://github.com/chrisdone/lucid"; description = "Clear to write, read and edit DSL for HTML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "lucid" = callPackage + ({ mkDerivation, base, bifunctors, blaze-builder, bytestring + , containers, hashable, hspec, HUnit, mmorph, mtl, parsec, text + , transformers, unordered-containers + }: + mkDerivation { + pname = "lucid"; + version = "2.9.5"; + sha256 = "ae73ed5490f11f23252e98b3b8c4aa4b86acc0019370e1a54e5957ebf948cbb8"; + libraryHaskellDepends = [ + base blaze-builder bytestring containers hashable mmorph mtl text + transformers unordered-containers + ]; + testHaskellDepends = [ + base bifunctors hspec HUnit mtl parsec text + ]; + homepage = "https://github.com/chrisdone/lucid"; + description = "Clear to write, read and edit DSL for HTML"; + license = stdenv.lib.licenses.bsd3; }) {}; "lucid-foundation" = callPackage @@ -132392,6 +138856,7 @@ self: { homepage = "http://www.imn.htwk-leipzig.de/~abau/lucienne"; description = "Server side feed aggregator/reader"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "luhn" = callPackage @@ -132418,6 +138883,7 @@ self: { ]; description = "Purely FunctionaL User Interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "luka" = callPackage @@ -132431,6 +138897,7 @@ self: { homepage = "https://github.com/nfjinjing/luka"; description = "Simple ObjectiveC runtime binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {objc = null;}; "luminance_0_9_1" = callPackage @@ -132485,6 +138952,7 @@ self: { homepage = "https://github.com/phaazon/luminance"; description = "Type-safe, type-level and stateless graphics framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "luminance-samples_0_9" = callPackage @@ -132546,6 +139014,7 @@ self: { homepage = "https://github.com/phaazon/luminance-samples"; description = "Luminance samples"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "lushtags" = callPackage @@ -132561,6 +139030,7 @@ self: { homepage = "https://github.com/bitc/lushtags"; description = "Create ctags compatible tags files for Haskell programs"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "luthor" = callPackage @@ -132574,6 +139044,7 @@ self: { homepage = "https://github.com/Zankoku-Okuno/luthor"; description = "Tools for lexing and utilizing lexemes that integrate with Parsec"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lvish" = callPackage @@ -132602,6 +139073,7 @@ self: { jailbreak = true; description = "Parallel scheduler, LVar data structures, and infrastructure to build more"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lvmlib" = callPackage @@ -132623,6 +139095,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/bin/view/Helium/WebHome"; description = "The Lazy Virtual Machine (LVM)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lvmrun" = callPackage @@ -132648,6 +139121,7 @@ self: { homepage = "https://github.com/fizruk/lxc"; description = "High level Haskell bindings to LXC (Linux containers)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "lye" = callPackage @@ -132665,6 +139139,7 @@ self: { ]; description = "A Lilypond-compiling music box"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lz4" = callPackage @@ -132700,6 +139175,7 @@ self: { homepage = "https://github.com/hvr/lzma"; description = "LZMA/XZ compression and decompression"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {inherit (pkgs) lzma;}; "lzma-clib" = callPackage @@ -132852,6 +139328,7 @@ self: { homepage = "https://github.com/hvr/lzma-streams"; description = "IO-Streams interface for lzma/xz compression"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "maam" = callPackage @@ -132900,8 +139377,8 @@ self: { }: mkDerivation { pname = "machinecell"; - version = "3.0.1"; - sha256 = "a018aa83f998b5c94daf1886269fe442566039c26060e4705095b40fa3639236"; + version = "3.1.0"; + sha256 = "0dde8e806b5418ac6c5610a3ed65dcd54ddc5f7232c516be31a5b375f6e67feb"; libraryHaskellDepends = [ arrows base free mtl profunctors semigroups ]; @@ -133248,6 +139725,7 @@ self: { homepage = "http://www.scannedinavian.com/~shae/mage-1.0pre35.tar.gz"; description = "Rogue-like"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ncurses;}; "magic" = callPackage @@ -133277,6 +139755,7 @@ self: { homepage = "http://hub.darcs.net/thielema/magico"; description = "Compute solutions for Magico puzzle"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "magma" = callPackage @@ -133310,6 +139789,7 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/mahoro"; description = "ImageBoards to XMPP gate"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "maid" = callPackage @@ -133459,6 +139939,7 @@ self: { jailbreak = true; description = "Majordomo protocol for ZeroMQ"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "majority" = callPackage @@ -133471,6 +139952,7 @@ self: { homepage = "https://github.com/niswegmann/majority"; description = "Boyer-Moore Majority Vote Algorithm"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "make-hard-links" = callPackage @@ -133508,6 +139990,7 @@ self: { homepage = "https://github.com/Philonous/make-package"; description = "Make a cabalized package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "makedo" = callPackage @@ -133581,6 +140064,7 @@ self: { jailbreak = true; description = "The Haskell/Gtk+ Integrated Live Environment"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-all" = callPackage @@ -133606,6 +140090,7 @@ self: { doHaddock = false; description = "Virtual package to install all Manatee packages"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-anything" = callPackage @@ -133627,6 +140112,7 @@ self: { jailbreak = true; description = "Multithread interactive input/search framework for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-browser" = callPackage @@ -133646,6 +140132,7 @@ self: { jailbreak = true; description = "Browser extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-core" = callPackage @@ -133670,6 +140157,7 @@ self: { jailbreak = true; description = "The core of Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-curl" = callPackage @@ -133692,6 +140180,7 @@ self: { jailbreak = true; description = "Download Manager extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-editor" = callPackage @@ -133712,6 +140201,7 @@ self: { jailbreak = true; description = "Editor extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-filemanager" = callPackage @@ -133732,6 +140222,7 @@ self: { jailbreak = true; description = "File manager extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-imageviewer" = callPackage @@ -133752,6 +140243,7 @@ self: { jailbreak = true; description = "Image viewer extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-ircclient" = callPackage @@ -133776,6 +140268,7 @@ self: { jailbreak = true; description = "IRC client extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-mplayer" = callPackage @@ -133797,6 +140290,7 @@ self: { jailbreak = true; description = "Mplayer client extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-pdfviewer" = callPackage @@ -133817,6 +140311,7 @@ self: { jailbreak = true; description = "PDF viewer extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-processmanager" = callPackage @@ -133836,6 +140331,7 @@ self: { jailbreak = true; description = "Process manager extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-reader" = callPackage @@ -133856,6 +140352,7 @@ self: { jailbreak = true; description = "Feed reader extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-template" = callPackage @@ -133876,6 +140373,7 @@ self: { jailbreak = true; description = "Template code to create Manatee application"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-terminal" = callPackage @@ -133895,6 +140393,7 @@ self: { jailbreak = true; description = "Terminal Emulator extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-welcome" = callPackage @@ -133915,6 +140414,7 @@ self: { jailbreak = true; description = "Welcome module to help user play Manatee quickly"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mancala" = callPackage @@ -134119,6 +140619,7 @@ self: { homepage = "http://gitorious.org/maximus/mandulia"; description = "A zooming visualisation of the Mandelbrot Set as many Julia Sets"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mangopay_1_11_4" = callPackage @@ -134255,6 +140756,7 @@ self: { homepage = "https://github.com/leftaroundabout/manifolds"; description = "Sampling random points on general manifolds"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "manifolds" = callPackage @@ -134273,6 +140775,7 @@ self: { homepage = "https://github.com/leftaroundabout/manifolds"; description = "Coordinate-free hypersurfaces"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "map-syntax" = callPackage @@ -134313,6 +140816,7 @@ self: { homepage = "https://github.com/PolyglotSymposium/mappy"; description = "A functional programming language focused around maps"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "marionetta" = callPackage @@ -134332,6 +140836,7 @@ self: { homepage = "https://github.com/paolino/marionetta"; description = "A study of marionetta movements"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "markdown_0_1_13" = callPackage @@ -134423,6 +140928,7 @@ self: { homepage = "https://github.com/joelteon/markdown-kate"; description = "Convert Markdown to HTML, with XSS protection"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "markdown-pap" = callPackage @@ -134434,6 +140940,7 @@ self: { libraryHaskellDepends = [ base monads-tf papillon ]; description = "markdown parser with papillon"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "markdown-unlit_0_2_0_1" = callPackage @@ -134493,6 +141000,7 @@ self: { ]; description = "markdown to svg converter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "marked-pretty" = callPackage @@ -134545,6 +141053,7 @@ self: { testHaskellDepends = [ assertions base bifunctors memoize random ]; description = "Hidden Markov processes"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "markup_1_1_0" = callPackage @@ -134603,6 +141112,7 @@ self: { jailbreak = true; description = "A simple markup document preview (markdown, textile, reStructuredText)"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "marmalade-upload" = callPackage @@ -134633,6 +141143,7 @@ self: { homepage = "https://github.com/lunaryorn/marmalade-upload"; description = "Upload packages to Marmalade"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "marquise" = callPackage @@ -134667,6 +141178,7 @@ self: { testHaskellDepends = [ base bytestring hspec ]; description = "Client library for Vaultaire"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "marxup" = callPackage @@ -134692,6 +141204,7 @@ self: { jailbreak = true; description = "Markup language preprocessor for Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "masakazu-bot" = callPackage @@ -134716,6 +141229,7 @@ self: { homepage = "https://github.com/minamiyama1994/chomado-bot-on-haskell/tree/minamiyama1994"; description = "@minamiyama1994_bot on haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mastermind" = callPackage @@ -134744,6 +141258,7 @@ self: { homepage = "http://www.github.com/massysett/matchers"; description = "Text matchers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) pcre;}; "math-functions" = callPackage @@ -134793,6 +141308,7 @@ self: { homepage = "http://jtdaugherty.github.io/mathblog/"; description = "A program for creating and managing a static weblog with LaTeX math and diagrams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mathgenealogy" = callPackage @@ -134854,6 +141370,7 @@ self: { homepage = "http://community.haskell.org/~TracyWadleigh/mathlink"; description = "Write Mathematica packages in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "matlab" = callPackage @@ -134867,6 +141384,7 @@ self: { jailbreak = true; description = "Matlab bindings and interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {eng = null; mat = null; mx = null;}; "matrices_0_4_2" = callPackage @@ -135031,6 +141549,7 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/matsuri"; description = "ncurses XMPP client"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "maude" = callPackage @@ -135047,6 +141566,7 @@ self: { homepage = "https://github.com/davidlazar/maude-hs"; description = "An interface to the Maude rewriting system"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "maxent" = callPackage @@ -135070,6 +141590,7 @@ self: { homepage = "https://github.com/jfischoff/maxent"; description = "Compute Maximum Entropy Distributions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "maximal-cliques" = callPackage @@ -135103,6 +141624,7 @@ self: { homepage = "http://rochel.info/maxsharing/"; description = "Maximal sharing of terms in the lambda calculus with letrec"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "maybe-justify" = callPackage @@ -135135,6 +141657,7 @@ self: { homepage = "http://code.google.com/p/maybench/"; description = "Automated benchmarking tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mbox_0_3" = callPackage @@ -135150,7 +141673,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mbox" = callPackage + "mbox_0_3_1" = callPackage ({ mkDerivation, base, safe, text, time, time-locale-compat }: mkDerivation { pname = "mbox"; @@ -135161,6 +141684,18 @@ self: { libraryHaskellDepends = [ base safe text time time-locale-compat ]; description = "Read and write standard mailbox files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "mbox" = callPackage + ({ mkDerivation, base, safe, text, time, time-locale-compat }: + mkDerivation { + pname = "mbox"; + version = "0.3.3"; + sha256 = "080a3eafa24af47d5bf042871d7ec0322ddb129e50d6f131555925a3842f19e5"; + libraryHaskellDepends = [ base safe text time time-locale-compat ]; + description = "Read and write standard mailbox files"; + license = stdenv.lib.licenses.bsd3; }) {}; "mbox-tools" = callPackage @@ -135180,6 +141715,7 @@ self: { homepage = "https://github.com/np/mbox-tools"; description = "A collection of tools to process mbox files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mcmaster-gloss-examples" = callPackage @@ -135194,6 +141730,7 @@ self: { jailbreak = true; homepage = "http://www.cas.mcmaster.ca/~anand/"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "mcmc-samplers" = callPackage @@ -135210,6 +141747,7 @@ self: { jailbreak = true; description = "Combinators for MCMC sampling"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mcmc-synthesis" = callPackage @@ -135292,6 +141830,7 @@ self: { homepage = "https://github.com/dorafmon/mdcat"; description = "Markdown viewer in your terminal"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mdo" = callPackage @@ -135337,6 +141876,7 @@ self: { homepage = "http://github.com/tanakh/hsmecab"; description = "A Haskell binding to MeCab"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {mecab = null;}; "mecha" = callPackage @@ -135369,6 +141909,7 @@ self: { ]; description = "Interfacing with the MediaWiki API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mediawiki2latex" = callPackage @@ -135394,6 +141935,7 @@ self: { homepage = "http://sourceforge.net/projects/wb2pdf/"; description = "Convert MediaWiki text to LaTeX"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "medium-sdk-haskell" = callPackage @@ -135411,6 +141953,7 @@ self: { jailbreak = true; description = "Haskell SDK for communicating with the Medium API"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "meep" = callPackage @@ -135420,8 +141963,8 @@ self: { }: mkDerivation { pname = "meep"; - version = "0.1.2.0"; - sha256 = "b94562ef31dc24f051738e2e4e81f3c769c85dd75886f8bc5480d4a1e4fb23cb"; + version = "0.1.2.1"; + sha256 = "dfe5719de97dfc6682ff3be29ad9a5ce13bdf13d35021a48f332a7e799a1d41c"; libraryHaskellDepends = [ base bifunctors lens semigroupoids semigroups ]; @@ -135431,6 +141974,7 @@ self: { ]; description = "A silly container"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mega-sdist" = callPackage @@ -135452,6 +141996,7 @@ self: { homepage = "https://github.com/snoyberg/mega-sdist"; description = "Handles uploading to Hackage from mega repos (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "megaparsec_4_2_0" = callPackage @@ -135474,7 +142019,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "megaparsec" = callPackage + "megaparsec_4_3_0" = callPackage ({ mkDerivation, base, bytestring, HUnit, mtl, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 , text, transformers @@ -135493,9 +142038,10 @@ self: { homepage = "https://github.com/mrkkrp/megaparsec"; description = "Monadic parser combinators"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "megaparsec_4_4_0" = callPackage + "megaparsec" = callPackage ({ mkDerivation, base, bytestring, fail, HUnit, mtl, QuickCheck , semigroups, test-framework, test-framework-hunit , test-framework-quickcheck2, text, transformers @@ -135511,11 +142057,9 @@ self: { base HUnit mtl QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 transformers ]; - jailbreak = true; homepage = "https://github.com/mrkkrp/megaparsec"; description = "Monadic parser combinators"; license = stdenv.lib.licenses.bsd2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "meldable-heap" = callPackage @@ -135550,6 +142094,7 @@ self: { jailbreak = true; description = "A functional scripting language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "memcache" = callPackage @@ -135692,6 +142237,7 @@ self: { homepage = "https://gitorious.org/memo-sqlite"; description = "memoize functions using SQLite3 database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "memoization-utils" = callPackage @@ -135819,7 +142365,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "mersenne-random-pure64" = callPackage + "mersenne-random-pure64_0_2_0_4" = callPackage ({ mkDerivation, base, old-time, random }: mkDerivation { pname = "mersenne-random-pure64"; @@ -135829,6 +142375,19 @@ self: { homepage = "http://code.haskell.org/~dons/code/mersenne-random-pure64/"; description = "Generate high quality pseudorandom numbers purely using a Mersenne Twister"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "mersenne-random-pure64" = callPackage + ({ mkDerivation, base, old-time, random }: + mkDerivation { + pname = "mersenne-random-pure64"; + version = "0.2.0.5"; + sha256 = "3ca131d6c26fe8a086c40c6e79459149286c31083e0e110f7032aeba8038346e"; + libraryHaskellDepends = [ base old-time random ]; + homepage = "http://code.haskell.org/~dons/code/mersenne-random-pure64/"; + description = "Generate high quality pseudorandom numbers purely using a Mersenne Twister"; + license = stdenv.lib.licenses.bsd3; }) {}; "messagepack_0_3_0" = callPackage @@ -136005,6 +142564,7 @@ self: { homepage = "https://github.com/simonmar/monad-par"; description = "Support for integrated Accelerate computations within Meta-par"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "metadata" = callPackage @@ -136017,6 +142577,7 @@ self: { homepage = "https://github.com/cutsea110/metadata"; description = "metadata library for semantic web"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-darwin" ]; }) {}; "metamorphic" = callPackage @@ -136040,6 +142601,7 @@ self: { libraryHaskellDepends = [ base Cabal filepath ghc haskell98 ]; description = "a tiny ghc api wrapper"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "metric" = callPackage @@ -136058,6 +142620,7 @@ self: { ]; description = "Metric spaces"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "metrics" = callPackage @@ -136105,6 +142668,7 @@ self: { ]; description = "Time Synchronized execution"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mezzolens" = callPackage @@ -136177,7 +142741,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "microformats2-parser" = callPackage + "microformats2-parser_1_0_1_3" = callPackage ({ mkDerivation, aeson, aeson-pretty, aeson-qq, attoparsec, base , blaze-html, blaze-markup, bytestring, containers, data-default , either, errors, hspec, hspec-expectations-pretty-diff @@ -136212,6 +142776,44 @@ self: { homepage = "https://github.com/myfreeweb/microformats2-parser"; description = "A Microformats 2 parser"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "microformats2-parser" = callPackage + ({ mkDerivation, aeson, aeson-pretty, aeson-qq, attoparsec, base + , base-compat, blaze-html, blaze-markup, bytestring, containers + , data-default, either, errors, hspec + , hspec-expectations-pretty-diff, html-conduit, lens-aeson, mtl + , network, network-uri, options, pcre-heavy, raw-strings-qq, safe + , scotty, streaming-commons, template-haskell, text, time + , transformers, unordered-containers, vector, wai-extra, warp + , xml-lens, xss-sanitize + }: + mkDerivation { + pname = "microformats2-parser"; + version = "1.0.1.4"; + sha256 = "8863141a58cef161c04e39cccab1690263fdef009d69ba7e17e200956d7308d7"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson aeson-qq attoparsec base base-compat blaze-markup bytestring + containers data-default either errors html-conduit lens-aeson + network-uri pcre-heavy safe text time transformers + unordered-containers vector xml-lens xss-sanitize + ]; + executableHaskellDepends = [ + aeson aeson-pretty base base-compat blaze-html blaze-markup + data-default network network-uri options scotty streaming-commons + text wai-extra warp + ]; + testHaskellDepends = [ + aeson-qq base base-compat bytestring data-default hspec + hspec-expectations-pretty-diff html-conduit mtl network-uri + raw-strings-qq template-haskell text time xml-lens + ]; + homepage = "https://github.com/myfreeweb/microformats2-parser"; + description = "A Microformats 2 parser"; + license = stdenv.lib.licenses.publicDomain; }) {}; "microformats2-types" = callPackage @@ -136324,6 +142926,7 @@ self: { homepage = "http://github.com/fosskers/microlens-aeson/"; description = "Law-abiding lenses for Aeson, using microlens"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "microlens-contra" = callPackage @@ -136665,6 +143268,18 @@ self: { homepage = "https://github.com/mrkkrp/mida"; description = "Language for algorithmic generation of MIDI files"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "midair" = callPackage + ({ mkDerivation, base, containers, safe, stm }: + mkDerivation { + pname = "midair"; + version = "0.2.0.0"; + sha256 = "32262281f8785a3fa4ab6c60302566a8dcf59287f0da95e4d42bb8212f88b1b9"; + libraryHaskellDepends = [ base containers safe stm ]; + description = "Hot-swappable FRP"; + license = stdenv.lib.licenses.gpl3; }) {}; "midi" = callPackage @@ -136702,6 +143317,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/MIDI"; description = "Convert between datatypes of the midi and the alsa packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "midi-music-box" = callPackage @@ -136759,6 +143375,7 @@ self: { homepage = "http://www.youtube.com/watch?v=cOlR73h2uII"; description = "A Memory-like (Concentration, Pairs, ...) game for tones"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "midisurface" = callPackage @@ -136777,6 +143394,7 @@ self: { jailbreak = true; description = "A control midi surface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mighttpd" = callPackage @@ -136797,6 +143415,7 @@ self: { homepage = "http://www.mew.org/~kazu/proj/mighttpd/"; description = "Simple Web Server in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mighttpd2" = callPackage @@ -136857,22 +143476,23 @@ self: { homepage = "https://github.com/evanrinehart/mikmod"; description = "MikMod bindings"; license = "LGPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "miku" = callPackage - ({ mkDerivation, air, air-th, base, bytestring, containers - , data-default, hack2, hack2-contrib, mtl + ({ mkDerivation, base, blaze-builder, bytestring, case-insensitive + , containers, filepath, http-types, mtl, wai, wai-extra }: mkDerivation { pname = "miku"; - version = "2014.11.17"; - sha256 = "76682bc6d3db2fb07e9a749a40a752917afc2787bdf3dc1849b7b102f689dbfd"; + version = "2016.3.17"; + sha256 = "86487d52fa130e311c416e0822f0647ba9fd11868b0bcda2ab6e09d9ceb4cc9c"; libraryHaskellDepends = [ - air air-th base bytestring containers data-default hack2 - hack2-contrib mtl + base blaze-builder bytestring case-insensitive containers filepath + http-types mtl wai wai-extra ]; homepage = "https://github.com/nfjinjing/miku"; - description = "A minimum web dev DSL in Haskell"; + description = "A minimum web dev DSL"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -136884,8 +143504,8 @@ self: { }: mkDerivation { pname = "milena"; - version = "0.5.0.0"; - sha256 = "fbae487cc6e61fa6cde0ba79b4d0df28c75e1af9c0d75970b7685a7beb18b63a"; + version = "0.5.0.1"; + sha256 = "2fe50795fe7a1826d1a24e66f5f31823cc83621de5137dd98196e2ce7420db10"; libraryHaskellDepends = [ base bytestring cereal containers digest lens lifted-base mtl murmur-hash network random resource-pool semigroups transformers @@ -136894,7 +143514,6 @@ self: { base bytestring lens mtl network QuickCheck semigroups tasty tasty-hspec tasty-quickcheck ]; - jailbreak = true; description = "A Kafka client for Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -137156,6 +143775,7 @@ self: { ]; description = "MIME implementation for String's"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mime-types_0_1_0_4" = callPackage @@ -137227,6 +143847,7 @@ self: { jailbreak = true; description = "Minesweeper game which is always solvable without guessing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "miniball" = callPackage @@ -137239,6 +143860,7 @@ self: { homepage = "http://nonempty.org/software/haskell-miniball"; description = "Bindings to Miniball, a smallest enclosing ball library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "miniforth" = callPackage @@ -137261,6 +143883,7 @@ self: { jailbreak = true; description = "Miniature FORTH-like interpreter"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "minilens" = callPackage @@ -137321,6 +143944,7 @@ self: { executableHaskellDepends = [ base GLUT haskell98 unix ]; description = "Shows how to run grabber on Mac OS X"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "minions" = callPackage @@ -137355,6 +143979,7 @@ self: { homepage = "https://github.com/fumieval/minioperational"; description = "fast and simple operational monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "miniplex" = callPackage @@ -137372,6 +143997,7 @@ self: { jailbreak = true; description = "simple 1-to-N interprocess communication"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "minirotate" = callPackage @@ -137393,6 +144019,7 @@ self: { homepage = "http://tener.github.com/haskell-minirotate/"; description = "Minimalistic file rotation utility"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "minisat" = callPackage @@ -137404,6 +144031,7 @@ self: { libraryHaskellDepends = [ async base ]; description = "A Haskell bundle of the Minisat SAT solver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ministg" = callPackage @@ -137423,6 +144051,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Ministg"; description = "an interpreter for an operational semantics for the STG machine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "miniutter" = callPackage @@ -137477,6 +144106,7 @@ self: { homepage = "https://github.com/minamiyama1994/mirror-tweet"; description = "Tweet mirror"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "misfortune" = callPackage @@ -137524,6 +144154,7 @@ self: { homepage = "https://github.com/domdere/missing-py2"; description = "Haskell interface to Python"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mix-arrows" = callPackage @@ -137535,6 +144166,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Mixing effects of one arrow into another one"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mixed-strategies" = callPackage @@ -137566,6 +144198,7 @@ self: { executableHaskellDepends = [ base directory filepath haskell98 ]; description = "Makes an OS X .app bundle from a binary."; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mkcabal" = callPackage @@ -137599,6 +144232,7 @@ self: { executableHaskellDepends = [ base mtl parsec pretty ]; description = "Minimal ML language to to demonstrate the W type infererence algorithm"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mlist" = callPackage @@ -137611,6 +144245,7 @@ self: { homepage = "http://haskell.org/haskellwiki/mlist"; description = "Monadic List alternative to lazy I/O"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mmap" = callPackage @@ -137672,6 +144307,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Modular Monad transformer library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mmtl-base" = callPackage @@ -137683,6 +144319,7 @@ self: { libraryHaskellDepends = [ base mmtl ]; description = "MonadBase type-class for mmtl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "moan" = callPackage @@ -137701,6 +144338,7 @@ self: { homepage = "https://github.com/vjeranc/moan"; description = "Language-agnostic analyzer for positional morphosyntactic tags"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mockery_0_3_0" = callPackage @@ -137722,7 +144360,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mockery" = callPackage + "mockery_0_3_2" = callPackage ({ mkDerivation, base, bytestring, directory, filepath, hspec , logging-facade, temporary }: @@ -137738,6 +144376,27 @@ self: { ]; description = "Support functions for automated testing"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "mockery" = callPackage + ({ mkDerivation, base, base-compat, bytestring, directory, filepath + , hspec, logging-facade, temporary + }: + mkDerivation { + pname = "mockery"; + version = "0.3.3"; + sha256 = "61157a39a3123001e0b8c7714e171980e879d01bf43f7b171e393ecab6c0fad4"; + libraryHaskellDepends = [ + base base-compat bytestring directory filepath logging-facade + temporary + ]; + testHaskellDepends = [ + base base-compat bytestring directory filepath hspec logging-facade + temporary + ]; + description = "Support functions for automated testing"; + license = stdenv.lib.licenses.mit; }) {}; "modbus-tcp" = callPackage @@ -137772,6 +144431,7 @@ self: { jailbreak = true; description = "A parser for the modelica language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "modify-fasta_0_8_0_4" = callPackage @@ -137841,6 +144501,7 @@ self: { ]; description = "Haskell source splitter driven by special comments"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "modular-arithmetic" = callPackage @@ -137874,6 +144535,7 @@ self: { homepage = "https://github.com/DanBurton/modular-prelude#readme"; description = "A new Prelude featuring first class modules"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "modular-prelude-classy" = callPackage @@ -137887,6 +144549,7 @@ self: { homepage = "https://github.com/DanBurton/modular-prelude#readme"; description = "Reifying ClassyPrelude a la ModularPrelude"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "module-management" = callPackage @@ -137919,6 +144582,7 @@ self: { homepage = "https://github.com/seereason/module-management"; description = "Clean up module imports, split and merge modules"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "modulespection" = callPackage @@ -138043,6 +144707,7 @@ self: { homepage = "http://code.haskell.org/mohws/"; description = "Modular Haskell Web Server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mole" = callPackage @@ -138088,6 +144753,7 @@ self: { homepage = "https://github.com/mvv/monad-abort-fd"; description = "A better error monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-atom" = callPackage @@ -138100,6 +144766,7 @@ self: { homepage = "https://bitbucket.org/gchrupala/lingo"; description = "Monadically convert object to unique integers and back"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-atom-simple" = callPackage @@ -138111,6 +144778,7 @@ self: { libraryHaskellDepends = [ base containers ghc-prim mtl ]; description = "Monadically map objects to unique ints"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-bool" = callPackage @@ -138159,6 +144827,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "monad-connect" = callPackage + ({ mkDerivation, base, bytestring, connection, exceptions + , transformers + }: + mkDerivation { + pname = "monad-connect"; + version = "0.1"; + sha256 = "21af008856fea5e10584152f4a3ac1e01cd50fe899e553fb3d3efb4f656c65f1"; + libraryHaskellDepends = [ + base bytestring connection exceptions transformers + ]; + homepage = "http://hub.darcs.net/fr33domlover/monad-connect"; + description = "Transformer for TCP connection with TLS and SOCKS support"; + license = stdenv.lib.licenses.publicDomain; + }) {}; + "monad-control_0_3_3_0" = callPackage ({ mkDerivation, base, transformers, transformers-base }: mkDerivation { @@ -138185,7 +144869,6 @@ self: { libraryHaskellDepends = [ base transformers transformers-base transformers-compat ]; - jailbreak = true; homepage = "https://github.com/basvandijk/monad-control"; description = "Lift control operations, like exception catching, through monad transformers"; license = stdenv.lib.licenses.bsd3; @@ -138270,7 +144953,6 @@ self: { libraryHaskellDepends = [ base monad-parallel transformers transformers-compat ]; - jailbreak = true; homepage = "http://trac.haskell.org/SCC/wiki/monad-coroutine"; description = "Coroutine monad transformer for suspending and resuming monadic computations"; license = "GPL"; @@ -138308,6 +144990,7 @@ self: { jailbreak = true; description = "Exstensible monadic exceptions"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-extras_0_5_9" = callPackage @@ -138398,6 +145081,7 @@ self: { homepage = "http://github.com/patperry/monad-interleave"; description = "Monads with an unsaveInterleaveIO-like operation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-journal_0_5_0_1" = callPackage @@ -138485,6 +145169,7 @@ self: { homepage = "https://github.com/ivan-m/monad-levels"; description = "Specific levels of monad transformers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-logger_0_3_11" = callPackage @@ -138805,6 +145490,7 @@ self: { homepage = "https://github.com/bjin/monad-lrs"; description = "a monad to calculate linear recursive sequence"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-memo" = callPackage @@ -138826,6 +145512,7 @@ self: { homepage = "https://github.com/EduardSergeev/monad-memo"; description = "Memoization monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-mersenne-random" = callPackage @@ -138838,6 +145525,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/monad-mersenne-random"; description = "An efficient random generator monad, based on the Mersenne Twister"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-open" = callPackage @@ -138934,7 +145622,6 @@ self: { libraryHaskellDepends = [ base parallel transformers transformers-compat ]; - jailbreak = true; homepage = "http://trac.haskell.org/SCC/wiki/monad-parallel"; description = "Parallel execution of monadic computations"; license = stdenv.lib.licenses.bsd3; @@ -138951,7 +145638,6 @@ self: { libraryHaskellDepends = [ base parallel transformers transformers-compat ]; - jailbreak = true; homepage = "http://trac.haskell.org/SCC/wiki/monad-parallel"; description = "Parallel execution of monadic computations"; license = stdenv.lib.licenses.bsd3; @@ -139064,6 +145750,7 @@ self: { jailbreak = true; description = "Fast monads and monad transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-resumption" = callPackage @@ -139157,6 +145844,7 @@ self: { homepage = "http://github.com/taruti/monad-stlike-io"; description = "ST-like monad capturing variables to regions and supporting IO"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-stlike-stm" = callPackage @@ -139169,6 +145857,7 @@ self: { homepage = "http://github.com/taruti/monad-stlike-stm"; description = "ST-like monad capturing variables to regions and supporting STM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-stm" = callPackage @@ -139227,6 +145916,7 @@ self: { libraryHaskellDepends = [ base ]; description = "A transactional state monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-unify" = callPackage @@ -139241,6 +145931,7 @@ self: { jailbreak = true; description = "Generic first-order unification"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-unlift" = callPackage @@ -139317,6 +146008,7 @@ self: { libraryHaskellDepends = [ base ]; description = "The Acme and AcmeT monads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monadbi" = callPackage @@ -139431,6 +146123,7 @@ self: { homepage = "http://users.ugent.be/~tschrijv/MCP/"; description = "Constraint Programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monadiccp-gecode" = callPackage @@ -139448,6 +146141,7 @@ self: { homepage = "http://users.ugent.be/~tschrijv/MCP/"; description = "Constraint Programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {gecodeint = null; gecodekernel = null; gecodesearch = null; gecodeset = null; gecodesupport = null;}; @@ -139570,6 +146264,7 @@ self: { homepage = "https://github.com/notogawa/monarch"; description = "Monadic interface for TokyoTyrant"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mongoDB_2_0_3" = callPackage @@ -139771,6 +146466,7 @@ self: { homepage = "https://github.com/docmunch/haskell-mongodb-queue"; description = "message queue using MongoDB"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mongrel2-handler" = callPackage @@ -139789,6 +146485,7 @@ self: { jailbreak = true; description = "Mongrel2 Handler Library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monitor" = callPackage @@ -139802,6 +146499,7 @@ self: { executableHaskellDepends = [ base filepath hinotify process ]; description = "Do things when files change"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "mono-foldable" = callPackage @@ -139815,6 +146513,7 @@ self: { homepage = "http://github.com/JohnLato/mono-foldable"; description = "Folds for monomorphic containers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mono-traversable_0_6_3" = callPackage @@ -140114,6 +146813,7 @@ self: { homepage = "http://github.com/nfjinjing/monoid-owns"; description = "a practical monoid implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monoid-record" = callPackage @@ -140308,6 +147008,7 @@ self: { jailbreak = true; description = "Extra classes/functions about monoids"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monoids" = callPackage @@ -140325,6 +147026,7 @@ self: { homepage = "http://github.com/ekmett/monoids"; description = "Deprecated: Use 'reducers'"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monomorphic" = callPackage @@ -140406,6 +147108,7 @@ self: { homepage = "http://github.com/patperry/hs-monte-carlo"; description = "A monad and transformer for Monte Carlo calculations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "moo" = callPackage @@ -140428,6 +147131,7 @@ self: { homepage = "http://www.github.com/astanin/moo/"; description = "Genetic algorithm library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "moonshine" = callPackage @@ -140466,6 +147170,7 @@ self: { homepage = "http://sites.google.com/site/morfetteweb/"; description = "A tool for supervised learning of morphology"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "morfeusz" = callPackage @@ -140483,6 +147188,7 @@ self: { homepage = "https://github.com/kawu/morfeusz"; description = "Bindings to the morphological analyser Morfeusz"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {morfeusz = null;}; "morte" = callPackage @@ -140508,6 +147214,35 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "morte_1_5_0" = callPackage + ({ mkDerivation, alex, array, base, binary, containers, deepseq + , Earley, http-client, http-client-tls, microlens, microlens-mtl + , mtl, optparse-applicative, pipes, QuickCheck, system-fileio + , system-filepath, tasty, tasty-hunit, tasty-quickcheck, text + , text-format, transformers + }: + mkDerivation { + pname = "morte"; + version = "1.5.0"; + sha256 = "34b2bc43e743223b1a917432d1ca2d727166f41e9ee3da1ef0a583f452f08581"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base binary containers deepseq Earley http-client + http-client-tls microlens microlens-mtl pipes system-fileio + system-filepath text text-format transformers + ]; + libraryToolDepends = [ alex ]; + executableHaskellDepends = [ base optparse-applicative text ]; + testHaskellDepends = [ + base mtl QuickCheck system-filepath tasty tasty-hunit + tasty-quickcheck text transformers + ]; + description = "A bare-bones calculus of constructions"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "mosaico-lib" = callPackage ({ mkDerivation, base, base-unicode-symbols, colour, diagrams-cairo , diagrams-core, diagrams-gtk, diagrams-lib, glib, gtk, JuicyPixels @@ -140526,6 +147261,7 @@ self: { homepage = "http://ldc.usb.ve/~05-38235/cursos/CI3661/2015AJ/"; description = "Generación interactiva de mosaicos"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mount" = callPackage @@ -140537,14 +147273,15 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Mounts and umounts filesystems"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mountpoints" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "mountpoints"; - version = "1.0.1"; - sha256 = "744abbbda305c0765e15500f9ebf0ad2185fdea1733f43525488acb21b871c80"; + version = "1.0.2"; + sha256 = "67fcdf64fdb8111f58939c64b168a9dfa519d7068e0f439887d739866f18d5c2"; libraryHaskellDepends = [ base ]; description = "list mount points"; license = "LGPL"; @@ -140573,6 +147310,7 @@ self: { homepage = "https://bitbucket.org/borekpiotr/linux-music-player"; description = "Music player for linux"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mp3decoder" = callPackage @@ -140589,6 +147327,7 @@ self: { homepage = "http://www.bjrn.se/mp3dec"; description = "MP3 decoder for teaching"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mpdmate" = callPackage @@ -140605,6 +147344,7 @@ self: { homepage = "http://neugierig.org/software/darcs/powermate/"; description = "MPD/PowerMate executable"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mpppc" = callPackage @@ -140619,6 +147359,7 @@ self: { jailbreak = true; description = "Multi-dimensional parametric pretty-printer with color"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mpretty" = callPackage @@ -140636,6 +147377,7 @@ self: { jailbreak = true; description = "a monadic, extensible pretty printing library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mpris" = callPackage @@ -140666,6 +147408,7 @@ self: { ]; description = "Simple equational reasoning for a Haskell-ish language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mps" = callPackage @@ -140685,6 +147428,7 @@ self: { homepage = "http://github.com/nfjinjing/mps/"; description = "simply oo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mpvguihs" = callPackage @@ -140704,6 +147448,7 @@ self: { homepage = "https://github.com/sebadoom/mpvguihs"; description = "A minimalist mpv GUI written in I/O heavy Haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mqtt-hs" = callPackage @@ -140725,6 +147470,20 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "mrm" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "mrm"; + version = "0.1.0.0"; + sha256 = "3caa1ec68090913057379113836ea5b0458341d060d042d1f7040904509caee2"; + libraryHaskellDepends = [ base ]; + jailbreak = true; + homepage = "https://github.com/scmu/mrm"; + description = "Modular Refiable Matching, first-class matches"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "ms" = callPackage ({ mkDerivation, base, contravariant, doctest, edit-distance, lens , profunctors, semigroupoids, semigroups, tasty, tasty-quickcheck @@ -140809,6 +147568,7 @@ self: { homepage = "http://msgpack.org/"; description = "An IDL Compiler for MessagePack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "msgpack-rpc" = callPackage @@ -140845,6 +147605,7 @@ self: { homepage = "http://www.cl.cam.ac.uk/~mbg28/"; description = "Object-Oriented Programming in Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "msi-kb-backlit" = callPackage @@ -140858,6 +147619,7 @@ self: { executableHaskellDepends = [ base bytestring hid split ]; description = "A command line tool to change backlit colors of your MSI keyboards"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "mstate" = callPackage @@ -140914,6 +147676,7 @@ self: { jailbreak = true; description = "Library to communicate with Mt.Gox"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mtl_2_1_3_1" = callPackage @@ -141069,6 +147832,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Monad transformer library using type families"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mtl-unleashed" = callPackage @@ -141125,6 +147889,7 @@ self: { libraryHaskellDepends = [ base mtl QuickCheck ]; description = "Monad transformer library with type indexes, providing 'free' copies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mtp" = callPackage @@ -141138,6 +147903,7 @@ self: { jailbreak = true; description = "Bindings to libmtp"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {mtp = null;}; "mtree" = callPackage @@ -141181,6 +147947,7 @@ self: { jailbreak = true; description = "Continuous deployment server for use with GitHub"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "muesli" = callPackage @@ -141221,6 +147988,7 @@ self: { homepage = "https://github.com/gwern/mueval"; description = "Safely evaluate pure Haskell expressions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mulang" = callPackage @@ -141234,6 +148002,7 @@ self: { jailbreak = true; description = "The Mu Language, a non-computable extended Lambda Calculus"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multext-east-msd" = callPackage @@ -141269,6 +148038,7 @@ self: { homepage = "https://github.com/aka-bash0r/multi-cabal"; description = "A tool supporting multi cabal project builds"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multiaddr" = callPackage @@ -141355,6 +148125,7 @@ self: { ]; description = "Bidirectional Two-level Transformation of XML Schemas"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multihash" = callPackage @@ -141439,6 +148210,7 @@ self: { homepage = "http://github.com/ekmett/multipass/"; description = "Folding data with multiple named passes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multiplate" = callPackage @@ -141463,6 +148235,7 @@ self: { jailbreak = true; description = "Shorter, more generic functions for Multiplate"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multiplicity" = callPackage @@ -141507,6 +148280,7 @@ self: { jailbreak = true; description = "Alternative multirec instances deriver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multirec-binary" = callPackage @@ -141519,6 +148293,7 @@ self: { jailbreak = true; description = "Generic Data.Binary instances using MultiRec."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multiset_0_3_0" = callPackage @@ -141568,6 +148343,7 @@ self: { homepage = "http://sulzmann.blogspot.com/2008/10/multi-set-rewrite-rules-with-guards-and.html"; description = "Multi-set rewrite rules with guards and a parallel execution scheme"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multistate" = callPackage @@ -141578,8 +148354,8 @@ self: { pname = "multistate"; version = "0.7.0.0"; sha256 = "012cefe6afa33be2285c47538e6d79ba54bcb15328865751209cadbea2a38b75"; - revision = "1"; - editedCabalFile = "c0546d74f2bc0c476714677432693161d63956a2a23fc88a30f7c61239672a9b"; + revision = "2"; + editedCabalFile = "bef1a17a6c406a4468feee7dea8f82e70565a7acb1dae9dd0bf974d7cb3a6018"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -141628,6 +148404,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/Center/CoCoCo"; description = "MUtually Recursive Definitions Explicitly Represented"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "murmur-hash" = callPackage @@ -141672,6 +148449,7 @@ self: { homepage = "https://github.com/niswegmann/murmurhash3"; description = "32-bit non-cryptographic hashing"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-articulation" = callPackage @@ -141736,6 +148514,7 @@ self: { jailbreak = true; description = "Diagrams-based visualization of musical data structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-parts" = callPackage @@ -141755,6 +148534,7 @@ self: { ]; description = "Musical instruments, parts and playing techniques"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-pitch" = callPackage @@ -141810,6 +148590,7 @@ self: { testHaskellDepends = [ base process tasty tasty-golden ]; description = "Some useful preludes for the Music Suite"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-score" = callPackage @@ -141834,6 +148615,7 @@ self: { jailbreak = true; description = "Musical score and part representation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-sibelius" = callPackage @@ -141853,6 +148635,7 @@ self: { ]; description = "Interaction with Sibelius"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-suite" = callPackage @@ -141872,6 +148655,7 @@ self: { doHaddock = false; description = "A set of libraries for composition, analysis and manipulation of music"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-util" = callPackage @@ -141889,6 +148673,7 @@ self: { ]; description = "Utility for developing the Music Suite"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "musicbrainz-email" = callPackage @@ -141923,6 +148708,7 @@ self: { homepage = "http://github.com/metabrainz/mass-mail"; description = "Send an email to all MusicBrainz editors"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "musicxml" = callPackage @@ -141940,6 +148726,7 @@ self: { homepage = "https://troglodita.di.uminho.pt/svn/musica/work/MusicXML"; description = "MusicXML format encoded as Haskell type and functions of reading and writting"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "musicxml2" = callPackage @@ -142033,6 +148820,7 @@ self: { homepage = "http://github.com/singpolyma/mustache2hs"; description = "Utility to generate Haskell code from Mustache templates"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mutable-containers_0_2_1_2" = callPackage @@ -142109,6 +148897,7 @@ self: { homepage = "http://jwlato.webfactional.com/haskell/mutable-iter"; description = "iteratees based upon mutable buffers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mute-unmute" = callPackage @@ -142137,13 +148926,12 @@ self: { }: mkDerivation { pname = "mvc"; - version = "1.1.1"; - sha256 = "b97122c1df6b5eb569e75cbc2a4c84a06e8ab942f68110a2f56b9cdac1bd34f5"; + version = "1.1.2"; + sha256 = "26b6c80efce2c38db22c46c27ba07f2d7bad0d3cddf6093b9d51d649643f8fcf"; libraryHaskellDepends = [ async base contravariant foldl managed mmorph pipes pipes-concurrency transformers ]; - jailbreak = true; description = "Model-view-controller"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -142158,6 +148946,7 @@ self: { jailbreak = true; description = "Concurrent and combinable updates"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mvclient" = callPackage @@ -142177,6 +148966,7 @@ self: { jailbreak = true; description = "Client library for metaverse systems like Second Life"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mwc-probability_1_0_2" = callPackage @@ -142209,8 +148999,8 @@ self: { ({ mkDerivation, base, mwc-random, primitive, transformers }: mkDerivation { pname = "mwc-probability"; - version = "1.1.3"; - sha256 = "a7190d8f2b12d5aff0344a1bdc5a85386cb12960fe31e346b14806e615773363"; + version = "1.2.1"; + sha256 = "c06d839399b1bd64db11288f017badb13bea2e87afb22bd3ff1888a6171574fd"; libraryHaskellDepends = [ base mwc-random primitive transformers ]; homepage = "http://github.com/jtobin/mwc-probability"; description = "Sampling function-based probability distributions"; @@ -142345,6 +149135,7 @@ self: { homepage = "http://haskell.cs.yale.edu/"; description = "None"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mybitcoin-sci" = callPackage @@ -142382,6 +149173,7 @@ self: { homepage = "http://github.com/adinapoli/myo"; description = "Haskell binding to the Myo armband"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mysnapsession" = callPackage @@ -142399,6 +149191,7 @@ self: { jailbreak = true; description = "Sessions and continuations for Snap web apps"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mysnapsession-example" = callPackage @@ -142418,6 +149211,7 @@ self: { jailbreak = true; description = "Example projects using mysnapsession"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mysql_0_1_1_7" = callPackage @@ -142516,6 +149310,7 @@ self: { ]; description = "Quasi-quoter for use with mysql-simple"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mysql-simple-typed" = callPackage @@ -142524,14 +149319,15 @@ self: { }: mkDerivation { pname = "mysql-simple-typed"; - version = "0.1.1.2"; - sha256 = "250199742b36b6157c3867367e91ee406786d9f5335d5668477688b272dd96a7"; + version = "0.1.1.3"; + sha256 = "64afad06c25c253fa1a99be90d94f6f3c43a3e49ce74a4b90316dd9e933ed2bd"; libraryHaskellDepends = [ base mysql mysql-simple template-haskell typedquery utf8-string ]; homepage = "https://github.com/tolysz/mysql-simple-typed"; description = "Typed extension to mysql simple"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mzv" = callPackage @@ -142545,6 +149341,7 @@ self: { homepage = "http://github.com/ifigueroap/mzv"; description = "Implementation of the \"Monads, Zippers and Views\" (Schrijvers and Oliveira, ICFP'11)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "n-m" = callPackage @@ -142617,6 +149414,7 @@ self: { homepage = "https://github.com/fractalcat/nagios-plugin-ekg"; description = "Monitor ekg metrics via Nagios"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "named-formlet" = callPackage @@ -142645,6 +149443,7 @@ self: { homepage = "http://github.com/nominolo/named-lock"; description = "A named lock that is created on demand"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "named-records" = callPackage @@ -142711,6 +149510,7 @@ self: { homepage = "http://github.com/chowells79/nano-cryptr"; description = "A threadsafe binding to glibc's crypt_r function"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nano-erl" = callPackage @@ -142735,6 +149535,7 @@ self: { homepage = "http://www.jasani.org/search/label/nano-hmac"; description = "Bindings to OpenSSL HMAC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; "nano-md5" = callPackage @@ -142748,6 +149549,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/nano-md5"; description = "Efficient, ByteString bindings to OpenSSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; "nanoAgda" = callPackage @@ -142766,6 +149568,7 @@ self: { jailbreak = true; description = "A toy dependently-typed language"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nanocurses" = callPackage @@ -142779,6 +149582,7 @@ self: { homepage = "http://www.cse.unsw.edu.au/~dons/hmp3.html"; description = "Simple Curses binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ncurses;}; "nanomsg" = callPackage @@ -142868,6 +149672,7 @@ self: { homepage = "https://github.com/fosskers/nanq"; description = "Performs 漢字検定 (National Kanji Exam) level analysis on given Kanji"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "narc" = callPackage @@ -142880,6 +149685,7 @@ self: { homepage = "http://ezrakilty.net/projects/narc"; description = "Query SQL databases using Nested Relational Calculus embedded in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nat" = callPackage @@ -143027,6 +149833,7 @@ self: { ]; description = "Haskell API for NATS messaging system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "natural-number" = callPackage @@ -143044,6 +149851,7 @@ self: { jailbreak = true; description = "Natural numbers tagged with a type-level representation of the number"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "natural-numbers" = callPackage @@ -143164,6 +149972,7 @@ self: { homepage = "https://github.com/nilcons/nc-indicators"; description = "CPU load and memory usage indicators for i3bar"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ncurses" = callPackage @@ -143224,6 +150033,7 @@ self: { homepage = "https://github.com/ajg/neat"; description = "A Fast Retargetable Template Engine"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "neat-interpolation_0_2_2" = callPackage @@ -143321,7 +150131,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "neat-interpolation" = callPackage + "neat-interpolation_0_3_1_1" = callPackage ({ mkDerivation, base, base-prelude, HTF, parsec, template-haskell , text }: @@ -143336,9 +150146,10 @@ self: { homepage = "https://github.com/nikita-volkov/neat-interpolation"; description = "A quasiquoter for neat and simple multiline text interpolation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "neat-interpolation_0_3_2" = callPackage + "neat-interpolation" = callPackage ({ mkDerivation, base, base-prelude, HTF, parsec, template-haskell , text }: @@ -143353,7 +150164,6 @@ self: { homepage = "https://github.com/nikita-volkov/neat-interpolation"; description = "A quasiquoter for neat and simple multiline text interpolation"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "needle" = callPackage @@ -143372,6 +150182,7 @@ self: { homepage = "http://scrambledeggsontoast.github.io/2014/09/28/needle-announce/"; description = "ASCII-fied arrow notation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "neet" = callPackage @@ -143408,6 +150219,7 @@ self: { ]; description = "Port of the NeHe OpenGL tutorials to Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "neil" = callPackage @@ -143443,15 +150255,15 @@ self: { }) {}; "nemesis" = callPackage - ({ mkDerivation, air, air-th, base, containers, directory, dlist - , Glob, mtl, process, time + ({ mkDerivation, base, containers, directory, dlist, Glob, lens + , mtl, process, time }: mkDerivation { pname = "nemesis"; - version = "2015.5.4"; - sha256 = "511a5e927c340f5d5d2e351e1921271421410b27e6be707b4e8ea18092e82e91"; + version = "2016.3.19"; + sha256 = "a72583758c5ca2fc769171155c8371bda4f654add0f6de1065790177ed138635"; libraryHaskellDepends = [ - air air-th base containers directory dlist Glob mtl process time + base containers directory dlist Glob lens mtl process time ]; homepage = "http://github.com/nfjinjing/nemesis"; description = "a task management tool for Haskell"; @@ -143473,6 +150285,7 @@ self: { homepage = "http://github.com/nfjinjing/nemesis-titan"; description = "A collection of Nemesis tasks to bootstrap a Haskell project with a focus on continuous integration"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nerf" = callPackage @@ -143497,6 +150310,7 @@ self: { homepage = "https://github.com/kawu/nerf"; description = "Nerf, the named entity recognition tool based on linear-chain CRFs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nero" = callPackage @@ -143516,6 +150330,7 @@ self: { homepage = "https://github.com/plutonbrb/nero"; description = "Lens-based HTTP toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nero-wai" = callPackage @@ -143532,6 +150347,7 @@ self: { homepage = "https://github.com/plutonbrb/nero-wai"; description = "WAI adapter for Nero server applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nero-warp" = callPackage @@ -143544,6 +150360,7 @@ self: { homepage = "https://github.com/plutonbrb/nero-warp"; description = "Run Nero server applications with Warp"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nested-routes" = callPackage @@ -143669,6 +150486,7 @@ self: { homepage = "http://frenetic-lang.org"; description = "The NetCore compiler and runtime system for OpenFlow networks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "netlines" = callPackage @@ -143687,6 +150505,7 @@ self: { executableHaskellDepends = [ base HTF random ]; description = "Enumerator tools for text-based network protocols"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "netlink" = callPackage @@ -143707,6 +150526,7 @@ self: { homepage = "http://netlink-hs.googlecode.com/"; description = "Netlink communication for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "netlist" = callPackage @@ -143786,6 +150606,7 @@ self: { homepage = "http://github.com/DanBurton/netspec"; description = "Simplify static Networking tasks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "netstring-enumerator" = callPackage @@ -143896,6 +150717,7 @@ self: { jailbreak = true; description = "FRP for controlling networks of OpenFlow switches"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nettle-netkit" = callPackage @@ -143911,6 +150733,7 @@ self: { ]; description = "DSL for describing OpenFlow networks, and a compiler generating NetKit labs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nettle-openflow" = callPackage @@ -143927,6 +150750,7 @@ self: { ]; description = "OpenFlow protocol messages, binary formats, and servers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "netwire" = callPackage @@ -143977,6 +150801,7 @@ self: { homepage = "https://www.github.com/Mokosha/netwire-input-glfw"; description = "GLFW instance of netwire-input"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "network_2_5_0_0" = callPackage @@ -144094,6 +150919,7 @@ self: { homepage = "http://github.com/sebnow/haskell-network-address"; description = "IP data structures and textual representation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-anonymous-i2p" = callPackage @@ -144117,6 +150943,7 @@ self: { homepage = "http://github.com/solatis/haskell-network-anonymous-i2p"; description = "Haskell API for I2P anonymous networking"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "network-anonymous-tor_0_9_2" = callPackage @@ -144176,6 +151003,7 @@ self: { homepage = "http://www.leonmergen.com/opensource.html"; description = "Haskell API for Tor anonymous networking"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "network-api-support" = callPackage @@ -144217,6 +151045,7 @@ self: { homepage = "http://github.com/solatis/haskell-network-attoparsec"; description = "Utility functions for running a parser against a socket"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "network-bitcoin" = callPackage @@ -144263,6 +151092,7 @@ self: { ]; description = "Linux NetworkNameSpace Builder"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-bytestring" = callPackage @@ -144276,6 +151106,7 @@ self: { homepage = "http://github.com/tibbe/network-bytestring"; description = "Fast, memory-efficient, low-level networking"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-carbon_1_0_5" = callPackage @@ -144464,6 +151295,7 @@ self: { homepage = "http://darcs.imperialviolet.org/network-connection"; description = "A wrapper around a generic stream-like connection"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-data" = callPackage @@ -144613,6 +151445,7 @@ self: { jailbreak = true; description = "Haskell bindings for the ifreq structure"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "network-ip" = callPackage @@ -144671,6 +151504,7 @@ self: { homepage = "http://darcs.imperialviolet.org/network-minihttp"; description = "A ByteString based library for writing HTTP(S) servers and clients"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-msg" = callPackage @@ -144722,6 +151556,7 @@ self: { jailbreak = true; description = "Haskell bindings for low-level packet sockets (AF_PACKET)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "network-pgi" = callPackage @@ -144771,6 +151606,7 @@ self: { ]; description = "A cross-platform RPC library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-server" = callPackage @@ -144785,6 +151621,7 @@ self: { executableHaskellDepends = [ base network unix ]; description = "A light abstraction over sockets & co. for servers"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-service" = callPackage @@ -144893,6 +151730,7 @@ self: { homepage = "https://github.com/k0001/network-simple-tls"; description = "Simple interface to TLS secured network sockets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-socket-options" = callPackage @@ -144945,6 +151783,7 @@ self: { homepage = "https://github.com/bgamari/bayes-stack"; description = "A few network topic model implementations for bayes-stack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-transport_0_4_1_0" = callPackage @@ -145022,6 +151861,7 @@ self: { jailbreak = true; description = "AMQP-based transport layer for distributed-process (aka Cloud Haskell)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-transport-composed" = callPackage @@ -145262,7 +152102,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "network-uri" = callPackage + "network-uri_2_6_0_3" = callPackage ({ mkDerivation, base, deepseq, HUnit, parsec, test-framework , test-framework-hunit, test-framework-quickcheck2 }: @@ -145279,6 +152119,25 @@ self: { homepage = "https://github.com/haskell/network-uri"; description = "URI manipulation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "network-uri" = callPackage + ({ mkDerivation, base, deepseq, HUnit, parsec, test-framework + , test-framework-hunit, test-framework-quickcheck2 + }: + mkDerivation { + pname = "network-uri"; + version = "2.6.1.0"; + sha256 = "423e0a2351236f3fcfd24e39cdbc38050ec2910f82245e69ca72a661f7fc47f0"; + libraryHaskellDepends = [ base deepseq parsec ]; + testHaskellDepends = [ + base HUnit test-framework test-framework-hunit + test-framework-quickcheck2 + ]; + homepage = "https://github.com/haskell/network-uri"; + description = "URI manipulation"; + license = stdenv.lib.licenses.bsd3; }) {}; "network-uri-static" = callPackage @@ -145319,6 +152178,7 @@ self: { homepage = "http://github.com/michaelmelanson/network-websocket"; description = "WebSocket library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "networked-game" = callPackage @@ -145350,6 +152210,7 @@ self: { homepage = "http://www.b7j0c.org/content/haskell-newports.html"; description = "List ports newer than N days on a FreeBSD system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "newsynth" = callPackage @@ -145369,6 +152230,7 @@ self: { homepage = "http://www.mathstat.dal.ca/~selinger/newsynth/"; description = "Exact and approximate synthesis of quantum circuits"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "newt" = callPackage @@ -145395,6 +152257,7 @@ self: { jailbreak = true; description = "A trivially simple app to create things from simple templates"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "newtype" = callPackage @@ -145455,6 +152318,7 @@ self: { homepage = "http://github.com/mgsloan/newtype-th"; description = "A template haskell deriver to create Control.Newtype instances."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "newtyper" = callPackage @@ -145526,6 +152390,7 @@ self: { homepage = "https://github.com/fhsjaagshs/niagra"; description = "CSS EDSL for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nibblestring" = callPackage @@ -145546,6 +152411,7 @@ self: { ]; description = "Packed, strict nibble arrays with a list interface (ByteString for nibbles)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nicify" = callPackage @@ -145615,6 +152481,7 @@ self: { homepage = "http://www.codemanic.com/uwe"; description = "Command line utility publishes Nike+ runs on blogs and Twitter"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nimber" = callPackage @@ -145627,6 +152494,7 @@ self: { homepage = "http://andersk.mit.edu/haskell/nimber/"; description = "Finite nimber arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "nist-beacon" = callPackage @@ -145652,6 +152520,7 @@ self: { homepage = "http://haskell.gonitro.io"; description = "Haskell bindings for Nitro"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nix-eval" = callPackage @@ -145717,6 +152586,7 @@ self: { ]; description = "Generate nix expressions from npm packages"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nixos-types" = callPackage @@ -145749,6 +152619,7 @@ self: { homepage = "https://github.com/kawu/nkjp"; description = "Manipulating the National Corpus of Polish (NKJP)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nlp-scores" = callPackage @@ -145794,6 +152665,7 @@ self: { executableHaskellDepends = [ base ]; description = "Network Manager, binding to libnm-glib"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {g = null; inherit (pkgs) glib; libnm-glib = null; nm-glib = null;}; @@ -145807,6 +152679,7 @@ self: { homepage = "https://github.com/singpolyma/NME-Haskell"; description = "Bindings to the Nyctergatis Markup Engine"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nntp" = callPackage @@ -145822,6 +152695,7 @@ self: { ]; description = "Library to connect to an NNTP Server"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "no-buffering-workaround" = callPackage @@ -145900,6 +152774,7 @@ self: { homepage = "http://github.com/brow/noise"; description = "A friendly language for graphic design"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "non-empty" = callPackage @@ -145956,6 +152831,18 @@ self: { license = "LGPL"; }) {}; + "nonempty-alternative" = callPackage + ({ mkDerivation, base, comonad, semigroups }: + mkDerivation { + pname = "nonempty-alternative"; + version = "0.4.0"; + sha256 = "311e733747116727d2374081774ea341a85aaa54eb25f936b0802bacc26cb6fa"; + libraryHaskellDepends = [ base comonad semigroups ]; + homepage = "http://github.com/guaraqe/nonempty-alternative#readme"; + description = "NonEmpty for Alternative types"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "nonfree" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -146011,6 +152898,7 @@ self: { homepage = "https://github.com/jessopher/noodle"; description = "the noodle programming language"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "normaldistribution" = callPackage @@ -146041,6 +152929,7 @@ self: { jailbreak = true; description = "Painless 3D graphics, no affiliation with gloss"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "not-gloss-examples" = callPackage @@ -146058,6 +152947,7 @@ self: { ]; description = "examples for not-gloss"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "not-in-base" = callPackage @@ -146100,6 +152990,7 @@ self: { executableSystemDepends = [ notmuch ]; description = "Binding for notmuch MUA library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) notmuch;}; "notmuch-web" = callPackage @@ -146138,6 +153029,7 @@ self: { homepage = "https://bitbucket.org/wuzzeb/notmuch-web"; description = "A web interface to the notmuch email indexer"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "notzero" = callPackage @@ -146164,8 +153056,8 @@ self: { ({ mkDerivation, base, containers, numeric-prelude, primes }: mkDerivation { pname = "np-extras"; - version = "0.3.0.1"; - sha256 = "15ac78e4ba39331eee1b4db52dd822e2adabb3770c0e24d1ae58ed8b9141b2a6"; + version = "0.3.1"; + sha256 = "3e0a363aa70842155dfe0046f0e96c3feac56f7e543f6307a9d764b4af1991d1"; libraryHaskellDepends = [ base containers numeric-prelude primes ]; description = "NumericPrelude extras"; license = stdenv.lib.licenses.bsd3; @@ -146185,6 +153077,7 @@ self: { jailbreak = true; description = "Linear algebra for the numeric-prelude framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nptools" = callPackage @@ -146203,6 +153096,7 @@ self: { ]; description = "A collection of random tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nsis_0_2_4" = callPackage @@ -146280,6 +153174,7 @@ self: { sha256 = "9e6a4e4cf0116a8aab09185bcdb62106206c6b41816cc1c6d6e3dac50fe621e2"; libraryHaskellDepends = [ base type-level ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ntp-control" = callPackage @@ -146316,6 +153211,7 @@ self: { homepage = "https://github.com/Tener/null-canvas"; description = "HTML5 Canvas Graphics Library - forked Blank Canvas"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nullary" = callPackage @@ -146410,6 +153306,7 @@ self: { homepage = "https://github.com/roelvandijk/numerals"; description = "Convert numbers to number words"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "numerals-base" = callPackage @@ -146433,6 +153330,7 @@ self: { homepage = "https://github.com/roelvandijk/numerals-base"; description = "Convert numbers to number words"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "numeric-extras_0_0_3" = callPackage @@ -146669,6 +153567,7 @@ self: { homepage = "https://github.com/neovimhaskell/nvim-hs"; description = "Haskell plugin backend for neovim"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nvim-hs-contrib" = callPackage @@ -146695,6 +153594,7 @@ self: { homepage = "https://github.com/neovimhaskell/nvim-hs"; description = "Haskell plugin backend for neovim"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nyan" = callPackage @@ -146744,6 +153644,7 @@ self: { jailbreak = true; description = "An interactive GUI for manipulating L-systems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "oanda-rest-api" = callPackage @@ -146824,6 +153725,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/Center/CoCoCo"; description = "Oberon0 Compiler"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "obj" = callPackage @@ -146843,6 +153745,7 @@ self: { ]; description = "Reads and writes obj models"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "objectid" = callPackage @@ -146926,8 +153829,8 @@ self: { }: mkDerivation { pname = "octane"; - version = "0.4.1"; - sha256 = "52792d83198460ebf8de89cbd2b6d0519708a7358c936b09c0b698886d7e5496"; + version = "0.4.5"; + sha256 = "b191dc176c5e17d1749a8cacbe9a6c1e6983a0aa9fe3cfad67002dde2d96094f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -146943,6 +153846,30 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "octane_0_4_9" = callPackage + ({ mkDerivation, base, binary, binary-bits, bytestring, containers + , data-binary-ieee754, deepseq, tasty, tasty-hspec, text + }: + mkDerivation { + pname = "octane"; + version = "0.4.9"; + sha256 = "5ed8ab1abcc8061cebe6e978d9b3de6419bb7a9b042796f17f28c6da36fbf708"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary binary-bits bytestring containers data-binary-ieee754 + deepseq text + ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + base binary binary-bits bytestring containers tasty tasty-hspec + ]; + homepage = "https://github.com/tfausak/octane#readme"; + description = "Parse Rocket League replays"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "octohat" = callPackage ({ mkDerivation, aeson, base, base-compat, base16-bytestring , base64-bytestring, bytestring, containers, cryptohash, dotenv @@ -146995,6 +153922,7 @@ self: { homepage = "https://github.com/Zankoku-Okuno/octopus/"; description = "Lisp with more dynamism, more power, more simplicity"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "oculus" = callPackage @@ -147013,6 +153941,7 @@ self: { homepage = "http://github.com/cpdurham/oculus"; description = "Oculus Rift ffi providing head tracking data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXinerama; inherit (pkgs) mesa; ovr = null; inherit (pkgs) systemd;}; @@ -147030,6 +153959,7 @@ self: { homepage = "http://oden-lang.org"; description = "Provides Go package metadata"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "oeis" = callPackage @@ -147096,6 +154026,7 @@ self: { homepage = "https://github.com/fthomas/ohloh-hs"; description = "Interface to the Ohloh API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "oi" = callPackage @@ -147135,6 +154066,7 @@ self: { homepage = "https://github.com/krdlab/haskell-oidc-client"; description = "OpenID Connect 1.0 library for RP"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ois-input-manager" = callPackage @@ -147148,6 +154080,7 @@ self: { jailbreak = true; description = "wrapper for OIS input manager for use with hogre"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {OIS = null;}; "old-locale" = callPackage @@ -147212,6 +154145,7 @@ self: { jailbreak = true; description = "An OpenLayers JavaScript Wrapper and Webframework with snaplet-fay"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "omaketex" = callPackage @@ -147231,6 +154165,7 @@ self: { homepage = "https://github.com/pcapriotti/omaketex"; description = "A simple tool to generate OMakefile for latex files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "omega" = callPackage @@ -147249,6 +154184,7 @@ self: { homepage = "http://code.google.com/p/omega/"; description = "A purely functional programming language and a proof system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "omnicodec" = callPackage @@ -147267,6 +154203,7 @@ self: { jailbreak = true; description = "data encoding and decoding command line utilities"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "omnifmt" = callPackage @@ -147312,6 +154249,7 @@ self: { homepage = "http://haskell.on-a-horse.org"; description = "\"Haskell on a Horse\" - A combinatorial web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "on-demand-ssh-tunnel" = callPackage @@ -147364,6 +154302,7 @@ self: { homepage = "https://github.com/sjoerdvisscher/one-liner"; description = "Constraint-based generics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "one-time-password" = callPackage @@ -147408,6 +154347,7 @@ self: { homepage = "https://github.com/thinkpad20/oneormore"; description = "A never-empty list type"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "only" = callPackage @@ -147432,6 +154372,7 @@ self: { libraryHaskellDepends = [ base smallcheck ]; description = "Code for the Haskell course taught at the Odessa National University in 2012"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "oo-prototypes" = callPackage @@ -147599,8 +154540,8 @@ self: { pname = "opaleye"; version = "0.4.2.0"; sha256 = "b924c4d0fa7151c0dbaee5ddcd89adfa569614204a805392625752ea6dc13c20"; - revision = "3"; - editedCabalFile = "2d6a584a46565934f8408c72aaa3cd469d190799b8d071775b7190326c4c9e5e"; + revision = "5"; + editedCabalFile = "89c88b17345e194a4521ba72ad38d8074bf9620102becd846b0c1c74788595ed"; libraryHaskellDepends = [ aeson attoparsec base base16-bytestring bytestring case-insensitive contravariant postgresql-simple pretty product-profunctors @@ -147734,6 +154675,7 @@ self: { homepage = "http://johnmacfarlane.net/pandoc"; description = "Conversion between markup formats"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "open-symbology" = callPackage @@ -147762,6 +154704,7 @@ self: { homepage = "https://github.com/emilaxelsson/open-typerep"; description = "Open type representations and dynamic types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-linux" ]; }) {}; "open-union" = callPackage @@ -147777,6 +154720,7 @@ self: { homepage = "https://github.com/RobotGymnast/open-union"; description = "Extensible, type-safe unions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" ]; }) {}; "open-witness" = callPackage @@ -147789,6 +154733,7 @@ self: { jailbreak = true; description = "open witnesses"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "opencog-atomspace" = callPackage @@ -147802,6 +154747,7 @@ self: { homepage = "github.com/opencog/atomspace/tree/master/opencog/haskell"; description = "Haskell Bindings for the AtomSpace"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {atomspace-cwrapper = null;}; "opencv-raw" = callPackage @@ -147816,6 +154762,7 @@ self: { homepage = "www.github.com/arjuncomar/opencv-raw.git"; description = "Raw Haskell bindings to OpenCV >= 2.0"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) opencv;}; "opendatatable" = callPackage @@ -147845,6 +154792,7 @@ self: { homepage = "https://github.com/singpolyma/openexchangerates-haskell"; description = "Fetch exchange rates from OpenExchangeRates.org"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "openflow" = callPackage @@ -147863,6 +154811,7 @@ self: { homepage = "https://github.com/AndreasVoellmy/openflow"; description = "OpenFlow"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "opengl-dlp-stereo" = callPackage @@ -147880,6 +154829,7 @@ self: { homepage = "https://bitbucket.org/bwbush/opengl-dlp-stereo"; description = "Library and example for using DLP stereo in OpenGL"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "opengl-spacenavigator" = callPackage @@ -147897,24 +154847,33 @@ self: { homepage = "https://bitbucket.org/bwbush/opengl-spacenavigator"; description = "Library and example for using a SpaceNavigator-compatible 3-D mouse with OpenGL"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "opengles" = callPackage - ({ mkDerivation, base, bytestring, distributive, EGL - , future-resource, ghc-prim, GLESv2, lens, linear, packer, vector + ({ mkDerivation, base, bytestring, distributive, EGL, fixed + , future-resource, ghc-prim, GLESv2, GLFW-b, half, lens, linear + , packer, random, time, transformers, vector }: mkDerivation { pname = "opengles"; - version = "0.7.0"; - sha256 = "b2956a7ebfa7d57d40b9c01a84c398ddb537b576c15b4ee021499cf35c0bed6f"; + version = "0.8.3"; + sha256 = "c5cdffed66b7eb546a2546fc246dafd20fe4a5971f1ef8d1f5545de0d8e6e303"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ - base bytestring distributive future-resource ghc-prim lens linear - packer vector + base bytestring distributive fixed future-resource ghc-prim half + lens linear packer transformers vector ]; librarySystemDepends = [ EGL GLESv2 ]; - jailbreak = true; - description = "OpenGL ES 2.0 and 3.0 with EGL 1.4"; + executableHaskellDepends = [ + base bytestring future-resource GLFW-b random time + ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/capsjac/opengles#readme"; + description = "Functional interface for OpenGL 4.1+ and OpenGL ES 2.0+"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {EGL = null; GLESv2 = null;}; "openid" = callPackage @@ -147933,6 +154892,7 @@ self: { homepage = "http://github.com/elliottt/hsopenid"; description = "An implementation of the OpenID-2.0 spec."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "openpgp" = callPackage @@ -147978,6 +154938,7 @@ self: { homepage = "http://github.com/singpolyma/OpenPGP-Crypto"; description = "Implementation of cryptography for use with OpenPGP using the Crypto library"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "openpgp-asciiarmor" = callPackage @@ -148025,6 +154986,7 @@ self: { homepage = "http://github.com/singpolyma/OpenPGP-CryptoAPI"; description = "Implement cryptography for OpenPGP using crypto-api compatible libraries"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "opensoundcontrol-ht" = callPackage @@ -148064,6 +155026,7 @@ self: { homepage = "https://github.com/stackbuilders/openssh-github-keys"; description = "Fetch OpenSSH keys from a GitHub team"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "openssl-createkey" = callPackage @@ -148164,6 +155127,7 @@ self: { jailbreak = true; description = "Unicode characters"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "opentheory-divides" = callPackage @@ -148347,14 +155311,18 @@ self: { }) {}; "operational-extra" = callPackage - ({ mkDerivation, base, operational, time }: + ({ mkDerivation, base, bytestring, operational, text, time + , transformers + }: mkDerivation { pname = "operational-extra"; - version = "0.1.0.0"; - sha256 = "d0ab3fa58e55ff94f2e12d563410dfcc11c6ce6c1ab863602afd6b5522549c9b"; - libraryHaskellDepends = [ base operational time ]; - homepage = "http://github.com/andrewthad/vinyl-operational#readme"; - description = "Initial project template from stack"; + version = "0.3"; + sha256 = "12c01a37e59c5ec5696ce231b894399ee37fc9e6b0400e166b4e92457ced06db"; + libraryHaskellDepends = [ + base bytestring operational text time transformers + ]; + homepage = "http://github.com/andrewthad/vinyl-ecosystem"; + description = "Interpretation functions and simple instruction sets for operational"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -148504,6 +155472,7 @@ self: { homepage = "https://github.com/tsuraan/optimal-blocks"; description = "Optimal Block boundary determination for rsync-like behaviours"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "optimization" = callPackage @@ -148541,6 +155510,7 @@ self: { homepage = "http://optimusprime.posterous.com/"; description = "A supercompiler for f-lite"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "option" = callPackage @@ -148686,7 +155656,6 @@ self: { libraryHaskellDepends = [ ansi-wl-pprint base process transformers transformers-compat ]; - jailbreak = true; homepage = "https://github.com/pcapriotti/optparse-applicative"; description = "Utilities and combinators for parsing command line options"; license = stdenv.lib.licenses.bsd3; @@ -148704,7 +155673,6 @@ self: { libraryHaskellDepends = [ ansi-wl-pprint base process transformers transformers-compat ]; - jailbreak = true; homepage = "https://github.com/pcapriotti/optparse-applicative"; description = "Utilities and combinators for parsing command line options"; license = stdenv.lib.licenses.bsd3; @@ -148740,15 +155708,16 @@ self: { }) {}; "optparse-generic" = callPackage - ({ mkDerivation, base, optparse-applicative, system-filepath, text - , transformers, void + ({ mkDerivation, base, bytestring, optparse-applicative + , system-filepath, text, time, transformers, void }: mkDerivation { pname = "optparse-generic"; - version = "1.0.0"; - sha256 = "6e049b88706c35dca3d4b021fae26c664d46ef888a910647f269b851b3a59053"; + version = "1.1.0"; + sha256 = "f3ceb1ed0505ad12f7b07e05edb318f8a9d2816ea50f19a774b4d4cc0055bb34"; libraryHaskellDepends = [ - base optparse-applicative system-filepath text transformers void + base bytestring optparse-applicative system-filepath text time + transformers void ]; description = "Auto-generate a command-line parser for your datatype"; license = stdenv.lib.licenses.bsd3; @@ -148826,6 +155795,7 @@ self: { jailbreak = true; description = "An API client for http://orchestrate.io/."; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "orchid" = callPackage @@ -148846,6 +155816,7 @@ self: { jailbreak = true; description = "Haskell Wiki Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "orchid-demo" = callPackage @@ -148865,6 +155836,7 @@ self: { jailbreak = true; description = "Haskell Wiki Demo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ord-adhoc" = callPackage @@ -148894,6 +155866,7 @@ self: { homepage = "http://darcs.wolfgang.jeltsch.info/haskell/order-maintenance"; description = "Algorithms for the order maintenance problem with a safe interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "order-statistic-tree" = callPackage @@ -149014,6 +155987,7 @@ self: { ]; description = "A collection of Attoparsec combinators for parsing org-mode flavored documents"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "origami" = callPackage @@ -149033,6 +156007,7 @@ self: { homepage = "http://github.com/nedervold/origami"; description = "An un-SYB framework for transforming heterogenous data through folds"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "os-release" = callPackage @@ -149087,6 +156062,28 @@ self: { executableHaskellDepends = [ base process ]; description = "Show keys pressed with an on-screen display (Linux only)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + }) {}; + + "osm-conduit" = callPackage + ({ mkDerivation, base, conduit, exceptions, hspec, resourcet, text + , transformers, xml-conduit, xml-types + }: + mkDerivation { + pname = "osm-conduit"; + version = "0.1.0.0"; + sha256 = "df65ea545cfea5c2f274248670769a970709f2b7799b7384df4ce7211d7451f2"; + libraryHaskellDepends = [ + base conduit exceptions resourcet text transformers xml-conduit + xml-types + ]; + testHaskellDepends = [ + base conduit exceptions hspec resourcet text xml-conduit xml-types + ]; + homepage = "http://github.com/przembot/osm-conduit#readme"; + description = "Parse and operate on OSM data in efficient way"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "osm-download" = callPackage @@ -149109,6 +156106,7 @@ self: { jailbreak = true; description = "Download Open Street Map tiles"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "oso2pdf" = callPackage @@ -149160,6 +156158,7 @@ self: { homepage = "https://github.com/operational-transformation/ot.hs"; description = "Real-time collaborative editing with Operational Transformation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ottparse-pretty" = callPackage @@ -149225,6 +156224,7 @@ self: { homepage = "https://github.com/capsjac/pack"; description = "Bidirectional fast ByteString packer/unpacker"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "package-description-remote" = callPackage @@ -149274,6 +156274,7 @@ self: { jailbreak = true; description = "Haskell Package Versioning Tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "packdeps" = callPackage @@ -149330,6 +156331,7 @@ self: { jailbreak = true; description = "(Deprecated) Packed Strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "packer" = callPackage @@ -149366,6 +156368,7 @@ self: { ]; description = "Serialization library for GHC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "packunused" = callPackage @@ -149420,6 +156423,7 @@ self: { homepage = "https://github.com/fumieval/padKONTROL"; description = "Controlling padKONTROL native mode"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pagarme" = callPackage @@ -149600,7 +156604,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pagerduty" = callPackage + "pagerduty_0_0_6" = callPackage ({ mkDerivation, aeson, base, bifunctors, bytestring , bytestring-conversion, conduit, data-default-class, exceptions , generics-sop, http-client, http-types, lens, lens-aeson, mmorph @@ -149622,6 +156626,31 @@ self: { homepage = "http://github.com/brendanhay/pagerduty"; description = "Client library for PagerDuty Integration and REST APIs"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pagerduty" = callPackage + ({ mkDerivation, aeson, base, bifunctors, bytestring + , bytestring-conversion, conduit, data-default-class, exceptions + , generics-sop, http-client, http-types, lens, lens-aeson, mmorph + , monad-control, mtl, template-haskell, text, time + , time-locale-compat, transformers, transformers-base + , transformers-compat, unordered-containers + }: + mkDerivation { + pname = "pagerduty"; + version = "0.0.7"; + sha256 = "5e46075a080cf6c6561977e3f0cdd53a32a627b3a193d58c61a05e628757fe9c"; + libraryHaskellDepends = [ + aeson base bifunctors bytestring bytestring-conversion conduit + data-default-class exceptions generics-sop http-client http-types + lens lens-aeson mmorph monad-control mtl template-haskell text time + time-locale-compat transformers transformers-base + transformers-compat unordered-containers + ]; + homepage = "http://github.com/brendanhay/pagerduty"; + description = "Client library for PagerDuty Integration and REST APIs"; + license = "unknown"; }) {}; "pagure-hook-receiver" = callPackage @@ -149704,6 +156733,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "Haskell binding for C PAM API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) pam;}; "panda" = callPackage @@ -149724,6 +156754,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Panda"; description = "A simple static blog engine"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pandoc_1_13_1" = callPackage @@ -150160,6 +157191,52 @@ self: { license = "GPL"; }) {}; + "pandoc_1_17_0_2" = callPackage + ({ mkDerivation, aeson, ansi-terminal, array, base + , base64-bytestring, binary, blaze-html, blaze-markup, bytestring + , cmark, containers, data-default, deepseq, Diff, directory + , executable-path, extensible-exceptions, filemanip, filepath + , ghc-prim, haddock-library, highlighting-kate, hslua, HTTP + , http-client, http-client-tls, http-types, HUnit, JuicyPixels, mtl + , network, network-uri, old-time, pandoc-types, parsec, process + , QuickCheck, random, scientific, SHA, syb, tagsoup, temporary + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , texmath, text, time, unordered-containers, vector, xml, yaml + , zip-archive, zlib + }: + mkDerivation { + pname = "pandoc"; + version = "1.17.0.2"; + sha256 = "f099eecf102cf215741da7a993d90f0ab135d6f84cb23f9da77050bd1c9a9d53"; + configureFlags = [ "-fhttps" ]; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson array base base64-bytestring binary blaze-html blaze-markup + bytestring cmark containers data-default deepseq directory + extensible-exceptions filemanip filepath ghc-prim haddock-library + highlighting-kate hslua HTTP http-client http-client-tls http-types + JuicyPixels mtl network network-uri old-time pandoc-types parsec + process random scientific SHA syb tagsoup temporary texmath text + time unordered-containers vector xml yaml zip-archive zlib + ]; + executableHaskellDepends = [ + aeson base bytestring containers directory extensible-exceptions + filepath highlighting-kate HTTP network network-uri pandoc-types + text yaml + ]; + testHaskellDepends = [ + ansi-terminal base bytestring containers Diff directory + executable-path filepath highlighting-kate HUnit pandoc-types + process QuickCheck syb test-framework test-framework-hunit + test-framework-quickcheck2 text zip-archive + ]; + homepage = "http://pandoc.org"; + description = "Conversion between markup formats"; + license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "pandoc-citeproc_0_6" = callPackage ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring , containers, data-default, directory, filepath, hs-bibutils, mtl @@ -150354,7 +157431,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pandoc-citeproc" = callPackage + "pandoc-citeproc_0_9" = callPackage ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring , containers, data-default, directory, filepath, hs-bibutils, mtl , old-locale, pandoc, pandoc-types, parsec, process, rfc5051 @@ -150385,6 +157462,40 @@ self: { homepage = "https://github.com/jgm/pandoc-citeproc"; description = "Supports using pandoc with citeproc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pandoc-citeproc" = callPackage + ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring + , containers, data-default, directory, filepath, hs-bibutils, mtl + , old-locale, pandoc, pandoc-types, parsec, process, rfc5051 + , setenv, split, syb, tagsoup, temporary, text, time + , unordered-containers, vector, xml-conduit, yaml + }: + mkDerivation { + pname = "pandoc-citeproc"; + version = "0.9.1.1"; + sha256 = "15c89a9aa6bce4efd6b728ea16151eb6390cad0495eb82c50cbac490591c8f86"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring containers data-default directory filepath + hs-bibutils mtl old-locale pandoc pandoc-types parsec rfc5051 + setenv split syb tagsoup text time unordered-containers vector + xml-conduit yaml + ]; + executableHaskellDepends = [ + aeson aeson-pretty attoparsec base bytestring containers directory + filepath pandoc pandoc-types process syb temporary text vector yaml + ]; + testHaskellDepends = [ + aeson base bytestring directory filepath pandoc pandoc-types + process temporary text yaml + ]; + doCheck = false; + homepage = "https://github.com/jgm/pandoc-citeproc"; + description = "Supports using pandoc with citeproc"; + license = stdenv.lib.licenses.bsd3; }) {}; "pandoc-citeproc-preamble" = callPackage @@ -150406,26 +157517,29 @@ self: { "pandoc-crossref" = callPackage ({ mkDerivation, base, bytestring, containers, data-accessor - , data-accessor-transformers, data-default, hspec, mtl, pandoc - , pandoc-types, process, yaml + , data-accessor-template, data-accessor-transformers, data-default + , hspec, mtl, pandoc, pandoc-types, process, roman-numerals, syb + , template-haskell, yaml }: mkDerivation { pname = "pandoc-crossref"; - version = "0.1.6.5"; - sha256 = "6b92a2730ed28c0242b81e47c0e21902321f98eb2b580d2114d906ca89a451e2"; + version = "0.2.0.0"; + sha256 = "e7039ced02eaaec80f0814d1d242dd06002d76dc3bed784fd18e50ddec77e3bd"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base bytestring containers data-accessor data-accessor-transformers - data-default mtl pandoc pandoc-types yaml + base bytestring containers data-accessor data-accessor-template + data-accessor-transformers data-default mtl pandoc pandoc-types + roman-numerals syb template-haskell yaml ]; executableHaskellDepends = [ base bytestring containers data-default mtl pandoc pandoc-types yaml ]; testHaskellDepends = [ - base bytestring containers data-accessor data-accessor-transformers - data-default hspec mtl pandoc pandoc-types process yaml + base bytestring containers data-accessor data-accessor-template + data-accessor-transformers data-default hspec mtl pandoc + pandoc-types process roman-numerals syb template-haskell yaml ]; description = "Pandoc filter for cross-references"; license = stdenv.lib.licenses.gpl2; @@ -150483,6 +157597,7 @@ self: { ]; description = "Japanese-specific markup filters for pandoc"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pandoc-lens" = callPackage @@ -150496,6 +157611,7 @@ self: { homepage = "http://github.com/bgamari/pandoc-lens"; description = "Lenses for Pandoc documents"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pandoc-placetable" = callPackage @@ -150536,6 +157652,7 @@ self: { ]; description = "Render and insert PlantUML diagrams with Pandoc"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pandoc-types_1_12_4_1" = callPackage @@ -150689,6 +157806,7 @@ self: { executableHaskellDepends = [ base pandoc ]; description = "Literate Haskell support for GitHub's Markdown flavor"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pango_0_13_0_4" = callPackage @@ -150768,6 +157886,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Pango text rendering engine"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs.gnome) pango;}; "papillon" = callPackage @@ -150792,6 +157911,7 @@ self: { homepage = "https://skami.iocikun.jp/computer/haskell/packages/papillon"; description = "packrat parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pappy" = callPackage @@ -150806,6 +157926,7 @@ self: { homepage = "http://pdos.csail.mit.edu/~baford/packrat/thesis/"; description = "Packrat parsing; linear-time parsers for grammars in TDPL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "para" = callPackage @@ -150845,6 +157966,7 @@ self: { jailbreak = true; description = "Paragon"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parallel_3_2_0_3" = callPackage @@ -150927,6 +158049,7 @@ self: { ]; jailbreak = true; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parallel-tree-search" = callPackage @@ -150951,6 +158074,7 @@ self: { homepage = "http://code.haskell.org/parameterized-data"; description = "Parameterized data library implementing lightweight dependent types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parco" = callPackage @@ -150962,6 +158086,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Generalised parser combinators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parco-attoparsec" = callPackage @@ -150973,6 +158098,7 @@ self: { libraryHaskellDepends = [ attoparsec base mtl parco ]; description = "Generalised parser combinators - Attoparsec interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parco-parsec" = callPackage @@ -150984,6 +158110,7 @@ self: { libraryHaskellDepends = [ base mtl parco parsec ]; description = "Generalised parser combinators - Parsec interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parcom-lib" = callPackage @@ -151026,6 +158153,7 @@ self: { jailbreak = true; description = "Examples to accompany the book \"Parallel and Concurrent Programming in Haskell\""; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parport" = callPackage @@ -151037,6 +158165,7 @@ self: { libraryHaskellDepends = [ array base ]; description = "Simply interfacing the parallel port on linux"; license = "GPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "parse-dimacs" = callPackage @@ -151067,6 +158196,7 @@ self: { homepage = "http://github.com/gregwebs/cmdargs-help"; description = "generate command line arguments from a --help output"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parseargs_0_1_5_2" = callPackage @@ -151333,6 +158463,7 @@ self: { libraryHaskellDepends = [ base mtl parsec ]; homepage = "http://naesten.dyndns.org:8080/repos/parsely"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parser-helper" = callPackage @@ -151349,6 +158480,7 @@ self: { jailbreak = true; description = "Prints Haskell parse trees in JSON"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parser241" = callPackage @@ -151364,6 +158496,7 @@ self: { homepage = "https://github.com/YLiLarry/parser241"; description = "An interface to create production rules using augmented grammars"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parsergen" = callPackage @@ -151485,6 +158618,7 @@ self: { jailbreak = true; description = "NMR-STAR file format parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parsimony" = callPackage @@ -151498,6 +158632,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "partage" = callPackage + ({ mkDerivation, base, containers, data-lens-light, data-partition + , dawg-ord, HUnit, mmorph, mtl, pipes, PSQueue, random, tasty + , tasty-hunit, transformers, vector + }: + mkDerivation { + pname = "partage"; + version = "0.1.0.1"; + sha256 = "f421fbb635ab5839a28155895237fd4e4ed5db7d6a4f73461c7a5a0893501f76"; + libraryHaskellDepends = [ + base containers data-lens-light data-partition dawg-ord mmorph mtl + pipes PSQueue random transformers vector + ]; + testHaskellDepends = [ base containers HUnit tasty tasty-hunit ]; + homepage = "https://github.com/kawu/partage"; + description = "Parsing factorized"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "partial" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -151587,6 +158740,7 @@ self: { jailbreak = true; description = "Haskell 98 Partial Lenses"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "partial-uri" = callPackage @@ -151622,6 +158776,7 @@ self: { homepage = "https://github.com/startling/partly"; description = "Inspect, create, and alter MBRs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "passage" = callPackage @@ -151639,6 +158794,7 @@ self: { ]; description = "Parallel code generation for hierarchical Bayesian modeling"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "passwords" = callPackage @@ -151661,6 +158817,7 @@ self: { libraryHaskellDepends = [ base HTTP network ]; description = "Interface to the past.is URL shortening service"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pasty" = callPackage @@ -151675,6 +158832,7 @@ self: { homepage = "http://github.com/markusle/pasty/tree/master"; description = "A simple command line pasting utility"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "patch-combinators" = callPackage @@ -151766,7 +158924,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "path" = callPackage + "path_0_5_3" = callPackage ({ mkDerivation, base, exceptions, filepath, hspec, HUnit, mtl , template-haskell }: @@ -151780,6 +158938,23 @@ self: { testHaskellDepends = [ base hspec HUnit mtl ]; description = "Path"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "path" = callPackage + ({ mkDerivation, base, deepseq, exceptions, filepath, hspec, HUnit + , mtl, template-haskell + }: + mkDerivation { + pname = "path"; + version = "0.5.7"; + sha256 = "5b631abc6cedcb634ec6886d43291e01c694d8088c5faee13a3b64010beb05ab"; + libraryHaskellDepends = [ + base deepseq exceptions filepath template-haskell + ]; + testHaskellDepends = [ base hspec HUnit mtl ]; + description = "Support for well-typed paths"; + license = stdenv.lib.licenses.bsd3; }) {}; "path-extra" = callPackage @@ -151811,38 +158986,20 @@ self: { }) {}; "path-io" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, path - , temporary, time, transformers - }: - mkDerivation { - pname = "path-io"; - version = "0.3.1"; - sha256 = "b96763bd3a123a50341e003b2176a2fc72e93f8c9e717279cffe56fd824f693f"; - libraryHaskellDepends = [ - base directory exceptions filepath path temporary time transformers - ]; - homepage = "https://github.com/mrkkrp/path-io"; - description = "Interface to ‘directory’ package for users of ‘path’"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "path-io_1_0_1" = callPackage ({ mkDerivation, base, directory, exceptions, filepath, hspec, path , temporary, time, transformers }: mkDerivation { pname = "path-io"; - version = "1.0.1"; - sha256 = "92e4763c88c21d46d009baedb14eb724699b583bc6675b4513bb35186f421336"; + version = "1.1.0"; + sha256 = "b94af45683e0c39d259fac8cad906957b97991a3cdac45e067fd1dc9baebe59f"; libraryHaskellDepends = [ base directory exceptions filepath path temporary time transformers ]; testHaskellDepends = [ base exceptions hspec path ]; - jailbreak = true; homepage = "https://github.com/mrkkrp/path-io"; description = "Interface to ‘directory’ package for users of ‘path’"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "path-pieces_0_1_4" = callPackage @@ -151925,6 +159082,7 @@ self: { homepage = "http://github.com/TheBizzle"; description = "A toy pathfinding library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pathtype" = callPackage @@ -152012,6 +159170,7 @@ self: { homepage = "http://github.com/toschoo/mom"; description = "Common patterns in message-oriented applications"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "paymill" = callPackage @@ -152050,6 +159209,7 @@ self: { homepage = "https://github.com/fanjam/paypal-adaptive-hoops"; description = "Client for a limited part of PayPal's Adaptive Payments API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "paypal-api" = callPackage @@ -152068,6 +159228,7 @@ self: { homepage = "http://projects.haskell.org/paypal-api/"; description = "PayPal API, currently supporting \"ButtonManager\""; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pb" = callPackage @@ -152083,6 +159244,7 @@ self: { ]; description = "pastebin command line application"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pbc4hs" = callPackage @@ -152269,7 +159431,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pcre-heavy" = callPackage + "pcre-heavy_1_0_0_1" = callPackage ({ mkDerivation, base, base-compat, bytestring, doctest, Glob , pcre-light, semigroups, string-conversions, template-haskell }: @@ -152285,6 +159447,25 @@ self: { homepage = "https://github.com/myfreeweb/pcre-heavy"; description = "A regexp library on top of pcre-light you can actually use"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pcre-heavy" = callPackage + ({ mkDerivation, base, base-compat, bytestring, doctest, Glob + , pcre-light, semigroups, string-conversions, template-haskell + }: + mkDerivation { + pname = "pcre-heavy"; + version = "1.0.0.2"; + sha256 = "8a5cf697b7683127812450cef57d0d74ac5c1117ec80618d10509642f793cbd1"; + libraryHaskellDepends = [ + base base-compat bytestring pcre-light semigroups + string-conversions template-haskell + ]; + testHaskellDepends = [ base doctest Glob ]; + homepage = "https://github.com/myfreeweb/pcre-heavy"; + description = "A regexp library on top of pcre-light you can actually use"; + license = stdenv.lib.licenses.publicDomain; }) {}; "pcre-less" = callPackage @@ -152483,6 +159664,7 @@ self: { homepage = "https://github.com/Yuras/pdf-toolbox"; description = "Simple pdf viewer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "pdf2line" = callPackage @@ -152582,6 +159764,7 @@ self: { ]; description = "pdynload is polymorphic dynamic linking library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "peakachu" = callPackage @@ -152597,6 +159780,7 @@ self: { ]; description = "Experiemental library for composable interactive programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "peano" = callPackage @@ -152642,6 +159826,7 @@ self: { ]; description = "pec embedded compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pecoff" = callPackage @@ -152671,6 +159856,7 @@ self: { homepage = "http://github.com/HackerFoo/peg"; description = "a lazy non-deterministic concatenative programming language"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "peggy" = callPackage @@ -152711,6 +159897,7 @@ self: { homepage = "https://github.com/brunjlar/pell"; description = "Package to solve the Generalized Pell Equation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pem" = callPackage @@ -152771,6 +159958,7 @@ self: { homepage = "http://www.github.com/massysett/penny"; description = "Extensible double-entry accounting system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "penny-bin" = callPackage @@ -152791,6 +159979,7 @@ self: { homepage = "http://www.github.com/massysett/penny"; description = "Deprecated - use penny package instead"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "penny-lib" = callPackage @@ -152814,6 +160003,7 @@ self: { homepage = "http://www.github.com/massysett/penny"; description = "Deprecated - use penny package instead"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "peparser" = callPackage @@ -152826,6 +160016,7 @@ self: { homepage = "https://github.com/igraves/peparser-haskell"; description = "A parser for PE object files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "perceptron" = callPackage @@ -152868,6 +160059,7 @@ self: { homepage = "https://github.com/Cognimeta/perdure"; description = "Robust persistence for acyclic immutable data"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "period" = callPackage @@ -152906,6 +160098,7 @@ self: { homepage = "https://github.com/sonyandy/perm"; description = "permutation Applicative and Monad with many mtl instances"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "permutation" = callPackage @@ -152929,6 +160122,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Generalised permutation parser combinator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "persist2er" = callPackage @@ -153458,7 +160652,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent" = callPackage + "persistent_2_2_4" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring , blaze-html, blaze-markup, bytestring, conduit, containers , exceptions, fast-logger, hspec, http-api-data, lifted-base @@ -153489,6 +160683,41 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, multi-backend data serialization"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + + "persistent" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base64-bytestring + , blaze-html, blaze-markup, bytestring, conduit, containers + , exceptions, fast-logger, hspec, http-api-data, lifted-base + , monad-control, monad-logger, mtl, old-locale, path-pieces + , resource-pool, resourcet, scientific, silently, tagged + , template-haskell, text, time, transformers, transformers-base + , unordered-containers, vector + }: + mkDerivation { + pname = "persistent"; + version = "2.2.4.1"; + sha256 = "1473bdd952854d7f5fdb5896d2df07ef1ecf301c7fdb136054f49625329d50db"; + libraryHaskellDepends = [ + aeson attoparsec base base64-bytestring blaze-html blaze-markup + bytestring conduit containers exceptions fast-logger http-api-data + lifted-base monad-control monad-logger mtl old-locale path-pieces + resource-pool resourcet scientific silently tagged template-haskell + text time transformers transformers-base unordered-containers + vector + ]; + testHaskellDepends = [ + aeson attoparsec base base64-bytestring blaze-html bytestring + conduit containers fast-logger hspec http-api-data lifted-base + monad-control monad-logger mtl old-locale path-pieces resource-pool + resourcet scientific tagged template-haskell text time transformers + unordered-containers vector + ]; + homepage = "http://www.yesodweb.com/book/persistent"; + description = "Type-safe, multi-backend data serialization"; + license = stdenv.lib.licenses.mit; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -153531,6 +160760,7 @@ self: { ]; description = "Declare Persistent entities using SQL SELECT query syntax"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "persistent-instances-iproute" = callPackage @@ -153577,6 +160807,7 @@ self: { homepage = "http://darcs.monoid.at/persistent-map"; description = "A thread-safe (STM) persistency interface for finite map types"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "persistent-mongoDB_2_1_2" = callPackage @@ -154145,6 +161376,7 @@ self: { homepage = "https://github.com/mstone/persistent-protobuf"; description = "Template-Haskell helpers for integrating protobufs with persistent"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "persistent-ratelimit" = callPackage @@ -154378,7 +161610,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent-sqlite" = callPackage + "persistent-sqlite_2_2" = callPackage ({ mkDerivation, aeson, base, bytestring, conduit, containers , hspec, monad-control, monad-logger, old-locale, persistent , persistent-template, resourcet, text, time, transformers @@ -154400,6 +161632,32 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Backend for the persistent library using sqlite3"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + + "persistent-sqlite" = callPackage + ({ mkDerivation, aeson, base, bytestring, conduit, containers + , hspec, monad-control, monad-logger, old-locale, persistent + , persistent-template, resourcet, text, time, transformers + }: + mkDerivation { + pname = "persistent-sqlite"; + version = "2.2.1"; + sha256 = "bac71080bb25ad20b9116e42df463bbe230bacb2d963a5b101a501cff7fffc5e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring conduit containers monad-control monad-logger + old-locale persistent resourcet text time transformers + ]; + executableHaskellDepends = [ base monad-logger ]; + testHaskellDepends = [ + base hspec persistent persistent-template time transformers + ]; + homepage = "http://www.yesodweb.com/book/persistent"; + description = "Backend for the persistent library using sqlite3"; + license = stdenv.lib.licenses.mit; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -154665,7 +161923,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent-template" = callPackage + "persistent-template_2_1_5" = callPackage ({ mkDerivation, aeson, aeson-compat, base, bytestring, containers , ghc-prim, hspec, http-api-data, monad-control, monad-logger , path-pieces, persistent, QuickCheck, tagged, template-haskell @@ -154686,6 +161944,31 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, non-relational, multi-backend persistence"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + + "persistent-template" = callPackage + ({ mkDerivation, aeson, aeson-compat, base, bytestring, containers + , ghc-prim, hspec, http-api-data, monad-control, monad-logger + , path-pieces, persistent, QuickCheck, tagged, template-haskell + , text, transformers, unordered-containers + }: + mkDerivation { + pname = "persistent-template"; + version = "2.1.6"; + sha256 = "818a89a082bec8e812c69d2e5069468f61c23d769456736318836cbffac56653"; + libraryHaskellDepends = [ + aeson aeson-compat base bytestring containers ghc-prim + http-api-data monad-control monad-logger path-pieces persistent + tagged template-haskell text transformers unordered-containers + ]; + testHaskellDepends = [ + aeson base bytestring hspec persistent QuickCheck text transformers + ]; + homepage = "http://www.yesodweb.com/book/persistent"; + description = "Type-safe, non-relational, multi-backend persistence"; + license = stdenv.lib.licenses.mit; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -154788,6 +162071,7 @@ self: { homepage = "http://www.cs.chalmers.se/~aarne/pesca/"; description = "Proof Editor for Sequent Calculus"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "peyotls" = callPackage @@ -154815,6 +162099,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/peyotls/wiki"; description = "Pretty Easy YOshikuni-made TLS library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "peyotls-codec" = callPackage @@ -154834,6 +162119,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/peyotls/wiki"; description = "Codec parts of Pretty Easy YOshikuni-made TLS library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pez" = callPackage @@ -154852,6 +162138,7 @@ self: { homepage = "http://brandon.si/code/pez-zipper-library-released/"; description = "A Pretty Extraordinary Zipper library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pg-harness" = callPackage @@ -154872,6 +162159,7 @@ self: { homepage = "https://github.com/BardurArantsson/pg-harness"; description = "REST service and library for creating/consuming temporary PostgreSQL databases"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pg-harness-client" = callPackage @@ -154903,6 +162191,7 @@ self: { homepage = "https://github.com/BardurArantsson/pg-harness"; description = "REST service for creating temporary PostgreSQL databases"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pgdl" = callPackage @@ -154972,6 +162261,7 @@ self: { homepage = "https://github.com/chrisdone/pgsql-simple"; description = "A mid-level PostgreSQL client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pgstream" = callPackage @@ -154997,6 +162287,7 @@ self: { jailbreak = true; description = "Streaming Postgres bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "phantom-state" = callPackage @@ -155024,6 +162315,7 @@ self: { homepage = "http://github.com/glehel/phasechange"; description = "Freezing, thawing, and copy elision"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "phash" = callPackage @@ -155082,19 +162374,21 @@ self: { testHaskellDepends = [ base hspec ]; description = "ghci debug viewer with simple editor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "phone-numbers" = callPackage ({ mkDerivation, base, bytestring, phonenumber }: mkDerivation { pname = "phone-numbers"; - version = "0.0.3"; - sha256 = "ccd7b831b990d6d2d5377d7102cd7ad470fc375fe60d3b6861f62beefadbac81"; + version = "0.0.5"; + sha256 = "54cb314927e399b6a92e1ffbbbd34d52b8fb904f06b1a936b4f708081262f410"; libraryHaskellDepends = [ base bytestring ]; librarySystemDepends = [ phonenumber ]; homepage = "https://github.com/christian-marie/phone-numbers"; description = "Haskell bindings to the libphonenumber library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {phonenumber = null;}; "phone-push" = callPackage @@ -155113,6 +162407,7 @@ self: { homepage = "https://github.com/gurgeh/haskell-phone-push"; description = "Push notifications for Android and iOS"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "phonetic-code" = callPackage @@ -155142,6 +162437,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Phooey"; description = "Functional user interfaces"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "photoname" = callPackage @@ -155164,6 +162460,7 @@ self: { homepage = "http://hub.darcs.net/dino/photoname"; description = "Rename photo image files based on EXIF shoot date"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "phraskell" = callPackage @@ -155179,6 +162476,7 @@ self: { homepage = "https://github.com/skypers/phraskell"; description = "A fractal viewer"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "phybin" = callPackage @@ -155213,6 +162511,7 @@ self: { homepage = "http://www.cs.indiana.edu/~rrnewton/projects/phybin/"; description = "Utility for clustering phylogenetic trees in Newick format based on Robinson-Foulds distance"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pi-calculus" = callPackage @@ -155234,6 +162533,7 @@ self: { homepage = "https://github.com/renzyq19/pi-calculus"; description = "Applied pi-calculus interpreter"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pia-forward" = callPackage @@ -155280,6 +162580,7 @@ self: { ]; description = "Remotely controlling Java Swing applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "picologic" = callPackage @@ -155400,6 +162701,7 @@ self: { libraryHaskellDepends = [ array base containers Imlib mtl ]; description = "A Piet interpreter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "piki" = callPackage @@ -155414,6 +162716,7 @@ self: { homepage = "http://www.mew.org/~kazu/proj/piki/"; description = "Yet another text-to-html converter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pinboard" = callPackage @@ -155456,6 +162759,7 @@ self: { homepage = "https://github.com/abhinav/pinch"; description = "An alternative implementation of Thrift for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "pinchot_0_6_0_0" = callPackage @@ -155483,8 +162787,8 @@ self: { }: mkDerivation { pname = "pinchot"; - version = "0.12.0.0"; - sha256 = "5fbbb77f122dbb51fac0004b607b486e317df08b17dfcaccb8dd7d300f4980de"; + version = "0.14.0.0"; + sha256 = "5b7ff31987e51ff69fe75b950ac3b4d27c4d7b530b15ea3f8057b314834aad10"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -155672,7 +162976,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pipes-aeson" = callPackage + "pipes-aeson_0_4_1_5" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, pipes , pipes-attoparsec, pipes-bytestring, pipes-parse, transformers }: @@ -155687,6 +162991,24 @@ self: { homepage = "https://github.com/k0001/pipes-aeson"; description = "Encode and decode JSON streams using Aeson and Pipes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pipes-aeson" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, pipes + , pipes-attoparsec, pipes-bytestring, pipes-parse, transformers + }: + mkDerivation { + pname = "pipes-aeson"; + version = "0.4.1.6"; + sha256 = "fb91280e7e12c1ea1c78a36b264eafea707d08e7cd52c792a06b194ff78b03dc"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring pipes pipes-attoparsec + pipes-bytestring pipes-parse transformers + ]; + homepage = "https://github.com/k0001/pipes-aeson"; + description = "Encode and decode JSON streams using Aeson and Pipes"; + license = stdenv.lib.licenses.bsd3; }) {}; "pipes-async" = callPackage @@ -155989,6 +163311,7 @@ self: { homepage = "https://github.com/nikita-volkov/pipes-cereal-plus"; description = "A streaming serialization library on top of \"pipes\" and \"cereal-plus\""; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-cliff" = callPackage @@ -156074,6 +163397,7 @@ self: { homepage = "https://github.com/pcapriotti/pipes-extra"; description = "Conduit adapters"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-core" = callPackage @@ -156104,6 +163428,7 @@ self: { homepage = "http://github.com/kvanberendonck/pipes-courier"; description = "Pipes utilities for interfacing with the courier message-passing framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-csv" = callPackage @@ -156221,6 +163546,7 @@ self: { homepage = "https://github.com/jwiegley/pipes-files"; description = "Fast traversal of directory trees using pipes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "pipes-group_1_0_2" = callPackage @@ -156319,6 +163645,7 @@ self: { homepage = "https://github.com/marcinmrotek/key-value-csv"; description = "Streaming processing of CSV files preceded by key-value pairs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-mongodb" = callPackage @@ -156370,6 +163697,7 @@ self: { homepage = "https://github.com/k0001/pipes-network-tls"; description = "TLS-secured network connections support for pipes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-p2p" = callPackage @@ -156408,6 +163736,7 @@ self: { homepage = "https://github.com/jdnavarro/pipes-p2p-examples"; description = "Examples using pipes-p2p"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-parse_3_0_2" = callPackage @@ -156743,6 +164072,7 @@ self: { jailbreak = true; description = "A dependently typed core language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pit" = callPackage @@ -156767,6 +164097,7 @@ self: { homepage = "https://github.com/chiro/haskell-pit"; description = "Account management tool"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pitchtrack" = callPackage @@ -156868,6 +164199,7 @@ self: { executableHaskellDepends = [ base Cabal split ]; description = "Package dependency graph for installed packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pktree" = callPackage @@ -156908,23 +164240,6 @@ self: { }) {}; "plan-b" = callPackage - ({ mkDerivation, base, exceptions, hspec, path, path-io - , transformers - }: - mkDerivation { - pname = "plan-b"; - version = "0.1.0"; - sha256 = "46aa687c41c5b61302f5b968b8f3f7e2fd488013d6a2c05daa93f422bd50b107"; - libraryHaskellDepends = [ - base exceptions path path-io transformers - ]; - testHaskellDepends = [ base hspec path path-io ]; - homepage = "https://github.com/mrkkrp/plan-b"; - description = "Failure-tolerant file and directory editing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "plan-b_0_2_0" = callPackage ({ mkDerivation, base, exceptions, hspec, path, path-io , transformers }: @@ -156936,11 +164251,9 @@ self: { base exceptions path path-io transformers ]; testHaskellDepends = [ base hspec path path-io ]; - jailbreak = true; homepage = "https://github.com/mrkkrp/plan-b"; description = "Failure-tolerant file and directory editing"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "planar-graph" = callPackage @@ -156958,6 +164271,7 @@ self: { jailbreak = true; description = "A representation of planar graphs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "plat" = callPackage @@ -156971,6 +164285,7 @@ self: { ]; description = "Simple templating library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "playlists" = callPackage @@ -157026,6 +164341,7 @@ self: { ]; description = "Remote monad for editing plists"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "plivo" = callPackage @@ -157047,6 +164363,7 @@ self: { homepage = "https://github.com/singpolyma/plivo-haskell"; description = "Plivo API wrapper for Haskell"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "plot_0_2_3_4" = callPackage @@ -157080,6 +164397,7 @@ self: { homepage = "http://github.com/amcphail/plot"; description = "A plotting library, exportable as eps/pdf/svg/png or renderable with gtk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "plot-gtk_0_2_0_2" = callPackage @@ -157106,6 +164424,7 @@ self: { homepage = "http://code.haskell.org/plot"; description = "GTK plots and interaction with GHCi"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "plot-gtk-ui" = callPackage @@ -157122,6 +164441,7 @@ self: { homepage = "https://github.com/sumitsahrawat/plot-gtk-ui"; description = "A quick way to use Mathematica like Manipulation abilities"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "plot-gtk3_0_1" = callPackage @@ -157167,6 +164487,7 @@ self: { homepage = "http://code.haskell.org/plot"; description = "GTK3 plots and interaction with GHCi"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "plot-lab" = callPackage @@ -157184,6 +164505,7 @@ self: { homepage = "https://github.com/sumitsahrawat/plot-lab"; description = "A plotting tool with Mathematica like Manipulation abilities"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "plotfont" = callPackage @@ -157242,6 +164564,7 @@ self: { testHaskellDepends = [ base directory process ]; description = "Automatic recompilation and reloading of haskell modules"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "plugins-multistage" = callPackage @@ -157260,6 +164583,7 @@ self: { ]; description = "Dynamic linking for embedded DSLs with staged compilation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "plumbers" = callPackage @@ -157271,6 +164595,7 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Pointless plumbing combinators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ply-loader" = callPackage @@ -157290,6 +164615,7 @@ self: { executableHaskellDepends = [ base bytestring linear vector ]; description = "PLY file loader"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "png-file" = callPackage @@ -157321,6 +164647,7 @@ self: { ]; description = "Pure Haskell loader for PNG images"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pngload-fixed" = callPackage @@ -157332,6 +164659,7 @@ self: { libraryHaskellDepends = [ array base bytestring mtl parsec zlib ]; description = "Pure Haskell loader for PNG images"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pnm" = callPackage @@ -157377,6 +164705,7 @@ self: { ]; description = "Multi-backend (zookeeper and sqlite) DNS Server using persistent-library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pointed_4_1" = callPackage @@ -157593,6 +164922,7 @@ self: { homepage = "http://haskell.di.uminho.pt/wiki/Pointless+Lenses"; description = "Pointless Lenses library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pointless-rewrite" = callPackage @@ -157608,6 +164938,7 @@ self: { ]; description = "Pointless Rewrite library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "poker-eval" = callPackage @@ -157663,6 +164994,7 @@ self: { testHaskellDepends = [ base containers HUnit MissingH mtl parsec ]; description = "Fork of ConfigFile for Polar Game Engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "polar-shader" = callPackage @@ -157695,6 +165027,7 @@ self: { homepage = "https://github.com/kawu/polh/tree/master/lexicon"; description = "A library for manipulating the historical dictionary of Polish (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "polimorf" = callPackage @@ -157840,6 +165173,7 @@ self: { ]; description = "Polynomial types and operations"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "polynomial" = callPackage @@ -157931,6 +165265,7 @@ self: { executableHaskellDepends = [ cgi free-theorems utf8-string xhtml ]; description = "Taming Selective Strictness"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "polysoup" = callPackage @@ -157956,6 +165291,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Typeable for polymorphic types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "polytypeable-utils" = callPackage @@ -157967,6 +165303,7 @@ self: { libraryHaskellDepends = [ base haskell98 polytypeable ]; description = "Utilities for polytypeable"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ponder" = callPackage @@ -157993,6 +165330,7 @@ self: { homepage = "http://github.com/RobertFischer/pong-server#readme"; description = "A simple embedded pingable server that runs in the background"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pontarius-mediaserver" = callPackage @@ -158013,6 +165351,7 @@ self: { homepage = "http://www.pontarius.org/projects/pontarius-mediaserver/"; description = "Extended Personal Media Network (XPMN) media server"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pontarius-xmpp" = callPackage @@ -158052,6 +165391,7 @@ self: { homepage = "https://github.com/pontarius/pontarius-xmpp/"; description = "An XMPP client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pontarius-xpmn" = callPackage @@ -158069,6 +165409,7 @@ self: { homepage = "http://www.pontarius.org/projects/pontarius-xpmn/"; description = "Extended Personal Media Network (XPMN) library"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pony" = callPackage @@ -158098,6 +165439,7 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Thread-safe resource pools. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pool-conduit" = callPackage @@ -158117,6 +165459,7 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Resource pool allocations via ResourceT. (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pooled-io" = callPackage @@ -158160,6 +165503,7 @@ self: { homepage = "http://www.haskell.org/~petersen/haskell/popenhs/"; description = "popenhs is a popen-like library for Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "poppler" = callPackage @@ -158179,6 +165523,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs"; description = "Binding to the Poppler"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {gdk2 = null; inherit (pkgs) gdk_pixbuf; inherit (pkgs.gnome) pango; inherit (pkgs) poppler;}; @@ -158216,6 +165561,7 @@ self: { homepage = "http://code.haskell.org/portaudio"; description = "Haskell bindings for the PortAudio library"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) portaudio;}; "porte" = callPackage @@ -158233,6 +165579,7 @@ self: { ]; description = "FreeBSD ports index search and analysis tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "porter" = callPackage @@ -158244,6 +165591,7 @@ self: { libraryHaskellDepends = [ haskell2010 ]; description = "Implementation of the Porter stemming algorithm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ports" = callPackage @@ -158256,6 +165604,7 @@ self: { homepage = "http://www.cse.unsw.edu.au/~chak/haskell/ports/"; description = "The Haskell Ports Library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ports-tools" = callPackage @@ -158298,6 +165647,7 @@ self: { homepage = "https://github.com/tensor5/posix-acl"; description = "Support for Posix ACL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) acl;}; "posix-escape" = callPackage @@ -158372,6 +165722,7 @@ self: { libraryHaskellDepends = [ base bytestring unix ]; description = "POSIX Realtime functionality"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "posix-timer" = callPackage @@ -158384,6 +165735,7 @@ self: { homepage = "https://github.com/mvv/posix-timer"; description = "Bindings to POSIX clock and timer functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "posix-waitpid" = callPackage @@ -158395,6 +165747,7 @@ self: { libraryHaskellDepends = [ base unix ]; description = "Low-level wrapping of POSIX waitpid(2)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "possible" = callPackage @@ -159066,6 +166419,7 @@ self: { homepage = "https://github.com/tolysz/postgresql-simple-typed"; description = "Typed extension for PostgreSQL simple"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "postgresql-simple-url" = callPackage @@ -159108,50 +166462,56 @@ self: { homepage = "https://github.com/dylex/postgresql-typed"; description = "A PostgreSQL access library with compile-time SQL type inference"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "postgrest" = callPackage - ({ mkDerivation, aeson, base, base64-string, bytestring - , case-insensitive, cassava, containers, errors, hasql - , hasql-backend, hasql-postgres, heredoc, hlint, hspec, hspec-wai - , hspec-wai-json, HTTP, http-types, jwt, MissingH - , optparse-applicative, packdeps, parsec, process, Ranged-sets - , regex-tdfa, safe, scientific, string-conversions, text, time - , transformers, unix, unordered-containers, vector, wai, wai-cors - , wai-extra, wai-middleware-static, warp + ({ mkDerivation, aeson, async, base, base64-string, bytestring + , case-insensitive, cassava, containers, contravariant, errors + , hasql, hasql-pool, hasql-transaction, heredoc, hspec, hspec-wai + , hspec-wai-json, HTTP, http-types, interpolatedstring-perl6, jwt + , monad-control, mtl, optparse-applicative, parsec, process + , Ranged-sets, regex-tdfa, safe, scientific, string-conversions + , text, time, transformers, transformers-base, unix + , unordered-containers, vector, wai, wai-cors, wai-extra + , wai-middleware-static, warp }: mkDerivation { pname = "postgrest"; - version = "0.3.0.2"; - sha256 = "5ce3b9b85a51ca6cb3aecc9e1ba84047ab276915c1c0293d2bf91d252c4ee366"; + version = "0.3.1.0"; + sha256 = "592a36bac9f78bfea68acd78f50c188223890fc6509c5f239dc05debd4c94191"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base bytestring case-insensitive cassava containers errors - hasql hasql-backend hasql-postgres HTTP http-types jwt MissingH - optparse-applicative parsec Ranged-sets regex-tdfa safe scientific - string-conversions text time unordered-containers vector wai - wai-cors wai-extra wai-middleware-static + aeson base bytestring case-insensitive cassava containers + contravariant errors hasql hasql-pool hasql-transaction HTTP + http-types interpolatedstring-perl6 jwt mtl optparse-applicative + parsec Ranged-sets regex-tdfa safe scientific string-conversions + text time unordered-containers vector wai wai-cors wai-extra + wai-middleware-static ]; executableHaskellDepends = [ - aeson base bytestring case-insensitive cassava containers errors - hasql hasql-backend hasql-postgres HTTP http-types jwt MissingH - optparse-applicative parsec Ranged-sets regex-tdfa safe scientific - string-conversions text time transformers unix unordered-containers - vector wai wai-cors wai-extra wai-middleware-static warp + aeson base bytestring case-insensitive cassava containers + contravariant errors hasql hasql-pool hasql-transaction HTTP + http-types interpolatedstring-perl6 jwt mtl optparse-applicative + parsec Ranged-sets regex-tdfa safe scientific string-conversions + text time unix unordered-containers vector wai wai-cors wai-extra + wai-middleware-static warp ]; testHaskellDepends = [ - aeson base base64-string bytestring case-insensitive cassava - containers errors hasql hasql-backend hasql-postgres heredoc hlint - hspec hspec-wai hspec-wai-json HTTP http-types jwt MissingH - optparse-applicative packdeps parsec process Ranged-sets regex-tdfa - safe scientific string-conversions text time unordered-containers - vector wai wai-cors wai-extra wai-middleware-static + aeson async base base64-string bytestring case-insensitive cassava + containers contravariant errors hasql hasql-pool hasql-transaction + heredoc hspec hspec-wai hspec-wai-json HTTP http-types + interpolatedstring-perl6 jwt monad-control mtl optparse-applicative + parsec process Ranged-sets regex-tdfa safe scientific + string-conversions text time transformers transformers-base unix + unordered-containers vector wai wai-cors wai-extra + wai-middleware-static warp ]; - jailbreak = true; homepage = "https://github.com/begriffs/postgrest"; description = "REST API for any Postgres database"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "postie" = callPackage @@ -159174,6 +166534,7 @@ self: { ]; description = "SMTP server library to receive emails from within Haskell programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "postmark" = callPackage @@ -159215,6 +166576,7 @@ self: { homepage = "http://github.com/peti/postmaster"; description = "Postmaster ESMTP Server"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) adns; inherit (pkgs) openssl;}; "potato-tool" = callPackage @@ -159269,6 +166631,7 @@ self: { homepage = "http://neugierig.org/software/darcs/powermate/"; description = "PowerMate bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "powerpc" = callPackage @@ -159281,6 +166644,7 @@ self: { homepage = "http://tomahawkins.org"; description = "Tools for PowerPC programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ppm" = callPackage @@ -159306,6 +166670,7 @@ self: { homepage = "http://hub.darcs.net/shelarcy/pqc"; description = "Parallel batch driver for QuickCheck"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pqueue_1_2_1" = callPackage @@ -159360,6 +166725,7 @@ self: { jailbreak = true; description = "Fully encapsulated monad transformers with queuelike functionality"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "practice-room" = callPackage @@ -159378,6 +166744,7 @@ self: { homepage = "http://github.com/nfjinjing/practice-room"; description = "Practice Room"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "precis" = callPackage @@ -159398,6 +166765,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Diff Cabal packages"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pred-trie_0_2_0" = callPackage @@ -159545,6 +166913,7 @@ self: { homepage = "http://www.github.com/massysett/prednote"; description = "Tests and QuickCheck generators to accompany prednote"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prefix-units_0_1_0_2" = callPackage @@ -159612,6 +166981,7 @@ self: { jailbreak = true; description = "A library for building a prefork-style server quickly"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pregame" = callPackage @@ -159631,6 +167001,7 @@ self: { homepage = "https://github.com/jxv/pregame"; description = "Prelude counterpart"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prelude-edsl" = callPackage @@ -159693,6 +167064,7 @@ self: { jailbreak = true; description = "Another kind of alternate Prelude file"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prelude-plus" = callPackage @@ -159706,6 +167078,7 @@ self: { libraryHaskellDepends = [ base utf8-string ]; description = "Prelude for rest of us"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prelude-prime" = callPackage @@ -159749,6 +167122,7 @@ self: { jailbreak = true; description = "Preprocess Haskell Repositories"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "preprocessor-tools" = callPackage @@ -159778,7 +167152,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "present" = callPackage + "present_2_2" = callPackage ({ mkDerivation, aeson, atto-lisp, base, bytestring, data-default , mtl, semigroups, text }: @@ -159794,6 +167168,20 @@ self: { jailbreak = true; description = "Make presentations for data types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "present" = callPackage + ({ mkDerivation, base, template-haskell }: + mkDerivation { + pname = "present"; + version = "4.0.0"; + sha256 = "358a493eaa38e27a46f9cf51e762225c004dd6069a9c96645524b409104e203f"; + libraryHaskellDepends = [ base template-haskell ]; + homepage = "https://github.com/chrisdone/present"; + description = "Make presentations for data types"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "press" = callPackage @@ -159806,6 +167194,7 @@ self: { homepage = "http://github.com/bickfordb/text-press"; description = "Text template library targeted at the web / HTML generation"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "presto-hdbc" = callPackage @@ -159866,17 +167255,6 @@ self: { }) {}; "pretty-compact" = callPackage - ({ mkDerivation, base }: - mkDerivation { - pname = "pretty-compact"; - version = "1.0"; - sha256 = "5659d0a11a2a4651b1d2b9dc0c9359c767c7aceba5b0ea56035742c778dbde4c"; - libraryHaskellDepends = [ base ]; - description = "Pretty-printing library"; - license = "GPL"; - }) {}; - - "pretty-compact_2_0" = callPackage ({ mkDerivation, base, containers }: mkDerivation { pname = "pretty-compact"; @@ -159885,7 +167263,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Pretty-printing library"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pretty-error" = callPackage @@ -160130,6 +167507,7 @@ self: { libraryHaskellDepends = [ base ghc-prim primitive vector ]; description = "SIMD data types and functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "primula-board" = callPackage @@ -160152,6 +167530,7 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/primula"; description = "ImageBoard on Happstack and HSP"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "primula-bot" = callPackage @@ -160171,6 +167550,7 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/primula"; description = "Jabber-bot for primula-board ImageBoard"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "print-debugger" = callPackage @@ -160183,6 +167563,7 @@ self: { homepage = "https://github.com/JohnReedLOL/HaskellPrintDebugger"; description = "Debug print formatting library"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "printf-mauke" = callPackage @@ -160199,6 +167580,7 @@ self: { ]; description = "A Perl printf like formatter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "printxosd" = callPackage @@ -160213,6 +167595,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/printxosd"; description = "Simple tool to display some text on an on-screen display"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "priority-queue" = callPackage @@ -160226,6 +167609,7 @@ self: { homepage = "http://code.haskell.org/~mokus/priority-queue"; description = "Simple implementation of a priority queue"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "priority-sync" = callPackage @@ -160319,6 +167703,7 @@ self: { ]; description = "Parse process information for Linux"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "process_1_4_2_0" = callPackage @@ -160473,6 +167858,7 @@ self: { homepage = "https://github.com/garious/process-iterio"; description = "IterIO Process Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "process-leksah" = callPackage @@ -160485,6 +167871,7 @@ self: { jailbreak = true; description = "Process libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "process-listlike" = callPackage @@ -160503,6 +167890,7 @@ self: { homepage = "https://github.com/ddssff/process-listlike"; description = "Process extras"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "process-progress" = callPackage @@ -160520,6 +167908,7 @@ self: { homepage = "https://src.seereason.com/process-progress"; description = "Run a process and do reportsing on its progress"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "process-qq" = callPackage @@ -160538,6 +167927,7 @@ self: { homepage = "http://github.com/tanakh/process-qq"; description = "Quasi-Quoters for exec process"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "process-streaming" = callPackage @@ -160588,6 +167978,7 @@ self: { jailbreak = true; description = "Web graphic applications with processing.js."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "processor-creative-kit" = callPackage @@ -160615,6 +168006,7 @@ self: { libraryHaskellDepends = [ base procrastinating-variable ]; description = "Pure structures that can be incrementally created in impure code"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "procrastinating-variable" = callPackage @@ -160627,6 +168019,7 @@ self: { homepage = "http://github.com/gcross/procrastinating-variable"; description = "Haskell values that cannot be evaluated immediately"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "procstat" = callPackage @@ -160640,6 +168033,7 @@ self: { homepage = "http://closure.ath.cx/procstat"; description = "get information on processes in Linux"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "proctest" = callPackage @@ -160768,6 +168162,7 @@ self: { homepage = "http://antiope.com/downloads.html"; description = "Convert GHC profiles into GraphViz's dot format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prof2pretty" = callPackage @@ -160921,6 +168316,7 @@ self: { libraryHaskellDepends = [ base time ]; description = "Simple progress tracking & projection library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "progressbar" = callPackage @@ -160935,6 +168331,7 @@ self: { executableHaskellDepends = [ base ]; description = "Progressbar API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "progression" = callPackage @@ -160953,6 +168350,7 @@ self: { homepage = "http://chplib.wordpress.com/2010/02/04/progression-supporting-optimisation-in-haskell/"; description = "Automates the recording and graphing of criterion benchmarks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "progressive" = callPackage @@ -160973,6 +168371,7 @@ self: { homepage = "https://bitbucket.org/gchrupala/progression"; description = "Multilabel classification model which learns sequentially (online)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "proj4-hs-bindings" = callPackage @@ -160985,6 +168384,7 @@ self: { librarySystemDepends = [ proj ]; description = "Haskell bindings for the Proj4 C dynamic library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) proj;}; "project-template_0_1_4_2" = callPackage @@ -161074,6 +168474,7 @@ self: { homepage = "https://github.com/Erdwolf/prolog"; description = "A Prolog interpreter written in Haskell"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prolog-graph" = callPackage @@ -161093,6 +168494,7 @@ self: { homepage = "https://github.com/Erdwolf/prolog"; description = "A command line tool to visualize query resolution in Prolog"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prolog-graph-lib" = callPackage @@ -161105,6 +168507,7 @@ self: { homepage = "https://github.com/Erdwolf/prolog"; description = "Generating images of resolution trees for Prolog queries"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prologue" = callPackage @@ -161126,6 +168529,24 @@ self: { homepage = "https://github.com/wdanilo/prologue"; description = "Better, more general Prelude exporting common utilities"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "prometheus" = callPackage + ({ mkDerivation, atomic-primops, base, bytestring, containers + , http-types, mtl, text, transformers, wai, warp + }: + mkDerivation { + pname = "prometheus"; + version = "0.2.0"; + sha256 = "6e053e03c30eb591d3e5467058c8fede0b56c961a2d8511cbd4fcf1b99b09c8a"; + libraryHaskellDepends = [ + atomic-primops base bytestring containers http-types mtl text + transformers wai warp + ]; + homepage = "http://github.com/LukeHoersten/prometheus#readme"; + description = "Prometheus Haskell Client"; + license = stdenv.lib.licenses.bsd3; }) {}; "prometheus-client" = callPackage @@ -161215,6 +168636,7 @@ self: { ]; description = "Functional synthesis of images and animations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "propellor" = callPackage @@ -161286,6 +168708,7 @@ self: { homepage = "http://www-users.cs.york.ac.uk/~ndm/proplang/"; description = "A library for functional GUI development"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "props" = callPackage @@ -161323,13 +168746,16 @@ self: { ({ mkDerivation, alsaLib, base, c2hs }: mkDerivation { pname = "proteaaudio"; - version = "0.6.2"; - sha256 = "96d690393cd95ed803b79399996355f54e9480e38f8440d1744eee932f785e81"; + version = "0.6.4"; + sha256 = "a0343bff81c0920c75cd24b8a5ff2d16ad0e3fdd4b285f65e611dcac0ced4f32"; + revision = "1"; + editedCabalFile = "44188158887c112fc181793db917e4ca4ffdb8f6889f25e36cc262aeba7877a3"; libraryHaskellDepends = [ base ]; librarySystemDepends = [ alsaLib ]; libraryToolDepends = [ c2hs ]; - description = "A wrapper for the proteaaudio library"; + description = "Simple audio library for Windows, Linux, OSX"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) alsaLib;}; "protobuf" = callPackage @@ -161377,6 +168803,7 @@ self: { homepage = "https://github.com/nicta/protobuf-native"; description = "Protocol Buffers via C++"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "protocol-buffers_2_1_4" = callPackage @@ -161469,7 +168896,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "protocol-buffers" = callPackage + "protocol-buffers_2_1_12" = callPackage ({ mkDerivation, array, base, binary, bytestring, containers , directory, filepath, mtl, parsec, syb, utf8-string }: @@ -161484,9 +168911,10 @@ self: { homepage = "https://github.com/k-bx/protocol-buffers"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "protocol-buffers_2_2_0" = callPackage + "protocol-buffers" = callPackage ({ mkDerivation, array, base, binary, bytestring, containers , directory, filepath, mtl, parsec, syb, utf8-string }: @@ -161501,6 +168929,23 @@ self: { homepage = "https://github.com/k-bx/protocol-buffers"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; + }) {}; + + "protocol-buffers_2_3_0" = callPackage + ({ mkDerivation, array, base, binary, bytestring, containers + , directory, filepath, mtl, parsec, syb, utf8-string + }: + mkDerivation { + pname = "protocol-buffers"; + version = "2.3.0"; + sha256 = "46ace772d0bea68026a12c72d175f54f4fe4d63be0fcd806406c6b7b0c45fdad"; + libraryHaskellDepends = [ + array base binary bytestring containers directory filepath mtl + parsec syb utf8-string + ]; + homepage = "https://github.com/k-bx/protocol-buffers"; + description = "Parse Google Protocol Buffer specifications"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -161584,7 +169029,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "protocol-buffers-descriptor" = callPackage + "protocol-buffers-descriptor_2_1_12" = callPackage ({ mkDerivation, base, bytestring, containers, protocol-buffers }: mkDerivation { pname = "protocol-buffers-descriptor"; @@ -161593,12 +169038,14 @@ self: { libraryHaskellDepends = [ base bytestring containers protocol-buffers ]; + jailbreak = true; homepage = "https://github.com/k-bx/protocol-buffers"; description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "protocol-buffers-descriptor_2_2_0" = callPackage + "protocol-buffers-descriptor" = callPackage ({ mkDerivation, base, bytestring, containers, protocol-buffers }: mkDerivation { pname = "protocol-buffers-descriptor"; @@ -161607,6 +169054,20 @@ self: { libraryHaskellDepends = [ base bytestring containers protocol-buffers ]; + homepage = "https://github.com/k-bx/protocol-buffers"; + description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "protocol-buffers-descriptor_2_3_0" = callPackage + ({ mkDerivation, base, bytestring, containers, protocol-buffers }: + mkDerivation { + pname = "protocol-buffers-descriptor"; + version = "2.3.0"; + sha256 = "54a2ee0eedb1be7a5b9de25750b9f5aef021491081460acee444f07998dccdaf"; + libraryHaskellDepends = [ + base bytestring containers protocol-buffers + ]; jailbreak = true; homepage = "https://github.com/k-bx/protocol-buffers"; description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; @@ -161628,6 +169089,7 @@ self: { homepage = "http://darcs.factisresearch.com/pub/protocol-buffers-fork/"; description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "protocol-buffers-fork" = callPackage @@ -161645,6 +169107,7 @@ self: { homepage = "http://darcs.factisresearch.com/pub/protocol-buffers-fork/"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "proton-haskell" = callPackage @@ -161696,6 +169159,7 @@ self: { homepage = "https://github.com/prove-everywhere/server"; description = "The server for ProveEverywhere"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "proxied" = callPackage @@ -161721,6 +169185,7 @@ self: { homepage = "https://github.com/jberryman/proxy-kindness"; description = "A library for kind-polymorphic manipulation and inspection of Proxy values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "psc-ide_0_5_0" = callPackage @@ -161826,6 +169291,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "psql-helpers" = callPackage + ({ mkDerivation, base, postgresql-simple }: + mkDerivation { + pname = "psql-helpers"; + version = "0.1.0.0"; + sha256 = "f13ca642072477d3ab0246c514e3fc78e0c5cb419345240fbad994ed2a3219f4"; + libraryHaskellDepends = [ base postgresql-simple ]; + homepage = "http://github.com/agrafix/psql-helpers#readme"; + description = "A small collection of helper functions to generate postgresql queries"; + license = stdenv.lib.licenses.mit; + }) {}; + "psqueues_0_2_0_2" = callPackage ({ mkDerivation, array, base, deepseq, ghc-prim, hashable, HUnit , QuickCheck, tagged, test-framework, test-framework-hunit @@ -161902,6 +169379,7 @@ self: { jailbreak = true; description = "Pipe stdin to a redis pub/sub channel"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "publicsuffix_0_20151212" = callPackage @@ -161922,8 +169400,8 @@ self: { ({ mkDerivation, base, filepath, hspec, template-haskell }: mkDerivation { pname = "publicsuffix"; - version = "0.20160223"; - sha256 = "7e14ff029a010b45aebb8343559df27640ea123ac15fca6d7eff28ef273f9ab0"; + version = "0.20160320"; + sha256 = "e2d2e1a75eb71742d338f3a5c49673121c07a12ea268671cedf801d70020e344"; libraryHaskellDepends = [ base filepath template-haskell ]; testHaskellDepends = [ base hspec ]; homepage = "https://github.com/wereHamster/publicsuffix-haskell/"; @@ -161968,6 +169446,7 @@ self: { homepage = "https://github.com/litherum/publicsuffixlist"; description = "Create the publicsuffixlist package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pubnub" = callPackage @@ -162002,6 +169481,7 @@ self: { homepage = "http://github.com/pubnub/haskell"; description = "PubNub Haskell SDK"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pubsub" = callPackage @@ -162022,6 +169502,7 @@ self: { homepage = "http://projects.haskell.org/pubsub/"; description = "A library for Google/SixApart pubsub hub interaction"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "puffytools" = callPackage @@ -162052,6 +169533,7 @@ self: { homepage = "https://github.com/pharpend/puffytools"; description = "A CLI assistant"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pugixml" = callPackage @@ -162070,6 +169552,7 @@ self: { homepage = "https://github.com/philopon/pugixml-hs"; description = "pugixml binding"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "pugs-DrIFT" = callPackage @@ -162104,6 +169587,7 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Fast, lightweight YAML loader and dumper"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pugs-compat" = callPackage @@ -162135,6 +169619,7 @@ self: { homepage = "http://repetae.net/john/computer/haskell/hsregex/"; description = "Haskell PCRE binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pulse-simple" = callPackage @@ -162147,6 +169632,7 @@ self: { librarySystemDepends = [ libpulseaudio ]; description = "binding to Simple API of pulseaudio"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) libpulseaudio;}; "punkt" = callPackage @@ -162166,6 +169652,7 @@ self: { homepage = "https://github.com/bryant/punkt"; description = "Multilingual unsupervised sentence tokenization with Punkt"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "punycode" = callPackage @@ -162204,6 +169691,7 @@ self: { homepage = "http://lpuppet.banquise.net"; description = "A program that displays the puppet resources associated to a node given .pp files."; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pure-cdb" = callPackage @@ -162597,6 +170085,23 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "purescript-bridge" = callPackage + ({ mkDerivation, base, Cabal, containers, directory, filepath + , generic-deriving, HUnit, text + }: + mkDerivation { + pname = "purescript-bridge"; + version = "0.3.0.6"; + sha256 = "40f8d1499b86c0bca75f581b163c7eab9a29db144e18049064958f364503f886"; + libraryHaskellDepends = [ + base containers directory filepath generic-deriving text + ]; + testHaskellDepends = [ base Cabal HUnit ]; + description = "Generate PureScript data types from Haskell data types"; + license = stdenv.lib.licenses.agpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + }) {}; + "purescript-bundle-fast" = callPackage ({ mkDerivation, base, containers, directory, filepath , optparse-applicative, text, vector @@ -162637,6 +170142,7 @@ self: { homepage = "http://gsoc2013cwithmobiledevices.blogspot.com.ar/"; description = "A server-side library for sending push notifications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "push-notify-ccs" = callPackage @@ -162657,6 +170163,7 @@ self: { homepage = "http://gsoc2013cwithmobiledevices.blogspot.com.ar/"; description = "A server-side library for sending/receiving push notifications through CCS (Google Cloud Messaging)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "push-notify-general" = callPackage @@ -162676,6 +170183,7 @@ self: { homepage = "http://gsoc2013cwithmobiledevices.blogspot.com.ar/"; description = "A general library for sending/receiving push notif. through dif. services."; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pusher-haskell" = callPackage @@ -162779,6 +170287,7 @@ self: { homepage = "https://github.com/jwiegley/pushme"; description = "Tool to synchronize multiple directories with rsync, zfs or git-annex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "putlenses" = callPackage @@ -162796,6 +170305,7 @@ self: { jailbreak = true; description = "Put-based lens library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "puzzle-draw" = callPackage @@ -162825,6 +170335,7 @@ self: { ]; description = "Creating graphics for pencil puzzles"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "puzzle-draw-cmdline" = callPackage @@ -162844,6 +170355,7 @@ self: { jailbreak = true; description = "Creating graphics for pencil puzzles, command line tools"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pvd" = callPackage @@ -162864,6 +170376,7 @@ self: { homepage = "http://code.haskell.org/pvd"; description = "A photo viewer daemon application with remote controlling abilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libdevil;}; "pwstore-cli" = callPackage @@ -162987,6 +170500,7 @@ self: { jailbreak = true; description = "Serialization/deserialization using Python Pickle format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "qc-oi-testgenerator" = callPackage @@ -163014,6 +170528,7 @@ self: { librarySystemDepends = [ qd ]; description = "double-double and quad-double number type via libqd"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {qd = null;}; "qd-vec" = callPackage @@ -163025,6 +170540,7 @@ self: { libraryHaskellDepends = [ base qd Vec ]; description = "'Vec' instances for 'qd' types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "qed" = callPackage @@ -163043,6 +170559,7 @@ self: { homepage = "https://github.com/ndmitchell/qed#readme"; description = "Simple prover"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "qhull-simple" = callPackage @@ -163056,6 +170573,7 @@ self: { homepage = "http://nonempty.org/software/haskell-qhull-simple"; description = "Simple bindings to Qhull, a library for computing convex hulls"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) qhull;}; "qrcode" = callPackage @@ -163084,6 +170602,7 @@ self: { homepage = "http://github.com/keerastudios/hsQt"; description = "Qt bindings"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {qtc_core = null; qtc_gui = null; qtc_network = null; qtc_opengl = null; qtc_script = null; qtc_tools = null;}; @@ -163107,6 +170626,7 @@ self: { homepage = "https://github.com/ion1/quadratic-irrational"; description = "An implementation of quadratic irrationals"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quandl-api_0_2_0_0" = callPackage @@ -163199,6 +170719,7 @@ self: { homepage = "http://github.com/luqui/quantum-arrow"; description = "An embedding of quantum computation as a Haskell arrow"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "qudb" = callPackage @@ -163218,6 +170739,7 @@ self: { homepage = "https://github.com/jstepien/qudb"; description = "Quite Useless DB"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quenya-verb" = callPackage @@ -163240,6 +170762,7 @@ self: { jailbreak = true; description = "Quenya verb conjugator"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "querystring-pickle" = callPackage @@ -163257,6 +170780,7 @@ self: { ]; description = "Picklers for de/serialising Generic data types to and from query strings"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "questioner" = callPackage @@ -163297,6 +170821,7 @@ self: { libraryHaskellDepends = [ array base containers mtl stateful-mtl ]; description = "A library of queuelike data structures, both functional and stateful"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quick-generator" = callPackage @@ -163475,6 +171000,7 @@ self: { ]; description = "Automating QuickCheck for polymorphic and overlaoded properties"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickcheck-properties" = callPackage @@ -163562,6 +171088,7 @@ self: { homepage = "http://github.com/tcrayford/rematch"; description = "QuickCheck support for rematch"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickcheck-script" = callPackage @@ -163696,6 +171223,7 @@ self: { homepage = "http://www.github.com/massysett/quickpull"; description = "Generate Main module with QuickCheck tests"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickset" = callPackage @@ -163707,6 +171235,7 @@ self: { libraryHaskellDepends = [ base vector vector-algorithms ]; description = "Very fast and memory-compact query-only set and map structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickspec" = callPackage @@ -163739,6 +171268,7 @@ self: { homepage = "https://github.com/davidsiegel/quicktest"; description = "A reflective batch tester for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickwebapp" = callPackage @@ -163865,6 +171395,7 @@ self: { homepage = "https://github.com/talw/quoridor-hs"; description = "A Quoridor implementation in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "qux" = callPackage @@ -163885,6 +171416,7 @@ self: { homepage = "https://github.com/qux-lang/qux"; description = "Command line binary for working with the Qux language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rabocsv2qif" = callPackage @@ -163899,6 +171431,7 @@ self: { executableHaskellDepends = [ base ]; description = "A library and program to create QIF files from Rabobank CSV exports"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rad" = callPackage @@ -163912,6 +171445,7 @@ self: { homepage = "http://comonad.com/reader/"; description = "Reverse Automatic Differentiation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "radian" = callPackage @@ -163945,6 +171479,7 @@ self: { homepage = "https://github.com/klangner/radium"; description = "Chemistry"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "radium-formula-parser" = callPackage @@ -163962,6 +171497,7 @@ self: { homepage = "https://github.com/klangner/radium-formula-parser"; description = "Chemistry"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "radix" = callPackage @@ -163998,6 +171534,7 @@ self: { homepage = "github"; description = "librados haskell bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {rados = null;}; "rail-compiler-editor" = callPackage @@ -164021,6 +171558,7 @@ self: { homepage = "https://github.com/SWP-Ubau-SoSe2014-Haskell/SWPSoSe14"; description = "Compiler and editor for the esolang rail"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rainbow_0_20_0_4" = callPackage @@ -164084,6 +171622,7 @@ self: { homepage = "http://www.github.com/massysett/rainbow"; description = "Tests and QuickCheck generators to accompany rainbow"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rainbox_0_18_0_2" = callPackage @@ -164176,6 +171715,7 @@ self: { homepage = "http://github.com/YoEight/rakhana"; description = "Stream based PDF library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ralist" = callPackage @@ -164187,6 +171727,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Random access list with a list compatible interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rallod" = callPackage @@ -164199,6 +171740,7 @@ self: { homepage = "http://github.com/moonmaster9000/rallod"; description = "'$' in reverse"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "raml" = callPackage @@ -164226,6 +171768,7 @@ self: { libraryHaskellDepends = [ array base IntervalMap mtl random ]; description = "Random variable library, with Functor, Applicative and Monad instances"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "randfile" = callPackage @@ -164244,6 +171787,7 @@ self: { ]; description = "Program for picking a random file"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "random_1_0_1_1" = callPackage @@ -164279,6 +171823,7 @@ self: { libraryHaskellDepends = [ array base containers ]; description = "Random-access lists in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "random-derive" = callPackage @@ -164303,6 +171848,7 @@ self: { jailbreak = true; description = "A simple random generator library for extensible-effects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "random-effin" = callPackage @@ -164315,6 +171861,7 @@ self: { jailbreak = true; description = "A simple random generator library for effin"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "random-extras" = callPackage @@ -164387,6 +171934,7 @@ self: { homepage = "https://github.com/srijs/random-hypergeometric"; description = "Random variate generation from hypergeometric distributions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "random-shuffle" = callPackage @@ -164427,6 +171975,7 @@ self: { libraryHaskellDepends = [ base binary bytestring random ]; description = "An infinite stream of random data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "random-tree" = callPackage @@ -164446,21 +171995,26 @@ self: { }) {}; "random-variates" = callPackage - ({ mkDerivation, base, containers, directory, erf, HUnit, lens, mtl - , random, reinterpret-cast + ({ mkDerivation, base, binary, bytestring, containers, directory + , erf, HUnit, lens, mtl, random, reinterpret-cast }: mkDerivation { pname = "random-variates"; - version = "0.1.1.0"; - sha256 = "9f2107e834a7c66e1e2fe37097d0a8e839221a86b03d2eab355a6b7bfeb3573b"; + version = "0.1.3.0"; + sha256 = "a2a4a5b450c9d33a60565dfd34645e0af970bcc87e60985c7387eeab75e255c4"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ - base containers erf lens mtl random reinterpret-cast + base binary bytestring containers erf lens mtl random + reinterpret-cast ]; + executableHaskellDepends = [ base ]; testHaskellDepends = [ base directory HUnit ]; jailbreak = true; homepage = "https://bitbucket.org/kpratt/random-variate"; description = "\"Uniform RNG => Non-Uniform RNGs\""; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "randomgen" = callPackage @@ -164575,6 +172129,7 @@ self: { libraryHaskellDepends = [ base containers primitive vector ]; description = "Linear range-min algorithms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ranges" = callPackage @@ -164819,8 +172374,8 @@ self: { }: mkDerivation { pname = "ratel"; - version = "0.1.0"; - sha256 = "f8e5fb6d8cf3840b67bde9ceda4768405f50dcc3c1f60b003ae42332ffc6f735"; + version = "0.1.2"; + sha256 = "fb84658a310ff52cdff01b2186989929a6deb5e4cd1ed6877357302c3c09fcc1"; libraryHaskellDepends = [ aeson base bytestring case-insensitive containers http-client http-client-tls http-types text uuid @@ -164837,8 +172392,8 @@ self: { }: mkDerivation { pname = "ratel-wai"; - version = "0.1.0"; - sha256 = "3047004b1953bd0a7d1132144fd1aa13870ed9736c965ebf1b4f706e3202b429"; + version = "0.1.1"; + sha256 = "687dde2f720a53d17d60fa3b91bac1bb12b5dd896b5d8603d6f5cfbe1502614c"; libraryHaskellDepends = [ base bytestring case-insensitive containers http-client ratel wai ]; @@ -164893,6 +172448,7 @@ self: { homepage = "http://bitbucket.org/dpwiz/raven-haskell"; description = "Sentry http interface for Scotty web server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "raw-strings-qq_1_0_2" = callPackage @@ -164964,6 +172520,7 @@ self: { homepage = "http://malde.org/~ketil/"; description = "Mask nucleotide (EST) sequences in Fasta format"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rclient" = callPackage @@ -165001,6 +172558,7 @@ self: { homepage = "http://github.com/ekmett/rcu/"; description = "Read-Copy-Update for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rdf4h" = callPackage @@ -165032,6 +172590,7 @@ self: { homepage = "https://github.com/robstewart57/rdf4h"; description = "A library for RDF processing in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rdioh" = callPackage @@ -165054,6 +172613,7 @@ self: { ]; description = "A Haskell wrapper for Rdio's API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rdtsc" = callPackage @@ -165091,6 +172651,7 @@ self: { homepage = "https://john-millikin.com/software/haskell-re2/"; description = "Bindings to the re2 regular expression library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "react-flux" = callPackage @@ -165099,8 +172660,8 @@ self: { }: mkDerivation { pname = "react-flux"; - version = "1.0.3"; - sha256 = "b30f88e08577f8fd9375fe71d0e3a8dcd4452b5c8e0019d93b6a5146715d3710"; + version = "1.0.5"; + sha256 = "8860c51eae2ffa297ac9cd44758d4c99351cc59823945446708c9aa9d86e689e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -165144,6 +172705,7 @@ self: { homepage = "http://wiki.github.com/paolino/realogic"; description = "pluggable pure logic serializable reactor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive" = callPackage @@ -165161,6 +172723,7 @@ self: { homepage = "http://haskell.org/haskellwiki/reactive"; description = "Push-pull functional reactive programming"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-bacon" = callPackage @@ -165174,6 +172737,7 @@ self: { homepage = "http://github.com/raimohanska/reactive-bacon"; description = "FRP (functional reactive programming) framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-balsa" = callPackage @@ -165196,6 +172760,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Reactive-balsa"; description = "Programmatically edit MIDI events via ALSA and reactive-banana"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-banana" = callPackage @@ -165236,6 +172801,7 @@ self: { homepage = "https://github.com/JPMoresmau/reactive-banana-sdl"; description = "Reactive Banana bindings for SDL"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-banana-sdl2" = callPackage @@ -165249,6 +172815,7 @@ self: { homepage = "http://github.com/cies/reactive-banana-sdl2#readme"; description = "Reactive Banana integration with SDL2"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "reactive-banana-threepenny" = callPackage @@ -165264,6 +172831,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Reactive-banana"; description = "Examples for the reactive-banana library, using threepenny-gui"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-banana-wx" = callPackage @@ -165281,6 +172849,7 @@ self: { homepage = "http://wiki.haskell.org/Reactive-banana"; description = "Examples for the reactive-banana library, using wxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "reactive-fieldtrip" = callPackage @@ -165298,6 +172867,7 @@ self: { homepage = "http://haskell.org/haskellwiki/reactive-fieldtrip"; description = "Connect Reactive and FieldTrip"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-glut" = callPackage @@ -165314,6 +172884,7 @@ self: { homepage = "http://haskell.org/haskellwiki/reactive-glut"; description = "Connects Reactive and GLUT"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-haskell" = callPackage @@ -165354,8 +172925,31 @@ self: { homepage = "https://github.com/strager/reactive-thread"; description = "Reactive programming via imperative threads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "reactivity" = callPackage + ({ mkDerivation, array, base, bmp, bytestring, comonad + , ConcurrentUtils, containers, Displayable, ghc-prim, list-extras + , monad-loops, monads-tf, parallel, random, time, transformers + , Win32 + }: + mkDerivation { + pname = "reactivity"; + version = "0.2.3.0"; + sha256 = "0ba202222b8c196f14576988abe35644d7895db68f128bc8ad042b6bc314f07d"; + libraryHaskellDepends = [ + array base bmp bytestring comonad ConcurrentUtils containers + Displayable ghc-prim list-extras monad-loops monads-tf parallel + random time transformers Win32 + ]; + jailbreak = true; + homepage = "http://haskell.org/haskellwiki/reactive"; + description = "(Yet another) alternate implementation of push-pull FRP. This is based on the Reactive package (http://haskell.org/haskellwiki/reactive)."; + license = "unknown"; + broken = true; + }) {Displayable = null;}; + "reactor" = callPackage ({ mkDerivation, array, base, bits-atomic, comonad, contravariant , mtl, semigroupoids, transformers @@ -165372,6 +172966,7 @@ self: { homepage = "http://comonad.com/reader/"; description = "Reactor - task parallel reactive programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "read-bounded" = callPackage @@ -165477,6 +173072,7 @@ self: { homepage = "http://website-ckkashyap.rhcloud.com"; description = "A really simple XML parser"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reasonable-lens" = callPackage @@ -165489,6 +173085,7 @@ self: { homepage = "https://github.com/tokiwoousaka/reasonable-lens"; description = "Lens implementation. It is more small but adequately."; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reasonable-operational" = callPackage @@ -165514,8 +173111,8 @@ self: { }: mkDerivation { pname = "rebase"; - version = "0.5"; - sha256 = "005c556d164d4debc2770f91a66d5f67413a88e3343aab563ceca8de61308707"; + version = "0.5.1"; + sha256 = "e5cab23afd40971c4ff0e5feb0eedd7ff84ba9c73e807a9d7451cea8e64c5a80"; libraryHaskellDepends = [ base base-prelude bifunctors bytestring containers contravariant contravariant-extras deepseq dlist either fail hashable mtl @@ -165572,6 +173169,7 @@ self: { homepage = "https://github.com/nikita-volkov/record-aeson"; description = "Instances of \"aeson\" classes for the \"record\" types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "record-gl" = callPackage @@ -165595,6 +173193,7 @@ self: { ]; description = "Utilities for working with OpenGL's GLSL shading language and Nikita Volkov's \"Record\"s"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "record-preprocessor" = callPackage @@ -165615,6 +173214,7 @@ self: { homepage = "https://github.com/nikita-volkov/record-preprocessor"; description = "Compiler preprocessor introducing a syntactic extension for anonymous records"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "record-syntax" = callPackage @@ -165637,6 +173237,7 @@ self: { homepage = "https://github.com/nikita-volkov/record-syntax"; description = "A library for parsing and processing the Haskell syntax sprinkled with anonymous records"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "records" = callPackage @@ -165649,6 +173250,7 @@ self: { homepage = "http://darcs.wolfgang.jeltsch.info/haskell/records"; description = "A flexible record system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "records-th" = callPackage @@ -165667,6 +173269,7 @@ self: { homepage = "github.com/lassoinc/records-th"; description = "Template Haskell declarations for the records package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "recursion-schemes" = callPackage @@ -165697,6 +173300,7 @@ self: { homepage = "https://github.com/joeyadams/haskell-recursive-line-count"; description = "Count lines in files and display them hierarchically"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "redHandlers" = callPackage @@ -165715,6 +173319,7 @@ self: { jailbreak = true; description = "Monadic HTTP request handlers combinators to build a standalone web apps"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reddit" = callPackage @@ -165858,6 +173463,25 @@ self: { license = "unknown"; }) {}; + "redis-resp_0_4_0" = callPackage + ({ mkDerivation, attoparsec, base, bytestring + , bytestring-conversion, containers, dlist, double-conversion + , operational, semigroups, split, transformers + }: + mkDerivation { + pname = "redis-resp"; + version = "0.4.0"; + sha256 = "8bc0d592843e05c37a3fda22255daca74f1c17c4e4a7951531accd45cd2a9232"; + libraryHaskellDepends = [ + attoparsec base bytestring bytestring-conversion containers dlist + double-conversion operational semigroups split transformers + ]; + homepage = "https://gitlab.com/twittner/redis-resp/"; + description = "REdis Serialization Protocol (RESP) implementation"; + license = stdenv.lib.licenses.mpl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "redis-simple" = callPackage ({ mkDerivation, base, binary, bytestring, redis }: mkDerivation { @@ -165975,35 +173599,29 @@ self: { }) {}; "reedsolomon" = callPackage - ({ mkDerivation, base, bytestring, bytestring-mmap, clock - , criterion, deepseq, exceptions, filepath, gitrev, loop, mtl - , optparse-applicative, primitive, profunctors, QuickCheck, random - , statistics, tasty, tasty-ant-xml, tasty-hunit, tasty-quickcheck - , vector + ({ mkDerivation, base, bytestring, exceptions, gitrev, loop, mtl + , primitive, profunctors, QuickCheck, random, tasty, tasty-ant-xml + , tasty-hunit, tasty-quickcheck, vector }: mkDerivation { pname = "reedsolomon"; - version = "0.0.3.0"; - sha256 = "553b52e35c3d8890673ec7053dde4d2187b121ac6191019a47477a38b72b902e"; + version = "0.0.4.0"; + sha256 = "40498e946a71155b078d307d11803800f1a4df0777dd1ba8c3cf6e6c5689b7e9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring exceptions gitrev loop mtl primitive profunctors vector ]; - executableHaskellDepends = [ - base bytestring bytestring-mmap clock criterion deepseq filepath - optparse-applicative random statistics vector - ]; testHaskellDepends = [ base bytestring exceptions loop mtl primitive profunctors QuickCheck random tasty tasty-ant-xml tasty-hunit tasty-quickcheck vector ]; - jailbreak = true; homepage = "http://github.com/NicolasT/reedsolomon"; description = "Reed-Solomon Erasure Coding in Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reenact" = callPackage @@ -166017,6 +173635,7 @@ self: { ]; description = "A reimplementation of the Reactive library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "reexport-crypto-random" = callPackage @@ -166040,6 +173659,7 @@ self: { homepage = "https://bitbucket.org/carter/ref"; description = "Generic Mutable Ref Abstraction Layer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ref-fd" = callPackage @@ -166174,6 +173794,7 @@ self: { homepage = "https://github.com/Raynes/refh"; description = "A command-line tool for pasting to https://www.refheap.com"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "refined" = callPackage @@ -166309,6 +173930,7 @@ self: { homepage = "http://github.com/jfischoff/reflection-extras"; description = "Utilities for the reflection package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reflection-without-remorse" = callPackage @@ -166386,6 +174008,7 @@ self: { ]; description = "Functional Reactive Web Apps with Reflex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "reflex-dom-contrib" = callPackage @@ -166405,6 +174028,7 @@ self: { homepage = "https://github.com/reflex-frp/reflex-dom-contrib"; description = "A playground for experimenting with infrastructure and common code for reflex applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reflex-gloss" = callPackage @@ -166421,6 +174045,7 @@ self: { homepage = "https://github.com/reflex-frp/reflex-gloss"; description = "An reflex interface for gloss"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "reflex-gloss-scene" = callPackage @@ -166450,6 +174075,24 @@ self: { homepage = "https://github.com/saulzar/reflex-gloss-scene"; description = "A simple scene-graph using reflex and gloss"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + }) {}; + + "reflex-orphans" = callPackage + ({ mkDerivation, base, deepseq, dependent-map, mtl, ref-tf, reflex + , tasty, tasty-hunit, these + }: + mkDerivation { + pname = "reflex-orphans"; + version = "0.1.0.2"; + sha256 = "ab8d8fdfb0c97f2622adc1d40af05fd1818220e59b901ec491369d99c8a8a33f"; + libraryHaskellDepends = [ base reflex these ]; + testHaskellDepends = [ + base deepseq dependent-map mtl ref-tf reflex tasty tasty-hunit + ]; + description = "Useful missing instances for Reflex"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reflex-transformers" = callPackage @@ -166693,6 +174336,7 @@ self: { homepage = "http://code.google.com/p/xhaskell-regex-deriv/"; description = "Replaces/Enhances Text.Regex. Implementing regular expression matching using Brzozowski's Deriviatives"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regex-dfa" = callPackage @@ -166705,6 +174349,7 @@ self: { homepage = "http://sourceforge.net/projects/lazy-regex"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regex-easy" = callPackage @@ -166752,6 +174397,7 @@ self: { homepage = "http://sourceforge.net/projects/lazy-regex"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regex-pcre" = callPackage @@ -166791,8 +174437,8 @@ self: { }: mkDerivation { pname = "regex-pderiv"; - version = "0.1.4"; - sha256 = "05de6d0794c4515c6f5dc340d9bf7b4ea8c59eb4592306c9f0342ff268a4df39"; + version = "0.2.0"; + sha256 = "e42dc7036dcba32203aa301b082598d62bfb26c90ed24312a38cc693a4cf4bba"; libraryHaskellDepends = [ base bitset bytestring containers deepseq ghc-prim mtl parallel parsec regex-base @@ -166800,6 +174446,7 @@ self: { homepage = "http://code.google.com/p/xhaskell-library/"; description = "Replaces/Enhances Text.Regex. Implementing regular expression matching using Antimirov's partial derivatives."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regex-posix" = callPackage @@ -166958,6 +174605,7 @@ self: { jailbreak = true; description = "This combines regex-tdfa with utf8-string to allow searching over UTF8 encoded lazy bytestrings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regex-tre" = callPackage @@ -166971,6 +174619,7 @@ self: { homepage = "http://sourceforge.net/projects/lazy-regex"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) tre;}; "regex-xmlschema" = callPackage @@ -166984,6 +174633,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Regular_expressions_for_XML_Schema"; description = "A regular expression library for W3C XML Schema regular expressions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regexchar" = callPackage @@ -167006,6 +174656,7 @@ self: { homepage = "http://functionalley.eu/RegExChar/regExChar.html"; description = "A POSIX, extended regex-engine"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regexdot" = callPackage @@ -167018,6 +174669,7 @@ self: { homepage = "http://functionalley.eu/RegExDot/regExDot.html"; description = "A polymorphic, POSIX, extended regex-engine"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regexp-tries" = callPackage @@ -167035,6 +174687,7 @@ self: { homepage = "http://github.com/baldo/regexp-tries"; description = "Regular Expressions on Tries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regexpr" = callPackage @@ -167074,6 +174727,7 @@ self: { homepage = "http://code.haskell.org/~morrow/code/haskell/regexqq"; description = "A quasiquoter for PCRE regexes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regional-pointers" = callPackage @@ -167090,6 +174744,7 @@ self: { homepage = "https://github.com/basvandijk/regional-pointers/"; description = "Regional memory pointers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regions" = callPackage @@ -167107,6 +174762,7 @@ self: { homepage = "https://github.com/basvandijk/regions/"; description = "Provides the region monad for safely opening and working with scarce resources"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regions-monadsfd" = callPackage @@ -167123,6 +174779,7 @@ self: { jailbreak = true; description = "Monads-fd instances for the RegionT monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regions-monadstf" = callPackage @@ -167140,6 +174797,7 @@ self: { homepage = "https://github.com/basvandijk/regions-monadstf/"; description = "Monads-tf instances for the RegionT monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regions-mtl" = callPackage @@ -167153,6 +174811,7 @@ self: { homepage = "https://github.com/basvandijk/regions-mtl/"; description = "mtl instances for the RegionT monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regress" = callPackage @@ -167202,6 +174861,7 @@ self: { jailbreak = true; description = "Additional functions for regular: arbitrary, coarbitrary, and binary get/put"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regular-web" = callPackage @@ -167219,6 +174879,7 @@ self: { homepage = "http://github.com/chriseidhof/regular-web"; description = "Generic programming for the web"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regular-xmlpickler" = callPackage @@ -167246,6 +174907,7 @@ self: { homepage = "https://github.com/mrVanDalo/reheat"; description = "to make notes and reduce impact on idle time on writing other programms"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rehoo" = callPackage @@ -167283,6 +174945,7 @@ self: { homepage = "https://github.com/kerkomen/rei"; description = "Process lists easily"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reified-records" = callPackage @@ -167296,6 +174959,7 @@ self: { homepage = "http://bitbucket.org/jozefg/reified-records"; description = "Reify records to Maps and back again"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reify" = callPackage @@ -167312,6 +174976,7 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; description = "Serialize data"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reinterpret-cast" = callPackage @@ -167325,6 +174990,7 @@ self: { homepage = "https://github.com/nh2/reinterpret-cast"; description = "Memory reinterpretation casts for Float/Double and Word32/Word64"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "relacion" = callPackage @@ -167527,6 +175193,7 @@ self: { ]; description = "Cloud Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "remote-debugger" = callPackage @@ -167568,6 +175235,7 @@ self: { jailbreak = true; description = "Remote Monad implementation of the JSON RPC protocol"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "remote-json-client" = callPackage @@ -167585,6 +175253,7 @@ self: { ]; description = "Web client wrapper for remote-json"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "remote-json-server" = callPackage @@ -167602,6 +175271,7 @@ self: { ]; description = "Web server wrapper for remote-json"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "remote-monad" = callPackage @@ -167658,6 +175328,7 @@ self: { homepage = "https://github.com/nikita-volkov/remotion"; description = "A library for client-server applications based on custom protocols"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "renderable" = callPackage @@ -167697,6 +175368,7 @@ self: { jailbreak = true; description = "Define compound types that do not depend on member order"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa_3_3_1_2" = callPackage @@ -167807,6 +175479,7 @@ self: { homepage = "http://repa.ouroborus.net"; description = "Bulk array representations and operators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-bytestring" = callPackage @@ -167825,14 +175498,14 @@ self: { "repa-convert" = callPackage ({ mkDerivation, base, bytestring, double-conversion, primitive - , repa-scalar, vector + , repa-scalar, text, vector }: mkDerivation { pname = "repa-convert"; - version = "4.2.0.1"; - sha256 = "3421d87e0d743a1454084f3e1172dcebd050895c98a675efcbe3899a1793fd78"; + version = "4.2.1.1"; + sha256 = "dd29b6c83fdfa9d4d7ea63c61c8d43fdbaea606700c4b64cf71f62a5b3e72292"; libraryHaskellDepends = [ - base bytestring double-conversion primitive repa-scalar vector + base bytestring double-conversion primitive repa-scalar text vector ]; jailbreak = true; homepage = "http://repa.ouroborus.net"; @@ -167933,6 +175606,7 @@ self: { homepage = "http://repa.ouroborus.net"; description = "Data-parallel data flows"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-io_3_3_1_2" = callPackage @@ -168014,18 +175688,19 @@ self: { jailbreak = true; description = "Data Flow Fusion GHC Plugin"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-scalar" = callPackage ({ mkDerivation, base, bytestring, double-conversion, primitive - , vector + , time, vector }: mkDerivation { pname = "repa-scalar"; - version = "4.2.0.1"; - sha256 = "c6190f1886a5c9ce27e2fdc5bd62f8aeeace9771d1abed23fc598a0854277ed5"; + version = "4.2.1.1"; + sha256 = "bdaa0994af4acc9c8e5a4431da10ca44f4bd28b9e81b5e854f2b69f4a437c34a"; libraryHaskellDepends = [ - base bytestring double-conversion primitive vector + base bytestring double-conversion primitive time vector ]; jailbreak = true; homepage = "http://repa.ouroborus.net"; @@ -168043,6 +175718,7 @@ self: { jailbreak = true; description = "Series Expressionss API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-sndfile" = callPackage @@ -168064,6 +175740,7 @@ self: { ]; description = "Reading and writing sound files with repa arrays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "repa-stream" = callPackage @@ -168077,6 +175754,7 @@ self: { homepage = "http://repa.ouroborus.net"; description = "Stream functions not present in the vector library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-v4l2" = callPackage @@ -168097,6 +175775,7 @@ self: { homepage = "https://github.com/cgo/hsimage"; description = "Provides high-level access to webcams"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repl" = callPackage @@ -168112,6 +175791,7 @@ self: { homepage = "https://github.com/mikeplus64/repl"; description = "IRC friendly REPL library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repl-toolkit" = callPackage @@ -168137,8 +175817,8 @@ self: { ({ mkDerivation, base, containers, haskeline, mtl, process }: mkDerivation { pname = "repline"; - version = "0.1.4.0"; - sha256 = "32ae73f4343e5b4a0530259a5b23f35ff784d00e62a6adb50dc656ff2e1d119b"; + version = "0.1.5.0"; + sha256 = "9e807cf92d5f8a8e68787f6d93597bac41ace50997305105451bf852ce7ce3a4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base containers haskeline mtl ]; @@ -168173,6 +175853,7 @@ self: { homepage = "https://github.com/saep/repo-based-blog"; description = "Blogging module using blaze html for markup"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repr" = callPackage @@ -168190,6 +175871,7 @@ self: { homepage = "https://github.com/basvandijk/repr"; description = "Render overloaded expressions to their textual representation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repr-tree-syb" = callPackage @@ -168223,6 +175905,7 @@ self: { homepage = "http://github.com/ekmett/representable-functors/"; description = "Representable functors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "representable-profunctors" = callPackage @@ -168256,6 +175939,24 @@ self: { homepage = "http://github.com/ekmett/representable-tries/"; description = "Tries from representations of polynomial functors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "reqcatcher" = callPackage + ({ mkDerivation, base, http-client, http-types, HUnit, lens + , network, tasty, tasty-hunit, text, wai, warp, wreq + }: + mkDerivation { + pname = "reqcatcher"; + version = "0.1.0.0"; + sha256 = "75d70008df0589e4455b5932d09cfb098dd9aee0006dab8516d0483562d59151"; + libraryHaskellDepends = [ base http-types network text wai warp ]; + testHaskellDepends = [ + base http-client http-types HUnit lens tasty tasty-hunit wai wreq + ]; + homepage = "http://github.com/hiratara/hs-reqcatcher"; + description = "A local http server to catch the HTTP redirect"; + license = stdenv.lib.licenses.bsd3; }) {}; "request-monad" = callPackage @@ -168396,6 +176097,7 @@ self: { homepage = "http://hub.darcs.net/thielema/resistor-cube"; description = "Compute total resistance of a cube of resistors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "resolve-trivial-conflicts_0_3_2_1" = callPackage @@ -168470,6 +176172,7 @@ self: { homepage = "https://bitbucket.org/tdammers/resource-embed"; description = "Embed data files via C and FFI"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "resource-pool_0_2_3_1" = callPackage @@ -168558,6 +176261,7 @@ self: { jailbreak = true; description = "Allocate resources which are guaranteed to be released"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "resourcet_1_1_3_1" = callPackage @@ -168619,7 +176323,6 @@ self: { transformers transformers-base transformers-compat ]; testHaskellDepends = [ base hspec lifted-base transformers ]; - jailbreak = true; homepage = "http://github.com/snoyberg/conduit"; description = "Deterministic allocation and freeing of scarce resources"; license = stdenv.lib.licenses.bsd3; @@ -168640,7 +176343,6 @@ self: { transformers transformers-base transformers-compat ]; testHaskellDepends = [ base hspec lifted-base transformers ]; - jailbreak = true; homepage = "http://github.com/snoyberg/conduit"; description = "Deterministic allocation and freeing of scarce resources"; license = stdenv.lib.licenses.bsd3; @@ -168661,7 +176363,6 @@ self: { transformers transformers-base transformers-compat ]; testHaskellDepends = [ base hspec lifted-base transformers ]; - jailbreak = true; homepage = "http://github.com/snoyberg/conduit"; description = "Deterministic allocation and freeing of scarce resources"; license = stdenv.lib.licenses.bsd3; @@ -168682,7 +176383,6 @@ self: { transformers transformers-base transformers-compat ]; testHaskellDepends = [ base hspec lifted-base transformers ]; - jailbreak = true; homepage = "http://github.com/snoyberg/conduit"; description = "Deterministic allocation and freeing of scarce resources"; license = stdenv.lib.licenses.bsd3; @@ -168709,7 +176409,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "resourcet" = callPackage + "resourcet_1_1_7_2" = callPackage ({ mkDerivation, base, containers, exceptions, hspec, lifted-base , mmorph, monad-control, mtl, transformers, transformers-base , transformers-compat @@ -168726,6 +176426,26 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Deterministic allocation and freeing of scarce resources"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "resourcet" = callPackage + ({ mkDerivation, base, containers, exceptions, hspec, lifted-base + , mmorph, monad-control, mtl, transformers, transformers-base + , transformers-compat + }: + mkDerivation { + pname = "resourcet"; + version = "1.1.7.3"; + sha256 = "fccc5a897abb38156e61c801e8e0eba29f31a8ec1ad81598dec134ed1c20e1bf"; + libraryHaskellDepends = [ + base containers exceptions lifted-base mmorph monad-control mtl + transformers transformers-base transformers-compat + ]; + testHaskellDepends = [ base hspec lifted-base transformers ]; + homepage = "http://github.com/snoyberg/conduit"; + description = "Deterministic allocation and freeing of scarce resources"; + license = stdenv.lib.licenses.bsd3; }) {}; "respond" = callPackage @@ -168756,6 +176476,7 @@ self: { homepage = "https://github.com/raptros/respond"; description = "process and route HTTP requests and generate responses on top of WAI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rest-client_0_4_0_1" = callPackage @@ -168888,7 +176609,6 @@ self: { monad-control mtl resourcet rest-types tostring transformers transformers-base transformers-compat uri-encode utf8-string ]; - jailbreak = true; description = "Utility library for use in generated API client libraries"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -168911,7 +176631,6 @@ self: { monad-control mtl resourcet rest-types tostring transformers transformers-base transformers-compat uri-encode utf8-string ]; - jailbreak = true; description = "Utility library for use in generated API client libraries"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -169929,6 +177648,7 @@ self: { jailbreak = true; homepage = "https://github.com/ozataman/restful-snap"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "restricted-workers" = callPackage @@ -169949,6 +177669,7 @@ self: { homepage = "https://github.com/co-dan/interactive-diagrams/wiki/Restricted-Workers"; description = "Running worker processes under system resource restrictions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "restyle" = callPackage @@ -169964,6 +177685,7 @@ self: { jailbreak = true; description = "Convert between camel case and separated words style"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "resumable-exceptions" = callPackage @@ -169976,6 +177698,7 @@ self: { jailbreak = true; description = "A monad transformer for resumable exceptions"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rethinkdb_2_2_0_2" = callPackage @@ -170199,6 +177922,7 @@ self: { homepage = "http://github.com/seanhess/rethinkdb-model"; description = "Useful tools for modeling data with rethinkdb"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rethinkdb-wereHamster" = callPackage @@ -170419,6 +178143,7 @@ self: { homepage = "http://www.github.com/massysett/rewrite"; description = "open file and rewrite it with new contents"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rewriting" = callPackage @@ -170430,6 +178155,7 @@ self: { libraryHaskellDepends = [ base containers regular ]; description = "Generic rewriting library for regular datatypes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rex" = callPackage @@ -170465,6 +178191,7 @@ self: { jailbreak = true; description = "Github resume generator"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rfc3339" = callPackage @@ -170509,9 +178236,10 @@ self: { homepage = "https://github.com/fumieval/rhythm-game-tutorial"; description = "Haskell rhythm game tutorial"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "riak" = callPackage + "riak_0_9_1_1" = callPackage ({ mkDerivation, aeson, attoparsec, base, binary, blaze-builder , bytestring, containers, enclosed-exceptions, exceptions, HUnit , mersenne-random-pure64, monad-control, network, protocol-buffers @@ -170533,10 +178261,61 @@ self: { base bytestring containers HUnit QuickCheck tasty tasty-hunit tasty-quickcheck text ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/markhibberd/riak-haskell-client"; description = "A Haskell client for the Riak decentralized data store"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "riak" = callPackage + ({ mkDerivation, aeson, attoparsec, base, binary, blaze-builder + , bytestring, containers, data-default-class, deepseq + , enclosed-exceptions, exceptions, hashable, HUnit + , mersenne-random-pure64, monad-control, mtl, network + , protocol-buffers, pureMD5, QuickCheck, random, random-shuffle + , resource-pool, riak-protobuf, semigroups, tasty, tasty-hunit + , tasty-quickcheck, text, time, transformers, unordered-containers + , vector + }: + mkDerivation { + pname = "riak"; + version = "1.0.0.1"; + sha256 = "9d8a75de0ca371cb842bafe49358ae6309ed484b976aa87e15ddf2d77e64cc87"; + libraryHaskellDepends = [ + aeson attoparsec base binary blaze-builder bytestring containers + data-default-class deepseq enclosed-exceptions exceptions hashable + mersenne-random-pure64 monad-control network protocol-buffers + pureMD5 random random-shuffle resource-pool riak-protobuf + semigroups text time transformers unordered-containers vector + ]; + testHaskellDepends = [ + base bytestring containers data-default-class HUnit mtl QuickCheck + semigroups tasty tasty-hunit tasty-quickcheck text + ]; + doCheck = false; + homepage = "http://github.com/markhibberd/riak-haskell-client"; + description = "A Haskell client for the Riak decentralized data store"; + license = "unknown"; + }) {}; + + "riak-protobuf_0_20_0_0" = callPackage + ({ mkDerivation, array, base, parsec, protocol-buffers + , protocol-buffers-descriptor + }: + mkDerivation { + pname = "riak-protobuf"; + version = "0.20.0.0"; + sha256 = "542a99d75a67863d7be5d4c74178945ffbd5e0269ac69d6b81a76dd51b7176ae"; + libraryHaskellDepends = [ + array base parsec protocol-buffers protocol-buffers-descriptor + ]; + jailbreak = true; + homepage = "http://github.com/markhibberd/riak-haskell-client"; + description = "Haskell types for the Riak protocol buffer API"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "riak-protobuf" = callPackage @@ -170545,8 +178324,8 @@ self: { }: mkDerivation { pname = "riak-protobuf"; - version = "0.20.0.0"; - sha256 = "542a99d75a67863d7be5d4c74178945ffbd5e0269ac69d6b81a76dd51b7176ae"; + version = "0.21.0.0"; + sha256 = "cfa49952f54a80ebb4fdc9cc35190b8226b01b0a21b50c9da309548fa367e39a"; libraryHaskellDepends = [ array base parsec protocol-buffers protocol-buffers-descriptor ]; @@ -170646,6 +178425,7 @@ self: { homepage = "http://modeemi.fi/~tuomov/riot/"; description = "Riot is an Information Organisation Tool"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ncurses;}; "ripple" = callPackage @@ -170666,6 +178446,7 @@ self: { homepage = "https://github.com/singpolyma/ripple-haskell"; description = "Ripple payment system library"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ripple-federation" = callPackage @@ -170684,6 +178465,7 @@ self: { homepage = "https://github.com/singpolyma/ripple-federation-haskell"; description = "Utilities and types to work with the Ripple federation protocol"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "risc386" = callPackage @@ -170701,6 +178483,7 @@ self: { homepage = "http://www2.tcs.ifi.lmu.de/~abel/"; description = "Reduced instruction set i386 simulator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rivers" = callPackage @@ -170714,6 +178497,7 @@ self: { homepage = "https://github.com/d-rive/rivers"; description = "Rivers are like Streams, but different"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rivet" = callPackage @@ -170796,6 +178580,18 @@ self: { license = stdenv.lib.licenses.asl20; }) {}; + "rlist" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "rlist"; + version = "0.1.0"; + sha256 = "2a2a083a730cb1b8005c26fbb7e212f1402b2a93d96aecb0a9b686e9ded2689f"; + libraryHaskellDepends = [ base ]; + homepage = "http://github.com/guaraqe/rlist#readme"; + description = "Lists with cheap snocs"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "rmonad" = callPackage ({ mkDerivation, base, containers, HUnit, suitable, test-framework , test-framework-hunit, transformers @@ -170810,6 +178606,7 @@ self: { ]; description = "Restricted monad library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rncryptor" = callPackage @@ -170934,6 +178731,7 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "Sci-fi roguelike game. Client application."; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "roguestar-engine" = callPackage @@ -170956,6 +178754,7 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "Sci-fi roguelike game. Backend."; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "roguestar-gl" = callPackage @@ -170975,6 +178774,7 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "Sci-fi roguelike game. Client library."; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "roguestar-glut" = callPackage @@ -170990,6 +178790,7 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "Sci-fi roguelike game. GLUT front-end."; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rollbar" = callPackage @@ -171099,6 +178900,7 @@ self: { homepage = "http://github.com/ekmett/rope"; description = "Tools for manipulating fingertrees of bytestrings with optional annotations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rosa" = callPackage @@ -171117,6 +178919,7 @@ self: { ]; description = "Query the namecoin blockchain"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rose-trees" = callPackage @@ -171199,6 +179002,7 @@ self: { homepage = "http://github.com/acowley/roshask"; description = "Haskell support for the ROS robotics framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rosso" = callPackage @@ -171210,6 +179014,7 @@ self: { libraryHaskellDepends = [ base containers deepseq ]; description = "General purpose utility library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rot13" = callPackage @@ -171251,6 +179056,7 @@ self: { homepage = "http://patch-tag.com/r/ekmett/rounding"; description = "Explicit floating point rounding mode wrappers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "roundtrip" = callPackage @@ -171266,6 +179072,7 @@ self: { ]; description = "Bidirectional (de-)serialization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "roundtrip-aeson" = callPackage @@ -171288,6 +179095,7 @@ self: { homepage = "https://github.com/anchor/roundtrip-aeson"; description = "Un-/parse JSON with roundtrip invertible syntax definitions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "roundtrip-string" = callPackage @@ -171299,6 +179107,7 @@ self: { libraryHaskellDepends = [ base mtl parsec roundtrip ]; description = "Bidirectional (de-)serialization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "roundtrip-xml" = callPackage @@ -171320,6 +179129,7 @@ self: { ]; description = "Bidirectional (de-)serialization for XML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "route-generator" = callPackage @@ -171336,6 +179146,7 @@ self: { homepage = "http://github.com/singpolyma/route-generator"; description = "Utility to generate routes for use with yesod-routes"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "route-planning" = callPackage @@ -171355,6 +179166,7 @@ self: { homepage = "https://github.com/tonymorris/route"; description = "A library and utilities for creating a route"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rowrecord" = callPackage @@ -171366,6 +179178,7 @@ self: { libraryHaskellDepends = [ base containers template-haskell ]; description = "Build records from lists of strings, as from CSV files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rpc" = callPackage @@ -171382,6 +179195,7 @@ self: { ]; description = "type safe rpcs provided as basic IO actions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rpc-framework" = callPackage @@ -171402,6 +179216,7 @@ self: { homepage = "http://github.com/mmirman/rpc-framework"; description = "a remote procedure call framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rpf" = callPackage @@ -171434,6 +179249,7 @@ self: { libraryHaskellDepends = [ base directory filepath HaXml process ]; description = "Cozy little project to question unruly rpm packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rsagl" = callPackage @@ -171455,6 +179271,7 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "The RogueStar Animation and Graphics Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rsagl-frp" = callPackage @@ -171472,6 +179289,7 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "The RogueStar Animation and Graphics Library: Functional Reactive Programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rsagl-math" = callPackage @@ -171490,6 +179308,7 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "The RogueStar Animation and Graphics Library: Mathematics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rspp" = callPackage @@ -171521,6 +179340,33 @@ self: { license = stdenv.lib.licenses.publicDomain; }) {}; + "rss-conduit" = callPackage + ({ mkDerivation, base, bytestring, conduit, conduit-extra + , conduit-parse, containers, data-default, exceptions, foldl, hlint + , lens-simple, mono-traversable, parsers, QuickCheck + , quickcheck-instances, resourcet, safe, tasty, tasty-hunit + , tasty-quickcheck, text, time, timerep, uri-bytestring + , xml-conduit, xml-conduit-parse, xml-types + }: + mkDerivation { + pname = "rss-conduit"; + version = "0.2.0.0"; + sha256 = "feff18d16f9c23e3180a7a4ae9efebcce52cdc8b8ad78791948dba33f5af53a6"; + libraryHaskellDepends = [ + base conduit conduit-parse containers exceptions foldl lens-simple + mono-traversable parsers safe text time timerep uri-bytestring + xml-conduit xml-conduit-parse xml-types + ]; + testHaskellDepends = [ + base bytestring conduit conduit-extra conduit-parse data-default + exceptions hlint lens-simple mono-traversable parsers QuickCheck + quickcheck-instances resourcet tasty tasty-hunit tasty-quickcheck + text time uri-bytestring xml-conduit xml-conduit-parse xml-types + ]; + description = "Streaming parser/renderer for the RSS 2.0 standard."; + license = "unknown"; + }) {}; + "rss2irc" = callPackage ({ mkDerivation, base, bytestring, cabal-file-th, cmdargs , containers, deepseq, feed, http-client, http-conduit, http-types @@ -171543,6 +179389,7 @@ self: { homepage = "http://hackage.haskell.org/package/rss2irc"; description = "watches an RSS/Atom feed and writes it to an IRC channel"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rtcm" = callPackage @@ -171561,6 +179408,7 @@ self: { homepage = "http://github.com/swift-nav/librtcm"; description = "RTCM Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rtld" = callPackage @@ -171587,6 +179435,7 @@ self: { homepage = "https://github.com/adamwalker/hrtlsdr"; description = "Bindings to librtlsdr"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) rtl-sdr;}; "rtorrent-rpc" = callPackage @@ -171605,6 +179454,7 @@ self: { homepage = "https://github.com/megantti/rtorrent-rpc"; description = "A library for communicating with RTorrent over its XML-RPC interface"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rtorrent-state" = callPackage @@ -171643,6 +179493,7 @@ self: { homepage = "https://github.com/mtolly/rubberband"; description = "Binding to the C++ audio stretching library Rubber Band"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) rubberband;}; "ruby-marshal" = callPackage @@ -171693,6 +179544,7 @@ self: { homepage = "https://gitorious.org/ruff"; description = "relatively useful fractal functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ruler" = callPackage @@ -171729,6 +179581,7 @@ self: { ]; homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rungekutta" = callPackage @@ -171740,6 +179593,7 @@ self: { libraryHaskellDepends = [ base ]; description = "A collection of explicit Runge-Kutta methods of various orders"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "runghc" = callPackage @@ -171923,6 +179777,7 @@ self: { homepage = "https://github.com/reinerp/safe-freeze"; description = "Support for safely freezing multiple arrays in the ST monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safe-globals" = callPackage @@ -171934,6 +179789,7 @@ self: { libraryHaskellDepends = [ base stm template-haskell ]; description = "Safe top-level mutable variables which scope like ordinary values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safe-lazy-io" = callPackage @@ -171948,6 +179804,7 @@ self: { ]; description = "A library providing safe lazy IO features"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safe-length" = callPackage @@ -171980,6 +179837,7 @@ self: { ]; description = "A small wrapper over hs-plugins to allow loading safe plugins"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safe-printf" = callPackage @@ -172165,6 +180023,7 @@ self: { homepage = "https://github.com/basvandijk/safer-file-handles/"; description = "Type-safe file handling"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safer-file-handles-bytestring" = callPackage @@ -172183,6 +180042,7 @@ self: { homepage = "https://github.com/basvandijk/safer-file-handles-bytestring/"; description = "Extends safer-file-handles with ByteString operations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safer-file-handles-text" = callPackage @@ -172200,6 +180060,7 @@ self: { homepage = "https://github.com/basvandijk/safer-file-handles-text/"; description = "Extends safer-file-handles with Text operations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "saferoute" = callPackage @@ -172229,6 +180090,7 @@ self: { homepage = "http://fremissant.net/shape-syb"; description = "Obtain homogeneous values from arbitrary values, transforming or culling data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "saltine" = callPackage @@ -172289,6 +180151,7 @@ self: { jailbreak = true; description = "Modular web application framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "salvia-demo" = callPackage @@ -172311,6 +180174,7 @@ self: { jailbreak = true; description = "Demo Salvia servers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "salvia-extras" = callPackage @@ -172332,6 +180196,7 @@ self: { jailbreak = true; description = "Collection of non-fundamental handlers for the Salvia web server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "salvia-protocol" = callPackage @@ -172349,6 +180214,7 @@ self: { jailbreak = true; description = "Salvia webserver protocol suite supporting URI, HTTP, Cookie and MIME"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "salvia-sessions" = callPackage @@ -172367,6 +180233,7 @@ self: { jailbreak = true; description = "Session support for the Salvia webserver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "salvia-websocket" = callPackage @@ -172384,6 +180251,7 @@ self: { jailbreak = true; description = "Websocket implementation for the Salvia Webserver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sample-frame" = callPackage @@ -172505,6 +180373,7 @@ self: { ]; description = "Iteratee interface to SamTools library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sandi_0_3_5" = callPackage @@ -172585,6 +180454,7 @@ self: { homepage = "https://github.com/tokiwoousaka/Sarasvati"; description = "audio library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "sasl" = callPackage @@ -172602,6 +180472,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/sasl/wiki"; description = "SASL implementation using simple-pipe"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sat" = callPackage @@ -172616,6 +180487,7 @@ self: { homepage = "http://tcana.info/sat.html"; description = "CNF SATisfier"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sat-micro-hs" = callPackage @@ -172633,6 +180505,7 @@ self: { ]; description = "A minimal SAT solver"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo" = callPackage @@ -172652,6 +180525,7 @@ self: { homepage = "https://github.com/jwaldmann/satchmo"; description = "SAT encoding monad"; license = "GPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "satchmo-backends" = callPackage @@ -172668,6 +180542,7 @@ self: { homepage = "http://dfa.imn.htwk-leipzig.de/satchmo/"; description = "driver for external satchmo backends"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo-examples" = callPackage @@ -172686,6 +180561,7 @@ self: { homepage = "http://dfa.imn.htwk-leipzig.de/satchmo/"; description = "examples that show how to use satchmo"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo-funsat" = callPackage @@ -172702,6 +180578,7 @@ self: { homepage = "http://dfa.imn.htwk-leipzig.de/satchmo/"; description = "funsat driver as backend for satchmo"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo-minisat" = callPackage @@ -172714,6 +180591,7 @@ self: { homepage = "http://dfa.imn.htwk-leipzig.de/satchmo/"; description = "minisat driver as backend for satchmo"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo-toysat" = callPackage @@ -172731,6 +180609,7 @@ self: { homepage = "https://github.com/msakai/satchmo-toysat"; description = "toysat driver as backend for satchmo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sbp" = callPackage @@ -172763,6 +180642,7 @@ self: { homepage = "https://github.com/swift-nav/libsbp"; description = "SwiftNav's SBP Library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sbv_4_2" = callPackage @@ -172934,6 +180814,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/scaleimage"; description = "Scale an image to a new geometry"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scalp-webhooks" = callPackage @@ -172960,6 +180841,7 @@ self: { ]; description = "Test webhooks locally"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scalpel_0_2_1" = callPackage @@ -173040,6 +180922,7 @@ self: { testHaskellDepends = [ array base HUnit ]; description = "An implementation of the Scan Vector Machine instruction set in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scat" = callPackage @@ -173115,6 +180998,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/SceneGraph"; description = "Scene Graph"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scgi" = callPackage @@ -173148,6 +181032,7 @@ self: { jailbreak = true; description = "Marge schedules and show EVR"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "schedule-planner" = callPackage @@ -173223,6 +181108,7 @@ self: { homepage = "http://scholdoc.scholarlymarkdown.com"; description = "Converts ScholarlyMarkdown documents to HTML5/LaTeX/Docx format"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scholdoc-citeproc" = callPackage @@ -173258,6 +181144,7 @@ self: { homepage = "http://scholdoc.scholarlymarkdown.com"; description = "Scholdoc fork of pandoc-citeproc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scholdoc-texmath" = callPackage @@ -173349,6 +181236,7 @@ self: { jailbreak = true; description = "Mathematical/physical/chemical constants"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scientific_0_3_3_3" = callPackage @@ -173499,7 +181387,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "scientific" = callPackage + "scientific_0_3_4_4" = callPackage ({ mkDerivation, base, binary, bytestring, containers, deepseq , ghc-prim, hashable, integer-gmp, QuickCheck, smallcheck, tasty , tasty-ant-xml, tasty-hunit, tasty-quickcheck, tasty-smallcheck @@ -173522,6 +181410,30 @@ self: { homepage = "https://github.com/basvandijk/scientific"; description = "Numbers represented using scientific notation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "scientific" = callPackage + ({ mkDerivation, base, binary, bytestring, containers, deepseq + , ghc-prim, hashable, integer-gmp, QuickCheck, smallcheck, tasty + , tasty-ant-xml, tasty-hunit, tasty-quickcheck, tasty-smallcheck + , text, vector + }: + mkDerivation { + pname = "scientific"; + version = "0.3.4.6"; + sha256 = "bdd15c72b379ceaef5f30d7113e6971a47090a285f46d1d44528e328061df382"; + libraryHaskellDepends = [ + base binary bytestring containers deepseq ghc-prim hashable + integer-gmp text vector + ]; + testHaskellDepends = [ + base binary bytestring QuickCheck smallcheck tasty tasty-ant-xml + tasty-hunit tasty-quickcheck tasty-smallcheck text + ]; + homepage = "https://github.com/basvandijk/scientific"; + description = "Numbers represented using scientific notation"; + license = stdenv.lib.licenses.bsd3; }) {}; "scion" = callPackage @@ -173548,6 +181460,7 @@ self: { homepage = "http://github.com/nominolo/scion"; description = "Haskell IDE library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scion-browser" = callPackage @@ -173584,6 +181497,7 @@ self: { homepage = "http://github.com/JPMoresmau/scion-class-browser"; description = "Command-line interface for browsing and searching packages documentation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scons2dot" = callPackage @@ -173615,6 +181529,7 @@ self: { ]; description = "An interactive renderer for plotting time-series data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scope-cairo" = callPackage @@ -173637,6 +181552,7 @@ self: { ]; description = "An interactive renderer for plotting time-series data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scottish" = callPackage @@ -173656,6 +181572,7 @@ self: { homepage = "https://github.com/echaozh/scottish"; description = "scotty with batteries included"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scotty_0_9_0" = callPackage @@ -173735,7 +181652,6 @@ self: { async base data-default-class directory hspec hspec-wai http-types lifted-base network text wai ]; - jailbreak = true; homepage = "https://github.com/scotty-web/scotty"; description = "Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp"; license = stdenv.lib.licenses.bsd3; @@ -173801,6 +181717,7 @@ self: { ]; description = "blaze-html integration for Scotty"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scotty-cookie" = callPackage @@ -173843,6 +181760,7 @@ self: { jailbreak = true; description = "Fay integration for Scotty"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scotty-hastache" = callPackage @@ -173860,6 +181778,7 @@ self: { homepage = "https://github.com/scotty-web/scotty-hastache"; description = "Easy Mustache templating support for Scotty"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scotty-params-parser" = callPackage @@ -173921,6 +181840,7 @@ self: { homepage = "https://github.com/agrafix/scotty-session"; description = "Adding session functionality to scotty"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scotty-tls" = callPackage @@ -173977,6 +181897,7 @@ self: { jailbreak = true; description = "Scrabble play generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scrobble" = callPackage @@ -173999,6 +181920,7 @@ self: { ]; description = "Scrobbling server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scroll" = callPackage @@ -174065,6 +181987,7 @@ self: { homepage = "http://github.com/wereHamster/scrz"; description = "Process management and supervision daemon"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scyther-proof" = callPackage @@ -174104,6 +182027,7 @@ self: { homepage = "https://github.com/davnils/sde-solver"; description = "Distributed SDE solver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "sdf2p1-parser" = callPackage @@ -174215,6 +182139,7 @@ self: { ]; description = "image compositing with sdl2 - declarative style"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sdl2-image" = callPackage @@ -174229,21 +182154,24 @@ self: { jailbreak = true; description = "Haskell binding to sdl2-image"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_image;}; "sdl2-ttf" = callPackage - ({ mkDerivation, base, SDL2, sdl2, SDL2_ttf }: + ({ mkDerivation, base, linear, SDL2, sdl2, SDL2_ttf, transformers + }: mkDerivation { pname = "sdl2-ttf"; - version = "0.2.2"; - sha256 = "cfe52e240f00e86edf723f08a6b6de1dd5e0ab390ed030458111e45ee9db1266"; + version = "1.0.0"; + sha256 = "349b155e0992e2e05695d380145bdb28a9a9bd6089ca03973dca6948883fe51f"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ base sdl2 ]; + libraryHaskellDepends = [ base sdl2 transformers ]; librarySystemDepends = [ SDL2 SDL2_ttf ]; - executableHaskellDepends = [ base sdl2 ]; + executableHaskellDepends = [ base linear sdl2 ]; description = "Binding to libSDL2-ttf"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_ttf;}; "sdnv" = callPackage @@ -174285,6 +182213,7 @@ self: { description = "A software defined radio library"; license = stdenv.lib.licenses.bsd3; platforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "seacat" = callPackage @@ -174310,6 +182239,7 @@ self: { homepage = "https://github.com/Barrucadu/lambdadelta"; description = "Small web framework using Warp and WAI"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "seal-module" = callPackage @@ -174339,6 +182269,7 @@ self: { homepage = "http://github.com/ekmett/search/"; description = "Infinite search in finite time with Hilbert's epsilon"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sec" = callPackage @@ -174367,6 +182298,7 @@ self: { homepage = "http://github.com/pgavin/secdh"; description = "SECDH Machine Simulator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "seclib" = callPackage @@ -174507,6 +182439,7 @@ self: { homepage = "https://www.httptwo.com/second-transfer/"; description = "Second Transfer HTTP/2 web server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "secp256k1" = callPackage @@ -174517,8 +182450,8 @@ self: { }: mkDerivation { pname = "secp256k1"; - version = "0.4.4"; - sha256 = "33532973312cafa00b12f5fe21ed65bd89810bd8e19be95b29c5d5aa0b9946d2"; + version = "0.4.5"; + sha256 = "0e01ac093dc418a2d9b4f3a6dafa2c527220b9e79861921119898391b9a43b2b"; libraryHaskellDepends = [ base base16-bytestring binary bytestring entropy largeword mtl QuickCheck string-conversions @@ -174528,9 +182461,10 @@ self: { mtl QuickCheck string-conversions test-framework test-framework-hunit test-framework-quickcheck2 ]; - homepage = "http://github.com/haskoin/secp256k1#readme"; + homepage = "http://github.com/haskoin/secp256k1-haskell#readme"; description = "Bindings for secp256k1 library from Bitcoin Core"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "secret-santa" = callPackage @@ -174550,6 +182484,7 @@ self: { homepage = "https://github.com/rodrigosetti/secret-santa"; description = "Secret Santa game assigner using QR-Codes"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "secret-sharing" = callPackage @@ -174571,6 +182506,7 @@ self: { homepage = "http://monoid.at/code"; description = "Information-theoretic secure secret sharing"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "secrm" = callPackage @@ -174585,6 +182521,7 @@ self: { jailbreak = true; description = "Example of writing \"secure\" file removal in Haskell rather than C"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "secure-sockets" = callPackage @@ -174685,6 +182622,7 @@ self: { librarySystemDepends = [ sedna ]; description = "Sedna C API XML Binding"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {sedna = null;}; "select" = callPackage @@ -174697,6 +182635,7 @@ self: { homepage = "http://nonempty.org/software/haskell-select"; description = "Wrap the select(2) POSIX function"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "selectors" = callPackage @@ -174714,6 +182653,7 @@ self: { homepage = "http://github.com/rcallahan/selectors"; description = "CSS Selectors for DOM traversal"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "selenium" = callPackage @@ -174725,6 +182665,7 @@ self: { libraryHaskellDepends = [ base HTTP HUnit mtl network pretty ]; description = "Test web applications through a browser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "selenium-server" = callPackage @@ -174746,6 +182687,7 @@ self: { homepage = "https://github.com/joelteon/selenium-server.git"; description = "Run the selenium standalone server for usage with webdriver"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "selfrestart" = callPackage @@ -174771,6 +182713,7 @@ self: { homepage = "https://github.com/luite/selinux"; description = "SELinux bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {selinux = null;}; "semaphore-plus" = callPackage @@ -174797,6 +182740,7 @@ self: { ]; description = "Weakened partial isomorphisms, reversible computations"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "semigroupoid-extras_4_0" = callPackage @@ -174907,7 +182851,6 @@ self: { distributive semigroups tagged transformers transformers-compat ]; testHaskellDepends = [ base directory doctest filepath ]; - jailbreak = true; doCheck = false; homepage = "http://github.com/ekmett/semigroupoids"; description = "Semigroupoids: Category sans id"; @@ -175085,6 +183028,7 @@ self: { homepage = "http://github.com/ppetr/semigroups-actions/"; description = "Semigroups actions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "semiring" = callPackage @@ -175107,14 +183051,15 @@ self: { homepage = "http://github.com/srush/SemiRings/tree/master"; description = "Semirings, ring-like structures used for dynamic programming applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "semiring-simple" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "semiring-simple"; - version = "0.2.1.0"; - sha256 = "5655c761de3f2123f1c4e6eaa042148cb795fc95bfa173a5441d4a6317ba9c1c"; + version = "1.0.0.0"; + sha256 = "9567b7fa7d83f7f7d6abf9b0274c7e01e44a6357e2441d5b62e4a5720e57bf86"; libraryHaskellDepends = [ base ]; description = "A module for dealing with semirings"; license = stdenv.lib.licenses.bsd3; @@ -175148,6 +183093,7 @@ self: { ]; description = "An implementation of semver and semantic version ranges"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sendfile" = callPackage @@ -175179,6 +183125,34 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "sensei" = callPackage + ({ mkDerivation, ansi-terminal, base, base-compat, bytestring + , directory, filepath, fsnotify, hspec, hspec-wai, http-client + , http-types, interpolate, mockery, network, process, silently, stm + , text, time, unix, wai, warp + }: + mkDerivation { + pname = "sensei"; + version = "0.1.0"; + sha256 = "fd3c1edc901298173782bf8c65744dd4fb25cdfb9d1012e28a6e5038dc7114ab"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + ansi-terminal base base-compat bytestring directory filepath + fsnotify http-client http-types network process stm text time unix + wai warp + ]; + testHaskellDepends = [ + ansi-terminal base base-compat bytestring directory filepath + fsnotify hspec hspec-wai http-client http-types interpolate mockery + network process silently stm text time unix wai warp + ]; + homepage = "https://github.com/hspec/sensei#readme"; + description = "Automatically run Hspec tests on file modifications"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "sensenet" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, process, stm , zeromq3-haskell @@ -175196,6 +183170,7 @@ self: { homepage = "https://github.com/rossdylan/sensenet"; description = "Distributed sensor network for the raspberry pi"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sentry" = callPackage @@ -175218,6 +183193,7 @@ self: { homepage = "https://github.com/noteed/sentry"; description = "Process monitoring tool written and configured in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "senza" = callPackage @@ -175274,6 +183250,7 @@ self: { homepage = "http://fremissant.net/seqaid"; description = "Dynamic strictness control, including space leak repair"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "seqalign" = callPackage @@ -175285,6 +183262,7 @@ self: { libraryHaskellDepends = [ base bytestring vector ]; description = "Sequence Alignment"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "seqid_0_1_0" = callPackage @@ -175434,6 +183412,7 @@ self: { homepage = "http://www.ingolia-lab.org/seqloc-datafiles-tutorial.html"; description = "Read and write BED and GTF format genome annotations"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sequence" = callPackage @@ -175463,6 +183442,7 @@ self: { homepage = "https://github.com/lukemaurer/sequent-core"; description = "Alternative Core language for GHC plugins"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sequential-index" = callPackage @@ -175498,6 +183478,7 @@ self: { homepage = "https://bitbucket.org/gchrupala/sequor"; description = "A sequence labeler based on Collins's sequence perceptron"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "serf" = callPackage @@ -175738,7 +183719,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant" = callPackage + "servant_0_4_4_6" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring , bytestring-conversion, case-insensitive, directory, doctest , filemanip, filepath, hspec, http-media, http-types, network-uri @@ -175764,6 +183745,62 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring + , bytestring-conversion, case-insensitive, directory, doctest + , filemanip, filepath, hspec, http-media, http-types, network-uri + , parsec, QuickCheck, quickcheck-instances, string-conversions + , text, url + }: + mkDerivation { + pname = "servant"; + version = "0.4.4.7"; + sha256 = "4d2655e013e26edf6568bbcaa9bcf0cd4c96af4d9d4d862f9089cb6719073e2b"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring bytestring-conversion + case-insensitive http-media http-types network-uri + string-conversions text + ]; + testHaskellDepends = [ + aeson attoparsec base bytestring directory doctest filemanip + filepath hspec parsec QuickCheck quickcheck-instances + string-conversions text url + ]; + homepage = "http://haskell-servant.github.io/"; + description = "A family of combinators for defining webservices APIs"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "servant_0_5" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring + , bytestring-conversion, case-insensitive, directory, doctest + , filemanip, filepath, hspec, http-api-data, http-media, http-types + , network-uri, QuickCheck, quickcheck-instances, string-conversions + , text, url, vault + }: + mkDerivation { + pname = "servant"; + version = "0.5"; + sha256 = "b83ca161d81c0c62150d000266549fc6b5a09f7ecc15f597b7f0ae8bcc77caf5"; + revision = "1"; + editedCabalFile = "5b79e90dc1c884c4e90041e5a68a0bdf435a2ff93345f5cb38ee01d3f3c5c732"; + libraryHaskellDepends = [ + aeson attoparsec base base-compat bytestring bytestring-conversion + case-insensitive http-api-data http-media http-types network-uri + string-conversions text vault + ]; + testHaskellDepends = [ + aeson attoparsec base bytestring directory doctest filemanip + filepath hspec QuickCheck quickcheck-instances string-conversions + text url + ]; + homepage = "http://haskell-servant.github.io/"; + description = "A family of combinators for defining webservices APIs"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-JuicyPixels_0_1_0_0" = callPackage @@ -175788,7 +183825,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-JuicyPixels" = callPackage + "servant-JuicyPixels_0_3_0_0" = callPackage ({ mkDerivation, base, bytestring, http-media, JuicyPixels, servant , servant-server, wai, warp }: @@ -175807,9 +183844,31 @@ self: { homepage = "https://github.com/tvh/servant-JuicyPixels"; description = "Servant support for JuicyPixels"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-blaze" = callPackage + "servant-JuicyPixels" = callPackage + ({ mkDerivation, base, bytestring, http-media, JuicyPixels, servant + , servant-server, wai, warp + }: + mkDerivation { + pname = "servant-JuicyPixels"; + version = "0.3.0.1"; + sha256 = "39f3c934d727ef2d811e515533e2150a1281f155553b983911f36974d7b3adb1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring http-media JuicyPixels servant + ]; + executableHaskellDepends = [ + base JuicyPixels servant servant-server wai warp + ]; + homepage = "https://github.com/tvh/servant-JuicyPixels"; + description = "Servant support for JuicyPixels"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "servant-blaze_0_4_4_6" = callPackage ({ mkDerivation, base, blaze-html, http-media, servant }: mkDerivation { pname = "servant-blaze"; @@ -175819,15 +183878,43 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "Blaze-html support for servant"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-blaze" = callPackage + ({ mkDerivation, base, blaze-html, http-media, servant }: + mkDerivation { + pname = "servant-blaze"; + version = "0.4.4.7"; + sha256 = "5f3648d0831de475364c9570b527041d5a5a26ea6257b44f2e140509ba8c0b60"; + libraryHaskellDepends = [ base blaze-html http-media servant ]; + homepage = "http://haskell-servant.github.io/"; + description = "Blaze-html support for servant"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "servant-blaze_0_5" = callPackage + ({ mkDerivation, base, blaze-html, http-media, servant }: + mkDerivation { + pname = "servant-blaze"; + version = "0.5"; + sha256 = "d450aa2bbec21208fa9ae7e3e7f799b5447573cf8ba26874a79b109963e0f46c"; + libraryHaskellDepends = [ base blaze-html http-media servant ]; + jailbreak = true; + homepage = "http://haskell-servant.github.io/"; + description = "Blaze-html support for servant"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-cassava" = callPackage ({ mkDerivation, base, cassava, http-media, servant, vector }: mkDerivation { pname = "servant-cassava"; - version = "0.4.4.6"; - sha256 = "2d5b3be61d67d89b95dd3156d4bf5201452f30031517276c4dd7cde4a7456769"; + version = "0.5"; + sha256 = "57156e80c8bf4f04fe9fdcc61f3f117f14e9b0966915f3ad1e997ee02b654699"; libraryHaskellDepends = [ base cassava http-media servant vector ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "Servant CSV content-type for cassava"; license = stdenv.lib.licenses.bsd3; @@ -175967,7 +184054,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-client" = callPackage + "servant-client_0_4_4_6" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq , either, exceptions, hspec, http-client, http-client-tls , http-media, http-types, HUnit, network, network-uri, QuickCheck @@ -175991,6 +184078,63 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "automatical derivation of querying functions for servant webservices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-client" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq + , either, exceptions, hspec, http-client, http-client-tls + , http-media, http-types, HUnit, network, network-uri, QuickCheck + , safe, servant, servant-server, string-conversions, text + , transformers, wai, warp + }: + mkDerivation { + pname = "servant-client"; + version = "0.4.4.7"; + sha256 = "01fcdbbca231b4f99c80f47b6fc025f7785394358bde37eddb744b5e8e7bcba8"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring either exceptions http-client + http-client-tls http-media http-types network-uri safe servant + string-conversions text transformers + ]; + testHaskellDepends = [ + aeson base bytestring deepseq either hspec http-client http-media + http-types HUnit network QuickCheck servant servant-server text wai + warp + ]; + homepage = "http://haskell-servant.github.io/"; + description = "automatical derivation of querying functions for servant webservices"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "servant-client_0_5" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base64-bytestring + , bytestring, deepseq, exceptions, hspec, http-api-data + , http-client, http-client-tls, http-media, http-types, HUnit + , network, network-uri, QuickCheck, safe, servant, servant-server + , string-conversions, text, transformers, transformers-compat, wai + , warp + }: + mkDerivation { + pname = "servant-client"; + version = "0.5"; + sha256 = "2433324deff198fcc61c5027538f1df27ccf9be341baec3a55940d3c4325f696"; + libraryHaskellDepends = [ + aeson attoparsec base base64-bytestring bytestring exceptions + http-api-data http-client http-client-tls http-media http-types + network-uri safe servant string-conversions text transformers + transformers-compat + ]; + testHaskellDepends = [ + aeson base bytestring deepseq hspec http-client http-media + http-types HUnit network QuickCheck servant servant-server text + transformers transformers-compat wai warp + ]; + jailbreak = true; + homepage = "http://haskell-servant.github.io/"; + description = "automatical derivation of querying functions for servant webservices"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-docs_0_3_1" = callPackage @@ -176132,7 +184276,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-docs" = callPackage + "servant-docs_0_4_4_6" = callPackage ({ mkDerivation, aeson, base, bytestring, bytestring-conversion , case-insensitive, hashable, hspec, http-media, http-types, lens , servant, string-conversions, text, unordered-containers @@ -176158,6 +184302,66 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "generate API docs for your servant webservice"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-docs" = callPackage + ({ mkDerivation, aeson, base, bytestring, bytestring-conversion + , case-insensitive, hashable, hspec, http-media, http-types, lens + , servant, string-conversions, text, unordered-containers + }: + mkDerivation { + pname = "servant-docs"; + version = "0.4.4.7"; + sha256 = "ad3caf4b87d456d29e58a84e4d4ce0fd45a6ddf7b9d56f70800e8a682954af25"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring bytestring-conversion case-insensitive hashable + http-media http-types lens servant string-conversions text + unordered-containers + ]; + executableHaskellDepends = [ + aeson base bytestring-conversion lens servant string-conversions + text + ]; + testHaskellDepends = [ + aeson base hspec lens servant string-conversions + ]; + homepage = "http://haskell-servant.github.io/"; + description = "generate API docs for your servant webservice"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "servant-docs_0_5" = callPackage + ({ mkDerivation, aeson, aeson-pretty, base, bytestring + , bytestring-conversion, case-insensitive, control-monad-omega + , hashable, hspec, http-media, http-types, lens, servant + , string-conversions, text, unordered-containers + }: + mkDerivation { + pname = "servant-docs"; + version = "0.5"; + sha256 = "2faa28f837628dcdc13f34ab178abf190fcf04d506eb45be64a47d11246d748a"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson aeson-pretty base bytestring bytestring-conversion + case-insensitive control-monad-omega hashable http-media http-types + lens servant string-conversions text unordered-containers + ]; + executableHaskellDepends = [ + aeson base bytestring-conversion lens servant string-conversions + text + ]; + testHaskellDepends = [ + aeson base hspec lens servant string-conversions + ]; + jailbreak = true; + homepage = "http://haskell-servant.github.io/"; + description = "generate API docs for your servant webservice"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-ede" = callPackage @@ -176191,8 +184395,8 @@ self: { }: mkDerivation { pname = "servant-elm"; - version = "0.1.0.1"; - sha256 = "8e44d664e4484135c4b19d2477131b1f75863c999ff747a6b69052ac12f6d15d"; + version = "0.1.0.2"; + sha256 = "ee5de357b7c835eb68115de8cfcacb81dd83944916afec87c52ff92606c8dbda"; libraryHaskellDepends = [ base elm-export lens servant servant-foreign text ]; @@ -176204,7 +184408,7 @@ self: { description = "Automatically derive Elm functions to query servant webservices"; license = stdenv.lib.licenses.bsd3; broken = true; - }) {elm-export = null; servant-foreign = null;}; + }) {elm-export = null;}; "servant-examples" = callPackage ({ mkDerivation, aeson, base, bytestring, directory, either @@ -176214,8 +184418,8 @@ self: { }: mkDerivation { pname = "servant-examples"; - version = "0.4.4.6"; - sha256 = "8901e5d619234600d69341f314de044c6659f88e1fd1c6ceed71929565bac0ee"; + version = "0.4.4.7"; + sha256 = "1631cec84ab494f057df309b4bdd32a04066e1305d64bddfac24ceb2128e5516"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -176228,6 +184432,21 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "Example programs for servant"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-foreign" = callPackage + ({ mkDerivation, base, hspec, http-types, lens, servant, text }: + mkDerivation { + pname = "servant-foreign"; + version = "0.5"; + sha256 = "108d9858820226260b5237b3bb213e29e2c5f3b0d2091e7ef846862997a497a1"; + libraryHaskellDepends = [ base http-types lens servant text ]; + testHaskellDepends = [ base hspec ]; + jailbreak = true; + description = "Helpers for generating clients for servant APIs in any programming language"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-github" = callPackage @@ -176248,6 +184467,34 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "servant-haxl-client" = callPackage + ({ mkDerivation, aeson, async, attoparsec, base, bytestring + , deepseq, either, exceptions, hashable, haxl, hspec, http-client + , http-client-tls, http-media, http-types, HUnit, network + , network-uri, QuickCheck, safe, servant, servant-server + , string-conversions, text, transformers, wai, warp + }: + mkDerivation { + pname = "servant-haxl-client"; + version = "0.2.0.0"; + sha256 = "673f535649f796b984d051e4353e11943f2149ddeee6c8187a03a8b8eb10a16c"; + revision = "2"; + editedCabalFile = "adc963ee3fad0dd9992036ca4dc196be410c265a7a3b3d500bdebedd4a6a1002"; + libraryHaskellDepends = [ + aeson async attoparsec base bytestring either exceptions hashable + haxl http-client http-client-tls http-media http-types network-uri + safe servant string-conversions text transformers + ]; + testHaskellDepends = [ + aeson base bytestring deepseq either haxl hspec http-client + http-client-tls http-media http-types HUnit network QuickCheck + servant servant-server text wai warp + ]; + homepage = "http://github.com/ElvishJerricco/servant-haxl-client/"; + description = "automatical derivation of querying functions for servant webservices"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "servant-jquery_0_2_2_1" = callPackage ({ mkDerivation, aeson, base, filepath, hspec, language-ecmascript , lens, servant, servant-server, stm, transformers, warp @@ -176365,7 +184612,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-jquery" = callPackage + "servant-jquery_0_4_4_6" = callPackage ({ mkDerivation, aeson, base, charset, filepath, hspec , hspec-expectations, language-ecmascript, lens, servant , servant-server, stm, text, transformers, warp @@ -176386,15 +184633,69 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "Automatically derive (jquery) javascript functions to query servant webservices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-jquery" = callPackage + ({ mkDerivation, aeson, base, charset, filepath, hspec + , hspec-expectations, language-ecmascript, lens, servant + , servant-server, stm, text, transformers, warp + }: + mkDerivation { + pname = "servant-jquery"; + version = "0.4.4.7"; + sha256 = "f3e7ba3e47ab318fc448f0539b4e58e8d82a5e9b32e3a6a6b5dea849dd7d11b1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base charset lens servant text ]; + executableHaskellDepends = [ + aeson base filepath servant servant-server stm transformers warp + ]; + testHaskellDepends = [ + base hspec hspec-expectations language-ecmascript lens servant + ]; + homepage = "http://haskell-servant.github.io/"; + description = "Automatically derive (jquery) javascript functions to query servant webservices"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "servant-js" = callPackage + ({ mkDerivation, aeson, base, base-compat, charset, filepath, hspec + , hspec-expectations, language-ecmascript, lens, servant + , servant-foreign, servant-server, stm, text, transformers, warp + }: + mkDerivation { + pname = "servant-js"; + version = "0.5"; + sha256 = "78a573a81d40ad659ed0c3097a138236ace7e6d7e7d889af64195165ebae0c18"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base base-compat charset lens servant-foreign text + ]; + executableHaskellDepends = [ + aeson base filepath lens servant servant-server stm transformers + warp + ]; + testHaskellDepends = [ + base base-compat hspec hspec-expectations language-ecmascript lens + servant text + ]; + jailbreak = true; + homepage = "http://haskell-servant.github.io/"; + description = "Automatically derive javascript functions to query servant webservices"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-lucid" = callPackage ({ mkDerivation, base, http-media, lucid, servant }: mkDerivation { pname = "servant-lucid"; - version = "0.4.4.6"; - sha256 = "9dede15f6a6032a3e815bd949e2c83f243a6c15aaca8ee65ee97c163515fdf4b"; + version = "0.5"; + sha256 = "87cfb2fb1b4a00e649b0c418ee56a461fe1528f804be442d0e2fc7872dc298f2"; libraryHaskellDepends = [ base http-media lucid servant ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "Servant support for lucid"; license = stdenv.lib.licenses.bsd3; @@ -176406,8 +184707,8 @@ self: { }: mkDerivation { pname = "servant-mock"; - version = "0.4.4.6"; - sha256 = "eaf6d4b7635bc0549c2d1fba1e4b6d5130281880e345180f0f78cf78ba7a0665"; + version = "0.4.4.7"; + sha256 = "d8fdc27bc4bc347d1fc31e125c29f0d786e44abc567a7187b757d0c6563d75c0"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -176422,6 +184723,34 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "servant-mock_0_5" = callPackage + ({ mkDerivation, aeson, base, bytestring, bytestring-conversion + , hspec, hspec-wai, http-types, QuickCheck, servant, servant-server + , transformers, wai, warp + }: + mkDerivation { + pname = "servant-mock"; + version = "0.5"; + sha256 = "c508bf76282b6e4656d710b64d761c065ad06787388a3bcac2204d99f3f328ca"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring http-types QuickCheck servant servant-server + transformers wai + ]; + executableHaskellDepends = [ + aeson base QuickCheck servant-server warp + ]; + testHaskellDepends = [ + aeson base bytestring-conversion hspec hspec-wai QuickCheck servant + servant-server wai + ]; + homepage = "http://github.com/haskell-servant/servant"; + description = "Derive a mock server for free from your servant API types"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "servant-pandoc_0_4_1_1" = callPackage ({ mkDerivation, base, bytestring, http-media, lens, pandoc-types , servant-docs, text, unordered-containers @@ -176472,6 +184801,7 @@ self: { homepage = "http://github.com/zalora/servant-pool"; description = "Utility functions for creating servant 'Context's with \"context/connection pooling\" support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-postgresql" = callPackage @@ -176489,6 +184819,7 @@ self: { homepage = "http://github.com/zalora/servant-postgresql"; description = "Useful functions and instances for using servant with a PostgreSQL context"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-response" = callPackage @@ -176523,6 +184854,7 @@ self: { homepage = "http://github.com/zalora/servant"; description = "Generate a web service for servant 'Resource's using scotty and JSON"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-server_0_2_4" = callPackage @@ -176723,7 +185055,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-server" = callPackage + "servant-server_0_4_4_6" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring , bytestring-conversion, directory, doctest, either, exceptions , filemanip, filepath, hspec, hspec-wai, http-types, mmorph, mtl @@ -176752,6 +185084,75 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs and serving them"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-server" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring + , bytestring-conversion, directory, doctest, either, exceptions + , filemanip, filepath, hspec, hspec-wai, http-types, mmorph, mtl + , network, network-uri, parsec, QuickCheck, safe, servant, split + , string-conversions, system-filepath, temporary, text + , transformers, wai, wai-app-static, wai-extra, warp + }: + mkDerivation { + pname = "servant-server"; + version = "0.4.4.7"; + sha256 = "88742ffcb41d5bb1eda91108345c4faf1a2f6fd90b1a6c52d4c1f23e08036414"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson attoparsec base bytestring either filepath http-types mmorph + mtl network-uri safe servant split string-conversions + system-filepath text transformers wai wai-app-static warp + ]; + executableHaskellDepends = [ aeson base servant text wai warp ]; + testHaskellDepends = [ + aeson base bytestring bytestring-conversion directory doctest + either exceptions filemanip filepath hspec hspec-wai http-types mtl + network parsec QuickCheck servant string-conversions temporary text + transformers wai wai-extra warp + ]; + homepage = "http://haskell-servant.github.io/"; + description = "A family of combinators for defining webservices APIs and serving them"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "servant-server_0_5" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base-compat + , base64-bytestring, bytestring, bytestring-conversion, containers + , directory, doctest, exceptions, filemanip, filepath, hspec + , hspec-wai, http-api-data, http-types, mmorph, mtl, network + , network-uri, parsec, QuickCheck, safe, servant + , should-not-typecheck, split, string-conversions, system-filepath + , temporary, text, transformers, transformers-compat, wai + , wai-app-static, wai-extra, warp, word8 + }: + mkDerivation { + pname = "servant-server"; + version = "0.5"; + sha256 = "c7a7485edca3029e75b49470f1dfc00d40616352c8a89c3917c6ee76d4326d46"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson attoparsec base base-compat base64-bytestring bytestring + containers filepath http-api-data http-types mmorph mtl network + network-uri safe servant split string-conversions system-filepath + text transformers transformers-compat wai wai-app-static warp word8 + ]; + executableHaskellDepends = [ aeson base servant text wai warp ]; + testHaskellDepends = [ + aeson base bytestring bytestring-conversion directory doctest + exceptions filemanip filepath hspec hspec-wai http-types mtl + network parsec QuickCheck safe servant should-not-typecheck + string-conversions temporary text transformers transformers-compat + wai wai-extra warp + ]; + jailbreak = true; + homepage = "http://haskell-servant.github.io/"; + description = "A family of combinators for defining webservices APIs and serving them"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-swagger_0_1_1" = callPackage @@ -176810,6 +185211,8 @@ self: { pname = "servant-swagger"; version = "1.0.3"; sha256 = "ea1b3c7f33ae1c788ef33858c9c74849f450155c1bd81dcd472a36389aa17597"; + revision = "1"; + editedCabalFile = "9d906155448bdd1c213cc8ee6027eb9c16f40dbdcbc9e23509ed382446851807"; libraryHaskellDepends = [ aeson base bytestring hspec http-media lens QuickCheck servant swagger2 text unordered-containers @@ -176821,6 +185224,7 @@ self: { homepage = "https://github.com/haskell-servant/servant-swagger"; description = "Generate Swagger specification for your servant API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "servant-yaml" = callPackage @@ -176831,8 +185235,8 @@ self: { pname = "servant-yaml"; version = "0.1.0.0"; sha256 = "c917d9b046b06a9c4386f743a78142c27cf7f0ec1ad8562770ab9828f2ee3204"; - revision = "2"; - editedCabalFile = "3ef09bca6255336c4a1dfd58b27a0d24957ea31e42d51d3b9334790518818ed0"; + revision = "4"; + editedCabalFile = "7384ce42808b7df6200f48299a55524e1793072a33529b433eef0113319fd742"; libraryHaskellDepends = [ base bytestring http-media servant yaml ]; @@ -176933,6 +185337,7 @@ self: { homepage = "https://github.com/yesodweb/serversession"; description = "Storage backend for serversession using acid-state"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "serversession-backend-persistent_1_0_1" = callPackage @@ -176988,6 +185393,7 @@ self: { homepage = "https://github.com/yesodweb/serversession"; description = "Storage backend for serversession using persistent and an RDBMS"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "serversession-backend-redis_1_0" = callPackage @@ -177144,6 +185550,7 @@ self: { jailbreak = true; description = "Snaplet for the ses-html package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sessions" = callPackage @@ -177159,6 +185566,7 @@ self: { homepage = "http://www.wellquite.org/sessions/"; description = "Session Types for Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "set-cover" = callPackage @@ -177177,6 +185585,7 @@ self: { homepage = "http://hub.darcs.net/thielema/set-cover/"; description = "Solve exact set cover problems like Sudoku, 8 Queens, Soma Cube, Tetris Cube"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "set-extra_1_3_2" = callPackage @@ -177230,6 +185639,7 @@ self: { ]; description = "Set of elements sorted by a different data type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "setdown" = callPackage @@ -177394,6 +185804,7 @@ self: { homepage = "https://github.com/scvalex/sexp"; description = "S-Expression parsing/printing made fun and easy"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sexp-grammar" = callPackage @@ -177416,6 +185827,7 @@ self: { homepage = "https://github.com/esmolanka/sexp-grammar"; description = "Invertible parsers for S-expressions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sexp-show" = callPackage @@ -177449,6 +185861,7 @@ self: { executableHaskellDepends = [ QuickCheck random ]; description = "S-expression printer and parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sext" = callPackage @@ -177474,6 +185887,7 @@ self: { homepage = "http://patch-tag.com/r/shahn/sfml-audio"; description = "minimal bindings to the audio module of sfml"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) libsndfile; inherit (pkgs) openal;}; "sfmt" = callPackage @@ -177536,6 +185950,7 @@ self: { homepage = "http://blog.malde.org/"; description = "Sgrep - grep Fasta files for sequences matching a regular expression"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sha-streams" = callPackage @@ -177574,6 +185989,7 @@ self: { homepage = "http://github.com/karun012/shadower"; description = "An automated way to run doctests in files that are changing"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shadowsocks" = callPackage @@ -177617,6 +186033,7 @@ self: { homepage = "http://haskell.org/haskellwiki/shady"; description = "Functional GPU programming - DSEL & compiler"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shady-graphics" = callPackage @@ -177635,6 +186052,7 @@ self: { homepage = "http://haskell.org/haskellwiki/shady"; description = "Functional GPU programming - DSEL & compiler"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shake_0_14_2" = callPackage @@ -177879,6 +186297,7 @@ self: { homepage = "http://thoughtpolice.github.com/shake-extras"; description = "Extra utilities for shake build systems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shake-language-c_0_6_3" = callPackage @@ -178073,6 +186492,7 @@ self: { homepage = "http://github.com/bonnefoa/Shaker"; description = "simple and interactive command-line build tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shakespeare_2_0_2_1" = callPackage @@ -178419,6 +186839,7 @@ self: { homepage = "http://github.com/jberryman/shapely-data"; description = "Generics using @(,)@ and @Either@, with algebraic operations and typed conversions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sharc-timbre" = callPackage @@ -178450,6 +186871,7 @@ self: { jailbreak = true; description = "A circular buffer built on shared memory"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shared-fields" = callPackage @@ -178477,6 +186899,7 @@ self: { homepage = "https://github.com/nh2/shared-memory"; description = "POSIX shared memory"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "sharedio" = callPackage @@ -178507,6 +186930,7 @@ self: { homepage = "http://personal.cis.strath.ac.uk/~conor/pub/she"; description = "A Haskell preprocessor adding miscellaneous features"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shelduck" = callPackage @@ -178537,6 +186961,7 @@ self: { ]; description = "Test webhooks locally"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "shell-conduit_4_5" = callPackage @@ -178642,6 +187067,7 @@ self: { homepage = "http://gnu.rtin.bz/directory/devel/prog/other/shell-haskell.html"; description = "Pipe streams through external shell commands"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shellish" = callPackage @@ -178659,6 +187085,7 @@ self: { homepage = "http://repos.mornfall.net/shellish"; description = "shell-/perl- like (systems) programming in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shellmate" = callPackage @@ -178999,7 +187426,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "shortcut-links" = callPackage + "shortcut-links_0_4_1_0" = callPackage ({ mkDerivation, base, text }: mkDerivation { pname = "shortcut-links"; @@ -179009,6 +187436,19 @@ self: { homepage = "http://github.com/aelve/shortcut-links"; description = "Link shortcuts for use in text markup"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "shortcut-links" = callPackage + ({ mkDerivation, base, text }: + mkDerivation { + pname = "shortcut-links"; + version = "0.4.2.0"; + sha256 = "1e6b75c5e94fddf9e2e665821ac70f5083e5d40d1fd55813e94943ce02335027"; + libraryHaskellDepends = [ base text ]; + homepage = "http://github.com/aelve/shortcut-links"; + description = "Link shortcuts for use in text markup"; + license = stdenv.lib.licenses.bsd3; }) {}; "shorten-strings" = callPackage @@ -179074,6 +187514,7 @@ self: { jailbreak = true; description = "A simple gtk based Russian Roulette game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shpider" = callPackage @@ -179091,6 +187532,7 @@ self: { homepage = "http://github.com/ozataman/shpider"; description = "Web automation library in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shplit" = callPackage @@ -179173,6 +187615,7 @@ self: { homepage = "http://mypage.iu.edu/~gdweber/software/sifflet/"; description = "A simple, visual, functional programming language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sifflet-lib" = callPackage @@ -179192,6 +187635,7 @@ self: { homepage = "http://mypage.iu.edu/~gdweber/software/sifflet/"; description = "Library of modules shared by sifflet and its tests and its exporters"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {gdk_x11 = null; gtk_x11 = null;}; "sign" = callPackage @@ -179243,6 +187687,7 @@ self: { ]; description = "Synchronous signal processing for DSLs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "signed-multiset" = callPackage @@ -179295,6 +187740,7 @@ self: { homepage = "http://github.com/mikeizbicki/simd"; description = "simple interface to GHC's SIMD instructions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simgi" = callPackage @@ -179314,6 +187760,7 @@ self: { homepage = "http://simgi.sourceforge.net/"; description = "stochastic simulation engine"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple" = callPackage @@ -179388,6 +187835,7 @@ self: { librarySystemDepends = [ bluetooth ]; description = "Simple Bluetooth API for Windows and Linux (bluez)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {bluetooth = null;}; "simple-c-value" = callPackage @@ -179411,6 +187859,7 @@ self: { homepage = "https://github.com/jfischoff/simple-c-value"; description = "A simple C value type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-conduit" = callPackage @@ -179434,6 +187883,7 @@ self: { homepage = "http://github.com/jwiegley/simple-conduit"; description = "A simple streaming I/O library based on monadic folds"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-config" = callPackage @@ -179467,6 +187917,7 @@ self: { ]; description = "simple binding of css and html"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-eval" = callPackage @@ -179495,6 +187946,7 @@ self: { homepage = "https://github.com/aleator/simple-firewire"; description = "Simplified interface for firewire cameras"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-form" = callPackage @@ -179512,6 +187964,7 @@ self: { homepage = "https://github.com/singpolyma/simple-form-haskell"; description = "Forms that configure themselves based on type"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-genetic-algorithm" = callPackage @@ -179607,6 +188060,7 @@ self: { homepage = "http://github.com/mvoidex/simple-log-syslog"; description = "Syslog backend for simple-log"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-neural-networks" = callPackage @@ -179679,6 +188133,7 @@ self: { ]; description = "Simplified Pascal language to SSVM compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-pipe" = callPackage @@ -179935,6 +188390,7 @@ self: { homepage = "http://github.com/dzhus/simple-vec3/"; description = "Three-dimensional vectors of doubles with basic operations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simpleargs" = callPackage @@ -179964,6 +188420,7 @@ self: { homepage = "http://github.com/dom96/SimpleIRC"; description = "Simple IRC Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simpleirc-lens" = callPackage @@ -179976,6 +188433,7 @@ self: { homepage = "https://github.com/relrod/simpleirc-lens"; description = "Lenses for simpleirc types"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simplenote" = callPackage @@ -179992,6 +188450,7 @@ self: { ]; description = "Haskell interface for the simplenote API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simpleprelude" = callPackage @@ -180011,6 +188470,7 @@ self: { jailbreak = true; description = "A simplified Haskell prelude for teaching"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simplesmtpclient" = callPackage @@ -180037,6 +188497,7 @@ self: { homepage = "http://hub.darcs.net/thoferon/simplessh"; description = "Simple wrapper around libssh2"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {ssh2 = null;}; "simplest-sqlite" = callPackage @@ -180105,6 +188566,7 @@ self: { homepage = "http://malde.org/~ketil/"; description = "Simulate sequencing with different models for priming and errors"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simtreelo" = callPackage @@ -180145,6 +188607,7 @@ self: { homepage = "http://sigkill.dk/programs/sindre"; description = "A programming language for simple GUIs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.xorg) libXft;}; "singleton-nats" = callPackage @@ -180311,6 +188774,7 @@ self: { ]; description = "Sirkel, a Chord DHT"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sitemap" = callPackage @@ -180340,6 +188804,7 @@ self: { jailbreak = true; description = "Sized sequence data-types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sized-types" = callPackage @@ -180523,6 +188988,7 @@ self: { ]; description = "a tool to access the OSX keychain"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "skeletons" = callPackage @@ -180598,6 +189064,7 @@ self: { homepage = "https://github.com/emonkak/haskell-skype"; description = "Skype Desktop API binding for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "skypelogexport" = callPackage @@ -180637,6 +189104,7 @@ self: { jailbreak = true; description = "Haskell API for interacting with Slack"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "slack-api" = callPackage @@ -180647,8 +189115,8 @@ self: { }: mkDerivation { pname = "slack-api"; - version = "0.6"; - sha256 = "9e4c7ef5387dcf06fd5f56c2076e124af96db8b5e2830b91ee0137c59072204f"; + version = "0.7"; + sha256 = "2352c9ab62358547243620220c56836df20fb40e090e0234f643dda0460c90a2"; libraryHaskellDepends = [ aeson base bytestring containers errors HsOpenSSL io-streams lens lens-aeson monad-loops mtl network network-uri openssl-streams text @@ -180799,6 +189267,20 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "sleep" = callPackage + ({ mkDerivation, base, time }: + mkDerivation { + pname = "sleep"; + version = "0.1.0.0"; + sha256 = "ce74c6970b5d83bb92ddf75783fce4ce6d3976cf69c31d18385171787cf80895"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base time ]; + executableHaskellDepends = [ base time ]; + description = "zZzzZz"; + license = stdenv.lib.licenses.gpl2; + }) {}; + "slice-cpp-gen" = callPackage ({ mkDerivation, base, bytestring, cmdargs, containers, directory , filepath, language-slice, MissingH @@ -180834,26 +189316,25 @@ self: { ]; description = "ws convert markdown to reveal-js"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sloane" = callPackage ({ mkDerivation, aeson, ansi-terminal, attoparsec, base , bloomfilter, bytestring, conduit, conduit-extra, containers , directory, filepath, http-conduit, http-types - , optparse-applicative, resourcet, stringsearch, terminal-size - , text, transformers + , optparse-applicative, resourcet, stringsearch, text, transformers }: mkDerivation { pname = "sloane"; - version = "4.2.0"; - sha256 = "cd2bf21a9ea502ded331780b074991e4b5e06e7b276a6874c9b921bc70ba3595"; + version = "5.0.0"; + sha256 = "0ddd40bf98e6035d66ab0bd89b94b403dc746c6175fe4029c0a8cf7d0ba3276d"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ aeson ansi-terminal attoparsec base bloomfilter bytestring conduit conduit-extra containers directory filepath http-conduit http-types - optparse-applicative resourcet stringsearch terminal-size text - transformers + optparse-applicative resourcet stringsearch text transformers ]; homepage = "http://akc.is/sloane"; description = "A command line interface to Sloane's OEIS"; @@ -180886,6 +189367,7 @@ self: { libraryHaskellDepends = [ base mtl process ]; description = "Testing for minimal strictness"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "slug_0_1_1" = callPackage @@ -180940,6 +189422,7 @@ self: { homepage = "http://community.haskell.org/~aslatter/code/bytearray"; description = "low-level unboxed arrays, with minimal features"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smallcaps" = callPackage @@ -181036,6 +189519,7 @@ self: { homepage = "http://github.com/noteed/smallpt-hs"; description = "A Haskell port of the smallpt path tracer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smallstring" = callPackage @@ -181053,6 +189537,7 @@ self: { homepage = "http://community.haskell.org/~aslatter/code/smallstring/"; description = "A Unicode text type, optimized for low memory overhead"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smaoin" = callPackage @@ -181083,6 +189568,7 @@ self: { homepage = "http://patch-tag.com/r/salazar/smartGroup"; description = "group strings or bytestrings by words in common"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "smartcheck" = callPackage @@ -181132,6 +189618,7 @@ self: { homepage = "http://kyagrd.dyndns.org/~kyagrd/project/smartword/"; description = "Web based flash card for Word Smart I and II vocabularies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sme" = callPackage @@ -181143,6 +189630,7 @@ self: { libraryHaskellDepends = [ base ]; description = "A library for Secure Multi-Execution in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smoothie_0_1_3" = callPackage @@ -181239,6 +189727,7 @@ self: { homepage = "http://tomahawkins.org"; description = "Parsing and printing SMT-LIB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smtLib" = callPackage @@ -181308,6 +189797,7 @@ self: { homepage = "https://github.com/avieth/smtp-mail-ng"; description = "An SMTP client EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smtp2mta" = callPackage @@ -181322,6 +189812,7 @@ self: { homepage = "https://github.com/singpolyma/sock2stream"; description = "Listen for SMTP traffic and send it to an MTA script"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smtps-gmail" = callPackage @@ -181352,6 +189843,7 @@ self: { libraryHaskellDepends = [ base GLUT OpenGL random ]; description = "Snake Game Using OpenGL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap_0_13_3_2" = callPackage @@ -181562,7 +190054,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "snap" = callPackage + "snap_0_14_0_6" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, cereal , clientsession, comonad, configurator, containers, directory , directory-tree, dlist, either, filepath, hashable, heist, lens @@ -181594,6 +190086,39 @@ self: { homepage = "http://snapframework.com/"; description = "Top-level package for the Snap Web Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "snap" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, cereal + , clientsession, comonad, configurator, containers, directory + , directory-tree, dlist, either, filepath, hashable, heist, lens + , logict, MonadCatchIO-transformers, mtl, mwc-random, old-time + , pwstore-fast, regex-posix, snap-core, snap-server, stm + , template-haskell, text, time, transformers, unordered-containers + , vector, vector-algorithms, xmlhtml + }: + mkDerivation { + pname = "snap"; + version = "0.14.0.7"; + sha256 = "98c853d2efa8104f89567a69ad271196e034b30ec13dd71051e6ce6119d15709"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson attoparsec base bytestring cereal clientsession comonad + configurator containers directory directory-tree dlist either + filepath hashable heist lens logict MonadCatchIO-transformers mtl + mwc-random pwstore-fast regex-posix snap-core snap-server stm text + time transformers unordered-containers vector vector-algorithms + xmlhtml + ]; + executableHaskellDepends = [ + base bytestring containers directory directory-tree filepath + hashable old-time snap-server template-haskell text + ]; + homepage = "http://snapframework.com/"; + description = "Top-level package for the Snap Web Framework"; + license = stdenv.lib.licenses.bsd3; }) {}; "snap-accept" = callPackage @@ -181607,6 +190132,7 @@ self: { homepage = "http://github.com/zimothy/snap-accept"; description = "Accept header branching for the Snap web framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-app" = callPackage @@ -181895,6 +190421,7 @@ self: { ]; description = "A collection of useful helpers and utilities for Snap web applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-language" = callPackage @@ -181919,8 +190446,8 @@ self: { }: mkDerivation { pname = "snap-loader-dynamic"; - version = "0.10.0.3"; - sha256 = "7cd7ac11071c0479dcea5a798aab57e4043a50a3a31bf76ed1ce39dba79d645a"; + version = "0.10.0.4"; + sha256 = "f502f7cae63c5ee5c26be5a5e751fc211d922193dc88b3bae9ab447b70b659c0"; libraryHaskellDepends = [ base directory directory-tree hint mtl snap-core template-haskell time unix @@ -181928,6 +190455,7 @@ self: { homepage = "http://snapframework.com/"; description = "Snap: A Haskell Web Framework: dynamic loader"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-loader-static" = callPackage @@ -181967,6 +190495,7 @@ self: { ]; description = "Declarative routing for Snap"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-server_0_9_4_5" = callPackage @@ -182096,6 +190625,7 @@ self: { homepage = "https://github.com/dbp/snap-testing"; description = "A library for BDD-style testing with the Snap Web Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-utils" = callPackage @@ -182114,6 +190644,7 @@ self: { homepage = "https://github.com/LukeHoersten/snap-utils"; description = "Snap Framework utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-web-routes" = callPackage @@ -182170,6 +190701,7 @@ self: { homepage = "https://github.com/soostone/snaplet-actionlog"; description = "Generic action log snaplet for the Snap Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-amqp" = callPackage @@ -182244,6 +190776,7 @@ self: { homepage = "https://github.com/zmthy/snaplet-css-min"; description = "A Snaplet for CSS minification"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-environments" = callPackage @@ -182261,6 +190794,7 @@ self: { jailbreak = true; description = "DEPRECATED! You should use standard Snap >= 0.9 \"environments\" functionality. It provided ability to easly read configuration based on given app environment given at command line, envs are defined in app configuration file"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-fay_0_3_3_8" = callPackage @@ -182417,6 +190951,7 @@ self: { homepage = "https://github.com/mikeplus64/snaplet-hasql"; description = "A Hasql snaplet"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-haxl" = callPackage @@ -182434,6 +190969,7 @@ self: { homepage = "https://github.com/ChristopherBiscardi/snaplet-haxl"; description = "Snaplet for Facebook's Haxl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-hdbc" = callPackage @@ -182456,6 +190992,7 @@ self: { homepage = "http://norm2782.com/"; description = "HDBC snaplet for Snap Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-hslogger" = callPackage @@ -182497,6 +191034,7 @@ self: { homepage = "https://github.com/HaskellCNOrg/snaplet-i18n"; description = "snaplet-i18n"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-influxdb" = callPackage @@ -182516,6 +191054,7 @@ self: { homepage = "https://github.com/ixmatus/snaplet-influxdb"; description = "Snap framework snaplet for the InfluxDB library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-lss" = callPackage @@ -182571,6 +191110,7 @@ self: { jailbreak = true; description = "Snap Framework MongoDB support as Snaplet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-mongodb-minimalistic" = callPackage @@ -182587,6 +191127,7 @@ self: { homepage = "https://github.com/Palmik/snaplet-mongodb-minimalistic"; description = "Minimalistic MongoDB Snaplet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-mysql-simple" = callPackage @@ -182608,6 +191149,7 @@ self: { homepage = "https://github.com/ibotty/snaplet-mysql-simple"; description = "mysql-simple snaplet for the Snap Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-oauth" = callPackage @@ -182635,6 +191177,7 @@ self: { homepage = "https://github.com/HaskellCNOrg/snaplet-oauth"; description = "snaplet-oauth"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-persistent" = callPackage @@ -182769,6 +191312,7 @@ self: { homepage = "https://github.com/dzhus/snaplet-redson/"; description = "CRUD for JSON data with Redis storage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-rest" = callPackage @@ -182788,6 +191332,7 @@ self: { homepage = "http://github.com/zimothy/snaplet-rest"; description = "REST resources for the Snap web framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-riak" = callPackage @@ -182807,6 +191352,7 @@ self: { homepage = "http://github.com/statusfailed/snaplet-riak"; description = "A Snaplet for the Riak database"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-sass" = callPackage @@ -182841,6 +191387,7 @@ self: { jailbreak = true; description = "Snaplet for Sedna Bindings. Essentailly a rip of snaplet-hdbc."; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-ses-html" = callPackage @@ -182922,6 +191469,7 @@ self: { jailbreak = true; description = "Snaplet for Snap Framework enabling developers to administrative tasks akin to Rake tasks from Ruby On Rails framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-typed-sessions" = callPackage @@ -182940,6 +191488,7 @@ self: { jailbreak = true; description = "Typed session snaplets and continuation-based programming for the Snap web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-wordpress" = callPackage @@ -182967,6 +191516,7 @@ self: { homepage = "https://github.com/dbp/snaplet-wordpress"; description = "A snaplet that communicates with wordpress over its api"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snappy" = callPackage @@ -182986,6 +191536,7 @@ self: { homepage = "http://github.com/bos/snappy"; description = "Bindings to the Google Snappy library for fast compression/decompression"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) snappy;}; "snappy-conduit" = callPackage @@ -182999,6 +191550,7 @@ self: { homepage = "http://github.com/tatac1/snappy-conduit/"; description = "Conduit bindings for Snappy (see snappy package)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "snappy-framing" = callPackage @@ -183011,6 +191563,7 @@ self: { homepage = "https://github.com/kim/snappy-framing"; description = "Snappy Framing Format in Haskell"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "snappy-iteratee" = callPackage @@ -183024,6 +191577,7 @@ self: { homepage = "http://github.com/iand675/snappy-iteratee"; description = "An enumeratee that uses Google's snappy compression library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sndfile-enumerators" = callPackage @@ -183044,6 +191598,7 @@ self: { homepage = "http://www.tiresiaspress.us/haskell/sndfile-enumerators"; description = "Audio file reading/writing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sneakyterm" = callPackage @@ -183108,6 +191663,7 @@ self: { homepage = "http://github.com/elginer/snm"; description = "The Simple Nice-Looking Manual Generator"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snmp_0_2_0_0" = callPackage @@ -183159,6 +191715,7 @@ self: { homepage = "http://github.com/nfjinjing/snow-white"; description = "encode any binary instance to white space"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snowball" = callPackage @@ -183208,6 +191765,7 @@ self: { homepage = "http://code.mathr.co.uk/snowglobe"; description = "randomized fractal snowflakes demo"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "soap_0_2_2_5" = callPackage @@ -183310,6 +191868,7 @@ self: { homepage = "https://github.com/singpolyma/sock2stream"; description = "Tunnel a socket over a single datastream (stdin/stdout)"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sockaddr" = callPackage @@ -183410,6 +191969,7 @@ self: { homepage = "https://github.com/lpeterse/haskell-socket-sctp"; description = "STCP socket extensions library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {sctp = null;}; "socketio" = callPackage @@ -183439,6 +191999,7 @@ self: { jailbreak = true; description = "Socket.IO server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "socketson" = callPackage @@ -183465,6 +192026,7 @@ self: { homepage = "https://github.com/aphorisme/socketson"; description = "A small websocket backend provider"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "socks" = callPackage @@ -183514,6 +192076,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "GUI functions as used in the book \"The Haskell School of Expression\""; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "sonic-visualiser" = callPackage @@ -183535,6 +192098,7 @@ self: { homepage = "http://darcs.k-hornz.de/cgi-bin/darcsweb.cgi?r=sonic-visualiser;a=summary"; description = "Sonic Visualiser"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sophia" = callPackage @@ -183580,6 +192144,7 @@ self: { jailbreak = true; description = "Efficient, type-safe sorted sequences"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sorted-list" = callPackage @@ -183641,6 +192206,7 @@ self: { jailbreak = true; description = "Approximate a song from other pieces of sound"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sounddelay" = callPackage @@ -183678,6 +192244,7 @@ self: { homepage = "http://github.com/nfjinjing/source-code-server"; description = "The server backend for the source code iPhone app"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sourcemap_0_1_3_0" = callPackage @@ -183739,6 +192306,7 @@ self: { homepage = "https://github.com/msiegenthaler/SouSiT"; description = "Source/Sink/Transform: An alternative to lazy IO and iteratees"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sox" = callPackage @@ -183778,6 +192346,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Sox"; description = "Write, read, convert audio signals using libsox"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) sox;}; "soyuz" = callPackage @@ -183797,6 +192366,7 @@ self: { homepage = "https://github.com/amtal/0x10c"; description = "DCPU-16 architecture utilities for Notch's 0x10c game"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spacefill" = callPackage @@ -183860,6 +192430,7 @@ self: { homepage = "https://github.com/vtan/spanout"; description = "A breakout clone written in netwire and gloss"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sparse" = callPackage @@ -183887,6 +192458,7 @@ self: { homepage = "http://github.com/ekmett/sparse"; description = "A playground of sparse linear algebra primitives using Morton ordering"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sparse-lin-alg" = callPackage @@ -183917,6 +192489,7 @@ self: { homepage = "http://kyagrd.dyndns.org/wiki/SparseBitmapsForPatternMatchCoverage"; description = "Sparse bitmaps for pattern match coverage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sparsecheck" = callPackage @@ -183929,6 +192502,7 @@ self: { homepage = "http://www.cs.york.ac.uk/~mfn/sparsecheck/"; description = "A Logic Programming Library for Test-Data Generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sparser" = callPackage @@ -183956,6 +192530,7 @@ self: { homepage = "http://github.com/nfjinjing/spata"; description = "brainless form validation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spatial-math" = callPackage @@ -183974,6 +192549,7 @@ self: { ]; description = "3d math including quaternions/euler angles/dcms and utility functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spawn" = callPackage @@ -184041,6 +192617,7 @@ self: { jailbreak = true; description = "Control.Applicative, Data.Foldable, Data.Traversable (compatibility package)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "special-keys" = callPackage @@ -184085,6 +192662,7 @@ self: { homepage = "https://github.com/jfischoff/specialize-th"; description = "Create specialized types from polymorphic ones using TH"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "species" = callPackage @@ -184095,6 +192673,8 @@ self: { pname = "species"; version = "0.3.4.2"; sha256 = "9e1683448aa2152561c65b02fb832e366ce9f47542e5e963abd82d5e08eeb11f"; + revision = "1"; + editedCabalFile = "397aa0a55ea7021bec1f866b9dde980b9ae67319ae2838339f865babf856c431"; libraryHaskellDepends = [ base containers multiset-comb np-extras numeric-prelude template-haskell @@ -184208,6 +192788,7 @@ self: { jailbreak = true; description = "Orbotix Sphero client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sphinx" = callPackage @@ -184238,6 +192819,7 @@ self: { executableHaskellDepends = [ base sphinx ]; description = "Sphinx CLI and demo of Haskell Sphinx library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spice" = callPackage @@ -184256,6 +192838,7 @@ self: { homepage = "http://github.com/crockeo/spice"; description = "An FRP-based game engine written in Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "spike" = callPackage @@ -184278,6 +192861,7 @@ self: { homepage = "http://github.com/Tener/spike"; description = "Experimental web browser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) libsoup;}; "spine" = callPackage @@ -184331,6 +192915,7 @@ self: { homepage = "http://github.com/JohnLato/splaytree"; description = "Provides an annotated splay tree"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "splice" = callPackage @@ -184368,6 +192953,7 @@ self: { homepage = "http://michael.orlitzky.com/code/spline3.php"; description = "A parallel implementation of the Sorokina/Zeilfelder spline scheme"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "splines" = callPackage @@ -184387,6 +192973,7 @@ self: { ]; description = "B-Splines, other splines, and NURBS"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "split_0_1_4_3" = callPackage @@ -184458,6 +193045,7 @@ self: { homepage = "http://code.haskell.org/~thielema/split-record/"; description = "Split a big audio file into pieces at positions of silence"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "split-tchan" = callPackage @@ -184548,6 +193136,7 @@ self: { homepage = "http://github.com/elginer/SpoonUtilities"; description = "Spoon's utilities. Simple testing and nice looking error reporting."; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spoty" = callPackage @@ -184566,6 +193155,7 @@ self: { homepage = "https://github.com/davnils/spoty"; description = "Spotify web API wrapper"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spreadsheet" = callPackage @@ -184614,6 +193204,7 @@ self: { homepage = "https://github.com/yanatan16/haskell-spsa"; description = "Simultaneous Perturbation Stochastic Approximation Optimization Algorithm"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spy" = callPackage @@ -184640,6 +193231,7 @@ self: { homepage = "https://bitbucket.org/ssaasen/spy"; description = "A compact file system watcher for Mac OS X, Linux and Windows"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sql-simple" = callPackage @@ -184658,6 +193250,7 @@ self: { homepage = "https://github.com/philopon/sql-simple"; description = "common middle-level sql client"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sql-simple-mysql" = callPackage @@ -184675,6 +193268,7 @@ self: { homepage = "https://github.com/philopon/sql-simple"; description = "mysql backend for sql-simple"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sql-simple-pool" = callPackage @@ -184693,6 +193287,7 @@ self: { homepage = "https://github.com/philopon/sql-simple"; description = "conection pool for sql-simple"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sql-simple-postgresql" = callPackage @@ -184710,6 +193305,7 @@ self: { homepage = "https://github.com/philopon/sql-simple"; description = "postgresql backend for sql-simple"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sql-simple-sqlite" = callPackage @@ -184723,6 +193319,7 @@ self: { homepage = "https://github.com/philopon/sql-simple"; description = "sqlite backend for sql-simple"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sql-words" = callPackage @@ -184815,6 +193412,7 @@ self: { homepage = "https://github.com/tolysz/sqlite-simple-typed"; description = "Typed extension to sqlite simple"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sqlvalue-list" = callPackage @@ -184848,6 +193446,7 @@ self: { homepage = "http://functionalley.eu/Squeeze/squeeze.html"; description = "A file-packing application"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sr-extra" = callPackage @@ -184886,6 +193485,7 @@ self: { ]; description = "Build and install Debian packages completely from source"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "srcloc_0_4_1" = callPackage @@ -184971,6 +193571,7 @@ self: { homepage = "http://hub.darcs.net/ganesh/ssh"; description = "A pure-Haskell SSH server library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sshd-lint" = callPackage @@ -185041,6 +193642,7 @@ self: { homepage = "http://github.com/erudify/sssp/"; description = "HTTP proxy for S3"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sstable" = callPackage @@ -185059,6 +193661,7 @@ self: { executableHaskellDepends = [ cmdargs ]; description = "SSTables in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ssv" = callPackage @@ -185148,6 +193751,7 @@ self: { homepage = "https://github.com/tsuraan/stable-tree"; description = "Trees whose branches are resistant to change"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stack_0_1_3_0" = callPackage @@ -185851,7 +194455,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ simons ]; }) {}; - "stack_1_0_4_1" = callPackage + "stack_1_0_4_2" = callPackage ({ mkDerivation, aeson, ansi-terminal, async, attoparsec, base , base16-bytestring, base64-bytestring, binary, binary-tagged , blaze-builder, byteable, bytestring, Cabal, conduit @@ -185871,8 +194475,10 @@ self: { }: mkDerivation { pname = "stack"; - version = "1.0.4.1"; - sha256 = "660ce0c2126ddf2bb8c88a7b857571781dd09ac1953a3437522e123830dc537a"; + version = "1.0.4.2"; + sha256 = "3becd40f8886477a943e2feaed6b34d0ea283e770dc35379944e41cb770838d2"; + revision = "2"; + editedCabalFile = "27ed2fa5c035d631eda2be1b73da98e6b627da5277cfd9a4b1a31941ad9484b1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -185940,6 +194546,7 @@ self: { homepage = "http://github.com/rubik/stack-hpc-coveralls"; description = "Initial project template from stack"; license = stdenv.lib.licenses.isc; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stack-prism" = callPackage @@ -185958,6 +194565,7 @@ self: { homepage = "https://github.com/MedeaMelana/stack-prism"; description = "Stack prisms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stack-run" = callPackage @@ -186819,6 +195427,7 @@ self: { homepage = "http://github.com/anttisalonen/starrover2"; description = "Space simulation game"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stash" = callPackage @@ -186908,6 +195517,7 @@ self: { libraryHaskellDepends = [ base MaybeT mtl ]; description = "Typeclass instances for monad transformer stacks with an ST thread at the bottom"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stateref" = callPackage @@ -186944,7 +195554,6 @@ self: { libraryHaskellDepends = [ base mtl transformers transformers-compat ]; - jailbreak = true; description = "Simple State-like monad transformer with saveable and restorable state"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -186991,6 +195600,7 @@ self: { homepage = "http://github.com/brendanhay/statgrab"; description = "Collect system level metrics and statistics"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {statgrab = null;}; "static-canvas" = callPackage @@ -187113,6 +195723,7 @@ self: { ]; description = "Functions for working with Dirichlet densities and mixtures on vectors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "statistics-fusion" = callPackage @@ -187125,6 +195736,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/statistics-fusion"; description = "An implementation of high performance, minimal statistics functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "statistics-hypergeometric-genvar" = callPackage @@ -187259,6 +195871,7 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "A wrapper around Sean Barrett's TrueType rasterizer library"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stdata" = callPackage @@ -187354,6 +195967,7 @@ self: { homepage = "https://github.com/jonpetterbergman/step-function"; description = "Step functions, staircase functions or piecewise constant functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stepwise" = callPackage @@ -187365,6 +195979,7 @@ self: { libraryHaskellDepends = [ base containers mtl ]; homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stickyKeysHotKey" = callPackage @@ -187487,6 +196102,7 @@ self: { homepage = "http://github.com/kholdstare/stm-chunked-queues/"; description = "Chunked Communication Queues"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stm-conduit_2_5_2" = callPackage @@ -187599,7 +196215,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stm-conduit" = callPackage + "stm-conduit_2_7_0" = callPackage ({ mkDerivation, async, base, cereal, cereal-conduit, conduit , conduit-combinators, conduit-extra, directory, doctest, ghc-prim , HUnit, lifted-async, lifted-base, monad-control, monad-loops @@ -187624,6 +196240,34 @@ self: { homepage = "https://github.com/wowus/stm-conduit"; description = "Introduces conduits to channels, and promotes using conduits concurrently"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "stm-conduit" = callPackage + ({ mkDerivation, async, base, cereal, cereal-conduit, conduit + , conduit-combinators, conduit-extra, directory, doctest, ghc-prim + , HUnit, lifted-async, lifted-base, monad-control, monad-loops + , QuickCheck, resourcet, stm, stm-chans, test-framework + , test-framework-hunit, test-framework-quickcheck2, transformers + , void + }: + mkDerivation { + pname = "stm-conduit"; + version = "2.8.0"; + sha256 = "0bad21541ac28765802468c71b61f464daf1fca4b2adf1c66bab006d0a7d3128"; + libraryHaskellDepends = [ + async base cereal cereal-conduit conduit conduit-combinators + conduit-extra directory ghc-prim lifted-async lifted-base + monad-control monad-loops resourcet stm stm-chans transformers void + ]; + testHaskellDepends = [ + base conduit conduit-combinators directory doctest HUnit QuickCheck + resourcet stm stm-chans test-framework test-framework-hunit + test-framework-quickcheck2 transformers + ]; + homepage = "https://github.com/cgaebel/stm-conduit"; + description = "Introduces conduits to channels, and promotes using conduits concurrently"; + license = stdenv.lib.licenses.bsd3; }) {}; "stm-containers_0_2_4" = callPackage @@ -187943,6 +196587,7 @@ self: { homepage = "http://sulzmann.blogspot.com/2008/12/stm-with-control-communication-for.html"; description = "Control communication among retrying transactions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stomp-conduit" = callPackage @@ -188023,6 +196668,7 @@ self: { homepage = "https://github.com/debug-ito/stopwatch"; description = "A simple stopwatch utility"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "storable" = callPackage @@ -188099,6 +196745,7 @@ self: { jailbreak = true; description = "Statically-sized array wrappers with Storable instances for FFI marshaling"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "storable-tuple" = callPackage @@ -188133,6 +196780,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Storable_Vector"; description = "Fast, packed, strict storable arrays with a list interface like ByteString"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "storablevector-carray" = callPackage @@ -188145,6 +196793,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Storable_Vector"; description = "Conversion between storablevector and carray"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "storablevector-streamfusion" = callPackage @@ -188167,6 +196816,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Storable_Vector"; description = "Conversion between storablevector and stream-fusion lists with fusion"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "str" = callPackage @@ -188205,6 +196855,7 @@ self: { ]; description = "Client for Stratum protocol"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stream-fusion" = callPackage @@ -188217,6 +196868,7 @@ self: { homepage = "http://hackage.haskell.org/trac/ghc/ticket/915"; description = "Faster Haskell lists using stream fusion"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stream-monad" = callPackage @@ -188252,6 +196904,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/MIDI"; description = "Programmatically edit MIDI event streams via ALSA"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "streaming" = callPackage @@ -188271,7 +196924,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "streaming-bytestring" = callPackage + "streaming-bytestring_0_1_4_0" = callPackage ({ mkDerivation, base, bytestring, deepseq, exceptions, mmorph, mtl , resourcet, streaming, transformers, transformers-base }: @@ -188286,6 +196939,24 @@ self: { homepage = "https://github.com/michaelt/streaming-bytestring"; description = "effectful byte steams, or: bytestring io done right"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "streaming-bytestring" = callPackage + ({ mkDerivation, base, bytestring, deepseq, exceptions, mmorph, mtl + , resourcet, streaming, transformers, transformers-base + }: + mkDerivation { + pname = "streaming-bytestring"; + version = "0.1.4.2"; + sha256 = "476bd7694b07c48742f7e93e30cb5e618ee2711c0828b640b94c797e63bcb33c"; + libraryHaskellDepends = [ + base bytestring deepseq exceptions mmorph mtl resourcet streaming + transformers transformers-base + ]; + homepage = "https://github.com/michaelt/streaming-bytestring"; + description = "effectful byte steams, or: bytestring io done right"; + license = stdenv.lib.licenses.bsd3; }) {}; "streaming-commons_0_1_7_3" = callPackage @@ -188572,7 +197243,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "streaming-commons" = callPackage + "streaming-commons_0_1_15_1" = callPackage ({ mkDerivation, array, async, base, blaze-builder, bytestring , deepseq, directory, hspec, network, process, QuickCheck, random , stm, text, transformers, unix, zlib @@ -188592,6 +197263,29 @@ self: { homepage = "https://github.com/fpco/streaming-commons"; description = "Common lower-level functions needed by various streaming data libraries"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "streaming-commons" = callPackage + ({ mkDerivation, array, async, base, blaze-builder, bytestring + , deepseq, directory, hspec, network, process, QuickCheck, random + , stm, text, transformers, unix, zlib + }: + mkDerivation { + pname = "streaming-commons"; + version = "0.1.15.2"; + sha256 = "230ad154608ce7c081d1367c77216c85ac47a05623903d45ce693dcea67d499d"; + libraryHaskellDepends = [ + array async base blaze-builder bytestring directory network process + random stm text transformers unix zlib + ]; + testHaskellDepends = [ + array async base blaze-builder bytestring deepseq hspec network + QuickCheck text unix zlib + ]; + homepage = "https://github.com/fpco/streaming-commons"; + description = "Common lower-level functions needed by various streaming data libraries"; + license = stdenv.lib.licenses.mit; }) {}; "streaming-histogram" = callPackage @@ -188648,6 +197342,7 @@ self: { homepage = "https://github.com/michaelt/streaming-utils"; description = "http, attoparsec, pipes and conduit utilities for the streaming libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "streaming-wai" = callPackage @@ -188775,6 +197470,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/strict-concurrency"; description = "Strict concurrency abstractions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "strict-ghc-plugin" = callPackage @@ -189016,6 +197712,7 @@ self: { homepage = "https://github.com/selectel/stringlike"; description = "Transformations to several string-like types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stringprep" = callPackage @@ -189121,7 +197818,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "stripe-core" = callPackage + "stripe-core_2_0_2" = callPackage ({ mkDerivation, aeson, base, bytestring, mtl, text, time , transformers, unordered-containers }: @@ -189136,9 +197833,27 @@ self: { homepage = "https://github.com/dmjio/stripe-haskell"; description = "Stripe API for Haskell - Pure Core"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stripe-haskell" = callPackage + "stripe-core" = callPackage + ({ mkDerivation, aeson, base, bytestring, mtl, text, time + , transformers, unordered-containers + }: + mkDerivation { + pname = "stripe-core"; + version = "2.0.3"; + sha256 = "1c3d319ef29bb3e2863838e553a44a23449dafc8f244c62a7f3ffc7b8305e3a8"; + libraryHaskellDepends = [ + aeson base bytestring mtl text time transformers + unordered-containers + ]; + homepage = "https://github.com/dmjio/stripe-haskell"; + description = "Stripe API for Haskell - Pure Core"; + license = stdenv.lib.licenses.mit; + }) {}; + + "stripe-haskell_2_0_2" = callPackage ({ mkDerivation, base, stripe-core, stripe-http-streams }: mkDerivation { pname = "stripe-haskell"; @@ -189148,9 +197863,22 @@ self: { homepage = "https://github.com/dmjio/stripe"; description = "Stripe API for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stripe-http-streams" = callPackage + "stripe-haskell" = callPackage + ({ mkDerivation, base, stripe-core, stripe-http-streams }: + mkDerivation { + pname = "stripe-haskell"; + version = "2.0.3"; + sha256 = "225b6b5671181a8349b952bf98a30c40bf0ee24ab53cc720f02d7979ad7cd5bb"; + libraryHaskellDepends = [ base stripe-core stripe-http-streams ]; + homepage = "https://github.com/dmjio/stripe"; + description = "Stripe API for Haskell"; + license = stdenv.lib.licenses.mit; + }) {}; + + "stripe-http-streams_2_0_2" = callPackage ({ mkDerivation, aeson, base, bytestring, HsOpenSSL, http-streams , io-streams, stripe-core, text }: @@ -189165,24 +197893,46 @@ self: { doCheck = false; description = "Stripe API for Haskell - http-streams backend"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "stripe-http-streams" = callPackage + ({ mkDerivation, aeson, base, bytestring, free, HsOpenSSL, hspec + , http-streams, io-streams, stripe-core, stripe-tests, text + }: + mkDerivation { + pname = "stripe-http-streams"; + version = "2.0.3"; + sha256 = "c6423451c388e3006012b01932b3fdd23d344a5d8dd73755ef00cb74b7c736f6"; + libraryHaskellDepends = [ + aeson base bytestring HsOpenSSL http-streams io-streams stripe-core + text + ]; + testHaskellDepends = [ + base free HsOpenSSL hspec http-streams stripe-core stripe-tests + ]; + jailbreak = true; + doCheck = false; + description = "Stripe API for Haskell - http-streams backend"; + license = stdenv.lib.licenses.mit; + }) {stripe-tests = null;}; + "strive" = callPackage ({ mkDerivation, aeson, base, bytestring, data-default, gpolyline - , hlint, http-conduit, http-types, markdown-unlit, template-haskell - , text, time, transformers + , http-conduit, http-types, markdown-unlit, template-haskell, text + , time, transformers }: mkDerivation { pname = "strive"; - version = "2.2.0"; - sha256 = "558042448e7694f893cba63b1191a8868b2d819fce3a1a54ac5309f6d9e0878a"; + version = "2.2.1"; + sha256 = "eeecc39037562bf656349d6e42b52870859d7b2be72deb81bd7b8bb72d70fca5"; libraryHaskellDepends = [ aeson base bytestring data-default gpolyline http-conduit http-types template-haskell text time transformers ]; - testHaskellDepends = [ base bytestring hlint markdown-unlit time ]; - homepage = "http://taylor.fausak.me/strive/"; - description = "A Haskell client for the Strava V3 API"; + testHaskellDepends = [ base bytestring markdown-unlit time ]; + homepage = "https://github.com/tfausak/strive#readme"; + description = "A client for the Strava V3 API"; license = stdenv.lib.licenses.mit; }) {}; @@ -189271,6 +198021,7 @@ self: { jailbreak = true; description = "Structured MongoDB interface"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "structures" = callPackage @@ -189299,6 +198050,7 @@ self: { homepage = "http://github.com/ekmett/structures"; description = "\"Advanced\" Data Structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stunclient" = callPackage @@ -189342,6 +198094,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine"; description = "A revival of the classic game Stunts (LambdaCube tech demo)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stylish-haskell_0_5_11_0" = callPackage @@ -189709,6 +198462,7 @@ self: { ]; description = "Get the total, put a single element"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "subhask" = callPackage @@ -189735,6 +198489,7 @@ self: { homepage = "http://github.com/mikeizbicki/subhask"; description = "Type safe interface for programming in subcategories of Hask"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "subleq-toolchain" = callPackage @@ -189757,6 +198512,7 @@ self: { jailbreak = true; description = "Toolchain of subleq computer"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "subnet" = callPackage @@ -189899,6 +198655,7 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Abstract over the constraints on the parameters to type constructors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sump" = callPackage @@ -189946,6 +198703,7 @@ self: { homepage = "http://www.github.com/massysett/sunlight"; description = "Test Cabalized package against multiple dependency versions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sunroof-compiler" = callPackage @@ -189965,6 +198723,7 @@ self: { homepage = "https://github.com/ku-fpg/sunroof-compiler"; description = "Monadic Javascript Compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sunroof-examples" = callPackage @@ -189987,6 +198746,7 @@ self: { homepage = "https://github.com/ku-fpg/sunroof-examples"; description = "Tests for Sunroof"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sunroof-server" = callPackage @@ -190010,6 +198770,7 @@ self: { homepage = "https://github.com/ku-fpg/sunroof-server"; description = "Monadic Javascript Compiler - Server Utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "super-user-spark" = callPackage @@ -190038,6 +198799,7 @@ self: { jailbreak = true; description = "Configure your dotfile deployment with a DSL"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "supercollider-ht" = callPackage @@ -190080,6 +198842,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/SuperCollider"; description = "Demonstrate how to control SuperCollider via ALSA-MIDI"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "superdoc" = callPackage @@ -190099,6 +198862,7 @@ self: { homepage = "http://www.mathstat.dal.ca/~selinger/superdoc/"; description = "Additional documentation markup and Unicode support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "supero" = callPackage @@ -190119,6 +198883,7 @@ self: { homepage = "http://community.haskell.org/~ndm/supero/"; description = "A Supercompiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "supervisor" = callPackage @@ -190133,6 +198898,7 @@ self: { homepage = "http://github.com/agocorona/supervisor"; description = "Control an internal monad execution for trace generation, backtrakcking, testing and other purposes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "suspend" = callPackage @@ -190243,8 +199009,10 @@ self: { }: mkDerivation { pname = "svg-tree"; - version = "0.4.1"; - sha256 = "eacdf66bad077c31d05979d82090dac7839a909d43e50876698d6c61eb0f7fe5"; + version = "0.4.2"; + sha256 = "9564f33d166af1fa3d611fb0b04fe9cd729dfe23b81a124ab14514085f737b64"; + revision = "1"; + editedCabalFile = "44363aad52e09d592887852965cf0a07fb8f865d72c2832129dc9b39db9353b3"; libraryHaskellDepends = [ attoparsec base bytestring containers JuicyPixels lens linear mtl scientific text transformers vector xml @@ -190270,6 +199038,7 @@ self: { homepage = "http://www.informatik.uni-kiel.de/~jgr/svg2q"; description = "Code generation tool for Quartz code from a SVG"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "svgcairo" = callPackage @@ -190286,6 +199055,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the libsvg-cairo library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) librsvg;}; "svgutils" = callPackage @@ -190344,6 +199114,7 @@ self: { homepage = "http://github.com/aleator/Simple-SVM"; description = "Medium level, simplified, bindings to libsvm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "svndump" = callPackage @@ -190363,6 +199134,7 @@ self: { homepage = "http://github.com/jwiegley/svndump/"; description = "Library for reading Subversion dump files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "swagger" = callPackage @@ -190439,8 +199211,8 @@ self: { }: mkDerivation { pname = "swagger2"; - version = "2.0.1"; - sha256 = "ff8c3a195ff7689ba027d7caecd9b20505529ecc4962ddb7503b5130aa815898"; + version = "2.0.2"; + sha256 = "a9d2d65793e2c6767e06effd8e947f0072b2d6dd414e85012b73a2574167649b"; libraryHaskellDepends = [ aeson base base-compat containers hashable http-media lens mtl network scientific template-haskell text time transformers @@ -190454,6 +199226,7 @@ self: { homepage = "https://github.com/GetShopTV/swagger2"; description = "Swagger 2.0 data model"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "swapper" = callPackage @@ -190472,6 +199245,7 @@ self: { homepage = "http://github.com/roman-smrz/swapper/"; description = "Transparently swapping data from in-memory structures to disk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) tokyocabinet;}; "swearjure" = callPackage @@ -190493,6 +199267,7 @@ self: { homepage = "http://www.swearjure.com"; description = "Clojure without alphanumerics"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "swf" = callPackage @@ -190505,6 +199280,7 @@ self: { homepage = "http://www.n-heptane.com/nhlab"; description = "A library for creating Shockwave Flash (SWF) files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "swift-lda" = callPackage @@ -190521,6 +199297,7 @@ self: { homepage = "https://bitbucket.org/gchrupala/colada"; description = "Online sampler for Latent Dirichlet Allocation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "swish" = callPackage @@ -190569,6 +199346,7 @@ self: { jailbreak = true; description = "A simple web server for serving directories, similar to weborf"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syb_0_4_2" = callPackage @@ -190652,6 +199430,7 @@ self: { homepage = "http://github.com/ekmett/syb-extras/"; description = "Higher order versions of the Scrap Your Boilerplate classes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syb-with-class_0_6_1_5" = callPackage @@ -190724,6 +199503,7 @@ self: { homepage = "https://github.com/lfairy/sylvia"; description = "Lambda calculus visualization"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sym" = callPackage @@ -190751,6 +199531,7 @@ self: { homepage = "http://github.com/akc/sym-plot"; description = "Plot permutations; an addition to the sym package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "symbol" = callPackage @@ -190767,6 +199548,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "symengine-hs" = callPackage + ({ mkDerivation, base, gmp, gmpxx, symengine }: + mkDerivation { + pname = "symengine-hs"; + version = "0.1.1.0"; + sha256 = "f4aa385e16a13007aaa369dfa771c8e3880ed00139a02fbc1d20d346a0d20156"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base ]; + executableHaskellDepends = [ base ]; + executableSystemDepends = [ gmp gmpxx symengine ]; + testHaskellDepends = [ base ]; + testSystemDepends = [ gmp gmpxx symengine ]; + homepage = "http://github.com/bollu/symengine.hs#readme"; + description = "SymEngine symbolic mathematics engine for Haskell"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) gmp; inherit (pkgs) gmpxx; symengine = null;}; + "sync" = callPackage ({ mkDerivation, base, stm }: mkDerivation { @@ -190776,6 +199576,7 @@ self: { libraryHaskellDepends = [ base stm ]; description = "A fast implementation of synchronous channels with a CML-like API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sync-mht" = callPackage @@ -190811,6 +199612,7 @@ self: { homepage = "https://github.com/ekarayel/sync-mht"; description = "Fast incremental file transfer using Merkle-Hash-Trees"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "synchronous-channels" = callPackage @@ -190850,6 +199652,7 @@ self: { homepage = "https://github.com/jetho/syncthing-hs"; description = "Haskell bindings for the Syncthing REST API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "synt" = callPackage @@ -190899,6 +199702,7 @@ self: { homepage = "https://github.com/emilaxelsson/syntactic"; description = "Generic representation and manipulation of abstract syntax"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-linux" ]; }) {}; "syntactical" = callPackage @@ -190927,6 +199731,7 @@ self: { ]; description = "Reversible parsing and pretty-printing"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-attoparsec" = callPackage @@ -190942,6 +199747,7 @@ self: { ]; description = "Syntax instances for Attoparsec"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-example" = callPackage @@ -190960,6 +199766,7 @@ self: { ]; description = "Example application using syntax, a library for abstract syntax descriptions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-example-json" = callPackage @@ -190978,6 +199785,7 @@ self: { ]; description = "Example JSON parser/pretty-printer"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-pretty" = callPackage @@ -190992,6 +199800,7 @@ self: { ]; description = "Syntax instance for pretty, the pretty printing library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-printer" = callPackage @@ -191009,6 +199818,7 @@ self: { jailbreak = true; description = "Text and ByteString printers for 'syntax'"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-trees" = callPackage @@ -191024,6 +199834,7 @@ self: { ]; description = "Convert between different Haskell syntax trees"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-trees-fork-bairyn" = callPackage @@ -191039,6 +199850,7 @@ self: { ]; description = "Convert between different Haskell syntax trees. Bairyn's fork."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer" = callPackage @@ -191064,6 +199876,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Audio signal processing coded in Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer-alsa" = callPackage @@ -191088,6 +199901,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Control synthesizer effects via ALSA/MIDI"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer-core" = callPackage @@ -191115,6 +199929,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Audio signal processing coded in Haskell: Low level part"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer-dimensional" = callPackage @@ -191136,6 +199951,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Audio signal processing with static physical dimensions"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer-filter" = callPackage @@ -191153,6 +199969,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Audio signal processing coded in Haskell: Filter networks"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer-inference" = callPackage @@ -191203,6 +200020,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Efficient signal processing using runtime compilation"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer-midi" = callPackage @@ -191228,6 +200046,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Render audio signals from MIDI files or realtime messages"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sys-auth-smbclient" = callPackage @@ -191326,6 +200145,7 @@ self: { homepage = "https://github.com/d12frosted/CanonicalPath"; description = "Abstract data type for canonical paths with some utilities"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "system-command" = callPackage @@ -191596,6 +200416,7 @@ self: { homepage = "http://darcs.imperialviolet.org/system-inotify"; description = "Binding to Linux's inotify interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "system-lifted" = callPackage @@ -191620,6 +200441,7 @@ self: { homepage = "https://github.com/jcristovao/system-lifted"; description = "Lifted versions of System functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "system-posix-redirect" = callPackage @@ -191656,6 +200478,7 @@ self: { homepage = "https://github.com/wowus/system-random-effect"; description = "Random number generation for extensible effects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "system-time-monotonic" = callPackage @@ -191668,6 +200491,7 @@ self: { homepage = "https://github.com/joeyadams/haskell-system-time-monotonic"; description = "Simple library for using the system's monotonic clock"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "system-util" = callPackage @@ -191779,6 +200603,7 @@ self: { homepage = "not available"; description = "Transito Abierto: convenience library when using Takusen and Oracle"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "table" = callPackage @@ -191850,6 +200675,7 @@ self: { homepage = "http://github.com/ekmett/tables/"; description = "In-memory storage with multiple keys using lenses and traversals"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tablestorage" = callPackage @@ -191870,6 +200696,7 @@ self: { homepage = "http://github.com/paf31/tablestorage"; description = "Azure Table Storage REST API Wrapper"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tabloid" = callPackage @@ -191888,6 +200715,7 @@ self: { ]; description = "View the output of shell commands in a table"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tabular_0_2_2_5" = callPackage @@ -191946,6 +200774,7 @@ self: { homepage = "http://github.com/travitch/taffybar"; description = "A desktop bar similar to xmobar, but with more GUI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {gtk2 = pkgs.gnome2.gtk;}; "tag-bits" = callPackage @@ -192092,6 +200921,7 @@ self: { jailbreak = true; description = "Lists tagged with a type-level natural number representing their length"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tagged-th" = callPackage @@ -192106,6 +200936,21 @@ self: { jailbreak = true; description = "QuasiQuoter and Template Haskell splices for creating proxies at higher-kinds"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tagged-timers" = callPackage + ({ mkDerivation, base, time, transformers, unordered-containers }: + mkDerivation { + pname = "tagged-timers"; + version = "0.1.0.0"; + sha256 = "0156e746aee65704b630dc32617db4d756fb8abd680633e495a4fa38674dda77"; + libraryHaskellDepends = [ + base time transformers unordered-containers + ]; + homepage = "http://github.com/ucsd-progsys/tagged-timers"; + description = "Simple wrappers for timing IO actions (single-threaded)"; + license = stdenv.lib.licenses.mit; }) {}; "tagged-transformer" = callPackage @@ -192302,7 +201147,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tagsoup" = callPackage + "tagsoup_0_13_8" = callPackage ({ mkDerivation, base, bytestring, containers, text }: mkDerivation { pname = "tagsoup"; @@ -192314,6 +201159,21 @@ self: { homepage = "https://github.com/ndmitchell/tagsoup#readme"; description = "Parsing and extracting information from (possibly malformed) HTML/XML documents"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tagsoup" = callPackage + ({ mkDerivation, base, bytestring, containers, text }: + mkDerivation { + pname = "tagsoup"; + version = "0.13.9"; + sha256 = "9369bacfa156a96985c7b06180b4aacf73635ae356e617eb9f72af9757569721"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bytestring containers text ]; + homepage = "https://github.com/ndmitchell/tagsoup#readme"; + description = "Parsing and extracting information from (possibly malformed) HTML/XML documents"; + license = stdenv.lib.licenses.bsd3; }) {}; "tagsoup-ht" = callPackage @@ -192339,6 +201199,7 @@ self: { homepage = "http://code.haskell.org/~thielema/tagsoup-ht/"; description = "alternative parser for the tagsoup package"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tagsoup-parsec" = callPackage @@ -192351,6 +201212,7 @@ self: { homepage = "http://www.killersmurf.com"; description = "Tokenizes Tag, so [ Tag ] can be used as parser input"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tagstream-conduit" = callPackage @@ -192404,6 +201266,7 @@ self: { homepage = "https://github.com/paulrzcz/takusen-oracle.git"; description = "Database library with left-fold interface for Oracle"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {clntsh = null; sqlplus = null;}; "tamarin-prover" = callPackage @@ -192434,6 +201297,7 @@ self: { homepage = "http://www.infsec.ethz.ch/research/software/tamarin"; description = "The Tamarin prover for security protocol analysis"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tamarin-prover-term" = callPackage @@ -192454,6 +201318,7 @@ self: { homepage = "http://www.infsec.ethz.ch/research/software/tamarin"; description = "Term manipulation library for the tamarin prover"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tamarin-prover-theory" = callPackage @@ -192477,6 +201342,7 @@ self: { homepage = "http://www.infsec.ethz.ch/research/software/tamarin"; description = "Term manipulation library for the tamarin prover"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tamarin-prover-utils" = callPackage @@ -192496,6 +201362,7 @@ self: { homepage = "http://www.infsec.ethz.ch/research/software/tamarin"; description = "Utility library for the tamarin prover"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tamper" = callPackage @@ -192651,7 +201518,7 @@ self: { testSystemDepends = [ z3 ]; description = "Generate test-suites from refinement types"; license = stdenv.lib.licenses.mit; - maintainers = with stdenv.lib.maintainers; [ gridaphobe ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) z3;}; "task" = callPackage @@ -192672,6 +201539,45 @@ self: { jailbreak = true; description = "A command line tool for keeping track of tasks you worked on"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "task-distribution" = callPackage + ({ mkDerivation, async, base, binary, bytestring, bzlib, containers + , directory, distributed-process + , distributed-process-simplelocalnet, distributed-static, filepath + , hadoop-rpc, hashable, hint, hslogger, hspec, json, packman + , process, rank1dynamic, split, strings, temporary, text, time + , transformers, vector, zlib + }: + mkDerivation { + pname = "task-distribution"; + version = "0.1.0.3"; + sha256 = "1d655f59987f61b4c2fd72b220187d106cda96b2b4c18a47a6d6386261afe3cf"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + async base binary bytestring bzlib containers directory + distributed-process distributed-process-simplelocalnet + distributed-static filepath hadoop-rpc hashable hint hslogger + packman process rank1dynamic split temporary text time transformers + vector zlib + ]; + executableHaskellDepends = [ + async base binary bytestring bzlib containers directory + distributed-process filepath hadoop-rpc hslogger json process split + strings temporary text time vector zlib + ]; + testHaskellDepends = [ + base binary bytestring directory distributed-process + distributed-process-simplelocalnet distributed-static filepath + hadoop-rpc hint hslogger hspec packman process rank1dynamic split + temporary text transformers vector + ]; + homepage = "http://github.com/michaxm/task-distribution#readme"; + description = "Distributed processing of changing tasks"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "taskpool" = callPackage @@ -192690,6 +201596,7 @@ self: { ]; description = "Manage pools of possibly interdependent tasks using STM and async"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "tasty_0_10_1" = callPackage @@ -192935,6 +201842,25 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "tasty-groundhog-converters" = callPackage + ({ mkDerivation, aeson, base, bimap, bytestring, containers + , groundhog, groundhog-converters, groundhog-sqlite, groundhog-th + , tasty, tasty-hunit, tasty-quickcheck + }: + mkDerivation { + pname = "tasty-groundhog-converters"; + version = "0.1.0"; + sha256 = "86c5ca80f529b1b9e39a10e11dee3e2d42ddfda765637ecbc8465ebf4e6dab23"; + libraryHaskellDepends = [ + aeson base bimap bytestring containers groundhog + groundhog-converters groundhog-sqlite groundhog-th tasty + tasty-hunit tasty-quickcheck + ]; + description = "Tasty Tests for groundhog converters"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "tasty-hspec_1_1" = callPackage ({ mkDerivation, base, hspec, hspec-core, QuickCheck, random, tasty , tasty-quickcheck, tasty-smallcheck @@ -193066,6 +201992,7 @@ self: { jailbreak = true; description = "automated integration of QuickCheck properties into tasty suites"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tasty-kat_0_0_1" = callPackage @@ -193412,6 +202339,7 @@ self: { homepage = "http://darcs.monoid.at/tbox"; description = "Transactional variables and data structures with IO hooks"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tcache-AWS" = callPackage @@ -193445,6 +202373,7 @@ self: { homepage = "http://bitcheese.net/wiki/code/tccli"; description = "TokyoCabinet CLI interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tce-conf" = callPackage @@ -193481,6 +202410,7 @@ self: { homepage = "http://www.cl.cam.ac.uk/~pes20/Netsem/"; description = "A purely functional TCP implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tdd-util" = callPackage @@ -193508,6 +202438,7 @@ self: { ]; description = "Test framework wrapper"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tdoc" = callPackage @@ -193535,6 +202466,7 @@ self: { libraryHaskellDepends = [ base containers fgl graphviz ]; description = "Graphical modeling tools for sequential teams"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "teeth" = callPackage @@ -193565,6 +202497,7 @@ self: { ]; description = "Telegram API client"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "telegram-api" = callPackage @@ -193573,8 +202506,8 @@ self: { }: mkDerivation { pname = "telegram-api"; - version = "0.2.1.0"; - sha256 = "02e564a45e095053f36e77772fc8dd9847b65f95087d47c6d50b96418f373a4f"; + version = "0.2.1.1"; + sha256 = "fd2ca89b40cdf7128c8739e5d3ff32278c5ab30aa9de21e8ab5a4ff0a2867705"; libraryHaskellDepends = [ aeson base either servant servant-client text ]; @@ -193671,6 +202604,7 @@ self: { homepage = "https://github.com/haskell-pkg-janitors/template-default"; description = "declaring Default instances just got even easier"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "template-haskell_2_10_0_0" = callPackage @@ -193697,6 +202631,7 @@ self: { homepage = "https://github.com/HaskellZhangSong/TemplateHaskellUtils"; description = "Some utilities for template Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "template-hsml" = callPackage @@ -193718,6 +202653,7 @@ self: { jailbreak = true; description = "Haskell's Simple Markup Language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "template-yj" = callPackage @@ -193731,6 +202667,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/template/wiki"; description = "Process template file"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "templatepg" = callPackage @@ -193785,6 +202722,7 @@ self: { homepage = "https://github.com/ixmatus/hs-tempodb"; description = "A small Haskell wrapper around the TempoDB api"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "temporal-csound" = callPackage @@ -193803,6 +202741,7 @@ self: { homepage = "https://github.com/anton-k/temporal-csound"; description = "library to make electronic music, brings together temporal-music-notation and csound-expression packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "temporal-media" = callPackage @@ -193946,6 +202885,7 @@ self: { jailbreak = true; description = "Interpreter for the FRP language Tempus"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tempus-fugit" = callPackage @@ -193975,6 +202915,7 @@ self: { homepage = "http://noaxiom.org/tensor"; description = "A completely type-safe library for linear algebra"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "term-rewriting" = callPackage @@ -193994,6 +202935,7 @@ self: { homepage = "http://cl-informatik.uibk.ac.at/software/haskell-rewriting/"; description = "Term Rewriting Library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "termbox-bindings" = callPackage @@ -194010,6 +202952,7 @@ self: { homepage = "https://github.com/luciferous/termbox-bindings"; description = "Bindings to the Termbox library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "terminal-progress-bar" = callPackage @@ -194162,6 +203105,7 @@ self: { ]; description = "a ternary library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "terrahs" = callPackage @@ -194176,6 +203120,7 @@ self: { homepage = "http://lucc.ess.inpe.br/doku.php?id=terrahs"; description = "A Haskell GIS Programming Environment"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {terralib4c = null; translib = null;}; "tersmu" = callPackage @@ -194274,6 +203219,7 @@ self: { jailbreak = true; description = "Test.Framework wrapper for DocTest"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "test-framework-golden" = callPackage @@ -194352,6 +203298,7 @@ self: { homepage = "http://batterseapower.github.com/test-framework/"; description = "QuickCheck support for the test-framework package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "test-framework-quickcheck2" = callPackage @@ -194520,7 +203467,6 @@ self: { hspec-expectations-lifted mtl process QuickCheck regex-posix template-haskell text transformers transformers-compat unix ]; - jailbreak = true; homepage = "http://gree.github.io/haskell-test-sandbox/"; description = "Sandbox for system tests"; license = stdenv.lib.licenses.bsd3; @@ -194628,6 +203574,7 @@ self: { jailbreak = true; description = "Small test package"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "testing-feat" = callPackage @@ -194673,6 +203620,7 @@ self: { homepage = "http://github.com/roman/testloop"; description = "Quick feedback loop for test suites"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "testpack" = callPackage @@ -194691,6 +203639,7 @@ self: { homepage = "https://github.com/jgoerzen/testpack"; description = "Test Utililty Pack for HUnit and QuickCheck (unmaintained)"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "testpattern" = callPackage @@ -194705,6 +203654,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/testpattern"; description = "Display a monitor test pattern"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "testrunner" = callPackage @@ -194719,6 +203669,7 @@ self: { ]; description = "Easy unit test driver framework"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tetris" = callPackage @@ -194733,6 +203684,7 @@ self: { homepage = "http://d.hatena.ne.jp/mokehehe/20080921/tetris"; description = "A 2-D clone of Tetris"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "tex2txt" = callPackage @@ -194749,6 +203701,7 @@ self: { homepage = "http://textmining.lt/tex2txt/"; description = "LaTeX to plain-text conversion"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "texmath_0_8" = callPackage @@ -194980,7 +203933,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "texmath" = callPackage + "texmath_0_8_4_2" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , mtl, network-uri, pandoc-types, parsec, process, split, syb , temporary, text, utf8-string, xml @@ -195002,6 +203955,31 @@ self: { homepage = "http://github.com/jgm/texmath"; description = "Conversion between formats used to represent mathematics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "texmath" = callPackage + ({ mkDerivation, base, bytestring, containers, directory, filepath + , mtl, network-uri, pandoc-types, parsec, process, split, syb + , temporary, text, utf8-string, xml + }: + mkDerivation { + pname = "texmath"; + version = "0.8.5"; + sha256 = "6a1897f0ea4f24246425d12e3ed80a790a1677160199b2ea7ecfab787cc61db5"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers mtl pandoc-types parsec syb xml + ]; + executableHaskellDepends = [ network-uri ]; + testHaskellDepends = [ + base bytestring directory filepath process split temporary text + utf8-string xml + ]; + homepage = "http://github.com/jgm/texmath"; + description = "Conversion between formats used to represent mathematics"; + license = "GPL"; }) {}; "texrunner" = callPackage @@ -195022,6 +204000,7 @@ self: { ]; description = "Functions for running Tex from Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text_1_1_1_3" = callPackage @@ -195160,7 +204139,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "text" = callPackage + "text_1_2_2_0" = callPackage ({ mkDerivation, array, base, binary, bytestring, deepseq , directory, ghc-prim, HUnit, integer-gmp, QuickCheck , quickcheck-unicode, random, test-framework, test-framework-hunit @@ -195182,6 +204161,31 @@ self: { homepage = "https://github.com/bos/text"; description = "An efficient packed Unicode text type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "text" = callPackage + ({ mkDerivation, array, base, binary, bytestring, deepseq + , directory, ghc-prim, HUnit, integer-gmp, QuickCheck + , quickcheck-unicode, random, test-framework, test-framework-hunit + , test-framework-quickcheck2 + }: + mkDerivation { + pname = "text"; + version = "1.2.2.1"; + sha256 = "1addb1bdf36293c996653c9a0a320b5491714495862d997a23fb1ecd41ff395b"; + libraryHaskellDepends = [ + array base binary bytestring deepseq ghc-prim integer-gmp + ]; + testHaskellDepends = [ + array base binary bytestring deepseq directory ghc-prim HUnit + integer-gmp QuickCheck quickcheck-unicode random test-framework + test-framework-hunit test-framework-quickcheck2 + ]; + doCheck = false; + homepage = "https://github.com/bos/text"; + description = "An efficient packed Unicode text type"; + license = stdenv.lib.licenses.bsd3; }) {}; "text-and-plots" = callPackage @@ -195335,6 +204339,7 @@ self: { homepage = "http://github.com/finnsson/text-json-qq"; description = "Json Quasiquatation for Haskell"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-latin1" = callPackage @@ -195430,6 +204435,7 @@ self: { homepage = "https://github.com/joelteon/text-normal.git"; description = "Unicode-normalized text"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-position" = callPackage @@ -195529,6 +204535,7 @@ self: { homepage = "https://github.com/acfoltzer/text-register-machine"; description = "A Haskell implementation of the 1# Text Register Machine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-render" = callPackage @@ -195574,7 +204581,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "text-show_2_1_2" = callPackage + "text-show" = callPackage ({ mkDerivation, array, base, base-compat, base-orphans, bifunctors , bytestring, bytestring-builder, containers, generic-deriving , ghc-prim, hspec, integer-gmp, nats, QuickCheck @@ -195598,14 +204605,12 @@ self: { quickcheck-instances tagged text transformers transformers-compat void ]; - jailbreak = true; homepage = "https://github.com/RyanGlScott/text-show"; description = "Efficient conversion of values into Text"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "text-show" = callPackage + "text-show_3_0_1" = callPackage ({ mkDerivation, array, base, base-compat, base-orphans, bifunctors , bytestring, bytestring-builder, containers, generic-deriving , ghc-prim, hspec, integer-gmp, nats, QuickCheck @@ -195628,9 +204633,11 @@ self: { integer-gmp nats QuickCheck quickcheck-instances semigroups tagged template-haskell text th-lift transformers transformers-compat void ]; + jailbreak = true; homepage = "https://github.com/RyanGlScott/text-show"; description = "Efficient conversion of values into Text"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-show-instances" = callPackage @@ -195660,9 +204667,11 @@ self: { transformers transformers-compat unix unordered-containers vector xhtml ]; + jailbreak = true; homepage = "https://github.com/RyanGlScott/text-show-instances"; description = "Additional instances for text-show"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-stream-decode" = callPackage @@ -195713,6 +204722,7 @@ self: { homepage = "http://github.com/finnsson/Text.XML.Generic"; description = "Serialize Data to XML (strings)"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-xml-qq" = callPackage @@ -195725,6 +204735,7 @@ self: { homepage = "http://www.github.com/finnsson/text-xml-qq"; description = "Quasiquoter for xml. XML DSL in Haskell."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-zipper" = callPackage @@ -195778,6 +204789,7 @@ self: { homepage = "https://github.com/spockz/Haskell-Code-Completion-for-TextMate"; description = "A simple Haskell program to provide tags for Haskell code completion in TextMate"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "textocat-api" = callPackage @@ -195861,6 +204873,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Type_arithmetic"; description = "Template-Haskell code for tfp"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tftp" = callPackage @@ -195887,6 +204900,7 @@ self: { homepage = "http://github.com/sheyll/tftp"; description = "A library for building tftp servers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "tga" = callPackage @@ -195970,6 +204984,7 @@ self: { homepage = "https://github.com/seereason/th-context"; description = "Test instance context"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "th-desugar_1_4_2" = callPackage @@ -196228,6 +205243,7 @@ self: { ]; description = "A place to collect orphan instances for Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "th-kinds" = callPackage @@ -196240,6 +205256,7 @@ self: { jailbreak = true; description = "Automated kind inference in Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "th-kinds-fork" = callPackage @@ -196618,6 +205635,7 @@ self: { jailbreak = true; description = "A simple client for the TheoremQuest theorem proving game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "these_0_6_2_0" = callPackage @@ -196707,6 +205725,7 @@ self: { homepage = "http://web.cecs.pdx.edu/~mpj/thih/"; description = "Typing Haskell In Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "thimk" = callPackage @@ -196725,6 +205744,7 @@ self: { homepage = "http://wiki.cs.pdx.edu/bartforge/thimk"; description = "Command-line spelling word suggestion tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "thorn" = callPackage @@ -196876,6 +205896,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ThreadScope"; description = "A graphical tool for profiling parallel Haskell programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "threefish" = callPackage @@ -196935,6 +205956,7 @@ self: { homepage = "http://thrift.apache.org"; description = "Haskell bindings for the Apache Thrift RPC system"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "thrist" = callPackage @@ -197058,6 +206080,7 @@ self: { homepage = "https://github.com/koterpillar/tianbar"; description = "A desktop bar based on WebKit"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {gtk2 = pkgs.gnome2.gtk;}; "tic-tac-toe" = callPackage @@ -197072,6 +206095,7 @@ self: { homepage = "http://ecks.homeunix.net"; description = "Useful if reading \"Why FP matters\" by John Hughes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tickle" = callPackage @@ -197093,6 +206117,7 @@ self: { homepage = "https://github.com/NICTA/tickle"; description = "A port of @Data.Binary@"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "tictactoe3d" = callPackage @@ -197126,6 +206151,7 @@ self: { homepage = "http://tidal.lurk.org/"; description = "Pattern language for improvised music"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "tidal-midi" = callPackage @@ -197143,6 +206169,7 @@ self: { homepage = "http://tidal.lurk.org/"; description = "MIDI support for tidal"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tidal-vis" = callPackage @@ -197155,6 +206182,7 @@ self: { homepage = "http://yaxu.org/tidal/"; description = "Visual rendering for Tidal patterns"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "tie-knot" = callPackage @@ -197197,6 +206225,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome"; description = "Tiger Compiler of Universiteit Utrecht"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tight-apply" = callPackage @@ -197243,6 +206272,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/tighttp/wiki"; description = "Tiny and Incrementally-Growing HTTP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tilings" = callPackage @@ -197274,6 +206304,7 @@ self: { homepage = "http://www.timber-lang.org"; description = "The Timber Compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "time_1_6" = callPackage @@ -197298,6 +206329,22 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "time-cache" = callPackage + ({ mkDerivation, auto-update, base, text, time, time-units + , transformers + }: + mkDerivation { + pname = "time-cache"; + version = "0.1"; + sha256 = "4c28fcd9bbe16e9e21ed235e1c5bb29bc4493901422773c06bdae61227d30e30"; + libraryHaskellDepends = [ + auto-update base text time time-units transformers + ]; + homepage = "http://rel4tion.org/projects/time-cache"; + description = "Cache current time and formatted time text"; + license = stdenv.lib.licenses.publicDomain; + }) {}; + "time-compat" = callPackage ({ mkDerivation, base, old-time, time }: mkDerivation { @@ -197321,6 +206368,7 @@ self: { homepage = "http://semantic.org/TimeLib/"; description = "Data instances for the time package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "time-exts" = callPackage @@ -197347,6 +206395,7 @@ self: { homepage = "https://github.com/enzoh/time-exts"; description = "Efficient Timestamps"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "time-http" = callPackage @@ -197372,6 +206421,7 @@ self: { homepage = "http://cielonegro.org/HTTPDateTime.html"; description = "Parse and format HTTP/1.1 Date and Time strings"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "time-interval" = callPackage @@ -197449,6 +206499,20 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "time-out" = callPackage + ({ mkDerivation, base, exceptions, time-units, transformers }: + mkDerivation { + pname = "time-out"; + version = "0.1"; + sha256 = "e9eec568ba0e78c8479836c637d053fe1eb8e7df3db3122b4234eae2920f8056"; + libraryHaskellDepends = [ + base exceptions time-units transformers + ]; + homepage = "http://hub.darcs.net/fr33domlover/time-out"; + description = "Execute a computation with a timeout"; + license = stdenv.lib.licenses.publicDomain; + }) {}; + "time-parsers" = callPackage ({ mkDerivation, attoparsec, base, bifunctors, parsec, parsers , tasty, tasty-hunit, template-haskell, text, time @@ -197497,6 +206561,7 @@ self: { homepage = "https://github.com/christian-marie/time-qq"; description = "Quasi-quoter for UTCTime times"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "time-recurrence" = callPackage @@ -197518,6 +206583,7 @@ self: { homepage = "http://github.com/hellertime/time-recurrence"; description = "Generate recurring dates"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "time-series" = callPackage @@ -197532,6 +206598,7 @@ self: { executableHaskellDepends = [ base ]; description = "Time series analysis"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "time-units" = callPackage @@ -197559,6 +206626,7 @@ self: { homepage = "http://cielonegro.org/W3CDateTime.html"; description = "Parse, format and convert W3C Date and Time"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timecalc" = callPackage @@ -197572,6 +206640,7 @@ self: { executableHaskellDepends = [ base haskeline uu-parsinglib ]; homepage = "https://github.com/chriseidhof/TimeCalc"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timeconsole" = callPackage @@ -197617,8 +206686,8 @@ self: { ({ mkDerivation, base, transformers }: mkDerivation { pname = "timelike"; - version = "0.1.0"; - sha256 = "6588260531b2821ab33fb92b6587d971c68334f1b07daba56ebf7418641d6036"; + version = "0.2.0"; + sha256 = "fd78d2242d1d515556f4dc4e2dccc995e2e05a10d543f04975b886d43bcd2b8c"; libraryHaskellDepends = [ base transformers ]; homepage = "http://hub.darcs.net/esz/timelike"; description = "Type classes for types representing time"; @@ -197629,8 +206698,8 @@ self: { ({ mkDerivation, base, time, timelike, transformers }: mkDerivation { pname = "timelike-time"; - version = "0.1.0"; - sha256 = "25c4b9ed4eb5ab0121973a2b54c19ec451c1ac9e0e54ce62f211814732ccca16"; + version = "0.1.1"; + sha256 = "be4b536f613ec6d463854fc0fa5bf058acb35e1d243d5d2a7bef2ff6de28481d"; libraryHaskellDepends = [ base time timelike transformers ]; homepage = "http://hub.darcs.net/esz/timelike-time"; description = "Timelike interface for the time library"; @@ -197663,6 +206732,7 @@ self: { ]; description = "A mutable hashmap, implicitly indexed by UTCTime"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timeout" = callPackage @@ -197680,6 +206750,7 @@ self: { homepage = "https://github.com/lambda-llama/timeout"; description = "Generalized sleep and timeout functions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timeout-control" = callPackage @@ -197724,6 +206795,7 @@ self: { jailbreak = true; description = "Attoparsec parsers for various Date/Time formats"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timeplot" = callPackage @@ -197809,6 +206881,7 @@ self: { homepage = "https://github.com/Peaker/timestamp-subprocess-lines"; description = "Run a command and timestamp its stdout/stderr lines"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timestamper" = callPackage @@ -197931,7 +207004,7 @@ self: { license = stdenv.lib.licenses.bsd2; }) {}; - "tinylog" = callPackage + "tinylog_0_12_1" = callPackage ({ mkDerivation, auto-update, base, bytestring, containers , double-conversion, fast-logger, text, transformers, unix-time }: @@ -197948,6 +207021,24 @@ self: { homepage = "https://github.com/twittner/tinylog/"; description = "Simplistic logging using fast-logger"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tinylog" = callPackage + ({ mkDerivation, base, bytestring, containers, double-conversion + , fast-logger, text, transformers, unix-time + }: + mkDerivation { + pname = "tinylog"; + version = "0.13.0"; + sha256 = "9acfff4bb36595c91ad9bdb7b9105fd46b2cb123b3b359c9825c9ea8dbcad637"; + libraryHaskellDepends = [ + base bytestring containers double-conversion fast-logger text + transformers unix-time + ]; + homepage = "https://gitlab.com/twittner/tinylog/"; + description = "Simplistic logging using fast-logger"; + license = stdenv.lib.licenses.mpl20; }) {}; "tinytemplate" = callPackage @@ -197987,6 +207078,7 @@ self: { homepage = "http://tip-org.github.io"; description = "Convert from Haskell to Tip"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tip-lib" = callPackage @@ -198068,6 +207160,7 @@ self: { homepage = "http://patch-tag.com/r/nonowarn/tkhs/snapshot/current/content/pretty/README"; description = "Simple Presentation Utility"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tkyprof" = callPackage @@ -198096,6 +207189,7 @@ self: { homepage = "https://github.com/maoe/tkyprof"; description = "A web-based visualizer for GHC Profiling Reports"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tld" = callPackage @@ -198426,6 +207520,7 @@ self: { homepage = "http://github.com/vincenthz/hs-tls"; description = "TLS extra default values and helpers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tmpl" = callPackage @@ -198486,6 +207581,7 @@ self: { homepage = "https://github.com/conal/to-haskell"; description = "A type class and some utilities for generating Haskell code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "to-string-class" = callPackage @@ -198497,6 +207593,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Converting string-like types to Strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "to-string-instances" = callPackage @@ -198508,6 +207605,7 @@ self: { libraryHaskellDepends = [ to-string-class ]; description = "Instances for the ToString class"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "todos" = callPackage @@ -198534,6 +207632,7 @@ self: { homepage = "http://gitorious.org/todos"; description = "Easy-to-use TODOs manager"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tofromxml" = callPackage @@ -198571,6 +207670,7 @@ self: { homepage = "http://code.haskell.org/~thielema/toilet/"; description = "Manage the toilet queue at the IMO"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "token-bucket" = callPackage @@ -198628,6 +207728,7 @@ self: { QuickCheck ]; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tokyocabinet-haskell" = callPackage @@ -198641,6 +207742,7 @@ self: { homepage = "http://tom-lpsd.github.com/tokyocabinet-haskell/"; description = "Haskell binding of Tokyo Cabinet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) tokyocabinet;}; "tokyotyrant-haskell" = callPackage @@ -198655,6 +207757,7 @@ self: { homepage = "http://www.polarmobile.com/"; description = "FFI bindings to libtokyotyrant"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) tokyocabinet; inherit (pkgs) tokyotyrant;}; "tomato-rubato-openal" = callPackage @@ -198667,6 +207770,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/tomato-rubato"; description = "Easy to use library for audio programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "toml" = callPackage @@ -198682,6 +207786,7 @@ self: { ]; jailbreak = true; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "toolshed" = callPackage @@ -198699,6 +207804,7 @@ self: { homepage = "http://functionalley.eu"; description = "Ill-defined library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "topkata" = callPackage @@ -198717,6 +207823,7 @@ self: { homepage = "http://home.arcor.de/chr_bauer/topkata.html"; description = "OpenGL Arcade Game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "torch" = callPackage @@ -198729,6 +207836,7 @@ self: { homepage = "http://patch-tag.com/repo/torch/home"; description = "Simple unit test library (or framework)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "torrent" = callPackage @@ -198781,6 +207889,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "total-alternative" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "total-alternative"; + version = "0.1.0.1"; + sha256 = "9895072694989266b3fa7aa062d7edca6e054c563c9ba07d8c26675bbd3435cf"; + libraryHaskellDepends = [ base ]; + homepage = "http://github.com/guaraqe/total-alternative#readme"; + description = "Alternative interface for total versions of partial function on the Prelude"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "total-map" = callPackage ({ mkDerivation, base, containers }: mkDerivation { @@ -198864,6 +207984,7 @@ self: { ]; description = "Assorted decision procedures for SAT, Max-SAT, PB, MIP, etc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tpdb" = callPackage @@ -198957,14 +208078,27 @@ self: { libraryHaskellDepends = [ base containers glib ]; description = "Client library for Tracker metadata database, indexer and search tool"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tracy_0_1_2_0" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "tracy"; + version = "0.1.2.0"; + sha256 = "29e1a75da8bcf1029d6e918f6b681ba401fe41e01d3bace52852d7d35759b431"; + libraryHaskellDepends = [ base ]; + description = "Convenience wrappers for non-intrusive debug tracing"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tracy" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "tracy"; - version = "0.1.2.0"; - sha256 = "29e1a75da8bcf1029d6e918f6b681ba401fe41e01d3bace52852d7d35759b431"; + version = "0.1.3.0"; + sha256 = "9c298b7ff70dd4f5aaf839e7bccbc9810f0235833bb5b723babe0838eac5d301"; libraryHaskellDepends = [ base ]; description = "Convenience wrappers for non-intrusive debug tracing"; license = stdenv.lib.licenses.mit; @@ -198992,6 +208126,7 @@ self: { homepage = "https://github.com/mike-burns/trajectory"; description = "Tools and a library for working with Trajectory"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "transactional-events" = callPackage @@ -199003,6 +208138,7 @@ self: { libraryHaskellDepends = [ base ListZipper MonadPrompt stm ]; description = "Transactional events, based on Concurrent ML semantics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "transf" = callPackage @@ -199021,6 +208157,7 @@ self: { ]; description = "Text transformer and interpreter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "transformations" = callPackage @@ -199147,7 +208284,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "transformers-compat_0_4_0_4" = callPackage + "transformers-compat" = callPackage ({ mkDerivation, base, transformers }: mkDerivation { pname = "transformers-compat"; @@ -199158,10 +208295,9 @@ self: { homepage = "http://github.com/ekmett/transformers-compat/"; description = "A small compatibility shim exposing the new types from transformers 0.3 and 0.4 to older Haskell platforms."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "transformers-compat" = callPackage + "transformers-compat_0_5_1_4" = callPackage ({ mkDerivation, base, ghc-prim, transformers }: mkDerivation { pname = "transformers-compat"; @@ -199171,6 +208307,7 @@ self: { homepage = "http://github.com/ekmett/transformers-compat/"; description = "A small compatibility shim exposing the new types from transformers 0.3 and 0.4 to older Haskell platforms."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "transformers-compose" = callPackage @@ -199204,6 +208341,7 @@ self: { homepage = "https://github.com/jcristovao/transformers-convert"; description = "Sensible conversions between some of the monad transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "transformers-free" = callPackage @@ -199239,6 +208377,7 @@ self: { homepage = "https://github.com/JanBessai/transformers-runnable"; description = "A unified interface for the run operation of monad transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "transformers-supply" = callPackage @@ -199270,6 +208409,7 @@ self: { homepage = "http://www.fpcomplete.com/user/agocorona"; description = "Making composable programs with multithreading, events and distributed computing"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "translatable-intset" = callPackage @@ -199296,6 +208436,7 @@ self: { homepage = "http://github.com/nfjinjing/translate"; description = "Haskell binding to Google's AJAX Language API for Translation and Detection"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "traverse-with-class" = callPackage @@ -199388,6 +208529,7 @@ self: { homepage = "http://projects.haskell.org/traypoweroff"; description = "Tray Icon application to PowerOff / Reboot computer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tree-fun" = callPackage @@ -199505,6 +208647,7 @@ self: { ]; description = "Library for polling Tremulous servers"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "trhsx" = callPackage @@ -199515,6 +208658,7 @@ self: { sha256 = "631601c5345599e08535221df4415c7676e3e307bfa6a13d32e3c46d9c145d86"; description = "Deprecated"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "triangulation" = callPackage @@ -199531,6 +208675,7 @@ self: { homepage = "http://www.dinkla.net/"; description = "triangulation of polygons"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tries" = callPackage @@ -199625,6 +208770,7 @@ self: { jailbreak = true; description = "Search for, annotate and trim poly-A tail"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tripLL" = callPackage @@ -199641,6 +208787,7 @@ self: { homepage = "https://github.com/aphorisme/tripLL"; description = "A very simple triple store"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "trivia" = callPackage @@ -199677,6 +208824,7 @@ self: { jailbreak = true; description = "A library for tropical mathematics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "true-name_0_0_0_2" = callPackage @@ -199765,6 +208913,7 @@ self: { libraryHaskellDepends = [ base containers mtl time transformers ]; description = "A Transaction Framework for Web Applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tsession-happstack" = callPackage @@ -199778,6 +208927,7 @@ self: { ]; description = "A Transaction Framework for Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tskiplist" = callPackage @@ -199790,6 +208940,7 @@ self: { homepage = "https://github.com/thaldyron/tskiplist"; description = "A Skip List Implementation in Software Transactional Memory (STM)"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tslib" = callPackage @@ -199838,6 +208989,7 @@ self: { homepage = "https://github.com/davnils/tsp-viz"; description = "Real time TSP tour visualization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tsparse" = callPackage @@ -200076,6 +209228,7 @@ self: { jailbreak = true; description = "Interface to TUN/TAP drivers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tup-functor" = callPackage @@ -200114,6 +209267,7 @@ self: { jailbreak = true; description = "Enum instances for tuples where the digits increase with the same speed"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tuple-generic" = callPackage @@ -200164,6 +209318,7 @@ self: { libraryHaskellDepends = [ base HList template-haskell ]; description = "Morph between tuples, or convert them from and to HLists"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tuple-th" = callPackage @@ -200188,6 +209343,7 @@ self: { homepage = "http://github.com/diegoeche/tupleinstances"; description = "Functor, Applicative and Monad for n-ary tuples"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tuples-homogenous-h98" = callPackage @@ -200226,6 +209382,7 @@ self: { executableHaskellDepends = [ ALUT base ]; description = "Plays music generated by Turing machines with 5 states and 2 symbols"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "turkish-deasciifier" = callPackage @@ -200387,37 +209544,21 @@ self: { }) {}; "turtle-options" = callPackage - ({ mkDerivation, base, optional-args, parsec, text, turtle }: - mkDerivation { - pname = "turtle-options"; - version = "0.1.0.2"; - sha256 = "6c1b02d67663d8849aa41c0e54ef824e013abbd6e89c71fb14c34aeb6434c8fd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base optional-args parsec text turtle ]; - executableHaskellDepends = [ base turtle ]; - testHaskellDepends = [ base ]; - homepage = "http://github.com/githubuser/turtle-options#readme"; - description = "Collection of command line options and parsers for these options"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "turtle-options_0_1_0_3" = callPackage ({ mkDerivation, base, HUnit, optional-args, parsec, text, turtle }: mkDerivation { pname = "turtle-options"; - version = "0.1.0.3"; - sha256 = "d77e55a1a0b3ae2a5117e20780e5b98aab183ff65e9f532a03040d6b050a14d8"; + version = "0.1.0.4"; + sha256 = "c2c76b0bc0bc93397827c12b6f049e682afe702f9f662a1b0818e8e221d51ace"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base optional-args parsec text turtle ]; executableHaskellDepends = [ base turtle ]; testHaskellDepends = [ base HUnit parsec ]; + doCheck = false; homepage = "https://github.com/elaye/turtle-options#readme"; description = "Collection of command line options and parsers for these options"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tweak" = callPackage @@ -200453,6 +209594,7 @@ self: { homepage = "http://github.com/nick8325/twee"; description = "An equational theorem prover"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "twentefp" = callPackage @@ -200464,6 +209606,7 @@ self: { libraryHaskellDepends = [ base gloss parsec time ]; description = "Lab Assignments Environment at Univeriteit Twente"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "twentefp-eventloop-graphics" = callPackage @@ -200493,6 +209636,7 @@ self: { libraryHaskellDepends = [ base eventloop ]; description = "Tree type and show functions for lab assignment of University of Twente. Contains RoseTree and RedBlackTree"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twentefp-graphs" = callPackage @@ -200530,6 +209674,7 @@ self: { jailbreak = true; description = "RoseTree type and show functions for lab assignment of University of Twente"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twentefp-trees" = callPackage @@ -200562,6 +209707,35 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "twentyseven" = callPackage + ({ mkDerivation, base, Cabal, cabal-test-quickcheck, containers + , deepseq, directory, filepath, heap, HUnit-Plus, monad-loops + , MonadRandom, mtl, newtype, optparse-applicative, primitive + , QuickCheck, ref-fd, split, template-haskell, time, transformers + , vector + }: + mkDerivation { + pname = "twentyseven"; + version = "0.0.0"; + sha256 = "471690467742286cc9e4eb744b06d2a298a9c770fdb8ac0c816774d4c0b70133"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers deepseq directory filepath heap monad-loops + MonadRandom mtl newtype primitive ref-fd template-haskell vector + ]; + executableHaskellDepends = [ + base optparse-applicative time transformers + ]; + testHaskellDepends = [ + base Cabal cabal-test-quickcheck HUnit-Plus QuickCheck split vector + ]; + homepage = "https://github.com/lysxia/twentyseven"; + description = "Rubik's cube solver"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "twhs" = callPackage ({ mkDerivation, ansi-terminal, authenticate-oauth, base , bytestring, case-insensitive, conduit, containers, data-default @@ -200592,6 +209766,7 @@ self: { homepage = "https://github.com/suzuki-shin/twhs"; description = "CLI twitter client"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twidge" = callPackage @@ -200614,6 +209789,7 @@ self: { homepage = "http://software.complete.org/twidge"; description = "Unix Command-Line Twitter and Identica Client"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twilight-stm" = callPackage @@ -200626,6 +209802,7 @@ self: { homepage = "http://proglang.informatik.uni-freiburg.de/projects/twilight/"; description = "STM library with safe irrevocable I/O and inconsistency repair"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twilio" = callPackage @@ -200651,6 +209828,7 @@ self: { homepage = "https://github.com/markandrus/twilio-haskell"; description = "Twilio REST API library for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twill" = callPackage @@ -200670,6 +209848,7 @@ self: { jailbreak = true; description = "Twilio API interaction"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twiml" = callPackage @@ -200693,6 +209872,7 @@ self: { homepage = "https://github.com/markandrus/twiml-haskell"; description = "TwiML library for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twine" = callPackage @@ -200709,6 +209889,7 @@ self: { homepage = "http://twine.james-sanders.com"; description = "very simple template language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twisty" = callPackage @@ -200725,6 +209906,7 @@ self: { jailbreak = true; description = "Simulator of twisty puzzles à la Rubik's Cube"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twitch" = callPackage @@ -200763,6 +209945,42 @@ self: { ]; description = "A Haskell-based CLI Twitter client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "twitter-conduit_0_1_1_1" = callPackage + ({ mkDerivation, aeson, attoparsec, authenticate-oauth, base + , bytestring, case-insensitive, conduit, conduit-extra, containers + , data-default, doctest, hlint, hspec, http-client, http-conduit + , http-types, lens, lens-aeson, monad-control, network-uri + , resourcet, template-haskell, text, time, transformers + , transformers-base, twitter-types, twitter-types-lens + }: + mkDerivation { + pname = "twitter-conduit"; + version = "0.1.1.1"; + sha256 = "904b9413e8f729c52f16f6251c5edd641a938f5740392cc0e7a53ab24ce0e593"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson attoparsec authenticate-oauth base bytestring conduit + conduit-extra containers data-default http-client http-conduit + http-types lens lens-aeson resourcet template-haskell text time + transformers twitter-types twitter-types-lens + ]; + executableHaskellDepends = [ network-uri ]; + testHaskellDepends = [ + aeson attoparsec authenticate-oauth base bytestring + case-insensitive conduit conduit-extra containers data-default + doctest hlint hspec http-client http-conduit http-types lens + lens-aeson monad-control network-uri resourcet template-haskell + text time transformers transformers-base twitter-types + twitter-types-lens + ]; + homepage = "https://github.com/himura/twitter-conduit"; + description = "Twitter API package with conduit interface and Streaming API support"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twitter-conduit" = callPackage @@ -200775,8 +209993,8 @@ self: { }: mkDerivation { pname = "twitter-conduit"; - version = "0.1.1.1"; - sha256 = "904b9413e8f729c52f16f6251c5edd641a938f5740392cc0e7a53ab24ce0e593"; + version = "0.1.2"; + sha256 = "e8c3c2f2ae2042d5fd88f39ff643b8693bb52b008a3c49dbc7673a604e0e95e8"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -200817,6 +210035,7 @@ self: { homepage = "https://github.com/himura/twitter-enumerator"; description = "Twitter API package with enumerator interface and Streaming API support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twitter-feed_0_2_0_2" = callPackage @@ -200903,7 +210122,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "twitter-types" = callPackage + "twitter-types_0_7_1_1" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, derive , directory, filepath, HUnit, old-locale, QuickCheck , template-haskell, test-framework, test-framework-hunit @@ -200926,6 +210145,49 @@ self: { homepage = "https://github.com/himura/twitter-types"; description = "Twitter JSON parser and types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "twitter-types" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, derive + , directory, filepath, HUnit, old-locale, QuickCheck + , template-haskell, test-framework, test-framework-hunit + , test-framework-quickcheck2, test-framework-th-prime, text, time + , unordered-containers + }: + mkDerivation { + pname = "twitter-types"; + version = "0.7.2"; + sha256 = "75416feef53d5a41dc246f7e134cae49f198605be9de7698796070256cd0d222"; + libraryHaskellDepends = [ + aeson base text time unordered-containers + ]; + testHaskellDepends = [ + aeson attoparsec base bytestring derive directory filepath HUnit + old-locale QuickCheck template-haskell test-framework + test-framework-hunit test-framework-quickcheck2 + test-framework-th-prime text time unordered-containers + ]; + homepage = "https://github.com/himura/twitter-types"; + description = "Twitter JSON parser and types"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "twitter-types-lens_0_7_1" = callPackage + ({ mkDerivation, base, lens, template-haskell, text, time + , twitter-types + }: + mkDerivation { + pname = "twitter-types-lens"; + version = "0.7.1"; + sha256 = "d162b38100cfbcff1128d45dbe9c455816990f26a0711c06517fd0c274d1d286"; + libraryHaskellDepends = [ + base lens template-haskell text time twitter-types + ]; + homepage = "https://github.com/himura/twitter-types-lens"; + description = "Twitter JSON types (lens powered)"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twitter-types-lens" = callPackage @@ -200934,8 +210196,8 @@ self: { }: mkDerivation { pname = "twitter-types-lens"; - version = "0.7.1"; - sha256 = "d162b38100cfbcff1128d45dbe9c455816990f26a0711c06517fd0c274d1d286"; + version = "0.7.2"; + sha256 = "4ffeabee70234e0969a0581489473380ebf93de504f7b24f9bc024571acfb212"; libraryHaskellDepends = [ base lens template-haskell text time twitter-types ]; @@ -200959,6 +210221,7 @@ self: { homepage = "https://github.com/mcschroeder/tx"; description = "Persistent transactions on top of STM"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "txt-sushi" = callPackage @@ -201033,6 +210296,7 @@ self: { homepage = "http://www.decidable.org/haskell/typalyze"; description = "Analyzes Haskell source files for easy reference"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-aligned" = callPackage @@ -201088,6 +210352,7 @@ self: { ]; description = "Type-level serialization of type constructors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-combinators" = callPackage @@ -201127,6 +210392,7 @@ self: { libraryHaskellDepends = [ base template-haskell type-spine ]; description = "Arbitrary-base type-level digits"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-eq_0_4_2" = callPackage @@ -201179,6 +210445,7 @@ self: { homepage = "http://darcs.wolfgang.jeltsch.info/haskell/type-equality-check"; description = "Type equality check"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-fun" = callPackage @@ -201228,6 +210495,7 @@ self: { homepage = "http://github.com/ekmett/type-int"; description = "Type Level 2s- and 16s- Complement Integers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-iso" = callPackage @@ -201254,6 +210522,7 @@ self: { homepage = "http://code.haskell.org/type-level"; description = "Type-level programming library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-level-bst" = callPackage @@ -201266,6 +210535,7 @@ self: { homepage = "https://github.com/Kinokkory/type-level-bst"; description = "type-level binary search trees in haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-level-natural-number" = callPackage @@ -201418,6 +210688,7 @@ self: { ]; description = "Type-level comparison operator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-ord-spine-cereal" = callPackage @@ -201433,6 +210704,7 @@ self: { ]; description = "Generic type-level comparison of types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-prelude" = callPackage @@ -201445,6 +210717,7 @@ self: { homepage = "http://code.atnnn.com/projects/type-prelude"; description = "Partial port of prelude to the type level. Requires GHC 7.6.1."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-settheory" = callPackage @@ -201460,6 +210733,7 @@ self: { ]; description = "Sets and functions-as-relations in the type system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-spine" = callPackage @@ -201471,6 +210745,7 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "A spine-view on types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-structure" = callPackage @@ -201499,6 +210774,7 @@ self: { homepage = "https://github.com/nikita-volkov/type-structure"; description = "Type structure analysis"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-sub-th" = callPackage @@ -201524,6 +210800,7 @@ self: { homepage = "http://github.com/jfischoff/type-sub-th"; description = "Substitute types for other types with Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-unary" = callPackage @@ -201532,8 +210809,8 @@ self: { }: mkDerivation { pname = "type-unary"; - version = "0.2.21"; - sha256 = "93ed75c592bfd4916cd89654ed15ea6d7df1fd83bf9e91f43c6e343a403ca627"; + version = "0.3.0"; + sha256 = "14083b3bdcefd7a25dd459178818602e18a1c3fa22a1017c8f58f7ee0e5f04e9"; libraryHaskellDepends = [ applicative-numbers base constraints newtype ty vector-space ]; @@ -201554,6 +210831,7 @@ self: { homepage = "http://github.com/bennofs/typeable-th"; description = "Automatic deriving of TypeableN instances with Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typed-spreadsheet" = callPackage @@ -201576,6 +210854,7 @@ self: { jailbreak = true; description = "Typed and composable spreadsheets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "typed-wire" = callPackage @@ -201585,8 +210864,8 @@ self: { }: mkDerivation { pname = "typed-wire"; - version = "0.3.0.0"; - sha256 = "3faec8db44caf3658116619d88f9fb00dbf1b4e9f4e8106e4c1aeff2e7ec220f"; + version = "0.3.1.0"; + sha256 = "d6f7fea68057427d3d2ef1c0eae2a4c0c9c1c4d4920d2bab38be8535854be03d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -201599,8 +210878,9 @@ self: { aeson base bytestring directory filepath HTF process temporary text ]; homepage = "http://github.com/typed-wire/typed-wire#readme"; - description = "Language idependent type-safe communication"; + description = "Language-independent type-safe communication"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typed-wire-utils" = callPackage @@ -201634,6 +210914,7 @@ self: { homepage = "https://github.com/tolysz/typedquery"; description = "Parser for SQL augmented with types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typehash" = callPackage @@ -201646,6 +210927,7 @@ self: { jailbreak = true; description = "Create a unique hash value for a type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typelevel" = callPackage @@ -201676,6 +210958,7 @@ self: { homepage = "https://github.com/nushio3/typelevel-tensor"; description = "Tensors whose ranks and dimensions type-inferred and type-checked"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typelits-witnesses_0_1_1_0" = callPackage @@ -201731,6 +211014,7 @@ self: { homepage = "http://github.com/mikeizbicki/typeparams/"; description = "Lens-like interface for type level parameters; allows unboxed unboxed vectors and supercompilation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "types-compat" = callPackage @@ -201777,6 +211061,7 @@ self: { homepage = "http://github.com/paf31/typescript-docs"; description = "A documentation generator for TypeScript Definition files"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typical" = callPackage @@ -201829,6 +211114,7 @@ self: { homepage = "https://github.com/nilcons/haskell-tz"; description = "Efficient time zone handling"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "tzdata" = callPackage @@ -201869,6 +211155,7 @@ self: { jailbreak = true; description = "A simplistic dependently-typed language with parametricity"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ua-parser" = callPackage @@ -201921,6 +211208,7 @@ self: { homepage = "https:/github.com/fumieval/uberlast"; description = "Generate overloaded lenses from plain data declaration"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uconv" = callPackage @@ -201933,6 +211221,7 @@ self: { librarySystemDepends = [ icu ]; description = "String encoding conversion with ICU"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) icu;}; "udbus" = callPackage @@ -201952,6 +211241,7 @@ self: { homepage = "http://github.com/vincenthz/hs-udbus"; description = "Small DBus implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "udbus-model" = callPackage @@ -201966,6 +211256,7 @@ self: { homepage = "http://github.com/vincenthz/hs-udbus"; description = "Model API for udbus introspection and definitions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "udcode" = callPackage @@ -201995,6 +211286,7 @@ self: { homepage = "https://github.com/pxqr/udev"; description = "libudev bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {libudev = null;}; "uglymemo" = callPackage @@ -202101,6 +211393,7 @@ self: { libraryHaskellDepends = [ base data-default mtl old-locale time ]; description = "A framework for friendly commandline programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uid" = callPackage @@ -202188,6 +211481,7 @@ self: { homepage = "http://github.com/luqui/unamb-custom"; description = "Functional concurrency with unamb using a custom scheduler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unbound" = callPackage @@ -202329,6 +211623,7 @@ self: { homepage = "https://github.com/jcristovao/unbouded-delays-units"; description = "Thread delays and timeouts using proper time units"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unboxed-containers" = callPackage @@ -202341,6 +211636,7 @@ self: { homepage = "http://github.com/ekmett/unboxed-containers"; description = "Self-optimizing unboxed sets using view patterns and data families"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unbreak" = callPackage @@ -202362,6 +211658,7 @@ self: { homepage = "https://e.xtendo.org/scs/unbreak"; description = "Secure and resilient remote file storage utility"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "unexceptionalio" = callPackage @@ -202552,6 +211849,7 @@ self: { homepage = "http://sloompie.reinier.de/unicode-normalization/"; description = "Unicode normalization using the ICU library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) icu;}; "unicode-prelude" = callPackage @@ -202621,6 +211919,7 @@ self: { homepage = "https://github.com/Zankoku-Okuno/unicoder"; description = "Make writing in unicode easy"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unification-fd" = callPackage @@ -202654,20 +211953,34 @@ self: { homepage = "https://sealgram.com/git/haskell/uniform-io"; description = "Uniform IO over files, network, anything"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; "uniform-pair" = callPackage ({ mkDerivation, base, deepseq, ShowF }: mkDerivation { pname = "uniform-pair"; - version = "0.1.10"; - sha256 = "f27805fca8cd9574d0b7c535693c9dda9c9d945af1a50fc36abeb80fb332a2ff"; + version = "0.1.11"; + sha256 = "bb5281123c7e491c1940a26e1a76a5be341e162ba4a2dede5a951ac7a2050bc9"; libraryHaskellDepends = [ base deepseq ShowF ]; homepage = "https://github.com/conal/uniform-pair/"; description = "Uniform pairs with class instances"; license = stdenv.lib.licenses.bsd3; }) {}; + "union" = callPackage + ({ mkDerivation, base, lens, vinyl }: + mkDerivation { + pname = "union"; + version = "0.1.0.0"; + sha256 = "a1a3cd3959ce688656c75bf905fb7ba98ade43da2154dfb52879ac89ecda5625"; + revision = "1"; + editedCabalFile = "b727e5c9325d1672d30a1da433ddd1314775d7b50d2148713f419e524444ed79"; + libraryHaskellDepends = [ base lens vinyl ]; + description = "Extensible type-safe unions"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "union-find" = callPackage ({ mkDerivation, base, containers, transformers }: mkDerivation { @@ -202702,6 +212015,7 @@ self: { homepage = "http://github.com/minpou/union-map"; description = "Heterogeneous map by open unions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uniplate" = callPackage @@ -202781,6 +212095,7 @@ self: { homepage = "http://github.com/sebfisch/uniqueid/wikis"; description = "Splittable Unique Identifier Supply"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unit" = callPackage @@ -202876,6 +212191,7 @@ self: { homepage = "https://bitbucket.org/xnyhps/haskell-unittyped/"; description = "An extendable library for type-safe computations including units"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "universal-binary" = callPackage @@ -203002,6 +212318,7 @@ self: { homepage = "http://github.com/jfishcoff/universe-th"; description = "Construct a Dec's ancestor list"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unix_2_7_1_0" = callPackage @@ -203133,6 +212450,7 @@ self: { homepage = "https://github.com/snoyberg/conduit"; description = "Run processes on Unix systems, with a conduit interface (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unix-pty-light" = callPackage @@ -203219,14 +212537,15 @@ self: { ({ mkDerivation, base, directory, text }: mkDerivation { pname = "unlit"; - version = "0.3.0.3"; - sha256 = "ce5ea584d4fef6ef89b2d6c5a105cf31827c5e14045766406f95453a2a238d5b"; + version = "0.3.2.1"; + sha256 = "b3cdceb5878989c323e0b45a1f08897d7e29e98a553ce59d694c3889aa5fa852"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base directory text ]; executableHaskellDepends = [ base directory text ]; description = "Tool to convert literate code between styles or to code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unm-hip" = callPackage @@ -203303,6 +212622,7 @@ self: { homepage = "http://github.com/tcrayford/rematch"; description = "Rematch support for unordered containers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unordered-graphs" = callPackage @@ -203333,6 +212653,7 @@ self: { ]; description = "Monad transformers that mirror worker-wrapper transformations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unroll-ghc-plugin" = callPackage @@ -203414,6 +212735,7 @@ self: { ]; description = "Solve Boggle-like word games"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unusable-pkg" = callPackage @@ -203466,6 +212788,7 @@ self: { homepage = "https://github.com/thomaseding/up"; description = "Command line tool to generate pathnames to facilitate moving upward in a file system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "up-grade" = callPackage @@ -203497,6 +212820,7 @@ self: { jailbreak = true; description = "Haskell client for Uploadcare"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "upskirt" = callPackage @@ -203508,6 +212832,7 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Binding to upskirt"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ureader" = callPackage @@ -203533,6 +212858,7 @@ self: { homepage = "https://github.com/pxqr/ureader"; description = "Minimalistic CLI RSS reader"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "urembed" = callPackage @@ -203554,6 +212880,7 @@ self: { homepage = "http://github.com/grwlf/urembed"; description = "Ur/Web static content generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uri" = callPackage @@ -203743,6 +213070,7 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Read and write URIs (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uri-encode_1_5_0_3" = callPackage @@ -203797,6 +213125,7 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Read and write URIs (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uri-enumerator-file" = callPackage @@ -203817,6 +213146,7 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "uri-enumerator backend for the file scheme (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uri-template" = callPackage @@ -203877,6 +213207,7 @@ self: { libraryHaskellDepends = [ base mtl syb ]; description = "Parse/format generic key/value URLs from record data types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "urlcheck" = callPackage @@ -203895,6 +213226,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/urlcheck"; description = "Parallel link checker"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "urldecode" = callPackage @@ -203909,6 +213241,7 @@ self: { homepage = "https://github.com/beastaugh/urldecode"; description = "Decode percent-encoded strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "urldisp-happstack" = callPackage @@ -203920,6 +213253,7 @@ self: { libraryHaskellDepends = [ base bytestring happstack-server mtl ]; description = "Simple, declarative, expressive URL routing -- on happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "urlencoded" = callPackage @@ -204006,6 +213340,7 @@ self: { homepage = "http://github.com/grwlf/urxml"; description = "XML parser-printer supporting Ur/Web syntax extensions"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "usb" = callPackage @@ -204040,6 +213375,7 @@ self: { jailbreak = true; description = "Iteratee enumerators for the usb package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "usb-hid" = callPackage @@ -204092,6 +213428,7 @@ self: { homepage = "https://github.com/basvandijk/usb-iteratee"; description = "Iteratee enumerators for the usb package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "usb-safe" = callPackage @@ -204110,6 +213447,7 @@ self: { homepage = "https://github.com/basvandijk/usb-safe/"; description = "Type-safe communication with USB devices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "userid_0_1_2_3" = callPackage @@ -204468,6 +213806,7 @@ self: { jailbreak = true; description = "Variants of Prelude and System.IO with UTF8 text I/O operations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "utf8-string_0_3_8" = callPackage @@ -204710,6 +214049,7 @@ self: { jailbreak = true; description = "Utility for drawing attribute grammar pictures with the diagrams package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uuagd" = callPackage @@ -205033,6 +214373,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/uvector"; description = "Fast unboxed arrays with a flexible interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uvector-algorithms" = callPackage @@ -205045,6 +214386,7 @@ self: { homepage = "http://code.haskell.org/~dolio/"; description = "Efficient algorithms for uvector unboxed arrays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uxadt" = callPackage @@ -205085,6 +214427,7 @@ self: { homepage = "https://gitorious.org/hsv4l2"; description = "interface to Video For Linux Two (V4L2)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "v4l2-examples" = callPackage @@ -205100,6 +214443,7 @@ self: { homepage = "https://gitorious.org/hsv4l2"; description = "video for linux two examples"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vacuum" = callPackage @@ -205112,6 +214456,7 @@ self: { homepage = "http://thoughtpolice.github.com/vacuum"; description = "Graph representation of the GHC heap"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vacuum-cairo" = callPackage @@ -205129,6 +214474,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/vacuum-cairo"; description = "Visualize live Haskell data structures using vacuum, graphviz and cairo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vacuum-graphviz" = callPackage @@ -205141,6 +214487,7 @@ self: { jailbreak = true; description = "A library for transforming vacuum graphs into GraphViz output"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vacuum-opengl" = callPackage @@ -205161,6 +214508,7 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "Visualize live Haskell data structures using vacuum, graphviz and OpenGL"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vacuum-ubigraph" = callPackage @@ -205173,6 +214521,7 @@ self: { jailbreak = true; description = "Visualize Haskell data structures using vacuum and Ubigraph"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vado" = callPackage @@ -205346,6 +214695,7 @@ self: { homepage = "https://github.com/benzrf/vampire"; description = "Analyze and visualize expression trees"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "var" = callPackage @@ -205363,6 +214713,7 @@ self: { homepage = "http://github.com/sonyandy/var"; description = "Mutable variables and tuples"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "varan" = callPackage @@ -205516,6 +214867,7 @@ self: { ]; description = "Common types and instances for Vaultaire"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vcache" = callPackage @@ -205533,6 +214885,7 @@ self: { homepage = "http://github.com/dmbarbour/haskell-vcache"; description = "semi-transparent persistence for Haskell using LMDB, STM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "vcache-trie" = callPackage @@ -205549,6 +214902,7 @@ self: { homepage = "http://github.com/dmbarbour/haskell-vcache-trie"; description = "patricia tries modeled above VCache"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "vcard" = callPackage @@ -205619,6 +214973,7 @@ self: { homepage = "https://github.com/forste/haskellVCSGUI"; description = "GUI library for source code management systems"; license = "GPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "vcswrapper" = callPackage @@ -205694,6 +215049,7 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "OpenGL support for the `vect' low-dimensional linear algebra library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector_0_10_9_3" = callPackage @@ -205889,7 +215245,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "vector-binary-instances" = callPackage + "vector-binary-instances_0_2_1_1" = callPackage ({ mkDerivation, base, binary, vector }: mkDerivation { pname = "vector-binary-instances"; @@ -205899,6 +215255,33 @@ self: { homepage = "https://github.com/bos/vector-binary-instances"; description = "Instances of Data.Binary and Data.Serialize for vector"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "vector-binary-instances_0_2_3_0" = callPackage + ({ mkDerivation, base, binary, vector }: + mkDerivation { + pname = "vector-binary-instances"; + version = "0.2.3.0"; + sha256 = "1f9c6821dbc1add7320eef7712d5a1c4e2b41ff5e6b369864f6b3aad9a3974b7"; + libraryHaskellDepends = [ base binary vector ]; + homepage = "https://github.com/bos/vector-binary-instances"; + description = "Instances of Data.Binary and Data.Serialize for vector"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "vector-binary-instances" = callPackage + ({ mkDerivation, base, binary, tasty, tasty-quickcheck, vector }: + mkDerivation { + pname = "vector-binary-instances"; + version = "0.2.3.1"; + sha256 = "49cde38d27cbc84a057b77b624336b8785f68c2f771dfec1c414f18162d6ba66"; + libraryHaskellDepends = [ base binary vector ]; + testHaskellDepends = [ base binary tasty tasty-quickcheck vector ]; + homepage = "https://github.com/bos/vector-binary-instances"; + description = "Instances of Data.Binary and Data.Serialize for vector"; + license = stdenv.lib.licenses.bsd3; }) {}; "vector-buffer" = callPackage @@ -205931,6 +215314,7 @@ self: { homepage = "https://github.com/basvandijk/vector-bytestring"; description = "ByteStrings as type synonyms of Storable Vectors of Word8s"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-clock" = callPackage @@ -205950,6 +215334,7 @@ self: { homepage = "https://github.com/scvalex/vector-clock"; description = "Vector clocks for versioning message flows"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-conduit" = callPackage @@ -205969,6 +215354,7 @@ self: { jailbreak = true; description = "Conduit utilities for vectors"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-fftw" = callPackage @@ -205997,6 +215383,7 @@ self: { homepage = "http://github.com/mikeizbicki/vector-functorlazy/"; description = "vectors that perform the fmap operation in constant time"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-heterogenous" = callPackage @@ -206078,6 +215465,7 @@ self: { homepage = "http://github.com/kreuzschlitzschraubenzieher/vector-instances-collections"; description = "Instances of the Data.Collections classes for Data.Vector.*"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-mmap" = callPackage @@ -206102,6 +215490,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/vector-random"; description = "Generate vectors filled with high quality pseudorandom numbers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-read-instances" = callPackage @@ -206114,14 +215503,15 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "(deprecated) Read instances for 'Data.Vector'"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-sized" = callPackage ({ mkDerivation, base, deepseq, vector }: mkDerivation { pname = "vector-sized"; - version = "0.2.0.0"; - sha256 = "bbdf2d23e3edd5bb059181415368bc95b97d2bd09e642e500f1f9a0acb0a4933"; + version = "0.3.0.0"; + sha256 = "d564cd03d553684fe94c09cc076b9b4878886bc0e75e235bc273cb13ce97dbbf"; libraryHaskellDepends = [ base deepseq vector ]; homepage = "http://github.com/expipiplus1/vector-sized#readme"; description = "Size tagged vectors"; @@ -206203,6 +215593,7 @@ self: { ]; description = "Instances of vector-space classes for OpenGL types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-space-points_0_2" = callPackage @@ -206253,6 +215644,7 @@ self: { homepage = "http://github.com/geezusfreeek/vector-static"; description = "Statically checked sizes on Data.Vector"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-strategies" = callPackage @@ -206399,6 +215791,7 @@ self: { homepage = "http://github.com/tomahawkins/verilog"; description = "Verilog preprocessor, parser, and AST"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "versions" = callPackage @@ -206415,6 +215808,7 @@ self: { ]; description = "Types and parsers for software version numbers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vhd" = callPackage @@ -206505,6 +215899,7 @@ self: { homepage = "http://github.com/michaelxavier/vigilance"; description = "An extensible dead-man's switch system"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vimeta" = callPackage @@ -206559,6 +215954,7 @@ self: { ]; description = "An MPD client with vim-like key bindings"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {inherit (pkgs) ncurses;}; "vintage-basic" = callPackage @@ -206578,6 +215974,7 @@ self: { homepage = "http://www.vintage-basic.net"; description = "Interpreter for microcomputer-era BASIC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vinyl_0_5_1" = callPackage @@ -206626,6 +216023,7 @@ self: { ]; description = "Utilities for working with OpenGL's GLSL shading language and vinyl records"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vinyl-json" = callPackage @@ -206643,6 +216041,25 @@ self: { jailbreak = true; description = "Provide json instances automagically to vinyl types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "vinyl-plus" = callPackage + ({ mkDerivation, base, contravariant, doctest, ghc-prim + , profunctors, transformers, unordered-containers, vinyl + }: + mkDerivation { + pname = "vinyl-plus"; + version = "0.1.0.0"; + sha256 = "438d84c4f71422229b673b14aee7bb14defa8a3f7b9232f67a8a4f91fb2a29d0"; + libraryHaskellDepends = [ + base contravariant ghc-prim profunctors transformers + unordered-containers vinyl + ]; + testHaskellDepends = [ base doctest vinyl ]; + homepage = "http://github.com/andrew/vinyl-plus"; + description = "Vinyl records utilities"; + license = stdenv.lib.licenses.bsd3; }) {}; "vinyl-utils" = callPackage @@ -206675,6 +216092,7 @@ self: { homepage = "http://github.com/andrewthad/vinyl-vectors"; description = "Vectors for vinyl vectors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "virthualenv" = callPackage @@ -206695,6 +216113,7 @@ self: { homepage = "https://github.com/Paczesiowa/virthualenv"; description = "Virtual Haskell Environment builder"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "visibility" = callPackage @@ -206727,6 +216146,7 @@ self: { ]; description = "An XMMS2 client"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "visual-graphrewrite" = callPackage @@ -206755,6 +216175,7 @@ self: { homepage = "http://github.com/zsol/visual-graphrewrite/"; description = "Visualize the graph-rewrite steps of a Haskell program"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "visual-prof" = callPackage @@ -206775,24 +216196,27 @@ self: { homepage = "http://github.com/djv/VisualProf"; description = "Create a visual profile of a program's source code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vivid" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , hashable, mtl, network, split, stm + ({ mkDerivation, base, binary, bytestring, containers, filepath + , hashable, MonadRandom, mtl, network, process, random + , random-shuffle, split, stm, time, transformers }: mkDerivation { pname = "vivid"; - version = "0.1.0.3"; - sha256 = "a884a88d96cff6ada34d83bf5bcda9d351953e635d858f1a246bb94ec594930c"; - revision = "1"; - editedCabalFile = "de2442ab5d53f8044c99cd0489281bf902ef6615028be780e0df937ae60266da"; + version = "0.2.0.4"; + sha256 = "8ce9dbb192bfae4fb7e8e5b470a27d9197aef1c46baa83843a0ac8ac280ab21e"; + revision = "5"; + editedCabalFile = "588b1a39865383e72566ed5c9ef5be6b06bf90c8260b0c7717f178c37b72e30a"; libraryHaskellDepends = [ - base binary bytestring containers deepseq hashable mtl network - split stm + base binary bytestring containers filepath hashable MonadRandom mtl + network process random random-shuffle split stm time transformers ]; description = "Sound synthesis with SuperCollider"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vk-aws-route53" = callPackage @@ -206810,6 +216234,7 @@ self: { ]; description = "Amazon Route53 DNS service plugin for the aws package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vk-posix-pty" = callPackage @@ -206896,6 +216321,7 @@ self: { homepage = "https://github.com/cartazio/Vowpal-Utils"; description = "Vowpal Wabbit utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "voyeur" = callPackage @@ -206909,6 +216335,7 @@ self: { homepage = "https://github.com/sethfowler/hslibvoyeur"; description = "Haskell bindings for libvoyeur"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vrpn" = callPackage @@ -206926,6 +216353,7 @@ self: { homepage = "https://bitbucket.org/bwbush/vrpn"; description = "Bindings to VRPN"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) vrpn;}; "vte" = callPackage @@ -206941,6 +216369,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the VTE library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) vte;}; "vtegtk3" = callPackage @@ -206956,6 +216385,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the VTE library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) vte;}; "vty" = callPackage @@ -207010,6 +216440,7 @@ self: { homepage = "https://github.com/coreyoconnor/vty"; description = "Examples programs using the vty library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vty-menu" = callPackage @@ -207024,6 +216455,7 @@ self: { jailbreak = true; description = "A lib for displaying a menu and getting a selection using VTY"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vty-ui" = callPackage @@ -207060,19 +216492,21 @@ self: { jailbreak = true; description = "Extra vty-ui functionality not included in the core library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vulkan" = callPackage ({ mkDerivation, base, vector-sized }: mkDerivation { pname = "vulkan"; - version = "1.5.0.0"; - sha256 = "8df7d3f179cef9f47a6866abd14a5ae4f4a961a63d9e91d3b0898c55b47bcc13"; + version = "1.5.1.0"; + sha256 = "64d795374e75e0db2d42ef58059869dcc33414fdcf9c0436d1f2a7c8b392edb1"; libraryHaskellDepends = [ base vector-sized ]; jailbreak = true; homepage = "http://github.com/expipiplus1/vulkan#readme"; description = "Bindings to the Vulkan graphics API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wacom-daemon" = callPackage @@ -207098,6 +216532,7 @@ self: { homepage = "https://github.com/portnov/wacom-intuos-pro-scripts"; description = "Manage Wacom tablet settings profiles, including Intuos Pro ring modes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "waddle" = callPackage @@ -207848,8 +217283,8 @@ self: { }: mkDerivation { pname = "wai-devel"; - version = "0.0.0.3"; - sha256 = "3ff4291b31a24e02b859f44b2aba55dcce7dc55850c29a9802570b2431fdf646"; + version = "0.0.0.4"; + sha256 = "c36b6e1fe41f122a7b6fbcf1dbf7bfd6e829e1f3efe23d124bdf81f55ce0c27e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -208459,7 +217894,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-extra" = callPackage + "wai-extra_3_0_14_1" = callPackage ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring , blaze-builder, bytestring, case-insensitive, containers, cookie , data-default-class, deepseq, directory, fast-logger, hspec @@ -208486,6 +217921,66 @@ self: { homepage = "http://github.com/yesodweb/wai"; description = "Provides some basic WAI handlers and middleware"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai-extra_3_0_14_3" = callPackage + ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring + , blaze-builder, bytestring, case-insensitive, containers, cookie + , data-default-class, deepseq, directory, fast-logger, hspec + , http-types, HUnit, iproute, lifted-base, network, old-locale + , resourcet, streaming-commons, stringsearch, text, time + , transformers, unix, unix-compat, vault, void, wai, wai-logger + , word8, zlib + }: + mkDerivation { + pname = "wai-extra"; + version = "3.0.14.3"; + sha256 = "563fc88bf2aab69fa11db2074fb36e03a9f39bf7f1676f321673bf2c6d0ce127"; + libraryHaskellDepends = [ + aeson ansi-terminal base base64-bytestring blaze-builder bytestring + case-insensitive containers cookie data-default-class deepseq + directory fast-logger http-types iproute lifted-base network + old-locale resourcet streaming-commons stringsearch text time + transformers unix unix-compat vault void wai wai-logger word8 zlib + ]; + testHaskellDepends = [ + base blaze-builder bytestring case-insensitive cookie fast-logger + hspec http-types HUnit resourcet text time transformers wai zlib + ]; + homepage = "http://github.com/yesodweb/wai"; + description = "Provides some basic WAI handlers and middleware"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai-extra" = callPackage + ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring + , blaze-builder, bytestring, case-insensitive, containers, cookie + , data-default-class, deepseq, directory, fast-logger, hspec + , http-types, HUnit, iproute, lifted-base, network, old-locale + , resourcet, streaming-commons, stringsearch, text, time + , transformers, unix, unix-compat, vault, void, wai, wai-logger + , word8, zlib + }: + mkDerivation { + pname = "wai-extra"; + version = "3.0.15"; + sha256 = "6629e2f2db30e3b7f70ef96b06f4a0df32c7b9093eec30d9ad79919826ec4270"; + libraryHaskellDepends = [ + aeson ansi-terminal base base64-bytestring blaze-builder bytestring + case-insensitive containers cookie data-default-class deepseq + directory fast-logger http-types iproute lifted-base network + old-locale resourcet streaming-commons stringsearch text time + transformers unix unix-compat vault void wai wai-logger word8 zlib + ]; + testHaskellDepends = [ + base blaze-builder bytestring case-insensitive cookie fast-logger + hspec http-types HUnit resourcet text time transformers wai zlib + ]; + homepage = "http://github.com/yesodweb/wai"; + description = "Provides some basic WAI handlers and middleware"; + license = stdenv.lib.licenses.mit; }) {}; "wai-frontend-monadcgi" = callPackage @@ -208515,6 +218010,7 @@ self: { homepage = "https://bitbucket.org/dpwiz/wai-graceful"; description = "Graceful shutdown for WAI applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-handler-devel" = callPackage @@ -208537,6 +218033,7 @@ self: { homepage = "http://github.com/yesodweb/wai"; description = "WAI server that automatically reloads code after modification. (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-handler-fastcgi" = callPackage @@ -208633,6 +218130,7 @@ self: { homepage = "http://github.com/snoyberg/wai-handler-snap"; description = "Web Application Interface handler using snap-server. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-handler-webkit" = callPackage @@ -208646,6 +218144,7 @@ self: { homepage = "https://github.com/yesodweb/wai/tree/master/wai-handler-webkit"; description = "Turn WAI applications into standalone GUIs using QtWebkit"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {QtWebKit = null;}; "wai-hastache" = callPackage @@ -208662,6 +218161,7 @@ self: { homepage = "https://github.com/singpolyma/wai-hastache"; description = "Nice wrapper around hastache for use with WAI"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-hmac-auth" = callPackage @@ -208719,6 +218219,7 @@ self: { jailbreak = true; description = "DEPCRECATED (use package \"simple\" instead) A minimalist web framework for WAI web applications"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-logger_2_2_3" = callPackage @@ -208819,6 +218320,7 @@ self: { ]; description = "A logging system for preforked WAI apps"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-cache" = callPackage @@ -208842,6 +218344,7 @@ self: { homepage = "https://github.com/akaspin/wai-middleware-cache"; description = "Caching middleware for WAI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-cache-redis" = callPackage @@ -208862,6 +218365,7 @@ self: { homepage = "https://github.com/akaspin/wai-middleware-cache-redis"; description = "Redis backend for wai-middleware-cache"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-caching" = callPackage @@ -208929,6 +218433,7 @@ self: { homepage = "https://github.com/akaspin/wai-middleware-catch"; description = "Wai error catching middleware"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-consul" = callPackage @@ -209139,6 +218644,7 @@ self: { ]; description = "Middleware and utilities for using Atlassian Crowd authentication"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "wai-middleware-etag" = callPackage @@ -209186,6 +218692,7 @@ self: { homepage = "http://github.com/seanhess/wai-middleware-headers"; description = "cors and addHeaders for WAI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-hmac" = callPackage @@ -209233,9 +218740,10 @@ self: { ]; description = "WAI HMAC Authentication Middleware Client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-middleware-metrics" = callPackage + "wai-middleware-metrics_0_2_2" = callPackage ({ mkDerivation, base, bytestring, ekg-core, http-types, QuickCheck , scotty, tasty, tasty-hunit, tasty-quickcheck, time, transformers , wai, wai-extra @@ -209252,6 +218760,26 @@ self: { homepage = "https://github.com/Helkafen/wai-middleware-metrics"; description = "A WAI middleware to collect EKG request metrics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai-middleware-metrics" = callPackage + ({ mkDerivation, base, bytestring, ekg-core, http-types, QuickCheck + , scotty, tasty, tasty-hunit, tasty-quickcheck, text, time + , transformers, wai, wai-extra + }: + mkDerivation { + pname = "wai-middleware-metrics"; + version = "0.2.3"; + sha256 = "c9123ca10c2d0d223ce0c39faa7097de2e61ec2b9a24cff042d7248850ea2e2a"; + libraryHaskellDepends = [ base ekg-core http-types text time wai ]; + testHaskellDepends = [ + base bytestring ekg-core http-types QuickCheck scotty tasty + tasty-hunit tasty-quickcheck text time transformers wai wai-extra + ]; + homepage = "https://github.com/Helkafen/wai-middleware-metrics"; + description = "A WAI middleware to collect EKG request metrics"; + license = stdenv.lib.licenses.bsd3; }) {}; "wai-middleware-preprocessor" = callPackage @@ -209272,6 +218800,7 @@ self: { homepage = "https://github.com/taktoa/wai-middleware-preprocessor"; description = "WAI middleware for preprocessing static files"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-prometheus" = callPackage @@ -209312,6 +218841,7 @@ self: { homepage = "https://github.com/akaspin/wai-middleware-route"; description = "Wai dispatch middleware"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-static_0_6_0_1" = callPackage @@ -209392,6 +218922,7 @@ self: { homepage = "https://github.com/agrafix/wai-middleware-static"; description = "WAI middleware that serves requests to static files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-throttle_0_2_0_1" = callPackage @@ -209416,7 +218947,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-middleware-throttle" = callPackage + "wai-middleware-throttle_0_2_0_2" = callPackage ({ mkDerivation, base, bytestring, containers, hashable, hlint , hspec, http-types, HUnit, network, stm, token-bucket , transformers, wai, wai-extra @@ -209436,6 +218967,29 @@ self: { doCheck = false; description = "WAI Middleware for Request Throttling"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai-middleware-throttle" = callPackage + ({ mkDerivation, base, bytestring, containers, hashable, hspec + , http-types, HUnit, network, stm, token-bucket, transformers, wai + , wai-extra + }: + mkDerivation { + pname = "wai-middleware-throttle"; + version = "0.2.1.0"; + sha256 = "862ac07bb8c8e21b4f56a6398444e2e6bdf9512a198ae394fa9d023f7cfcf87c"; + libraryHaskellDepends = [ + base containers hashable http-types network stm token-bucket + transformers wai + ]; + testHaskellDepends = [ + base bytestring hspec http-types HUnit stm transformers wai + wai-extra + ]; + doCheck = false; + description = "WAI Middleware for Request Throttling"; + license = stdenv.lib.licenses.bsd3; }) {}; "wai-middleware-verbs" = callPackage @@ -209927,6 +219481,7 @@ self: { homepage = "https://github.com/singpolyma/wai-session-tokyocabinet"; description = "Session store based on Tokyo Cabinet"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-static-cache" = callPackage @@ -209946,6 +219501,7 @@ self: { ]; description = "A simple cache for serving static files in a WAI middleware"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-static-pages" = callPackage @@ -209992,6 +219548,7 @@ self: { homepage = "https://github.com/yogeshsajanikar/wai-thrift"; description = "Thrift transport layer for Wai"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-throttler" = callPackage @@ -210008,6 +219565,7 @@ self: { jailbreak = true; description = "Wai middleware for request throttling"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-transformers" = callPackage @@ -211097,6 +220655,7 @@ self: { homepage = "http://tanakh.jp"; description = "Dynamic configurable warp HTTP server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "warp-static" = callPackage @@ -211119,6 +220678,7 @@ self: { homepage = "http://github.com/yesodweb/wai"; description = "Static file server based on Warp and wai-app-static (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "warp-tls_3_0_1" = callPackage @@ -211481,6 +221041,7 @@ self: { jailbreak = true; description = "set group and user id before running server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "watchdog" = callPackage @@ -211493,6 +221054,7 @@ self: { jailbreak = true; description = "Simple control structure to re-try an action with exponential backoff"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "watcher" = callPackage @@ -211510,6 +221072,7 @@ self: { jailbreak = true; description = "Opinionated filesystem watcher"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "watchit" = callPackage @@ -211538,6 +221101,7 @@ self: { ]; description = "File change watching utility"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wavconvert" = callPackage @@ -211585,6 +221149,7 @@ self: { homepage = "http://code.haskell.org/~StefanKersten/code/wavesurfer"; description = "Parse WaveSurfer files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wavy" = callPackage @@ -211643,6 +221208,7 @@ self: { homepage = "https://github.com/cvb/hs-weather-api.git"; description = "Weather api implemented in haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-browser-in-haskell" = callPackage @@ -211654,6 +221220,7 @@ self: { libraryHaskellDepends = [ base gtk webkit ]; description = "Web Browser In Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-css" = callPackage @@ -211685,6 +221252,7 @@ self: { homepage = "http://github.com/snoyberg/web-encodings/tree/master"; description = "Encapsulate multiple web encoding in a single package. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-fpco" = callPackage @@ -211720,6 +221288,7 @@ self: { homepage = "http://github.com/cmoore/web-mongrel2"; description = "Bindings for the Mongrel2 web server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-page" = callPackage @@ -211836,6 +221405,7 @@ self: { homepage = "http://docs.yesodweb.com/web-routes-quasi/"; description = "Define data types and parse/build functions for web-routes via a quasi-quoted DSL (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-routes-regular" = callPackage @@ -211875,6 +221445,7 @@ self: { jailbreak = true; description = "Extends web-routes with some transformers instances for RouteT"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-routes-wai" = callPackage @@ -211920,8 +221491,10 @@ self: { }: mkDerivation { pname = "webapi"; - version = "0.1.0.0"; - sha256 = "c0d16e251abc585bcf5f3f65a7e8c24039efc08c335515af9c491bc48c2e2465"; + version = "0.2.0.0"; + sha256 = "473b1051b0833d90d5485f467cfaa69bc7777a24973cf0628ec0d006da60500b"; + revision = "1"; + editedCabalFile = "e374eaff480d32831ea7ec5cddfdaed5c58ed38a1517635a8ec5fbb321956535"; libraryHaskellDepends = [ aeson base binary blaze-builder bytestring bytestring-lexing bytestring-trie case-insensitive containers cookie exceptions @@ -211929,13 +221502,14 @@ self: { QuickCheck resourcet text time transformers vector wai wai-extra ]; testHaskellDepends = [ - base bytestring hspec hspec-wai http-types QuickCheck text time - vector wai wai-extra warp + aeson base bytestring case-insensitive hspec hspec-wai http-media + http-types QuickCheck text time vector wai wai-extra warp ]; jailbreak = true; homepage = "http://byteally.github.io/webapi/"; description = "WAI based library for web api"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "webapp" = callPackage @@ -211958,6 +221532,7 @@ self: { homepage = "https://github.com/fhsjaagshs/webapp"; description = "Haskell web app framework based on WAI & Warp"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "webcrank" = callPackage @@ -212218,7 +221793,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "webdriver" = callPackage + "webdriver_0_8_1" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring , bytestring, data-default-class, directory, directory-tree , exceptions, filepath, http-client, http-types, lifted-base @@ -212241,6 +221816,32 @@ self: { homepage = "https://github.com/kallisti-dev/hs-webdriver"; description = "a Haskell client for the Selenium WebDriver protocol"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "webdriver" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base64-bytestring + , bytestring, data-default-class, directory, directory-tree + , exceptions, filepath, http-client, http-types, lifted-base + , monad-control, network, network-uri, scientific, temporary, text + , time, transformers, transformers-base, unordered-containers + , vector, zip-archive + }: + mkDerivation { + pname = "webdriver"; + version = "0.8.2"; + sha256 = "2e840b25f462f37f08d2a4b4a22c73a28b26318b861bce14a445b728a2fbbb54"; + libraryHaskellDepends = [ + aeson attoparsec base base64-bytestring bytestring + data-default-class directory directory-tree exceptions filepath + http-client http-types lifted-base monad-control network + network-uri scientific temporary text time transformers + transformers-base unordered-containers vector zip-archive + ]; + doCheck = false; + homepage = "https://github.com/kallisti-dev/hs-webdriver"; + description = "a Haskell client for the Selenium WebDriver protocol"; + license = stdenv.lib.licenses.bsd3; }) {}; "webdriver-angular_0_1_7" = callPackage @@ -212317,6 +221918,7 @@ self: { homepage = "https://github.com/kallisti-dev/hs-webdriver"; description = "a Haskell client for the Selenium WebDriver protocol (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "webfinger-client" = callPackage @@ -212379,6 +221981,7 @@ self: { homepage = "http://github.com/ananthakumaran/webify"; description = "webfont generator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "webkit" = callPackage @@ -212397,6 +222000,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Webkit library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) webkit;}; "webkit-javascriptcore" = callPackage @@ -212409,6 +222013,7 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "JavaScriptCore FFI from webkitgtk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "webkitgtk3" = callPackage @@ -212427,6 +222032,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Webkit library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) webkit;}; "webkitgtk3-javascriptcore" = callPackage @@ -212442,6 +222048,7 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "JavaScriptCore FFI from webkitgtk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) webkit;}; "webpage_0_0_3_1" = callPackage @@ -212501,6 +222108,7 @@ self: { ]; description = "HTTP server library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "websnap" = callPackage @@ -212515,6 +222123,7 @@ self: { homepage = "https://github.com/jrb/websnap"; description = "Transforms URLs to PNGs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "websockets_0_9_2_1" = callPackage @@ -212784,6 +222393,7 @@ self: { ]; description = "Functional reactive web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wedding-announcement" = callPackage @@ -212819,6 +222429,7 @@ self: { jailbreak = true; description = "Wedged postcard generator"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "weighted-regexp" = callPackage @@ -212835,6 +222446,7 @@ self: { homepage = "http://sebfisch.github.com/haskell-regexp"; description = "Weighted Regular Expression Matcher"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "weighted-search" = callPackage @@ -212868,6 +222480,7 @@ self: { homepage = "https://github.com/mcschroeder/welshy"; description = "Haskell web framework (because Scotty had trouble yodeling)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "werewolf" = callPackage @@ -212878,8 +222491,8 @@ self: { }: mkDerivation { pname = "werewolf"; - version = "0.4.7.0"; - sha256 = "83a134b6aa52b80b9b32d5c0c98cd1db4b37f9427926dd29b1555b92853f7994"; + version = "0.4.10.0"; + sha256 = "b5bc8f8b2a52e41e175d9fb0683737d0a3b7f54c473e1227f7751ff56d065bb9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -212910,6 +222523,7 @@ self: { homepage = "https://github.com/hansonkd/Wheb-Framework"; description = "MongoDB plugin for Wheb"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wheb-redis" = callPackage @@ -212923,6 +222537,7 @@ self: { homepage = "https://github.com/hansonkd/Wheb-Framework"; description = "Redis connection for Wheb"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wheb-strapped" = callPackage @@ -212936,6 +222551,7 @@ self: { homepage = "https://github.com/hansonkd/Wheb-Framework"; description = "Strapped templates for Wheb"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "while-lang-parser" = callPackage @@ -212967,6 +222583,7 @@ self: { homepage = "http://neugierig.org/software/darcs/whim/"; description = "A Haskell window manager"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "whiskers" = callPackage @@ -212993,6 +222610,7 @@ self: { homepage = "https://github.com/haroldl/whitespace-nd"; description = "Whitespace, an esoteric programming language"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "whois" = callPackage @@ -213059,6 +222677,7 @@ self: { homepage = "http://rampa.sk/static/wikipedia4epub.html"; description = "Wikipedia EPUB E-Book construction from Firefox history"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "win-hp-path" = callPackage @@ -213093,6 +222712,7 @@ self: { homepage = "http://patch-tag.com/repo/windowslive"; description = "Implements Windows Live Web Authentication and Delegated Authentication"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "winerror" = callPackage @@ -213104,6 +222724,7 @@ self: { doHaddock = false; description = "Error handling for foreign calls to the Windows API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "winio" = callPackage @@ -213121,6 +222742,7 @@ self: { homepage = "http://github.com/felixmar/winio"; description = "I/O library for Windows"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {kernel32 = null; ws2_32 = null;}; "wiring" = callPackage @@ -213140,6 +222762,32 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "with-location_0_0_0" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "with-location"; + version = "0.0.0"; + sha256 = "65919edc3d0aaa403c54d0e8a9023568642daa635c057120090d17c61960bac5"; + libraryHaskellDepends = [ base ]; + homepage = "https://github.com/sol/with-location#readme"; + description = "Use ImplicitParams-based source locations in a backward compatible way"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "with-location" = callPackage + ({ mkDerivation, base, hspec }: + mkDerivation { + pname = "with-location"; + version = "0.1.0"; + sha256 = "2c91d70cb28d39d6d5fbb37800c7d984aed4254cdcbf03ffa0787404bddefde7"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base hspec ]; + homepage = "https://github.com/sol/with-location#readme"; + description = "Use ImplicitParams-based source locations in a backward compatible way"; + license = stdenv.lib.licenses.mit; + }) {}; + "withdependencies" = callPackage ({ mkDerivation, base, conduit, containers, hspec, HUnit, mtl }: mkDerivation { @@ -213456,6 +223104,7 @@ self: { jailbreak = true; description = "Haskell bindings for the wlc library"; license = stdenv.lib.licenses.isc; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) wlc;}; "wobsurv" = callPackage @@ -213493,6 +223142,7 @@ self: { homepage = "https://github.com/nikita-volkov/wobsurv"; description = "A simple and highly performant HTTP file server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "woffex" = callPackage @@ -213509,6 +223159,7 @@ self: { jailbreak = true; description = "Web Open Font Format (WOFF) unpacker"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wol" = callPackage @@ -213559,6 +223210,7 @@ self: { homepage = "https://github.com/swift-nav/wolf"; description = "Amazon Simple Workflow Service Wrapper"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "woot" = callPackage @@ -213605,6 +223257,7 @@ self: { homepage = "http://www.tiresiaspress.us/haskell/word24"; description = "24-bit word and int types for GHC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "word8_0_1_1" = callPackage @@ -213751,6 +223404,7 @@ self: { executableHaskellDepends = [ base containers fclabels ]; description = "A word search solver library and executable"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wordsetdiff" = callPackage @@ -213791,6 +223445,7 @@ self: { homepage = "https://github.com/sboosali/workflow-osx#readme"; description = "a \"Desktop Workflow\" monad with Objective-C bindings"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wp-archivebot" = callPackage @@ -213807,6 +223462,7 @@ self: { jailbreak = true; description = "Subscribe to a wiki's RSS feed and archive external links"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wrap" = callPackage @@ -213852,6 +223508,7 @@ self: { homepage = "http://code.haskell.org/~thielema/wraxml/"; description = "Lazy wrapper to HaXML, HXT, TagSoup via custom XML tree structure"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wreq_0_3_0_1" = callPackage @@ -214025,6 +223682,7 @@ self: { jailbreak = true; description = "Colour space transformations and metrics"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wsdl" = callPackage @@ -214073,6 +223731,7 @@ self: { libraryHaskellDepends = [ base old-locale time transformers ]; description = "Wojcik Tool Kit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wtk-gtk" = callPackage @@ -214088,6 +223747,7 @@ self: { ]; description = "GTK tools within Wojcik Tool Kit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wumpus-basic" = callPackage @@ -214104,6 +223764,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Basic objects and system code built on Wumpus-Core"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wumpus-core" = callPackage @@ -214119,6 +223780,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Pure Haskell PostScript and SVG generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wumpus-drawing" = callPackage @@ -214135,6 +223797,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "High-level drawing objects built on Wumpus-Basic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wumpus-microprint" = callPackage @@ -214152,6 +223815,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Microprints - \"greek-text\" pictures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wumpus-tree" = callPackage @@ -214169,6 +223833,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Drawing trees"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wuss" = callPackage @@ -214198,6 +223863,7 @@ self: { homepage = "https://wiki.haskell.org/WxHaskell"; description = "wxHaskell"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "wxAsteroids" = callPackage @@ -214212,6 +223878,7 @@ self: { homepage = "https://wiki.haskell.org/WxAsteroids"; description = "Try to avoid the asteroids with your space ship"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "wxFruit" = callPackage @@ -214228,6 +223895,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/WxFruit"; description = "An implementation of Fruit using wxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wxc" = callPackage @@ -214245,6 +223913,7 @@ self: { homepage = "https://wiki.haskell.org/WxHaskell"; description = "wxHaskell C++ wrapper"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs.xorg) libX11; inherit (pkgs) mesa; inherit (pkgs) wxGTK;}; @@ -214264,6 +223933,7 @@ self: { homepage = "https://wiki.haskell.org/WxHaskell"; description = "wxHaskell core"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) wxGTK;}; "wxdirect" = callPackage @@ -214297,6 +223967,7 @@ self: { homepage = "http://github.com/elbrujohalcon/wxhnotepad"; description = "An example of how to implement a basic notepad with wxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wxturtle" = callPackage @@ -214312,6 +223983,7 @@ self: { ]; description = "turtle like LOGO with wxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wybor" = callPackage @@ -214354,6 +224026,7 @@ self: { homepage = "http://dmwit.com/wyvern"; description = "An autoresponder for Dragon Go Server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "x-dsp" = callPackage @@ -214372,6 +224045,7 @@ self: { homepage = "http://jwlato.webfactional.com/haskell/x-dsp"; description = "A embedded DSL for manipulating DSP languages in Haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "x11-xim" = callPackage @@ -214400,6 +224074,7 @@ self: { homepage = "http://redmine.iportnov.ru/projects/x11-xinput"; description = "Haskell FFI bindings for X11 XInput library (-lXi)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.xorg) libXi;}; "x509_1_5_0_1" = callPackage @@ -214802,6 +224477,7 @@ self: { ]; description = "Haskell extended file attributes interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) attr;}; "xbattbar" = callPackage @@ -214816,6 +224492,7 @@ self: { homepage = "https://github.com/polachok/xbattbar"; description = "Simple battery indicator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "xcb-types" = callPackage @@ -214873,6 +224550,7 @@ self: { ]; description = "XChat"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" ]; }) {}; "xcp" = callPackage @@ -214935,6 +224613,7 @@ self: { ]; description = "Parse Graphviz xdot files and interactively view them using GTK and Cairo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "xenstore" = callPackage @@ -214966,6 +224645,7 @@ self: { homepage = "http://patch-tag.com/r/obbele/xfconf/home"; description = "FFI bindings to xfconf"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {libxfconf-0 = null;}; "xformat" = callPackage @@ -214996,6 +224676,7 @@ self: { homepage = "http://code.google.com/p/xhaskell-library/"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xhb" = callPackage @@ -215048,6 +224729,7 @@ self: { homepage = "http://github.com/jotrk/xhb-ewmh/"; description = "EWMH utilities for XHB"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xhtml_3000_2_1" = callPackage @@ -215107,6 +224789,7 @@ self: { homepage = "http://github.com/joachifm/hxine"; description = "Bindings to xine-lib"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {libxine = null; xine = null;}; "xing-api" = callPackage @@ -215132,6 +224815,7 @@ self: { homepage = "http://github.com/JanAhrens/xing-api-haskell"; description = "Wrapper for the XING API, v1"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xinput-conduit" = callPackage @@ -215166,6 +224850,7 @@ self: { testHaskellDepends = [ base unix ]; description = "Haskell bindings for libxkbcommon"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libxkbcommon;}; "xkcd" = callPackage @@ -215184,6 +224869,7 @@ self: { homepage = "http://github.com/sellweek/xkcd"; description = "Downloads the most recent xkcd comic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xlsior" = callPackage @@ -215407,6 +225093,23 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "xlsx-tabular" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, data-default + , lens, text, xlsx + }: + mkDerivation { + pname = "xlsx-tabular"; + version = "0.1.0.0"; + sha256 = "fe472e9fcac1d47f8d325a24a219ac54ff2471cbaeb071aef81b14300ecf9276"; + libraryHaskellDepends = [ + aeson base bytestring containers data-default lens text xlsx + ]; + testHaskellDepends = [ base ]; + homepage = "http://github.com/kkazuo/xlsx-tabular#readme"; + description = "Xlsx table decode utility"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "xlsx-templater" = callPackage ({ mkDerivation, base, bytestring, conduit, containers , data-default, parsec, text, time, transformers, xlsx @@ -215425,6 +225128,7 @@ self: { homepage = "https://github.com/qrilka/xlsx-templater"; description = "Simple and incomplete Excel file templater"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml_1_3_13" = callPackage @@ -215484,6 +225188,7 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Parse XML catalog files (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-conduit_1_2_3" = callPackage @@ -215714,7 +225419,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "xml-conduit" = callPackage + "xml-conduit_1_3_3_1" = callPackage ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html , blaze-markup, bytestring, conduit, conduit-extra, containers , data-default, deepseq, hspec, HUnit, monad-control, resourcet @@ -215736,9 +225441,10 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Pure-Haskell utilities for dealing with XML with the conduit package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "xml-conduit_1_3_4" = callPackage + "xml-conduit" = callPackage ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html , blaze-markup, bytestring, conduit, conduit-extra, containers , data-default, deepseq, hspec, HUnit, monad-control, resourcet @@ -215760,7 +225466,6 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Pure-Haskell utilities for dealing with XML with the conduit package"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-conduit-parse" = callPackage @@ -215825,6 +225530,7 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Pure-Haskell utilities for dealing with XML with the enumerator package. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-enumerator-combinators" = callPackage @@ -215843,6 +225549,7 @@ self: { jailbreak = true; description = "Parser combinators for xml-enumerator and compatible XML parsers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-extractors" = callPackage @@ -216002,6 +225709,7 @@ self: { homepage = "http://sep07.mroot.net/"; description = "Parsing XML with Parsec"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-picklers" = callPackage @@ -216031,6 +225739,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/xml-pipe/wiki"; description = "XML parser which uses simple-pipe"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-prettify" = callPackage @@ -216046,6 +225755,7 @@ self: { homepage = "http://github.com/rosenbergdm/xml-prettify"; description = "Pretty print XML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-push" = callPackage @@ -216067,6 +225777,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/xml-push/wiki"; description = "Push XML from/to client to/from server over XMPP or HTTP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-query" = callPackage @@ -216098,6 +225809,7 @@ self: { homepage = "https://github.com/sannsyn/xml-query-xml-conduit"; description = "A binding for the \"xml-query\" and \"xml-conduit\" libraries"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-query-xml-types" = callPackage @@ -216123,6 +225835,7 @@ self: { homepage = "https://github.com/sannsyn/xml-query-xml-types"; description = "An interpreter of \"xml-query\" queries for the \"xml-types\" documents"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-to-json" = callPackage @@ -216243,6 +225956,7 @@ self: { homepage = "http://github.com/yihuang/xml2json"; description = "translate xml to json"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml2x" = callPackage @@ -216261,6 +225975,7 @@ self: { jailbreak = true; description = "Convert BLAST output in XML format to CSV or HTML"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmlgen" = callPackage @@ -216342,6 +226057,7 @@ self: { homepage = "http://github.com/dagle/hs-xmltv"; description = "Show tv channels in the terminal"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmms2-client" = callPackage @@ -216358,6 +226074,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "An XMMS2 client library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmms2-client-glib" = callPackage @@ -216370,6 +226087,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "An XMMS2 client library — GLib integration"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmobar" = callPackage @@ -216398,6 +226116,7 @@ self: { homepage = "http://xmobar.org"; description = "A Minimalistic Text Based Status Bar"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {Xrender = null; inherit (pkgs.xorg) libXpm; inherit (pkgs.xorg) libXrandr; inherit (pkgs) wirelesstools;}; @@ -216448,6 +226167,7 @@ self: { homepage = "http://xmonad.org"; description = "A tiling window manager"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmonad-contrib" = callPackage @@ -216489,6 +226209,7 @@ self: { homepage = "http://xmonad.org/"; description = "Third party extensions for xmonad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmonad-contrib-gpl" = callPackage @@ -216536,12 +226257,13 @@ self: { homepage = "http://xmonad.org/"; description = "Module for evaluation Haskell expressions in the running xmonad instance"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmonad-extras" = callPackage - ({ mkDerivation, base, containers, directory, hint, mtl, network - , old-locale, old-time, parsec, process, random, regex-posix, split - , unix, X11, xmonad, xmonad-contrib + ({ mkDerivation, base, containers, directory, mtl, old-locale + , old-time, parsec, process, random, regex-posix, split, unix, X11 + , xmonad, xmonad-contrib }: mkDerivation { pname = "xmonad-extras"; @@ -216551,9 +226273,8 @@ self: { "-f-with_hlist" "-fwith_parsec" "-fwith_split" ]; libraryHaskellDepends = [ - base containers directory hint mtl network old-locale old-time - parsec process random regex-posix split unix X11 xmonad - xmonad-contrib + base containers directory mtl old-locale old-time parsec process + random regex-posix split unix X11 xmonad xmonad-contrib ]; homepage = "http://projects.haskell.org/xmonad-extras"; description = "Third party extensions for xmonad with wacky dependencies"; @@ -216570,6 +226291,7 @@ self: { homepage = "https://github.com/supki/xmonad-screenshot"; description = "Workspaces screenshooting utility for XMonad"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "xmonad-utils" = callPackage @@ -216584,6 +226306,7 @@ self: { homepage = "https://github.com/LeifW/xmonad-utils"; description = "A small collection of X utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "xmonad-wallpaper" = callPackage @@ -216630,6 +226353,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/xmpipe/wiki"; description = "XMPP implementation using simple-PIPE"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xorshift" = callPackage @@ -216654,6 +226378,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/xosd"; description = "A binding to the X on-screen display"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) xosd;}; "xournal-builder" = callPackage @@ -216693,6 +226418,7 @@ self: { homepage = "http://ianwookim.org/hxournal"; description = "convert utility for xoj files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xournal-parser" = callPackage @@ -216730,6 +226456,7 @@ self: { jailbreak = true; description = "Xournal file renderer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xournal-types" = callPackage @@ -216766,6 +226493,7 @@ self: { homepage = "http://malde.org/~ketil/"; description = "Cluster EST sequences"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xsd" = callPackage @@ -216806,6 +226534,7 @@ self: { librarySystemDepends = [ xslt ]; description = "Binding to libxslt"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {xslt = null;}; "xss-sanitize_0_3_5_4" = callPackage @@ -216884,6 +226613,7 @@ self: { homepage = "http://github.com/alanz/xtc"; description = "eXtended & Typed Controls for wxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "xtest" = callPackage @@ -216950,6 +226680,7 @@ self: { jailbreak = true; description = "#plaimi's all-encompassing bot"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yabi" = callPackage @@ -217131,6 +226862,7 @@ self: { homepage = "http://www.people.fas.harvard.edu/~stewart5/code/yahoo-web-search"; description = "Yahoo Web Search Services"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yajl" = callPackage @@ -217145,6 +226877,7 @@ self: { homepage = "https://john-millikin.com/software/haskell-yajl/"; description = "Bindings for YAJL, an event-based JSON implementation"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) yajl;}; "yajl-enumerator" = callPackage @@ -217162,6 +226895,7 @@ self: { homepage = "https://john-millikin.com/software/haskell-yajl/"; description = "Enumerator-based interface to YAJL, an event-based JSON implementation"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yall" = callPackage @@ -217459,19 +227193,19 @@ self: { }) {inherit (pkgs) libyaml;}; "yaml-config" = callPackage - ({ mkDerivation, base, deepseq, failure, hashable, QuickCheck - , tasty, tasty-quickcheck, text, unordered-containers, yaml + ({ mkDerivation, base, deepseq, hashable, QuickCheck, tasty + , tasty-quickcheck, text, unordered-containers, yaml }: mkDerivation { pname = "yaml-config"; - version = "0.3.0"; - sha256 = "ac4bace7a31441c0b5dfeb6b6e2cf4078d19f000011d1f074106ee01fba11c9c"; + version = "0.4.0"; + sha256 = "7357560b3e36d663058478f2e13d371a0a057a84017ef80752316282484bf80e"; libraryHaskellDepends = [ - base deepseq failure text unordered-containers yaml + base deepseq text unordered-containers yaml ]; testHaskellDepends = [ - base deepseq failure hashable QuickCheck tasty tasty-quickcheck - text unordered-containers yaml + base deepseq hashable QuickCheck tasty tasty-quickcheck text + unordered-containers yaml ]; description = "Configuration management"; license = stdenv.lib.licenses.mit; @@ -217521,6 +227255,7 @@ self: { homepage = "http://redmine.iportnov.ru/projects/yaml-rpc"; description = "Simple library for network (HTTP REST-like) YAML RPC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yaml-rpc-scotty" = callPackage @@ -217538,6 +227273,7 @@ self: { homepage = "http://redmine.iportnov.ru/projects/yaml-rpc"; description = "Scotty server backend for yaml-rpc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yaml-rpc-snap" = callPackage @@ -217555,6 +227291,7 @@ self: { homepage = "http://redmine.iportnov.ru/projects/yaml-rpc"; description = "Snap server backend for yaml-rpc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yaml-union" = callPackage @@ -217575,6 +227312,7 @@ self: { homepage = "https://github.com/michelk/yaml-overrides.hs"; description = "Read multiple yaml-files and override fields recursively"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yaml2owl" = callPackage @@ -217593,6 +227331,7 @@ self: { homepage = "http://github.com/leifw/yaml2owl"; description = "Generate OWL schema from YAML syntax, and an RDFa template"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yamlkeysdiff" = callPackage @@ -217626,6 +227365,7 @@ self: { executableHaskellDepends = [ base blank-canvas text Yampa ]; description = "blank-canvas frontend for Yampa"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "yampa-glfw" = callPackage @@ -217645,6 +227385,7 @@ self: { homepage = "https://github.com/deepfire/yampa-glfw"; description = "Connects GLFW-b (GLFW 3+) with the Yampa FRP library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yampa-glut" = callPackage @@ -217667,6 +227408,7 @@ self: { homepage = "https://github.com/ony/yampa-glut"; description = "Connects Yampa and GLUT"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yampa2048" = callPackage @@ -217682,6 +227424,7 @@ self: { homepage = "https://github.com/ksaveljev/yampa-2048"; description = "2048 game clone using Yampa/Gloss"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-linux" ]; }) {}; "yaop" = callPackage @@ -217696,6 +227439,7 @@ self: { homepage = "https://github.com/esmolanka/yaop"; description = "Yet another option parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yap" = callPackage @@ -217746,6 +227490,7 @@ self: { jailbreak = true; description = "Yet another array library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yarr-image-io" = callPackage @@ -217759,6 +227504,7 @@ self: { jailbreak = true; description = "Image IO for Yarr library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libdevil;}; "yate" = callPackage @@ -217779,6 +227525,7 @@ self: { jailbreak = true; description = "Yet Another Template Engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yavie" = callPackage @@ -217797,6 +227544,7 @@ self: { executableHaskellDepends = [ base Cabal directory process ]; description = "yet another visual editor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ycextra" = callPackage @@ -217811,6 +227559,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Yhc"; description = "Additional utilities to work with Yhc Core"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yeganesh" = callPackage @@ -217877,6 +227626,25 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "yeshql" = callPackage + ({ mkDerivation, base, containers, filepath, HDBC, parsec, stm + , tasty, tasty-hunit, tasty-quickcheck, template-haskell + }: + mkDerivation { + pname = "yeshql"; + version = "0.3.0.2"; + sha256 = "644a83935a015b792d879dfa301bbb18beeea8515c2acd8d516a2cf6697fcbb7"; + libraryHaskellDepends = [ + base containers filepath HDBC parsec template-haskell + ]; + testHaskellDepends = [ + base HDBC stm tasty tasty-hunit tasty-quickcheck + ]; + description = "YesQL-style SQL database abstraction"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "yesod_1_4_1_1" = callPackage ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring , conduit-extra, data-default, directory, fast-logger @@ -218059,6 +227827,7 @@ self: { homepage = "https://github.com/tolysz/yesod-angular-ui"; description = "Angular Helpers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-auth_1_4_1" = callPackage @@ -218828,6 +228597,7 @@ self: { homepage = "http://www.yesodweb.com/"; description = "LDAP Authentication for Yesod"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-auth-ldap-mediocre" = callPackage @@ -219067,7 +228837,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-auth-oauth2" = callPackage + "yesod-auth-oauth2_0_1_7" = callPackage ({ mkDerivation, aeson, authenticate, base, bytestring, containers , hoauth2, hspec, http-client, http-conduit, http-types , lifted-base, load-env, network-uri, random, text, transformers @@ -219091,6 +228861,33 @@ self: { homepage = "http://github.com/thoughtbot/yesod-auth-oauth2"; description = "OAuth 2.0 authentication plugins"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-auth-oauth2" = callPackage + ({ mkDerivation, aeson, authenticate, base, bytestring, containers + , hoauth2, hspec, http-client, http-conduit, http-types + , lifted-base, load-env, network-uri, random, text, transformers + , vector, warp, yesod, yesod-auth, yesod-core, yesod-form + }: + mkDerivation { + pname = "yesod-auth-oauth2"; + version = "0.1.8"; + sha256 = "13ae292984fcb93702df78a92526d2cd14573e707ceeff7ad8cecbd102596e11"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson authenticate base bytestring hoauth2 http-client http-conduit + http-types lifted-base network-uri random text transformers vector + yesod-auth yesod-core yesod-form + ]; + executableHaskellDepends = [ + base containers http-conduit load-env text warp yesod yesod-auth + ]; + testHaskellDepends = [ base hspec ]; + homepage = "http://github.com/thoughtbot/yesod-auth-oauth2"; + description = "OAuth 2.0 authentication plugins"; + license = stdenv.lib.licenses.bsd3; }) {}; "yesod-auth-pam" = callPackage @@ -219106,6 +228903,7 @@ self: { ]; description = "Provides PAM authentication module"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-auth-smbclient" = callPackage @@ -219123,6 +228921,7 @@ self: { homepage = "https://github.com/kkazuo/yesod-auth-smbclient.git"; description = "Authentication plugin for Yesod using smbclient"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-auth-zendesk" = callPackage @@ -220240,6 +230039,7 @@ self: { homepage = "http://github.com/pbrisbin/yesod-comments"; description = "A generic comments interface for a Yesod application"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-content-pdf" = callPackage @@ -220262,6 +230062,7 @@ self: { homepage = "https://github.com/alexkyllo/yesod-content-pdf#readme"; description = "PDF Content Type for Yesod"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-continuations" = callPackage @@ -220281,6 +230082,7 @@ self: { homepage = "https://github.com/softmechanics/yesod-continuations/"; description = "Continuations for Yesod"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-core_1_4_6" = callPackage @@ -221217,6 +231019,7 @@ self: { homepage = "http://github.com/tlaitinen/yesod-datatables"; description = "Yesod plugin for DataTables (jQuery grid plugin)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-default" = callPackage @@ -221313,6 +231116,7 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Example programs using the Yesod Web Framework. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) sqlite;}; "yesod-fay_0_7_0" = callPackage @@ -221559,6 +231363,23 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "yesod-form-richtext" = callPackage + ({ mkDerivation, base, blaze-builder, blaze-html, shakespeare, text + , xss-sanitize, yesod-core, yesod-form + }: + mkDerivation { + pname = "yesod-form-richtext"; + version = "0.1.0.0"; + sha256 = "b404fed16d56aac153e2f7a6c512f1b02653edb77bfea7e5331eac08ac6c11d1"; + libraryHaskellDepends = [ + base blaze-builder blaze-html shakespeare text xss-sanitize + yesod-core yesod-form + ]; + homepage = "http://github.com/geraldus/yesod-form-richtext#readme"; + description = "Various rich-text WYSIWYG editors for Yesod forms"; + license = stdenv.lib.licenses.mit; + }) {}; + "yesod-gitrepo_0_1_1_0" = callPackage ({ mkDerivation, base, directory, enclosed-exceptions, http-types , lifted-base, process, system-filepath, temporary, text, wai @@ -221625,6 +231446,7 @@ self: { homepage = "http://github.com/pbrisbin/yesod-goodies"; description = "A collection of various small helpers useful in any yesod application"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-json" = callPackage @@ -221650,6 +231472,7 @@ self: { homepage = "http://github.com/pbrisbin/yesod-goodies/yesod-links"; description = "A typeclass which simplifies creating link widgets throughout your site"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-lucid" = callPackage @@ -221803,6 +231626,7 @@ self: { homepage = "https://github.com/mgsloan/yesod-media-simple"; description = "Simple display of media types, served by yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "yesod-newsfeed_1_4_0" = callPackage @@ -221885,6 +231709,7 @@ self: { libraryHaskellDepends = [ base template-haskell yesod ]; description = "Pagination for Yesod sites"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-pagination" = callPackage @@ -221904,6 +231729,7 @@ self: { homepage = "https://github.com/joelteon/yesod-pagination"; description = "Pagination in Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-paginator" = callPackage @@ -222069,8 +231895,8 @@ self: { }: mkDerivation { pname = "yesod-pnotify"; - version = "1.1.3.1"; - sha256 = "67c2c9e808a963213f7a9b48472758b26a64c058ff2dfd8edd8f0c8ad053d407"; + version = "1.1.3.2"; + sha256 = "9e18578306181a9731810b956b0d2ab51d56773cfd47228d5ad71bacecf85419"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -222079,7 +231905,6 @@ self: { executableHaskellDepends = [ aeson base shakespeare text transformers yesod yesod-form ]; - jailbreak = true; homepage = "https://github.com/cutsea110/yesod-pnotify"; description = "Yet another getMessage/setMessage using pnotify jquery plugins"; license = stdenv.lib.licenses.bsd3; @@ -222096,6 +231921,7 @@ self: { homepage = "https://github.com/snoyberg/yesod-pure"; description = "Yesod in pure Haskell: no Template Haskell or QuasiQuotes (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-purescript" = callPackage @@ -222117,6 +231943,7 @@ self: { homepage = "https://github.com/mpietrzak/yesod-purescript"; description = "PureScript integration for Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-raml" = callPackage @@ -222162,6 +231989,7 @@ self: { ]; description = "The raml helper executable"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-raml-docs" = callPackage @@ -222201,6 +232029,7 @@ self: { ]; description = "A mock-handler generator library from RAML"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-recaptcha" = callPackage @@ -222277,6 +232106,7 @@ self: { homepage = "https://github.com/docmunch/yesod-routes-typescript"; description = "generate TypeScript routes for Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-rst" = callPackage @@ -222295,6 +232125,7 @@ self: { homepage = "http://github.com/pSub/yesod-rst"; description = "Tools for using reStructuredText (RST) in a yesod application"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-s3" = callPackage @@ -222312,6 +232143,7 @@ self: { homepage = "https://github.com/tvh/yesod-s3"; description = "Simple Helper Library for using Amazon's Simple Storage Service (S3) with Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-sass" = callPackage @@ -222347,6 +232179,7 @@ self: { homepage = "https://github.com/ollieh/yesod-session-redis"; description = "Redis-Powered Sessions for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-sitemap_1_4_0" = callPackage @@ -222690,6 +232523,7 @@ self: { libraryHaskellDepends = [ base hamlet persistent yesod ]; description = "Table view for Yesod applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-test_1_4_2" = callPackage @@ -222897,6 +232731,7 @@ self: { homepage = "https://github.com/bogiebro/yesod-test-json"; description = "Utility functions for testing JSON web services written in Yesod"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-text-markdown_0_1_7" = callPackage @@ -222948,6 +232783,7 @@ self: { homepage = "http://github.com/netom/yesod-tls"; description = "Provides main functions using warp-tls for yesod projects"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-transloadit" = callPackage @@ -222994,6 +232830,7 @@ self: { homepage = "https://github.com/Tener/yesod-vend"; description = "Simple CRUD classes for easy view creation for Yesod"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-websockets_0_2_0" = callPackage @@ -223120,6 +232957,7 @@ self: { homepage = "https://github.com/jamesdabbs/yesod-worker"; description = "Drop-in(ish) background worker system for Yesod apps"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yet-another-logger" = callPackage @@ -223154,6 +232992,7 @@ self: { homepage = "https://github.com/alephcloud/hs-yet-another-logger"; description = "Yet Another Logger"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "yhccore" = callPackage @@ -223166,9 +233005,10 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Yhc"; description = "Yhc's Internal Core language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yi" = callPackage + "yi_0_12_3" = callPackage ({ mkDerivation, array, base, binary, bytestring, Cabal, containers , data-default, directory, dlist, dynamic-state, dyre, exceptions , filepath, glib, gtk, hashable, hint, HUnit, lens, mtl, old-locale @@ -223202,6 +233042,44 @@ self: { homepage = "https://yi-editor.github.io"; description = "The Haskell-Scriptable Editor"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yi" = callPackage + ({ mkDerivation, array, base, binary, bytestring, Cabal, containers + , data-default, directory, dlist, dynamic-state, dyre, exceptions + , filepath, glib, gtk, hashable, hint, HUnit, lens, mtl, old-locale + , oo-prototypes, pango, parsec, pointedlist, process, QuickCheck + , random, safe, semigroups, split, stm, tasty, tasty-hunit + , tasty-quickcheck, template-haskell, text, text-icu, time + , transformers-base, unix, unix-compat, unordered-containers, vty + , word-trie, xdg-basedir, yi-language, yi-rope + }: + mkDerivation { + pname = "yi"; + version = "0.12.4"; + sha256 = "7cf4af678744ac1b0e7980aee07f55d60c9e1178436ef8994166f0011d3273d5"; + configureFlags = [ "-fpango" "-fvty" ]; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base binary bytestring Cabal containers data-default + directory dlist dynamic-state dyre exceptions filepath glib gtk + hashable hint lens mtl old-locale oo-prototypes pango parsec + pointedlist process QuickCheck random safe semigroups split stm + template-haskell text text-icu time transformers-base unix + unix-compat unordered-containers vty word-trie xdg-basedir + yi-language yi-rope + ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + base directory filepath HUnit lens QuickCheck semigroups tasty + tasty-hunit tasty-quickcheck text yi-language yi-rope + ]; + homepage = "https://yi-editor.github.io"; + description = "The Haskell-Scriptable Editor"; + license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "yi-contrib" = callPackage @@ -223222,6 +233100,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Yi"; description = "Add-ons to Yi, the Haskell-Scriptable Editor"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yi-emacs-colours" = callPackage @@ -223252,6 +233131,7 @@ self: { homepage = "https://github.com/yi-editor/yi-fuzzy-open"; description = "Fuzzy open plugin for Yi"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "yi-gtk" = callPackage @@ -223302,6 +233182,7 @@ self: { homepage = "https://github.com/Fuuzetsu/yi-monokai"; description = "Monokai colour theme for the Yi text editor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "yi-rope" = callPackage @@ -223322,6 +233203,7 @@ self: { ]; description = "A rope data structure used by Yi"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "yi-snippet" = callPackage @@ -223334,6 +233216,7 @@ self: { homepage = "https://github.com/yi-editor/yi-snippet"; description = "Snippet support for Yi"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "yi-solarized" = callPackage @@ -223346,6 +233229,7 @@ self: { homepage = "https://github.com/NorfairKing/yi-solarized"; description = "Solarized colour theme for the Yi text editor"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "yi-spolsky" = callPackage @@ -223359,6 +233243,7 @@ self: { homepage = "https://github.com/melrief/yi-spolsky"; description = "Spolsky colour theme for the Yi text editor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "yi-vty" = callPackage @@ -223382,6 +233267,7 @@ self: { libraryHaskellDepends = [ base parsec process ]; description = "Haskell programming interface to Yices SMT solver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yices-easy" = callPackage @@ -223435,6 +233321,7 @@ self: { homepage = "http://homepage3.nifty.com/salamander/second/projects/yjftp/index.xhtml"; description = "CUI FTP client like 'ftp', 'ncftp'"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yjftp-libs" = callPackage @@ -223522,6 +233409,7 @@ self: { ]; description = "Generic Programming with Disbanded Data Types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "york-lava" = callPackage @@ -223534,6 +233422,7 @@ self: { homepage = "http://www.cs.york.ac.uk/fp/reduceron/"; description = "A library for digital circuit description"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "youtube" = callPackage @@ -223575,6 +233464,7 @@ self: { homepage = "https://github.com/fabianbergmark/YQL"; description = "A YQL engine to execute Open Data Tables"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yst" = callPackage @@ -223608,6 +233498,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Grids defined by layout hints and implemented on top of Yahoo grids"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yuuko" = callPackage @@ -223631,6 +233522,7 @@ self: { homepage = "http://github.com/nfjinjing/yuuko"; description = "A transcendental HTML parser gently wrapping the HXT library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yxdb-utils" = callPackage @@ -223669,6 +233561,7 @@ self: { ]; description = "Utilities for reading and writing Alteryx .yxdb files"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "z3" = callPackage @@ -223686,6 +233579,7 @@ self: { homepage = "http://bitbucket.org/iago/z3-haskell"; description = "Bindings for the Z3 Theorem Prover"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {gomp = null; inherit (pkgs) z3;}; "zalgo" = callPackage @@ -223717,6 +233611,7 @@ self: { homepage = "https://github.com/briansniffen/zampolit"; description = "A tool for checking how much work is done on group projects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zasni-gerna" = callPackage @@ -223729,6 +233624,7 @@ self: { homepage = "https://skami.iocikun.jp/haskell/packages/zasni-gerna"; description = "lojban parser (zasni gerna)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zcache" = callPackage @@ -223777,6 +233673,7 @@ self: { homepage = "https://github.com/VictorDenisov/zendesk-api"; description = "Zendesk API for Haskell programming language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zeno" = callPackage @@ -223795,6 +233692,7 @@ self: { ]; description = "An automated proof system for Haskell programs"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zero_0_1_2" = callPackage @@ -223857,6 +233755,7 @@ self: { jailbreak = true; description = "Post to 0bin services"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zeromq-haskell" = callPackage @@ -223876,6 +233775,7 @@ self: { homepage = "http://github.com/twittner/zeromq-haskell/"; description = "Bindings to ZeroMQ 2.1.x"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) zeromq;}; "zeromq3-conduit" = callPackage @@ -223893,6 +233793,7 @@ self: { homepage = "https://github.com/NicolasT/zeromq3-conduit"; description = "Conduit bindings for zeromq3-haskell"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zeromq3-haskell" = callPackage @@ -223916,6 +233817,7 @@ self: { homepage = "http://github.com/twittner/zeromq-haskell/"; description = "Bindings to ZeroMQ 3.x"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) zeromq;}; "zeromq4-haskell_0_6_2" = callPackage @@ -224007,6 +233909,7 @@ self: { jailbreak = true; description = "ZeroTH - remove unnecessary TH dependencies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zigbee-znet25" = callPackage @@ -224026,7 +233929,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "zim-parser" = callPackage + "zim-parser_0_1_0_0" = callPackage ({ mkDerivation, array, base, binary, binary-conduit, bytestring , conduit, conduit-extra, hspec, lzma-conduit, resourcet }: @@ -224045,6 +233948,54 @@ self: { homepage = "https://github.com/robbinch/zim-parser#readme"; description = "Read and parse ZIM files"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "zim-parser" = callPackage + ({ mkDerivation, array, base, binary, binary-conduit, bytestring + , conduit, conduit-extra, hspec, lzma-conduit, resourcet + }: + mkDerivation { + pname = "zim-parser"; + version = "0.2.0.0"; + sha256 = "663e6604b20c67bfd3e0ba161c3f7c88f10230a28282990311133d8a9d962df6"; + libraryHaskellDepends = [ + array base binary binary-conduit bytestring conduit conduit-extra + lzma-conduit resourcet + ]; + testHaskellDepends = [ + array base binary binary-conduit bytestring conduit conduit-extra + hspec lzma-conduit resourcet + ]; + homepage = "https://github.com/robbinch/zim-parser#readme"; + description = "Read and parse ZIM files"; + license = stdenv.lib.licenses.gpl3; + }) {}; + + "zip" = callPackage + ({ mkDerivation, base, bytestring, bzlib-conduit, case-insensitive + , cereal, conduit, conduit-extra, containers, digest, exceptions + , filepath, hspec, mtl, path, path-io, plan-b, QuickCheck + , resourcet, semigroups, text, time, transformers + }: + mkDerivation { + pname = "zip"; + version = "0.1.1"; + sha256 = "642a84ab891b4dee722d0c60d46703b6812298fcf56fe11ce803dbeaa3d156dd"; + libraryHaskellDepends = [ + base bytestring bzlib-conduit case-insensitive cereal conduit + conduit-extra containers digest exceptions filepath mtl path + path-io plan-b resourcet semigroups text time transformers + ]; + testHaskellDepends = [ + base bytestring conduit containers exceptions filepath hspec path + path-io QuickCheck text time transformers + ]; + doCheck = false; + homepage = "https://github.com/mrkkrp/zip"; + description = "Operations on zip archives"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zip-archive_0_2_3_5" = callPackage @@ -224158,6 +234109,7 @@ self: { homepage = "http://code.haskell.org/~byorgey/code/zipedit"; description = "Create simple list editor interfaces"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zipkin" = callPackage @@ -224383,6 +234335,7 @@ self: { homepage = "https://github.com/lucasdicioccio/zmcat"; description = "Command-line tool for ZeroMQ"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zmidi-core" = callPackage @@ -224431,6 +234384,7 @@ self: { ]; description = "A socat-like tool for zeromq library"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoneinfo" = callPackage @@ -224443,6 +234397,7 @@ self: { jailbreak = true; description = "ZoneInfo library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoom" = callPackage @@ -224463,6 +234418,7 @@ self: { homepage = "http://github.com/iand675/Zoom"; description = "A rake/thor-like task runner written in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoom-cache" = callPackage @@ -224495,6 +234451,7 @@ self: { jailbreak = true; description = "A streamable, seekable, zoomable cache file format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoom-cache-pcm" = callPackage @@ -224512,6 +234469,7 @@ self: { jailbreak = true; description = "Library for zoom-cache PCM audio codecs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoom-cache-sndfile" = callPackage @@ -224532,6 +234490,7 @@ self: { jailbreak = true; description = "Tools for generating zoom-cache-pcm files"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoom-refs" = callPackage @@ -224558,6 +234517,7 @@ self: { executableHaskellDepends = [ base monads-tf ]; description = "Zot language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zsh-battery" = callPackage @@ -224572,6 +234532,7 @@ self: { homepage = "https://github.com/MasseR/zsh-battery"; description = "Ascii bars representing battery status"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ztail" = callPackage @@ -224590,6 +234551,7 @@ self: { ]; description = "Multi-file, colored, filtered log tailer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; } diff --git a/pkgs/development/haskell-modules/lib.nix b/pkgs/development/haskell-modules/lib.nix index 59020264b3c..a4db98f2e61 100644 --- a/pkgs/development/haskell-modules/lib.nix +++ b/pkgs/development/haskell-modules/lib.nix @@ -81,7 +81,7 @@ rec { buildStrictly = pkg: buildFromSdist (appendConfigureFlag pkg "--ghc-option=-Wall --ghc-option=-Werror"); - buildStackProject = pkgs.callPackage ../development/haskell-modules/generic-stack-builder.nix { }; + buildStackProject = pkgs.callPackage ./generic-stack-builder.nix { }; triggerRebuild = drv: i: overrideCabal drv (drv: { postUnpack = ": trigger rebuild ${toString i}"; }); diff --git a/pkgs/development/interpreters/eff/default.nix b/pkgs/development/interpreters/eff/default.nix index 4f2e100c684..88490e9cd9c 100644 --- a/pkgs/development/interpreters/eff/default.nix +++ b/pkgs/development/interpreters/eff/default.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation { backtracking, multi-threading, and much more... ''; license = licenses.bsd2; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ maintainers.jirkamarsik ]; }; } diff --git a/pkgs/development/interpreters/elixir/default.nix b/pkgs/development/interpreters/elixir/default.nix index 25b0b02a33b..3977b32bad7 100644 --- a/pkgs/development/interpreters/elixir/default.nix +++ b/pkgs/development/interpreters/elixir/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "elixir-${version}"; - version = "1.2.2"; + version = "1.2.3"; src = fetchurl { url = "https://github.com/elixir-lang/elixir/archive/v${version}.tar.gz"; - sha256 = "0ml0sl1l5ibb8qh505fsd7y87wq9qjvaxw9y1dyfcw00d3i1z989"; + sha256 = "09s8469830s4070i0m04fxdhqimkdyc5k9jylm5vpfz9l3z4wvl8"; }; buildInputs = [ erlang rebar makeWrapper ]; diff --git a/pkgs/development/interpreters/erlang/R15.nix b/pkgs/development/interpreters/erlang/R15.nix deleted file mode 100644 index 137bae6e461..00000000000 --- a/pkgs/development/interpreters/erlang/R15.nix +++ /dev/null @@ -1,69 +0,0 @@ -{ stdenv, fetchurl, perl, gnum4, ncurses, openssl -, makeWrapper, gnused, gawk -, wxSupport ? false, mesa ? null, wxGTK ? null, xorg ? null }: - -assert wxSupport -> mesa != null && wxGTK != null && xorg != null; - -let version = "15B03"; in - -stdenv.mkDerivation { - name = "erlang-" + version; - - src = fetchurl { - url = "http://www.erlang.org/download/otp_src_R15B03-1.tar.gz"; - sha256 = "4bccac86dd76aec050252e44276a0283a0df9218e6470cf042a9b9f9dfc9476c"; - }; - - buildInputs = - [ perl gnum4 ncurses openssl - makeWrapper - ] ++ stdenv.lib.optional wxSupport [ mesa wxGTK xorg.libX11 ]; - - patchPhase = '' sed -i "s@/bin/rm@rm@" lib/odbc/configure erts/configure ''; - - preConfigure = '' - export HOME=$PWD/../ - sed -e s@/bin/pwd@pwd@g -i otp_build - ''; - - configureFlags = "--with-ssl=${openssl}"; - - postInstall = let - manpages = fetchurl { - url = "http://www.erlang.org/download/otp_doc_man_R${version}.tar.gz"; - sha256 = "0sqamzbd7qyz3klgl9vm1qvl0rhsfd1dx485pb0m2185qvw02nha"; - }; - in '' - tar xf "${manpages}" -C "$out/lib/erlang" - for i in "$out"/lib/erlang/man/man[0-9]/*.[0-9]; do - prefix="''${i%/*}" - ensureDir "$out/share/man/''${prefix##*/}" - ln -s "$i" "$out/share/man/''${prefix##*/}/''${i##*/}erl" - done - ''; - - # Some erlang bin/ scripts run sed and awk - postFixup = '' - wrapProgram $out/lib/erlang/bin/erl --prefix PATH ":" "${gnused}/bin/" - wrapProgram $out/lib/erlang/bin/start_erl --prefix PATH ":" "${gnused}/bin/:${gawk}/bin" - ''; - - setupHook = ./setup-hook.sh; - - meta = { - homepage = "http://www.erlang.org/"; - description = "Programming language used for massively scalable soft real-time systems"; - - longDescription = '' - Erlang is a programming language used to build massively scalable - soft real-time systems with requirements on high availability. - Some of its uses are in telecoms, banking, e-commerce, computer - telephony and instant messaging. Erlang's runtime system has - built-in support for concurrency, distribution and fault - tolerance. - ''; - - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; - }; -} diff --git a/pkgs/development/interpreters/guile/default.nix b/pkgs/development/interpreters/guile/default.nix index c4634de5d3f..5e2883f9fb3 100644 --- a/pkgs/development/interpreters/guile/default.nix +++ b/pkgs/development/interpreters/guile/default.nix @@ -40,6 +40,8 @@ # don't have "libgcc_s.so.1" on darwin LDFLAGS = stdenv.lib.optionalString (!stdenv.isDarwin) "-lgcc_s"; + configureFlags = [ "--with-libreadline-prefix" ]; + postInstall = '' wrapProgram $out/bin/guile-snarf --prefix PATH : "${gawk}/bin" diff --git a/pkgs/development/interpreters/nix-exec/default.nix b/pkgs/development/interpreters/nix-exec/default.nix index 44c2a56d4fc..ad585f085db 100644 --- a/pkgs/development/interpreters/nix-exec/default.nix +++ b/pkgs/development/interpreters/nix-exec/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, pkgconfig, nix, git }: let - version = "4.1.3"; + version = "4.1.5"; in stdenv.mkDerivation { name = "nix-exec-${version}"; src = fetchurl { url = "https://github.com/shlevy/nix-exec/releases/download/v${version}/nix-exec-${version}.tar.xz"; - sha256 = "0zhydidxj7dvgvszrlzwb0wj4s7xb42kdmn0fv5c7jz3nvnhdykp"; + sha256 = "1npy1did5ysacshclpfxihgh5bc0i9jqmvgxi1fp8prhcdhall9m"; }; buildInputs = [ pkgconfig nix git ]; diff --git a/pkgs/development/interpreters/octave/default.nix b/pkgs/development/interpreters/octave/default.nix index bdf6f775277..e0dd5a65644 100644 --- a/pkgs/development/interpreters/octave/default.nix +++ b/pkgs/development/interpreters/octave/default.nix @@ -18,11 +18,11 @@ let in stdenv.mkDerivation rec { - version = "4.0.0"; + version = "4.0.1"; name = "octave-${version}"; src = fetchurl { url = "mirror://gnu/octave/${name}.tar.xz"; - sha256 = "0x64b2lna4vrlm4wwx6h1qdlmki6s2b9q90yjxldlvvrqvxf4syg"; + sha256 = "11y2w6jgngj4rxiy136mkcs02l52rxk60kapyfc4rgrxz5hli3ym"; }; buildInputs = [ gfortran readline ncurses perl flex texinfo qhull libX11 @@ -40,11 +40,9 @@ stdenv.mkDerivation rec { ++ (stdenv.lib.optional (python != null) python) ; - # there is a mysterious sh: command not found - doCheck = false; + doCheck = true; - # problems on Hydra - enableParallelBuilding = false; + enableParallelBuilding = true; configureFlags = [ "--enable-readline" diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix index 5503ee9c887..f15aed48451 100644 --- a/pkgs/development/interpreters/php/default.nix +++ b/pkgs/development/interpreters/php/default.nix @@ -288,13 +288,13 @@ let in { php55 = generic { - version = "5.5.32"; - sha256 = "1vljdvyqsq0vas4yhvpqycqyxl2gfndbmak6cfgxn1cfvc4c3wmh"; + version = "5.5.33"; + sha256 = "1a8ac1zcq68irvdffh08cpi4aaaira4hsqwgns7b95pm9pnv3464"; }; php56 = generic { - version = "5.6.18"; - sha256 = "1vgl2zjq6ws5cjjb3llhwpfwg9gasq3q84ibdv9hj8snm4llmkf3"; + version = "5.6.19"; + sha256 = "0s61fncsdgr1mqgh8jma6pi6xxz4gl350467lk00ls3i97wa691a"; }; php70 = generic { diff --git a/pkgs/development/interpreters/pixie/default.nix b/pkgs/development/interpreters/pixie/default.nix index 85af751809c..c4086078d7d 100644 --- a/pkgs/development/interpreters/pixie/default.nix +++ b/pkgs/development/interpreters/pixie/default.nix @@ -70,7 +70,7 @@ let --prefix PATH : ${bin-path} ''; meta = { - description = "Pixie is a clojure-like lisp, built with the pypy vm toolkit."; + description = "A clojure-like lisp, built with the pypy vm toolkit"; homepage = "https://github.com/pixie-lang/pixie"; license = stdenv.lib.licenses.lgpl3; platforms = stdenv.lib.platforms.linux; diff --git a/pkgs/development/interpreters/racket/default.nix b/pkgs/development/interpreters/racket/default.nix index d22d3849b1b..748482b1bf0 100644 --- a/pkgs/development/interpreters/racket/default.nix +++ b/pkgs/development/interpreters/racket/default.nix @@ -28,6 +28,11 @@ let sqlite ]; + boolPatch = fetchurl { + url = "http://copr-dist-git.fedorainfracloud.org/cgit/bthomas/racket/racket.git/plain/xform-errors-converting-fix.patch"; + sha256 = "0h5g7a7w8wwj43jb8q69xldgbyxkn0y0i1na6r9fk17dd56nsm68"; + }; + in stdenv.mkDerivation rec { @@ -51,6 +56,10 @@ stdenv.mkDerivation rec { cd src/build ''; + # https://github.com/racket/racket/issues/1222 + # Fixed upstream after the release of 6.4 + patches = [ boolPatch ]; + shared = if stdenv.isDarwin then "dylib" else "shared"; configureFlags = [ "--enable-${shared}" "--enable-lt=${libtool}/bin/libtool" ] ++ stdenv.lib.optional disableDocs [ "--disable-docs" ] diff --git a/pkgs/development/interpreters/renpy/default.nix b/pkgs/development/interpreters/renpy/default.nix index 4b5f3bd8b3b..355723ba337 100644 --- a/pkgs/development/interpreters/renpy/default.nix +++ b/pkgs/development/interpreters/renpy/default.nix @@ -10,7 +10,6 @@ stdenv.mkDerivation { homepage = "http://renpy.org/"; license = stdenv.lib.licenses.mit; platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/interpreters/ruby/default.nix b/pkgs/development/interpreters/ruby/default.nix index 2a22cc74e75..2ff960f6fcc 100644 --- a/pkgs/development/interpreters/ruby/default.nix +++ b/pkgs/development/interpreters/ruby/default.nix @@ -1,6 +1,7 @@ { stdenv, lib, fetchurl, fetchFromSavannah, fetchFromGitHub , zlib, openssl, gdbm, ncurses, readline, groff, libyaml, libffi, autoreconfHook, bison , autoconf, darwin ? null +, buildEnv, bundler, bundix } @ args: let @@ -9,6 +10,10 @@ let opString = stdenv.lib.optionalString; patchSet = import ./rvm-patchsets.nix { inherit fetchFromGitHub; }; config = import ./config.nix { inherit fetchFromSavannah; }; + rubygemsSrc = import ./rubygems-src.nix { inherit fetchurl; }; + unpackdir = obj: + lib.removeSuffix ".tgz" + (lib.removeSuffix ".tar.gz" obj.name); generic = { majorVersion, minorVersion, teenyVersion, patchLevel, sha256 }: let versionNoPatch = "${majorVersion}.${minorVersion}.${teenyVersion}"; @@ -31,13 +36,10 @@ let , libffi, fiddleSupport ? true , autoreconfHook, bison, autoconf , darwin ? null + , buildEnv, bundler, bundix }: - stdenv.mkDerivation rec { - inherit version; - - name = "ruby-${version}"; - - src = if useRailsExpress then fetchFromGitHub { + let rubySrc = + if useRailsExpress then fetchFromGitHub { owner = "ruby"; repo = "ruby"; rev = tag; @@ -46,6 +48,18 @@ let url = "http://cache.ruby-lang.org/pub/ruby/${majorVersion}.${minorVersion}/ruby-${fullVersionName}.tar.gz"; sha256 = sha256.src; }; + in + stdenv.mkDerivation rec { + inherit version; + + name = "ruby-${version}"; + + srcs = [ rubySrc rubygemsSrc ]; + sourceRoot = + if useRailsExpress then + "ruby-${tag}-src" + else + unpackdir rubySrc; # Have `configure' avoid `/usr/bin/nroff' in non-chroot builds. NROFF = "${groff}/bin/nroff"; @@ -67,11 +81,15 @@ let enableParallelBuilding = true; - patches = (import ./patchsets.nix { - inherit patchSet useRailsExpress ops patchLevel; - })."${versionNoPatch}"; + patches = + [ ./gem_hook.patch ] ++ + (import ./patchsets.nix { + inherit patchSet useRailsExpress ops patchLevel; + })."${versionNoPatch}"; - postUnpack = opString isRuby21 '' + postUnpack = '' + cp -r ${unpackdir rubygemsSrc} ${sourceRoot}/rubygems + '' + opString isRuby21 '' rm "$sourceRoot/enc/unicode/name2ctype.h" ''; @@ -99,6 +117,11 @@ let installFlags = stdenv.lib.optionalString docSupport "install-doc"; # Bundler tries to create this directory postInstall = '' + # Update rubygems + pushd rubygems + $out/bin/ruby setup.rb + popd + # Bundler tries to create this directory mkdir -pv $out/${passthru.gemPath} mkdir -p $out/nix-support @@ -119,17 +142,21 @@ let meta = { license = stdenv.lib.licenses.ruby; - homepage = "http://www.ruby-lang.org/en/"; + homepage = http://www.ruby-lang.org/en/; description = "The Ruby language"; platforms = stdenv.lib.platforms.all; }; passthru = rec { - inherit majorVersion minorVersion teenyVersion patchLevel; + inherit majorVersion minorVersion teenyVersion patchLevel version; rubyEngine = "ruby"; baseRuby = baseruby; libPath = "lib/${rubyEngine}/${versionNoPatch}"; gemPath = "lib/${rubyEngine}/gems/${versionNoPatch}"; + dev = import ./dev.nix { + inherit buildEnv bundler bundix; + ruby = self; + }; }; } ) args; in self; diff --git a/pkgs/development/interpreters/ruby/dev.nix b/pkgs/development/interpreters/ruby/dev.nix new file mode 100644 index 00000000000..7787306eb32 --- /dev/null +++ b/pkgs/development/interpreters/ruby/dev.nix @@ -0,0 +1,24 @@ +/* An environment for development that bundles ruby, bundler and bundix + together. This avoids version conflicts where each is using a diferent + version of each-other. +*/ +{ buildEnv, ruby, bundler, bundix }: +let + bundler_ = bundler.override { + ruby = ruby; + }; + bundix_ = bundix.override { + ruby = ruby; + bundler = bundler_; + }; +in +buildEnv { + name = "${ruby.rubyEngine}-dev-${ruby.version}"; + paths = [ + bundix_ + bundler_ + ruby + ]; + pathsToLink = [ "/bin" ]; + ignoreCollisions = true; +} diff --git a/pkgs/development/interpreters/ruby/gem_hook.patch b/pkgs/development/interpreters/ruby/gem_hook.patch index 07f942f505e..78ff9ddbb1a 100644 --- a/pkgs/development/interpreters/ruby/gem_hook.patch +++ b/pkgs/development/interpreters/ruby/gem_hook.patch @@ -1,18 +1,21 @@ -diff --git a/lib/rubygems/installer.rb b/lib/rubygems/installer.rb -index d1ef3cb..bf15652 100755 ---- a/lib/rubygems/installer.rb -+++ b/lib/rubygems/installer.rb -@@ -545,6 +545,13 @@ Results logged to #{File.join(Dir.pwd, 'gem_make.out')} +diff --git a/rubygems/lib/rubygems/installer.rb b/rubygems/lib/rubygems/installer.rb +index a88d393..8612901 100644 +--- a/rubygems/lib/rubygems/installer.rb ++++ b/rubygems/lib/rubygems/installer.rb +@@ -766,7 +766,15 @@ TEXT + # Ensures that files can't be installed outside the gem directory. - say path if Gem.configuration.really_verbose - end -+ -+ if !ENV['NIX_POST_EXTRACT_FILES_HOOK'].nil? -+ print "\nrunning NIX_POST_EXTRACT_FILES_HOOK #{ENV['NIX_POST_EXTRACT_FILES_HOOK']} #{@gem_dir}\n" -+ print `#{ENV['NIX_POST_EXTRACT_FILES_HOOK']} #{@gem_dir}` -+ print "\nrunning NIX_POST_EXTRACT_FILES_HOOK done\n" + def extract_files +- @package.extract_files gem_dir ++ ret = @package.extract_files gem_dir ++ if ENV['NIX_POST_EXTRACT_FILES_HOOK'] ++ puts ++ puts "running NIX_POST_EXTRACT_FILES_HOOK #{ENV['NIX_POST_EXTRACT_FILES_HOOK']} #{gem_dir}" ++ system("#{ENV['NIX_POST_EXTRACT_FILES_HOOK']} #{gem_dir}") ++ puts "running NIX_POST_EXTRACT_FILES_HOOK done" ++ puts + end -+ ++ ret end ## diff --git a/pkgs/development/interpreters/ruby/patches.nix b/pkgs/development/interpreters/ruby/patches.nix deleted file mode 100644 index 0cc477c991e..00000000000 --- a/pkgs/development/interpreters/ruby/patches.nix +++ /dev/null @@ -1,138 +0,0 @@ -{ fetchurl, writeScript, ruby, ncurses, sqlite, libxml2, libxslt, libffi -, zlib, libuuid, gems, jdk, python, stdenv, libiconv, imagemagick -, pkgconfig }: - -let - - patchUsrBinEnv = writeScript "path-usr-bin-env" '' - #!/bin/sh - echo "===================" - find "$1" -type f -name "*.rb" | xargs sed -i "s@/usr/bin/env@$(type -p env)@g" - find "$1" -type f -name "*.mk" | xargs sed -i "s@/usr/bin/env@$(type -p env)@g" - ''; - -in - -{ - buildr = { - # Many Buildfiles rely on RUBYLIB containing the current directory - # (as was the default in Ruby < 1.9.2). - extraWrapperFlags = "--prefix RUBYLIB : ."; - }; - - fakes3 = { - postInstall = '' - cd $out/${ruby.gemPath}/gems/* - patch -Np1 -i ${../../ruby-modules/fake-s3-list-bucket.patch} - ''; - }; - - ffi = { - postUnpack = "onetuh"; - buildFlags = ["--with-ffi-dir=${libffi}"]; - NIX_POST_EXTRACT_FILES_HOOK = patchUsrBinEnv; - }; - - iconv = { buildInputs = [ libiconv ]; }; - - libv8 = { - # This fix is needed to fool scons, which clears the environment by default. - # It's ugly, but it works. - # - # We create a gcc wrapper wrapper, which reexposes the environment variables - # that scons hides. Furthermore, they treat warnings as errors causing the - # build to fail, due to an unused variable. - # - # Finally, we must set CC and AR explicitly to allow scons to find the - # compiler and archiver - - preBuild = '' - cat > $TMPDIR/g++ < $out/nix-support/setup-hook < libX11 != null && libXv != null; stdenv.mkDerivation rec { name = "ffmpeg-full-${version}"; - version = "2.8.5"; + version = "3.0"; src = fetchurl { url = "https://www.ffmpeg.org/releases/ffmpeg-${version}.tar.bz2"; - sha256 = "0nk1j3i7qc1k3dygpq74pxq382vqg9kaf2hxl9jfw8rkad8rjv9v"; + sha256 = "1h0k05cj6j0nd2i16z7hc5scpwsbg3sfx68lvm0nlwvz5xxgg7zi"; }; patchPhase = ''patchShebangs .''; @@ -449,7 +449,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "A complete, cross-platform solution to record, convert and stream audio and video"; - homepage = http://www.ffmpeg.org/; + homepage = https://www.ffmpeg.org/; longDescription = '' FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines diff --git a/pkgs/development/libraries/ffmpeg/generic.nix b/pkgs/development/libraries/ffmpeg/generic.nix index d8f785fb7e5..c62278729a7 100644 --- a/pkgs/development/libraries/ffmpeg/generic.nix +++ b/pkgs/development/libraries/ffmpeg/generic.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, pkgconfig, perl, texinfo, yasm , alsaLib, bzip2, fontconfig, freetype, gnutls, libiconv, lame, libass, libogg , libtheora, libva, libvorbis, libvpx, lzma, libpulseaudio, soxr -, x264, xvidcore, zlib +, x264, xvidcore, zlib, libopus , openglSupport ? false, mesa ? null # Build options , runtimeCpuDetectBuild ? true # Detect CPU capabilities at runtime @@ -128,6 +128,7 @@ stdenv.mkDerivation rec { "--enable-libx264" "--enable-libxvid" "--enable-zlib" + (ifMinVer "2.8" "--enable-libopus") # Developer flags (enableFeature debugDeveloper "debug") (enableFeature optimizationsDeveloper "optimizations") @@ -141,7 +142,7 @@ stdenv.mkDerivation rec { buildInputs = [ bzip2 fontconfig freetype gnutls libiconv lame libass libogg libtheora - libvdpau libvorbis lzma SDL soxr x264 xvidcore zlib + libvdpau libvorbis lzma SDL soxr x264 xvidcore zlib libopus ] ++ optional openglSupport mesa ++ optionals (!isDarwin && !isArm) [ libvpx libpulseaudio ] # Need to be fixed on Darwin and ARM ++ optional ((isLinux || isFreeBSD) && !isArm) libva diff --git a/pkgs/development/libraries/gdata-sharp/default.nix b/pkgs/development/libraries/gdata-sharp/default.nix new file mode 100644 index 00000000000..e9f5898e2ea --- /dev/null +++ b/pkgs/development/libraries/gdata-sharp/default.nix @@ -0,0 +1,38 @@ +{ stdenv, fetchsvn, pkgconfig, mono, dotnetPackages }: + +let + newtonsoft-json = dotnetPackages.NewtonsoftJson; +in stdenv.mkDerivation rec { + name = "gdata-sharp-${version}"; + version = "2.2.0.0"; + + src = fetchsvn { + url = "http://google-gdata.googlecode.com/svn/trunk/"; + rev = "1217"; + sha256 = "0b0rvgg3xsbbg2fdrpz0ywsy9rcahlyfskndaagd3yzm83gi6bhk"; + }; + + buildInputs = [ pkgconfig mono newtonsoft-json ]; + + sourceRoot = "svn-r1217/clients/cs"; + + dontStrip = true; + + postPatch = '' + sed -i -e 's#^\(DEFINES=.*\)\(.\)#\1 /r:third_party/Newtonsoft.Json.dll\2#' Makefile + # carriage return ^ + ''; + + makeFlags = [ "PREFIX=$(out)" ]; + + meta = with stdenv.lib; { + homepage = https://code.google.com/archive/p/google-gdata/; + + description = "The Google Data APIs"; + longDescription = '' + The Google Data APIs provide a simple protocol for reading and writing + data on the web. + ''; + platforms = platforms.linux; + }; +} diff --git a/pkgs/development/libraries/geoclue/2.0.nix b/pkgs/development/libraries/geoclue/2.0.nix index 73d3bb92e7e..83becae05a4 100644 --- a/pkgs/development/libraries/geoclue/2.0.nix +++ b/pkgs/development/libraries/geoclue/2.0.nix @@ -3,11 +3,11 @@ }: stdenv.mkDerivation rec { - name = "geoclue-2.4.1"; + name = "geoclue-2.4.2"; src = fetchurl { url = "http://www.freedesktop.org/software/geoclue/releases/2.4/${name}.tar.xz"; - sha256 = "1m1l1npdv804m98xhfpd1wl1whrrp2pjivliwwlnyk86yq0gs6cs"; + sha256 = "0g4krigdaf5ipkp4mi16rca62crr8pdk3wkhm0fxbcqnil75fyy4"; }; buildInputs = @@ -23,10 +23,10 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ dbus dbus_glib glib ]; - meta = { + meta = with stdenv.lib; { description = "Geolocation framework and some data providers"; - maintainers = with stdenv.lib.maintainers; [ raskin garbas ]; - platforms = stdenv.lib.platforms.linux; - license = stdenv.lib.licenses.lgpl2; + maintainers = with maintainers; [ raskin garbas ]; + platforms = platforms.linux; + license = licenses.lgpl2; }; } diff --git a/pkgs/development/libraries/giflib/libungif.nix b/pkgs/development/libraries/giflib/libungif.nix index f3302f8f333..ca2d0945722 100644 --- a/pkgs/development/libraries/giflib/libungif.nix +++ b/pkgs/development/libraries/giflib/libungif.nix @@ -4,7 +4,7 @@ stdenv.mkDerivation { name = "libungif-4.1.4"; src = fetchurl { url = mirror://sourceforge/giflib/libungif-4.1.4.tar.gz; - md5 = "efdfcf8e32e35740288a8c5625a70ccb"; + sha256 = "5e65e1e5deacd0cde489900dbf54c6c2ee2ebc818199e720dbad685d87abda3d"; }; } diff --git a/pkgs/development/libraries/gio-sharp/default.nix b/pkgs/development/libraries/gio-sharp/default.nix new file mode 100644 index 00000000000..ad5220cac4e --- /dev/null +++ b/pkgs/development/libraries/gio-sharp/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchFromGitHub, autoconf, automake, which, pkgconfig, mono, gtk-sharp }: + +stdenv.mkDerivation rec { + name = "gio-sharp-${version}"; + version = "0.3"; + + src = fetchFromGitHub { + owner = "mono"; + repo = "gio-sharp"; + + rev = "${version}"; + sha256 = "13pc529pjabj7lq23dbndc26ssmg5wkhc7lfvwapm87j711m0zig"; + }; + + nativeBuildInputs = [ pkgconfig autoconf automake which ]; + buildInputs = [ mono gtk-sharp ]; + + dontStrip = true; + + prePatch = '' + ./autogen-2.22.sh + ''; + + meta = with stdenv.lib; { + description = "GIO API bindings"; + platforms = platforms.linux; + }; +} diff --git a/pkgs/development/libraries/git2/default.nix b/pkgs/development/libraries/git2/default.nix index 3c433511fc1..fb380d60cf9 100644 --- a/pkgs/development/libraries/git2/default.nix +++ b/pkgs/development/libraries/git2/default.nix @@ -1,6 +1,6 @@ -{stdenv, fetchurl, pkgconfig, cmake, zlib, python, libssh2, openssl, http-parser}: +{stdenv, fetchurl, pkgconfig, cmake, zlib, python, libssh2, openssl, http-parser, libiconv}: -stdenv.mkDerivation rec { +stdenv.mkDerivation (rec { version = "0.23.2"; name = "libgit2-${version}"; @@ -21,4 +21,7 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl2; platforms = with stdenv.lib.platforms; all; }; -} +} // stdenv.lib.optionalAttrs (!stdenv.isLinux) { + NIX_LDFLAGS = "-liconv"; + propagatedBuildInputs = [ libiconv ]; +}) diff --git a/pkgs/development/libraries/glibmm/default.nix b/pkgs/development/libraries/glibmm/default.nix index 25666066601..8417179dde1 100644 --- a/pkgs/development/libraries/glibmm/default.nix +++ b/pkgs/development/libraries/glibmm/default.nix @@ -1,30 +1,31 @@ -{ stdenv, fetchurl, pkgconfig, glib, libsigcxx }: +{ stdenv, fetchurl, pkgconfig, gnum4, glib, libsigcxx }: let - ver_maj = "2.44"; - ver_min = "0"; + ver_maj = "2.46"; + ver_min = "3"; in stdenv.mkDerivation rec { name = "glibmm-${ver_maj}.${ver_min}"; src = fetchurl { url = "mirror://gnome/sources/glibmm/${ver_maj}/${name}.tar.xz"; - sha256 = "1a1fczy7hcpn24fglyn4i79f4yjc8s50is70q03mb294bm1c02hv"; + sha256 = "c78654addeb27a1213bedd7cd21904a45bbb98a5ba2f2f0de2b2f1a5682d86cf"; }; - nativeBuildInputs = [ pkgconfig ]; + nativeBuildInputs = [ pkgconfig gnum4 ]; propagatedBuildInputs = [ glib libsigcxx ]; + enableParallelBuilding = true; #doCheck = true; # some tests need network - meta = { + meta = with stdenv.lib; { description = "C++ interface to the GLib library"; homepage = http://gtkmm.org/; - license = stdenv.lib.licenses.lgpl2Plus; + license = licenses.lgpl2Plus; - maintainers = with stdenv.lib.maintainers; [urkud raskin]; - platforms = stdenv.lib.platforms.unix; + maintainers = with maintainers; [raskin]; + platforms = platforms.unix; }; } diff --git a/pkgs/development/libraries/gobject-introspection/default.nix b/pkgs/development/libraries/gobject-introspection/default.nix index 2567975aa66..959abc44d24 100644 --- a/pkgs/development/libraries/gobject-introspection/default.nix +++ b/pkgs/development/libraries/gobject-introspection/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, glib, flex, bison, pkgconfig, libffi, python -, libintlOrEmpty, autoconf, automake, otool +, libintlOrEmpty, cctools , substituteAll, nixStoreDir ? builtins.storeDir }: # now that gobjectIntrospection creates large .gir files (eg gtk3 case) @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { buildInputs = [ flex bison pkgconfig python ] ++ libintlOrEmpty - ++ stdenv.lib.optional stdenv.isDarwin otool; + ++ stdenv.lib.optional stdenv.isDarwin cctools; propagatedBuildInputs = [ libffi glib ]; - # Tests depend on cairo, which is undesirable (it pulls in lots of - # other dependencies). + # The '--disable-tests' flag is no longer recognized, so can be safely removed + # next time this package changes. configureFlags = [ "--disable-tests" ]; preConfigure = '' diff --git a/pkgs/development/libraries/gstreamer/bad/default.nix b/pkgs/development/libraries/gstreamer/bad/default.nix index dd9ddc7ec9b..4603b3e29db 100644 --- a/pkgs/development/libraries/gstreamer/bad/default.nix +++ b/pkgs/development/libraries/gstreamer/bad/default.nix @@ -27,7 +27,6 @@ stdenv.mkDerivation rec { ''; license = licenses.lgpl2Plus; platforms = platforms.unix; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/libraries/gstreamer/base/default.nix b/pkgs/development/libraries/gstreamer/base/default.nix index 9192feb1c0c..4f592dbe31e 100644 --- a/pkgs/development/libraries/gstreamer/base/default.nix +++ b/pkgs/development/libraries/gstreamer/base/default.nix @@ -11,7 +11,6 @@ stdenv.mkDerivation rec { homepage = "http://gstreamer.freedesktop.org"; license = stdenv.lib.licenses.lgpl2Plus; platforms = stdenv.lib.platforms.unix; - maintainers = with stdenv.lib.maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/libraries/gstreamer/core/default.nix b/pkgs/development/libraries/gstreamer/core/default.nix index 98cfa98bfe1..754b2bb64b8 100644 --- a/pkgs/development/libraries/gstreamer/core/default.nix +++ b/pkgs/development/libraries/gstreamer/core/default.nix @@ -10,7 +10,6 @@ stdenv.mkDerivation rec { homepage = "http://gstreamer.freedesktop.org"; license = stdenv.lib.licenses.lgpl2Plus; platforms = stdenv.lib.platforms.unix; - maintainers = with stdenv.lib.maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/libraries/gstreamer/default.nix b/pkgs/development/libraries/gstreamer/default.nix index efdaa37eba5..81e5726fa94 100644 --- a/pkgs/development/libraries/gstreamer/default.nix +++ b/pkgs/development/libraries/gstreamer/default.nix @@ -3,6 +3,8 @@ rec { gstreamer = callPackage ./core { }; + gstreamermm = callPackage ./gstreamermm { }; + gst-plugins-base = callPackage ./base { inherit gstreamer; }; gst-plugins-good = callPackage ./good { inherit gst-plugins-base; }; diff --git a/pkgs/development/libraries/gstreamer/ges/default.nix b/pkgs/development/libraries/gstreamer/ges/default.nix index 96dc42c3cb1..1e0ee39667e 100644 --- a/pkgs/development/libraries/gstreamer/ges/default.nix +++ b/pkgs/development/libraries/gstreamer/ges/default.nix @@ -10,7 +10,6 @@ stdenv.mkDerivation rec { homepage = "http://gstreamer.freedesktop.org"; license = licenses.lgpl2Plus; platforms = platforms.unix; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/libraries/gstreamer/gnonlin/default.nix b/pkgs/development/libraries/gstreamer/gnonlin/default.nix index 4b6e7957f5c..9d43f3ac23c 100644 --- a/pkgs/development/libraries/gstreamer/gnonlin/default.nix +++ b/pkgs/development/libraries/gstreamer/gnonlin/default.nix @@ -15,7 +15,6 @@ stdenv.mkDerivation rec { ''; license = licenses.lgpl2Plus; platforms = platforms.unix; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/libraries/gstreamer/good/default.nix b/pkgs/development/libraries/gstreamer/good/default.nix index 8afbfd4ff54..75f0760747b 100644 --- a/pkgs/development/libraries/gstreamer/good/default.nix +++ b/pkgs/development/libraries/gstreamer/good/default.nix @@ -22,7 +22,6 @@ stdenv.mkDerivation rec { ''; license = licenses.lgpl2Plus; platforms = platforms.unix; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/libraries/gstreamer/gstreamermm/default.nix b/pkgs/development/libraries/gstreamer/gstreamermm/default.nix new file mode 100644 index 00000000000..692310be0ba --- /dev/null +++ b/pkgs/development/libraries/gstreamer/gstreamermm/default.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchurl, pkgconfig, file, glibmm, gst_all_1 }: + +let + ver_maj = "1.4"; + ver_min = "3"; +in +stdenv.mkDerivation rec { + name = "gstreamermm-${ver_maj}.${ver_min}"; + + src = fetchurl { + url = "mirror://gnome/sources/gstreamermm/${ver_maj}/${name}.tar.xz"; + sha256 = "0bj6and9b26d32bq90l8nx5wqh2ikkh8dm7qwxyxfdvmrzhixhgi"; + }; + + nativeBuildInputs = [ pkgconfig file ]; + + propagatedBuildInputs = [ glibmm gst_all_1.gst-plugins-base ]; + + enableParallelBuilding = true; + + meta = with stdenv.lib; { + description = "C++ interface for GStreamer"; + homepage = http://gstreamer.freedesktop.org/bindings/cplusplus.html; + license = licenses.lgpl21Plus; + maintainers = with maintainers; [ romildo ]; + platforms = platforms.unix; + }; + +} diff --git a/pkgs/development/libraries/gstreamer/libav/default.nix b/pkgs/development/libraries/gstreamer/libav/default.nix index aeefd667b34..6d0c28d0e28 100644 --- a/pkgs/development/libraries/gstreamer/libav/default.nix +++ b/pkgs/development/libraries/gstreamer/libav/default.nix @@ -15,7 +15,6 @@ stdenv.mkDerivation rec { homepage = "http://gstreamer.freedesktop.org"; license = stdenv.lib.licenses.lgpl2Plus; platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/libraries/gstreamer/ugly/default.nix b/pkgs/development/libraries/gstreamer/ugly/default.nix index b014446c7c4..540b3ba0be8 100644 --- a/pkgs/development/libraries/gstreamer/ugly/default.nix +++ b/pkgs/development/libraries/gstreamer/ugly/default.nix @@ -18,7 +18,6 @@ stdenv.mkDerivation rec { ''; license = licenses.lgpl2Plus; platforms = platforms.unix; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/libraries/gstreamer/validate/default.nix b/pkgs/development/libraries/gstreamer/validate/default.nix index c88cf489732..0b0ba11a793 100644 --- a/pkgs/development/libraries/gstreamer/validate/default.nix +++ b/pkgs/development/libraries/gstreamer/validate/default.nix @@ -10,7 +10,6 @@ stdenv.mkDerivation rec { homepage = "http://gstreamer.freedesktop.org"; license = stdenv.lib.licenses.lgpl2Plus; platforms = stdenv.lib.platforms.unix; - maintainers = with stdenv.lib.maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/libraries/gtk-sharp-beans/default.nix b/pkgs/development/libraries/gtk-sharp-beans/default.nix new file mode 100644 index 00000000000..92578f42e34 --- /dev/null +++ b/pkgs/development/libraries/gtk-sharp-beans/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchFromGitHub, autoreconfHook, which, pkgconfig, mono, gtk-sharp, gio-sharp }: + +stdenv.mkDerivation rec { + name = "gtk-sharp-beans-${version}"; + version = "2.14.0"; + + src = fetchFromGitHub { + owner = "mono"; + repo = "gtk-sharp-beans"; + + rev = "${version}"; + sha256 = "04sylwdllb6gazzs2m4jjfn14mil9l3cny2q0xf0zkhczzih6ah1"; + }; + + nativeBuildInputs = [ pkgconfig autoreconfHook which ]; + buildInputs = [ mono gtk-sharp gio-sharp ]; + + dontStrip = true; + + meta = with stdenv.lib; { + description = "gtk-sharp-beans binds some API from Gtk+ that isn't in Gtk# 2.12.x"; + platforms = platforms.linux; + }; +} diff --git a/pkgs/development/libraries/gtk-sharp-2/default.nix b/pkgs/development/libraries/gtk-sharp/2.0.nix similarity index 100% rename from pkgs/development/libraries/gtk-sharp-2/default.nix rename to pkgs/development/libraries/gtk-sharp/2.0.nix diff --git a/pkgs/development/libraries/gtk-sharp/3.0.nix b/pkgs/development/libraries/gtk-sharp/3.0.nix new file mode 100644 index 00000000000..380c43108de --- /dev/null +++ b/pkgs/development/libraries/gtk-sharp/3.0.nix @@ -0,0 +1,48 @@ +{ stdenv, fetchurl, pkgconfig, mono +, glib +, pango +, gtk3 +, GConf ? null +, libglade ? null +, libgtkhtml ? null +, gtkhtml ? null +, libgnomecanvas ? null +, libgnomeui ? null +, libgnomeprint ? null +, libgnomeprintui ? null +, gnomepanel ? null +, libxml2 +, monoDLLFixer +}: + +stdenv.mkDerivation { + name = "gtk-sharp-2.99.3"; + + builder = ./builder.sh; + src = fetchurl { + #"mirror://gnome/sources/gtk-sharp/2.99/gtk-sharp-2.99.3.tar.xz"; + url = "http://ftp.gnome.org/pub/GNOME/sources/gtk-sharp/2.99/gtk-sharp-2.99.3.tar.xz"; + sha256 = "18n3l9zcldyvn4lwi8izd62307mkhz873039nl6awrv285qzah34"; + }; + + # patch bad usage of glib, which wasn't tolerated anymore + # prePatch = '' + # for f in glib/glue/{thread,list,slist}.c; do + # sed -i 's,#include ,#include ,g' "$f" + # done + # ''; + + buildInputs = [ + pkgconfig mono glib pango gtk3 GConf libglade libgnomecanvas + libgtkhtml libgnomeui libgnomeprint libgnomeprintui gtkhtml libxml2 + gnomepanel + ]; + + dontStrip = true; + + inherit monoDLLFixer; + + passthru = { + inherit gtk3; + }; +} diff --git a/pkgs/development/libraries/gtk-sharp-2/builder.sh b/pkgs/development/libraries/gtk-sharp/builder.sh similarity index 100% rename from pkgs/development/libraries/gtk-sharp-2/builder.sh rename to pkgs/development/libraries/gtk-sharp/builder.sh diff --git a/pkgs/development/libraries/gtkmm/3.x.nix b/pkgs/development/libraries/gtkmm/3.x.nix index bc327468855..1401f763c3d 100644 --- a/pkgs/development/libraries/gtkmm/3.x.nix +++ b/pkgs/development/libraries/gtkmm/3.x.nix @@ -1,7 +1,7 @@ -{ stdenv, fetchurl, pkgconfig, gtk3, glibmm, cairomm, pangomm, atkmm }: +{ stdenv, fetchurl, pkgconfig, gtk3, glibmm, cairomm, pangomm, atkmm, epoxy }: let - ver_maj = "3.16"; + ver_maj = "3.18"; ver_min = "0"; in stdenv.mkDerivation rec { @@ -9,17 +9,18 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://gnome/sources/gtkmm/${ver_maj}/${name}.tar.xz"; - sha256 = "036xn22jkaf3akpid7w23b8vkqa3xxqz93mwacmyar5vw7slm3cv"; + sha256 = "829fa113daed74398c49c3f2b7672807f58ba85d0fa463f5bc726e1b0138b86b"; }; nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ epoxy ]; propagatedBuildInputs = [ glibmm gtk3 atkmm cairomm pangomm ]; enableParallelBuilding = true; doCheck = true; - meta = { + meta = with stdenv.lib; { description = "C++ interface to the GTK+ graphical user interface library"; longDescription = '' @@ -34,9 +35,9 @@ stdenv.mkDerivation rec { homepage = http://gtkmm.org/; - license = stdenv.lib.licenses.lgpl2Plus; + license = licenses.lgpl2Plus; - maintainers = with stdenv.lib.maintainers; [ raskin urkud vcunat ]; - platforms = stdenv.lib.platforms.unix; + maintainers = with maintainers; [ raskin vcunat ]; + platforms = platforms.unix; }; } diff --git a/pkgs/development/libraries/icu/0001-Disable-LDFLAGSICUDT-for-Linux.patch b/pkgs/development/libraries/icu/0001-Disable-LDFLAGSICUDT-for-Linux.patch new file mode 100644 index 00000000000..2968d571bb3 --- /dev/null +++ b/pkgs/development/libraries/icu/0001-Disable-LDFLAGSICUDT-for-Linux.patch @@ -0,0 +1,28 @@ +From 0c82d6aa02c08e41b13c83b14782bd7024e25d59 Mon Sep 17 00:00:00 2001 +From: Khem Raj +Date: Sat, 15 Feb 2014 21:06:42 +0000 +Subject: [PATCH] Disable LDFLAGSICUDT for Linux + +Upstream-Status: Inappropriate [ OE Configuration ] + +Signed-off-by: Khem Raj +--- + source/config/mh-linux | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/config/mh-linux b/config/mh-linux +index 366f0cc..2689aab 100644 +--- a/config/mh-linux ++++ b/config/mh-linux +@@ -21,7 +21,7 @@ LD_RPATH= -Wl,-zorigin,-rpath,'$$'ORIGIN + LD_RPATH_PRE = -Wl,-rpath, + + ## These are the library specific LDFLAGS +-LDFLAGSICUDT=-nodefaultlibs -nostdlib ++# LDFLAGSICUDT=-nodefaultlibs -nostdlib + + ## Compiler switch to embed a library name + # The initial tab in the next line is to prevent icu-config from reading it. +-- +1.7.10.4 + diff --git a/pkgs/development/libraries/icu/default.nix b/pkgs/development/libraries/icu/default.nix index 148e4f02a94..224e9302baa 100644 --- a/pkgs/development/libraries/icu/default.nix +++ b/pkgs/development/libraries/icu/default.nix @@ -4,7 +4,7 @@ let pname = "icu4c"; version = "56.1"; in -stdenv.mkDerivation { +stdenv.mkDerivation ({ name = pname + "-" + version; src = fetchurl { @@ -45,4 +45,6 @@ stdenv.mkDerivation { maintainers = with maintainers; [ raskin urkud ]; platforms = platforms.all; }; -} +} // (if stdenv.isArm then { + patches = [ ./0001-Disable-LDFLAGSICUDT-for-Linux.patch ]; +} else {})) diff --git a/pkgs/development/libraries/ilbc/default.nix b/pkgs/development/libraries/ilbc/default.nix index d77b5d46a79..0ea2949659c 100644 --- a/pkgs/development/libraries/ilbc/default.nix +++ b/pkgs/development/libraries/ilbc/default.nix @@ -3,11 +3,7 @@ stdenv.mkDerivation rec { name = "ilbc-rfc3951"; - script = fetchurl { - url = http://ilbcfreeware.org/documentation/extract-cfile.txt; - name = "extract-cfile.awk"; - sha256 = "0md76qlszaras9grrxaq7xfxn1yikmz4qqgnjj6y50jg31yr5wyd"; - }; + script = ./extract-cfile.awk; rfc3951 = fetchurl { url = http://www.ietf.org/rfc/rfc3951.txt; diff --git a/pkgs/development/libraries/ilbc/extract-cfile.awk b/pkgs/development/libraries/ilbc/extract-cfile.awk new file mode 100644 index 00000000000..e4b07bc0896 --- /dev/null +++ b/pkgs/development/libraries/ilbc/extract-cfile.awk @@ -0,0 +1,24 @@ +BEGIN { srcname = "nothing"; } +{ if (/^A\.[0-9][0-9]*\.* *[a-zA-Z][a-zA-Z_0-9]*\.[ch]/) { + if (srcname != "nothing") + close(srcname); + srcname = $2; + printf("creating source file %s\n", srcname); + }else if (srcname != "nothing") { + if (/Andersen,* *et* *al\./) + printf("skipping %s\n", $0); + else if (/ /) + printf("skipping2 %s\n", $0); + else if (/Internet Low Bit Rate Codec *December 2004/) + printf("skipping3 %s\n", $0); + else if (/Authors' *Addresses/){ + close(srcname); + exit;} + else + print $0 >> srcname; + } +} +END { + printf("ending file %s\n", srcname); + close(srcname); +} diff --git a/pkgs/development/libraries/kdevplatform/default.nix b/pkgs/development/libraries/kdevplatform/default.nix index 8398f2d7db4..d2b9581462b 100644 --- a/pkgs/development/libraries/kdevplatform/default.nix +++ b/pkgs/development/libraries/kdevplatform/default.nix @@ -1,26 +1,22 @@ -{ stdenv, fetchurl, fetchpatch, cmake, kdelibs, subversion, qt4, automoc4, phonon, +{ stdenv, fetchurl, cmake, kdelibs, subversion, qt4, automoc4, phonon, gettext, pkgconfig, apr, aprutil, boost, qjson, grantlee }: stdenv.mkDerivation rec { - name = "kdevplatform-1.7.1"; + name = "kdevplatform-1.7.3"; src = fetchurl { - url = "mirror://kde/stable/kdevelop/4.7.1/src/${name}.tar.xz"; - sha256 = "dfd8953aec204f04bd949443781aa0f6d9d58c40f73027619a168bb4ffc4b1ac"; + url = "mirror://kde/stable/kdevelop/4.7.3/src/${name}.tar.bz2"; + sha256 = "195134bde11672de38838f4b341ed28c58042374ca12beedacca9d30e6ab4a2b"; }; - patches = [(fetchpatch { - name = "svn-1.9.patch"; - url = "https://git.reviewboard.kde.org/r/124783/diff/raw/"; - sha256 = "1ixll5pvynb3l4znc65d82a5bj2s3c7c7is585s2wdpfzjgl5ay0"; - })]; + patches = [ ./gettext.patch ]; propagatedBuildInputs = [ kdelibs qt4 phonon ]; buildInputs = [ apr aprutil subversion boost qjson grantlee ]; nativeBuildInputs = [ cmake automoc4 gettext pkgconfig ]; - enableParallelBuilding = true; + enableParallelBuilding = false; meta = with stdenv.lib; { maintainers = [ maintainers.ambrop72 ]; @@ -31,5 +27,6 @@ stdenv.mkDerivation rec { IDE-like programs. It is programing-language independent, and is planned to be used by programs like: KDevelop, Quanta, Kile, KTechLab ... etc." ''; + homepage = https://www.kdevelop.org; }; } diff --git a/pkgs/development/libraries/kdevplatform/gettext.patch b/pkgs/development/libraries/kdevplatform/gettext.patch new file mode 100644 index 00000000000..733a542e0c8 --- /dev/null +++ b/pkgs/development/libraries/kdevplatform/gettext.patch @@ -0,0 +1,8 @@ +diff -urN kdevplatform-1.7.3.orig/po/CMakeLists.txt kdevplatform-1.7.3/po/CMakeLists.txt +--- kdevplatform-1.7.3.orig/po/CMakeLists.txt 2016-03-04 23:25:30.102112596 +0100 ++++ kdevplatform-1.7.3/po/CMakeLists.txt 2016-03-04 23:26:06.242570024 +0100 +@@ -1,3 +1,4 @@ ++cmake_policy(SET CMP0002 OLD) + find_package(Gettext REQUIRED) + if (NOT GETTEXT_MSGMERGE_EXECUTABLE) + MESSAGE(FATAL_ERROR "Please install msgmerge binary") diff --git a/pkgs/development/libraries/ldb/default.nix b/pkgs/development/libraries/ldb/default.nix index a26d8094e39..d266a97535e 100644 --- a/pkgs/development/libraries/ldb/default.nix +++ b/pkgs/development/libraries/ldb/default.nix @@ -3,11 +3,11 @@ }: stdenv.mkDerivation rec { - name = "ldb-1.1.23"; + name = "ldb-1.1.26"; src = fetchurl { url = "mirror://samba/ldb/${name}.tar.gz"; - sha256 = "0ncmwgga6q9v7maiywgw21w6rb3149m1w2ca11yq8k5j0izjz2wg"; + sha256 = "1rmjv12pf57vga8s5z9p9d90rlfckc1lqjbcp89r83cq5fkwfhw8"; }; buildInputs = [ diff --git a/pkgs/development/libraries/libav/default.nix b/pkgs/development/libraries/libav/default.nix index 23b1402e3e7..4d5563adab0 100644 --- a/pkgs/development/libraries/libav/default.nix +++ b/pkgs/development/libraries/libav/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, yasm, bzip2, zlib +{ stdenv, fetchurl, pkgconfig, yasm, bzip2, zlib, perl , mp3Support ? true, lame ? null , speexSupport ? true, speex ? null , theoraSupport ? true, libtheora ? null @@ -27,8 +27,7 @@ with { inherit (stdenv.lib) optional optionals; }; let result = { libav_0_8 = libavFun "0.8.17" "31ace2daeb8c105deed9cd3476df47318d417714"; - libav_9 = libavFun "9.18" "e10cde4587c4d4d3bb11d30c7b47e953664cd714"; - libav_11 = libavFun "11.4" "c2ab12102de187f2675a56b828b4a5e9136ab747"; + libav_11 = libavFun "11.6" "2296cbd7afe98591eb164cebe436dcb5582efc9d"; }; libavFun = version : sha1 : stdenv.mkDerivation rec { @@ -38,6 +37,9 @@ let url = "${meta.homepage}/releases/${name}.tar.xz"; inherit sha1; # upstream directly provides sha1 of releases over https }; + + preConfigure = "patchShebangs doc/texi2pod.pl"; + configureFlags = assert stdenv.lib.all (x: x!=null) buildInputs; [ @@ -46,6 +48,7 @@ let "--enable-avplay" "--enable-shared" "--enable-runtime-cpudetect" + "--cc=cc" ] ++ optionals enableGPL [ "--enable-gpl" "--enable-swscale" ] ++ optional mp3Support "--enable-libmp3lame" @@ -62,6 +65,7 @@ let ; buildInputs = [ pkgconfig lame yasm zlib bzip2 SDL ] + ++ [ perl ] # for install-man target ++ optional mp3Support lame ++ optional speexSupport speex ++ optional theoraSupport libtheora @@ -79,10 +83,19 @@ let outputs = [ "out" "tools" ]; - # move avplay to get rid of the SDL dependency in the main output + # alltools to build smaller tools, incl. aviocat, ismindex, qt-faststart, etc. + buildFlags = "all alltools install-man"; + postInstall = '' + # move avplay to get rid of the SDL dependency in the main output mkdir -p "$tools/bin" mv "$out/bin/avplay" "$tools/bin" + + # alltools target compiles an executable in tools/ for every C + # source file in tools/, so move those to $out + for tool in $(find tools -type f -executable); do + mv "$tool" "$out/bin/" + done ''; doInstallCheck = false; # fails randomly @@ -105,10 +118,9 @@ let description = "A complete, cross-platform solution to record, convert and stream audio and video (fork of ffmpeg)"; license = with licenses; if enableUnfree then unfree #ToDo: redistributable or not? else if enableGPL then gpl2Plus else lgpl21Plus; - platforms = platforms.linux; + platforms = with platforms; linux ++ darwin; maintainers = [ maintainers.vcunat ]; }; }; # libavFun in result - diff --git a/pkgs/development/libraries/libbrotli/default.nix b/pkgs/development/libraries/libbrotli/default.nix new file mode 100644 index 00000000000..1e28b57dadf --- /dev/null +++ b/pkgs/development/libraries/libbrotli/default.nix @@ -0,0 +1,36 @@ +{stdenv, fetchFromGitHub, autoconf, automake, libtool, brotliUnstable}: + +stdenv.mkDerivation rec { + name = "libbrotli-20160120"; + version = "53d53e8"; + + src = fetchFromGitHub { + owner = "bagder"; + repo = "libbrotli"; + rev = "53d53e8d9c0d37398d37bac2e7a7aa20b0025e9e"; + sha256 = "10r4nx6n1r54f5cjck5mmmsj7bkasnmmz7m84imhil45q73kzd4m"; + }; + + buildInputs = [autoconf automake libtool]; + preConfigure = '' + cp -r ${brotliUnstable.src}/* brotli/ + chmod -R +700 brotli + mkdir m4 + autoreconf --install --force --symlink + ''; + + meta = with stdenv.lib; { + description = "Meta project to build libraries from the brotli source code"; + longDescription = '' + Wrapper scripts and code around the brotli code base. + Builds libraries out of the brotli decode and encode sources. Uses autotools. + 'brotlidec' is the library for decoding, decompression + 'brotlienc' is the library for encoding, compression + ''; + + homepage = https://github.com/bagder/libbrotli; + license = licenses.mit; + platforms = platforms.all; + maintainers = []; + }; +} diff --git a/pkgs/development/libraries/libclc/default.nix b/pkgs/development/libraries/libclc/default.nix index 16d9d8c75a4..de3f51752b9 100644 --- a/pkgs/development/libraries/libclc/default.nix +++ b/pkgs/development/libraries/libclc/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchFromGitHub, python, llvm, clang }: stdenv.mkDerivation { - name = "libclc-2015-03-27"; + name = "libclc-2015-08-07"; src = fetchFromGitHub { owner = "llvm-mirror"; repo = "libclc"; - rev = "0a2d1619921545b52303be5608b64dc46f381e97"; - sha256 = "0hgm013c0vlfqfbbf4cdajl01hhk1mhsfk4h4bfza1san97l0vcc"; + rev = "f97d9db40718f2e68b3f0b44200760d8e0d50532"; + sha256 = "10n9qk1dild9yjkjjkzpmp9zid3ysdgvqrad554azcf755frch7g"; }; buildInputs = [ python llvm clang ]; diff --git a/pkgs/development/libraries/libcmis/default.nix b/pkgs/development/libraries/libcmis/default.nix index 5535623298a..6e0007111bc 100644 --- a/pkgs/development/libraries/libcmis/default.nix +++ b/pkgs/development/libraries/libcmis/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, boost, libxml2, pkgconfig, curl }: +{ stdenv, fetchurl, boost, libxml2, pkgconfig, curl, autoreconfHook }: stdenv.mkDerivation rec { name = "libcmis-${version}"; @@ -9,7 +9,9 @@ stdenv.mkDerivation rec { sha256 = "1dprvk4fibylv24l7gr49gfqbkfgmxynvgssvdcycgpf7n8h4zm8"; }; - buildInputs = [ boost libxml2 pkgconfig curl ]; + patches = [ ./gcc5.patch ]; + + buildInputs = [ boost libxml2 pkgconfig curl autoreconfHook ]; configureFlags = "--without-man --with-boost=${boost.dev} --disable-werror --disable-tests"; # Cppcheck cannot find all the include files (use --check-config for details) diff --git a/pkgs/development/libraries/libcmis/gcc5.patch b/pkgs/development/libraries/libcmis/gcc5.patch new file mode 100644 index 00000000000..952f8e1abd7 --- /dev/null +++ b/pkgs/development/libraries/libcmis/gcc5.patch @@ -0,0 +1,39 @@ +diff -urN libcmis-0.5.0.org/m4/boost.m4 libcmis-0.5.0/m4/boost.m4 +--- libcmis-0.5.0.org/m4/boost.m4 2014-03-28 15:19:57.000000000 +0100 ++++ libcmis-0.5.0/m4/boost.m4 2015-09-21 14:42:25.149565264 +0200 +@@ -68,7 +68,9 @@ + dnl everything else. + dnl Cannot use 'dnl' after [$4] because a trailing dnl may break AC_CACHE_CHECK + (eval "$ac_cpp conftest.$ac_ext") 2>&AS_MESSAGE_LOG_FD | ++ grep -v '#' | + tr -d '\r' | ++ tr -s '\n' ' ' | + $SED -n -e "$1" >conftest.i 2>&1], + [$3], + [$4]) +@@ -201,7 +203,7 @@ + AC_CACHE_CHECK([for Boost's header version], + [boost_cv_lib_version], + [m4_pattern_allow([^BOOST_LIB_VERSION$])dnl +- _BOOST_SED_CPP([/^boost-lib-version = /{s///;s/\"//g;p;g;}], ++ _BOOST_SED_CPP([[/^boost-lib-version = /{s///;s/[\" ]//g;p;q;}]], + [#include + boost-lib-version = BOOST_LIB_VERSION], + [boost_cv_lib_version=`cat conftest.i`])]) +@@ -209,7 +211,7 @@ + boost_major_version=`echo "$boost_cv_lib_version" | sed 's/_//;s/_.*//'` + case $boost_major_version in #( + '' | *[[!0-9]]*) +- AC_MSG_ERROR([invalid value: boost_major_version=$boost_major_version]) ++ AC_MSG_ERROR([invalid value: boost_major_version='$boost_major_version']) + ;; + esac + fi +@@ -930,6 +932,7 @@ + # the same defines as GCC's). + # TODO: Move the test on GCC 4.4 up once it's released. + for i in \ ++ _BOOST_gcc_test(5, 2) \ + _BOOST_gcc_test(4, 3) \ + _BOOST_gcc_test(4, 2) \ + _BOOST_gcc_test(4, 1) \ diff --git a/pkgs/development/libraries/libcollectdclient/default.nix b/pkgs/development/libraries/libcollectdclient/default.nix new file mode 100644 index 00000000000..f6d9d7ca69b --- /dev/null +++ b/pkgs/development/libraries/libcollectdclient/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl, collectd }: +with stdenv.lib; + +overrideDerivation collectd (oldAttrs: { + name = "libcollectdclient-${collectd.version}"; + buildInputs = [ ]; + + configureFlags = [ + "--without-daemon" + ]; + + makeFlags = [ + "-C src/libcollectdclient/" + ]; + +}) // { + meta = with stdenv.lib; { + description = "C Library for collectd, a daemon which collects system performance statistics periodically"; + homepage = http://collectd.org; + license = licenses.gpl2; + platforms = platforms.linux; # TODO: collectd may be linux but the C client may be more portable? + maintainers = [ maintainers.sheenobu maintainers.bjornfor ]; + }; +} diff --git a/pkgs/development/libraries/libebml/default.nix b/pkgs/development/libraries/libebml/default.nix index 818177ff49d..3bdcfeda6a5 100644 --- a/pkgs/development/libraries/libebml/default.nix +++ b/pkgs/development/libraries/libebml/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "libebml-1.3.1"; + name = "libebml-1.3.3"; src = fetchurl { url = "http://dl.matroska.org/downloads/libebml/${name}.tar.bz2"; - sha256 = "15a2d15rq0x9lp7rfsv0jxaw5c139xs7s5dwr5bmd9dc3arr8n0r"; + sha256 = "16alhwd1yz5bv3765xfn5azwk37805lg1f61195gjq8rlkd49yrm"; }; meta = with stdenv.lib; { diff --git a/pkgs/development/libraries/libgpod/default.nix b/pkgs/development/libraries/libgpod/default.nix index 6a1f28c96ff..b4b951325a4 100644 --- a/pkgs/development/libraries/libgpod/default.nix +++ b/pkgs/development/libraries/libgpod/default.nix @@ -1,6 +1,8 @@ -{stdenv, fetchurl, gettext, perl, perlXMLParser, intltool, pkgconfig, glib, +{stdenv, lib, fetchurl, gettext, perl, perlXMLParser, intltool, pkgconfig, glib, libxml2, sqlite, libusb1, zlib, sg3_utils, gdk_pixbuf, taglib, - libimobiledevice, python, pygobject, mutagen }: + libimobiledevice, python, pygobject, mutagen, + monoSupport ? true, mono, gtk-sharp +}: stdenv.mkDerivation rec { name = "libgpod-0.8.3"; @@ -10,13 +12,19 @@ stdenv.mkDerivation rec { }; preConfigure = "configureFlagsArray=( --with-udev-dir=$out/lib/udev )"; - configureFlags = "--without-hal --enable-udev"; + + configureFlags = [ + "--without-hal" + "--enable-udev" + ] ++ lib.optionals monoSupport [ "--with-mono" ]; + + dontStrip = true; propagatedBuildInputs = [ glib libxml2 sqlite zlib sg3_utils gdk_pixbuf taglib libimobiledevice python pygobject mutagen ]; nativeBuildInputs = [ gettext perlXMLParser intltool pkgconfig perl - libimobiledevice.swig ]; + libimobiledevice.swig ] ++ lib.optionals monoSupport [ mono gtk-sharp ]; meta = { homepage = http://gtkpod.sourceforge.net/; diff --git a/pkgs/development/libraries/libgsystem/default.nix b/pkgs/development/libraries/libgsystem/default.nix index b37503df5d9..eaf2eb17095 100644 --- a/pkgs/development/libraries/libgsystem/default.nix +++ b/pkgs/development/libraries/libgsystem/default.nix @@ -10,7 +10,6 @@ stdenv.mkDerivation { homepage = "https://wiki.gnome.org/Projects/LibGSystem"; license = licenses.lgpl2Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchFromGitHub { diff --git a/pkgs/development/libraries/libinput/default.nix b/pkgs/development/libraries/libinput/default.nix index 4db3913bdd2..6d80bfdccf1 100644 --- a/pkgs/development/libraries/libinput/default.nix +++ b/pkgs/development/libraries/libinput/default.nix @@ -15,11 +15,11 @@ in with stdenv.lib; stdenv.mkDerivation rec { - name = "libinput-1.2.0"; + name = "libinput-1.2.1"; src = fetchurl { url = "http://www.freedesktop.org/software/libinput/${name}.tar.xz"; - sha256 = "0b3f67xsy1s84cvzw22mjfkbcv6pj4p4yns4h3m0fmb7zqbvjm0p"; + sha256 = "1hy1h0a4zx5wj23sah4kms2z0285yl0kcn4fqlrrp1gqax9qrnz2"; }; configureFlags = [ diff --git a/pkgs/development/libraries/libmatheval/default.nix b/pkgs/development/libraries/libmatheval/default.nix new file mode 100644 index 00000000000..7336e7d757a --- /dev/null +++ b/pkgs/development/libraries/libmatheval/default.nix @@ -0,0 +1,46 @@ +{ stdenv, fetchurl, guile, autoconf, flex, fetchpatch }: + +stdenv.mkDerivation rec { + version = "1.1.11"; + name = "libmatheval-${version}"; + + nativeBuildInputs = [ autoconf flex ]; + buildInputs = [ guile ]; + + src = fetchurl { + url = "http://ftp.gnu.org/gnu/libmatheval/${name}.tar.gz"; + sha256 = "474852d6715ddc3b6969e28de5e1a5fbaff9e8ece6aebb9dc1cc63e9e88e89ab"; + }; + + # Patches coming from debian package + # https://packages.debian.org/source/sid/libs/libmatheval + patches = [ (fetchpatch { + url = "http://anonscm.debian.org/cgit/debian-science/packages/libmatheval.git/plain/debian/patches/002-skip-docs.patch"; + sha256 = "1nnkk9aw4jj6nql46zhwq6vx74zrmr1xq5ix0xyvpawhabhgjg62"; + } ) + (fetchpatch { + url = "http://anonscm.debian.org/cgit/debian-science/packages/libmatheval.git/plain/debian/patches/003-guile2.0.patch"; + sha256 = "1xgfw4finfvr20kjbpr4yl2djxmyr4lmvfa11pxirfvhrdi602qj"; + } ) + (fetchpatch { + url = "http://anonscm.debian.org/cgit/debian-science/packages/libmatheval.git/plain/debian/patches/disable_coth_test.patch"; + sha256 = "0bai8jrd5azfz5afmjixlvifk34liq58qb7p9kb45k6kc1fqqxzm"; + } ) + ]; + + meta = { + description = "A library to parse and evaluate symbolic expressions input as text"; + longDescription = '' + GNU libmatheval is a library (callable from C and Fortran) to parse and evaluate symbolic + expressions input as text. It supports expressions in any number of variables of arbitrary + names, decimal and symbolic constants, basic unary and binary operators, and elementary + mathematical functions. In addition to parsing and evaluation, libmatheval can also compute + symbolic derivatives and output expressions to strings. + ''; + homepage = "https://www.gnu.org/software/libmatheval/"; + license = stdenv.lib.licenses.gpl3; + maintainers = [ stdenv.lib.maintainers.bzizou ]; + platforms = stdenv.lib.platforms.linux; + }; +} + diff --git a/pkgs/development/libraries/libmatroska/default.nix b/pkgs/development/libraries/libmatroska/default.nix index b4032f3c22d..134f6b1bf27 100644 --- a/pkgs/development/libraries/libmatroska/default.nix +++ b/pkgs/development/libraries/libmatroska/default.nix @@ -1,17 +1,16 @@ -{ stdenv, fetchurl, libebml }: +{ stdenv, fetchurl, pkgconfig, libebml }: stdenv.mkDerivation rec { - name = "libmatroska-1.4.1"; + name = "libmatroska-1.4.4"; src = fetchurl { url = "http://dl.matroska.org/downloads/libmatroska/${name}.tar.bz2"; - sha256 = "1dzglkl0hpimld1kahkrrp857hw5pg1r7xxbpnx7jmlj7s3j2vq8"; + sha256 = "1mvb54q3gag9dj0pkwci8w75gp6mm14gi85y0ld3ar1rdngsmvyk"; }; - configurePhase = "cd make/linux"; - makeFlags = "prefix=$(out) LIBEBML_INCLUDE_DIR=${libebml}/include LIBEBML_LIB_DIR=${libebml}/lib" - + stdenv.lib.optionalString stdenv.isDarwin " CXX=clang++"; - propagatedBuildInputs = [ libebml ]; + nativeBuildInputs = [ pkgconfig ]; + + buildInputs = [ libebml ]; meta = with stdenv.lib; { description = "A library to parse Matroska files"; diff --git a/pkgs/development/libraries/libmediainfo/default.nix b/pkgs/development/libraries/libmediainfo/default.nix index 2bc18a5a61d..b3d76b1c931 100644 --- a/pkgs/development/libraries/libmediainfo/default.nix +++ b/pkgs/development/libraries/libmediainfo/default.nix @@ -1,29 +1,29 @@ -{ stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, zlib }: +{ stdenv, fetchurl, autoreconfHook, pkgconfig, libzen, zlib }: stdenv.mkDerivation rec { - version = "0.7.82"; + version = "0.7.83"; name = "libmediainfo-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/libmediainfo/${version}/libmediainfo_${version}.tar.xz"; - sha256 = "1mqmk1q2phwqwrak54jc9hfwjllhhr4nqyigisrh9rcvd6wx6r86"; + sha256 = "0kl5x07j3jp5mnmhpjvdq0a2nnlgvqnhwar0xalvg3b3msdf8417"; }; - buildInputs = [ automake autoconf libtool pkgconfig libzen zlib ]; + nativeBuildInputs = [ autoreconfHook pkgconfig ]; + buildInputs = [ libzen zlib ]; sourceRoot = "./MediaInfoLib/Project/GNU/Library/"; configureFlags = [ "--enable-shared" ]; - preConfigure = "sh autogen.sh"; postInstall = '' install -vD -m 644 libmediainfo.pc "$out/lib/pkgconfig/libmediainfo.pc" ''; - meta = { + meta = with stdenv.lib; { description = "Shared library for mediainfo"; homepage = http://mediaarea.net/; - license = stdenv.lib.licenses.bsd2; - platforms = stdenv.lib.platforms.unix; - maintainers = [ stdenv.lib.maintainers.devhell ]; + license = licenses.bsd2; + platforms = platforms.unix; + maintainers = [ maintainers.devhell ]; }; } diff --git a/pkgs/development/libraries/libotr/3.2.nix b/pkgs/development/libraries/libotr/3.2.nix deleted file mode 100644 index 7dd6226a698..00000000000 --- a/pkgs/development/libraries/libotr/3.2.nix +++ /dev/null @@ -1,11 +0,0 @@ -{stdenv, fetchurl, libgcrypt}: - -stdenv.mkDerivation { - name = "libotr-3.2.1"; - src = fetchurl { - url = http://www.cypherpunks.ca/otr/libotr-3.2.0.tar.gz; - sha256 = "14v6idnqpp2vhgir9bzp1ay2gmhqsb8iavrkwmallakfwch9sfyq"; - }; - - propagatedBuildInputs = [libgcrypt]; -} diff --git a/pkgs/development/libraries/libotr/default.nix b/pkgs/development/libraries/libotr/default.nix index aeae2a70d6c..0a01cd9825e 100644 --- a/pkgs/development/libraries/libotr/default.nix +++ b/pkgs/development/libraries/libotr/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, libgcrypt, autoreconfHook }: stdenv.mkDerivation rec { - name = "libotr-4.1.0"; + name = "libotr-4.1.1"; src = fetchurl { url = "https://otr.cypherpunks.ca/${name}.tar.gz"; - sha256 = "0c6rkh58s6wqzcrpccwdik5qs91qj6dgd60a340d72gc80cqknsg"; + sha256 = "1x8rliydhbibmzwdbyr7pd7n87m2jmxnqkpvaalnf4154hj1hfwb"; }; buildInputs = [ autoreconfHook ]; diff --git a/pkgs/development/libraries/libpsl/default.nix b/pkgs/development/libraries/libpsl/default.nix index 231216cbc69..74fc4270b80 100644 --- a/pkgs/development/libraries/libpsl/default.nix +++ b/pkgs/development/libraries/libpsl/default.nix @@ -3,10 +3,10 @@ let - listVersion = "2016-02-25"; + listVersion = "2016-03-10"; listSources = fetchFromGitHub { - sha256 = "0i9aa0bl3x50z0ba4n06pajpfncw8n780hhql13b1vppgfc6s4i7"; - rev = "84fd7e2a090f53ba4378f2a0e08cdaaa882ce3e5"; + sha256 = "10kc0b41y5cn0cnqvalz9i14j1dj6b9wgr21zz3ngqf943q6z5r9"; + rev = "1e52b7efc42b1505f9580ec15a1d692523db4a3b"; repo = "list"; owner = "publicsuffix"; }; diff --git a/pkgs/development/libraries/libsigcxx/default.nix b/pkgs/development/libraries/libsigcxx/default.nix index 610d14568ae..1171fa079cf 100644 --- a/pkgs/development/libraries/libsigcxx/default.nix +++ b/pkgs/development/libraries/libsigcxx/default.nix @@ -1,19 +1,29 @@ -{ stdenv, fetchurl, pkgconfig, gnum4 }: - +{ stdenv, fetchurl, fetchpatch, pkgconfig, gnum4 }: +let + ver_maj = "2.6"; # odd major numbers are unstable + ver_min = "2"; +in stdenv.mkDerivation rec { - name = "libsigc++-2.3.1"; + name = "libsigc++-${ver_maj}.${ver_min}"; src = fetchurl { - url = "mirror://gnome/sources/libsigc++/2.3/${name}.tar.xz"; - sha256 = "14q3sq6d43f6wfcmwhw4v1aal4ba0h5x9v6wkxy2dnqznd95il37"; + url = "mirror://gnome/sources/libsigc++/${ver_maj}/${name}.tar.xz"; + sha256 = "fdace7134c31de792c17570f9049ca0657909b28c4c70ec4882f91a03de54437"; }; + patches = [(fetchpatch { + url = "https://anonscm.debian.org/cgit/collab-maint/libsigc++-2.0.git/plain" + + "/debian/patches/0002-Enforce-c-11-via-pkg-config.patch?id=d451a4d195b1"; + sha256 = "19g19473syp2z3kg8vdrli89lm9kcvaqajkqfmdig1vfpkbq0nci"; + })]; - buildInputs = [ pkgconfig gnum4 ]; + nativeBuildInputs = [ pkgconfig gnum4 ]; doCheck = true; - meta = { + meta = with stdenv.lib; { homepage = http://libsigc.sourceforge.net/; description = "A typesafe callback system for standard C++"; + license = licenses.lgpl21; + platforms = platforms.all; }; } diff --git a/pkgs/development/libraries/libsoundio/default.nix b/pkgs/development/libraries/libsoundio/default.nix index 9f9f89ec812..a35ab14e253 100644 --- a/pkgs/development/libraries/libsoundio/default.nix +++ b/pkgs/development/libraries/libsoundio/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchFromGitHub, cmake, alsaLib, libjack2-git, libpulseaudio }: stdenv.mkDerivation rec { - version = "1.0.3"; + version = "1.1.0"; name = "libsoundio-${version}"; src = fetchFromGitHub { owner = "andrewrk"; repo = "libsoundio"; rev = "${version}"; - sha256 = "0xnv0rsan57i07ky823jczylbcpbzjk6j06fw9x0md65arcgcqfy"; + sha256 = "0mw197l4bci1cjc2z877gxwsvk8r43dr7qiwci2hwl2cjlcnqr2p"; }; buildInputs = [ cmake alsaLib libjack2-git libpulseaudio ]; diff --git a/pkgs/development/libraries/libtoxcore/new-api/default.nix b/pkgs/development/libraries/libtoxcore/new-api/default.nix index 5bb0427f181..9702fbd02da 100644 --- a/pkgs/development/libraries/libtoxcore/new-api/default.nix +++ b/pkgs/development/libraries/libtoxcore/new-api/default.nix @@ -2,13 +2,13 @@ , libvpx, check, libconfig, pkgconfig }: stdenv.mkDerivation rec { - name = "tox-core-dev-20160131"; + name = "tox-core-dev-20160319"; src = fetchFromGitHub { owner = "irungentoo"; repo = "toxcore"; - rev = "94cc8b11ff473064526737936f64b6f9a19c239d"; - sha256 = "0njara08p5vmhs6kp04b7gxw8l6xrlmwnlb76n2g96v0rn0i9k2w"; + rev = "532629d486e3361c7d8d95b38293cc7d61dc4ee5"; + sha256 = "0x8mjrjiafgia9vy7w4zhfzicr2fljx8xgm2ppi4kva2r2z1wm2f"; }; NIX_LDFLAGS = "-lgcc_s"; diff --git a/pkgs/development/libraries/libvirt/default.nix b/pkgs/development/libraries/libvirt/default.nix index 256d09b0edd..343f3b757e3 100644 --- a/pkgs/development/libraries/libvirt/default.nix +++ b/pkgs/development/libraries/libvirt/default.nix @@ -9,11 +9,11 @@ stdenv.mkDerivation rec { name = "libvirt-${version}"; - version = "1.3.0"; + version = "1.3.2"; src = fetchurl { url = "http://libvirt.org/sources/${name}.tar.gz"; - sha256 = "ebcf5645fa565e3fe2fe94a86e841db9b768cf0e0a7e6cf395c6327f9a23bd64"; + sha256 = "01fg9jbifndwc3jzzizsisvz98q325xarczgf6rn11hphckgrip3"; }; patches = [ ./build-on-bsd.patch ]; @@ -83,5 +83,6 @@ stdenv.mkDerivation rec { ''; license = licenses.lgpl2Plus; platforms = platforms.unix; + maintainers = with maintainers; [ fpletz ]; }; } diff --git a/pkgs/development/libraries/libxkbcommon/default.nix b/pkgs/development/libraries/libxkbcommon/default.nix index 5543b05ce9d..ea74bea152c 100644 --- a/pkgs/development/libraries/libxkbcommon/default.nix +++ b/pkgs/development/libraries/libxkbcommon/default.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://xkbcommon.org/download/${name}.tar.xz"; - sha1 = "z9dvxrkcyb4b7f2zybgkrqb9zcxrj9vi"; + sha256 = "176ii5dn2wh74q48sd8ac37ljlvgvp5f506glr96z6ibfhj7igch"; }; buildInputs = [ pkgconfig yacc flex xkeyboard_config libxcb ]; @@ -23,4 +23,3 @@ stdenv.mkDerivation rec { homepage = http://xkbcommon.org; }; } - diff --git a/pkgs/development/libraries/libxmp/default.nix b/pkgs/development/libraries/libxmp/default.nix index 8aa8bf600a8..106fcee257f 100644 --- a/pkgs/development/libraries/libxmp/default.nix +++ b/pkgs/development/libraries/libxmp/default.nix @@ -13,7 +13,6 @@ stdenv.mkDerivation rec { ''; license = licenses.lgpl21Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/libraries/libykneomgr/default.nix b/pkgs/development/libraries/libykneomgr/default.nix index 035a291be29..c084cfb8116 100644 --- a/pkgs/development/libraries/libykneomgr/default.nix +++ b/pkgs/development/libraries/libykneomgr/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pkgconfig, pcsclite, libzip, help2man }: stdenv.mkDerivation rec { - name = "libykneomgr-0.1.7"; + name = "libykneomgr-0.1.8"; src = fetchurl { url = "https://developers.yubico.com/libykneomgr/Releases/${name}.tar.gz"; - sha256 = "0nlzl9g0gjb54h43gjhg8d25bq3m3s794cq671irpqkn94kj1knw"; + sha256 = "12gqblz400kr11m1fdr1vvwr85lgy5v55zy0cf782whpk8lyyj97"; }; nativeBuildInputs = [ pkgconfig ]; diff --git a/pkgs/development/libraries/libzen/default.nix b/pkgs/development/libraries/libzen/default.nix index 127eeaeaca9..23597c2e03b 100644 --- a/pkgs/development/libraries/libzen/default.nix +++ b/pkgs/development/libraries/libzen/default.nix @@ -1,26 +1,25 @@ -{ stdenv, fetchurl, automake, autoconf, libtool, pkgconfig }: +{ stdenv, fetchurl, autoreconfHook }: -let version = "0.4.32"; in - -stdenv.mkDerivation { +stdenv.mkDerivation rec { + version = "0.4.33"; name = "libzen-${version}"; src = fetchurl { - url = "http://mediaarea.net/download/source/libzen/${version}/libzen_${version}.tar.bz2"; - sha256 = "0rhbiaywij6jj8d7vkc4v7y21ic1kv9fbn9lk82mm12yjwzlhhyd"; + url = "https://mediaarea.net/download/source/libzen/${version}/libzen_${version}.tar.bz2"; + sha256 = "0py5iagajz6m5zh26svkjyy85k1dmyhi6cdbmc3cb56a4ix1k2d2"; }; - buildInputs = [ automake autoconf libtool pkgconfig ]; + nativeBuildInputs = [ autoreconfHook ]; configureFlags = [ "--enable-shared" ]; sourceRoot = "./ZenLib/Project/GNU/Library/"; preConfigure = "sh autogen.sh"; - meta = { + meta = with stdenv.lib; { description = "Shared library for libmediainfo and mediainfo"; - homepage = http://mediaarea.net/; - license = stdenv.lib.licenses.bsd2; - platforms = stdenv.lib.platforms.unix; - maintainers = [ stdenv.lib.maintainers.devhell ]; + homepage = https://mediaarea.net/; + license = licenses.bsd2; + platforms = platforms.unix; + maintainers = [ maintainers.devhell ]; }; } diff --git a/pkgs/development/libraries/mesa-glu/default.nix b/pkgs/development/libraries/mesa-glu/default.nix index 0ea73a3a57f..8d433461d0c 100644 --- a/pkgs/development/libraries/mesa-glu/default.nix +++ b/pkgs/development/libraries/mesa-glu/default.nix @@ -7,6 +7,9 @@ stdenv.mkDerivation rec { url = "ftp://ftp.freedesktop.org/pub/mesa/glu/${name}.tar.bz2"; sha256 = "04nzlil3a6fifcmb95iix3yl8mbxdl66b99s62yzq8m7g79x0yhz"; }; + postPatch = '' + echo 'Cflags: -I''${includedir}' >> glu.pc.in + ''; buildInputs = [ pkgconfig ]; propagatedBuildInputs = [ mesa_noglu ]; diff --git a/pkgs/development/libraries/mono-addins/default.nix b/pkgs/development/libraries/mono-addins/default.nix new file mode 100644 index 00000000000..e68661b44ec --- /dev/null +++ b/pkgs/development/libraries/mono-addins/default.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, mono, gtk-sharp-2_0 }: + +stdenv.mkDerivation rec { + name = "mono-addins-${version}"; + version = "1.2"; + + src = fetchFromGitHub { + owner = "mono"; + repo = "mono-addins"; + + rev = "mono-addins-${version}"; + sha256 = "1hnn0a2qsjcjprsxas424bzvhsdwy0yc2jj5xbp698c0m9kfk24y"; + }; + + nativeBuildInputs = [ pkgconfig autoreconfHook ]; + buildInputs = [ mono gtk-sharp-2_0 ]; + + dontStrip = true; + + meta = with stdenv.lib; { + homepage = http://www.mono-project.com/archived/monoaddins/; + description = "A generic framework for creating extensible applications"; + longDescription = '' + Mono.Addins is a generic framework for creating extensible applications, + and for creating libraries which extend those applications. + ''; + platforms = platforms.linux; + }; +} diff --git a/pkgs/development/libraries/mono-zeroconf/default.nix b/pkgs/development/libraries/mono-zeroconf/default.nix new file mode 100644 index 00000000000..12b15c4937d --- /dev/null +++ b/pkgs/development/libraries/mono-zeroconf/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl, autoreconfHook, which, pkgconfig, mono }: + +stdenv.mkDerivation rec { + name = "mono-zeroconf-${version}"; + version = "0.9.0"; + + src = fetchurl { + url = "http://download.banshee-project.org/mono-zeroconf/mono-zeroconf-${version}.tar.bz2"; + sha256 = "1qfp4qvsx7rc2shj1chi2y7fxn10rwi70rw2y54b2i8a4jq7gpkb"; + }; + + buildInputs = [ pkgconfig which mono ]; + + dontStrip = true; + + configureFlags = [ "--disable-docs" ]; + + meta = with stdenv.lib; { + description = "A cross platform Zero Configuration Networking library for Mono and .NET"; + homepage = http://www.mono-project.com/archived/monozeroconf/; + platforms = platforms.linux; + }; +} diff --git a/pkgs/development/libraries/netcdf-fortran/default.nix b/pkgs/development/libraries/netcdf-fortran/default.nix new file mode 100644 index 00000000000..e7215555475 --- /dev/null +++ b/pkgs/development/libraries/netcdf-fortran/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, netcdf, hdf5, curl, gfortran }: +stdenv.mkDerivation rec { + name = "netcdf-fortran-${version}"; + version = "4.4.3"; + + src = fetchurl { + url = "https://github.com/Unidata/netcdf-fortran/archive/v${version}.tar.gz"; + sha256 = "4170fc018c9ee8222e317215c6a273542623185f5f6ee00d37bbb4e024e4e998"; + }; + + buildInputs = [ netcdf hdf5 curl gfortran ]; + doCheck = true; + + meta = { + description = "Fortran API to manipulate netcdf files"; + homepage = "http://www.unidata.ucar.edu/software/netcdf/"; + license = stdenv.lib.licenses.free; + maintainers = stdenv.lib.maintainers.bzizou; + }; +} diff --git a/pkgs/development/libraries/notify-sharp/default.nix b/pkgs/development/libraries/notify-sharp/default.nix new file mode 100644 index 00000000000..c7e133d94b2 --- /dev/null +++ b/pkgs/development/libraries/notify-sharp/default.nix @@ -0,0 +1,35 @@ +{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook +, mono, gtk-sharp-3_0, dbus-sharp-1_0, dbus-sharp-glib-1_0 }: + +stdenv.mkDerivation rec { + name = "notify-sharp-${version}"; + version = "3.0.3"; + + src = fetchFromGitHub { + owner = "GNOME"; + repo = "notify-sharp"; + + rev = "${version}"; + sha256 = "1vm7mnmxdwrgy4mr07lfva8sa6a32f2ah5x7w8yzcmahaks3sj5m"; + }; + + nativeBuildInputs = [ + pkgconfig autoreconfHook + ]; + + buildInputs = [ + mono gtk-sharp-3_0 + dbus-sharp-1_0 dbus-sharp-glib-1_0 + ]; + + dontStrip = true; + + postPatch = '' + sed -i 's#^[ \t]*DOCDIR=.*$#DOCDIR=$out/lib/monodoc#' ./configure.ac + ''; + + meta = with stdenv.lib; { + description = "D-Bus for .NET"; + platforms = platforms.linux; + }; +} diff --git a/pkgs/development/libraries/nspr/default.nix b/pkgs/development/libraries/nspr/default.nix index e8d3fb3cdf2..230c22258e2 100644 --- a/pkgs/development/libraries/nspr/default.nix +++ b/pkgs/development/libraries/nspr/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl }: -let version = "4.11"; in +let version = "4.12"; in stdenv.mkDerivation { name = "nspr-${version}"; src = fetchurl { url = "http://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v${version}/src/nspr-${version}.tar.gz"; - sha256 = "cb320a9eee7028275ac0fce7adc39dee36f14f02fd8432fce1b7e1aa5e3685c2"; + sha256 = "1pk98bmc5xzbl62q5wf2d6mryf0v95z6rsmxz27nclwiaqg0mcg0"; }; preConfigure = '' diff --git a/pkgs/development/libraries/nss/85_security_load.patch b/pkgs/development/libraries/nss/85_security_load.patch index 3e51e290887..632cc418425 100644 --- a/pkgs/development/libraries/nss/85_security_load.patch +++ b/pkgs/development/libraries/nss/85_security_load.patch @@ -1,7 +1,8 @@ -diff -ru nss-3.16-orig/nss/cmd/shlibsign/shlibsign.c nss-3.16/nss/cmd/shlibsign/shlibsign.c ---- nss-3.16-orig/nss/cmd/shlibsign/shlibsign.c 2014-03-14 21:31:59.000000000 +0100 -+++ nss-3.16/nss/cmd/shlibsign/shlibsign.c 2014-04-22 14:50:31.340743655 +0200 -@@ -852,6 +852,8 @@ +diff --git a/nss/cmd/shlibsign/shlibsign.c b/nss/cmd/shlibsign/shlibsign.c +index 63a4836..a128c1d 100644 +--- a/nss/cmd/shlibsign/shlibsign.c ++++ b/nss/cmd/shlibsign/shlibsign.c +@@ -862,6 +862,8 @@ int main(int argc, char **argv) libname = PR_GetLibraryName(NULL, "softokn3"); assert(libname != NULL); lib = PR_LoadLibrary(libname); @@ -10,21 +11,22 @@ diff -ru nss-3.16-orig/nss/cmd/shlibsign/shlibsign.c nss-3.16/nss/cmd/shlibsign/ assert(lib != NULL); PR_FreeLibraryName(libname); -Only in nss-3.16/nss/cmd/shlibsign: shlibsign.c.orig -diff -ru nss-3.16-orig/nss/coreconf/config.mk nss-3.16/nss/coreconf/config.mk ---- nss-3.16-orig/nss/coreconf/config.mk 2014-03-14 21:31:59.000000000 +0100 -+++ nss-3.16/nss/coreconf/config.mk 2014-04-22 14:50:51.302731097 +0200 -@@ -188,3 +188,6 @@ - - # Hide old, deprecated, TLS cipher suite names when building NSS - DEFINES += -DSSL_DISABLE_DEPRECATED_CIPHER_SUITE_NAMES +diff --git a/nss/coreconf/config.mk b/nss/coreconf/config.mk +index 61d757b..b58a98b 100644 +--- a/nss/coreconf/config.mk ++++ b/nss/coreconf/config.mk +@@ -205,3 +205,6 @@ $(error Setting NSS_ENABLE_TLS_1_3 and NSS_DISABLE_ECC isn't a good idea.) + endif + DEFINES += -DNSS_ENABLE_TLS_1_3 + endif + +# Nix specific stuff. +DEFINES += -DNIX_NSS_LIBDIR=\"$(out)/lib/\" -diff -ru nss-3.16-orig/nss/lib/pk11wrap/pk11load.c nss-3.16/nss/lib/pk11wrap/pk11load.c ---- nss-3.16-orig/nss/lib/pk11wrap/pk11load.c 2014-03-14 21:31:59.000000000 +0100 -+++ nss-3.16/nss/lib/pk11wrap/pk11load.c 2014-04-22 14:50:22.164749330 +0200 -@@ -406,6 +406,13 @@ +diff --git a/nss/lib/pk11wrap/pk11load.c b/nss/lib/pk11wrap/pk11load.c +index 5c5d2ca..026e528 100644 +--- a/nss/lib/pk11wrap/pk11load.c ++++ b/nss/lib/pk11wrap/pk11load.c +@@ -429,6 +429,13 @@ secmod_LoadPKCS11Module(SECMODModule *mod, SECMODModule **oldModule) { * unload the library if anything goes wrong from here on out... */ library = PR_LoadLibrary(mod->dllName); @@ -38,10 +40,11 @@ diff -ru nss-3.16-orig/nss/lib/pk11wrap/pk11load.c nss-3.16/nss/lib/pk11wrap/pk1 mod->library = (void *)library; if (library == NULL) { -diff -ru nss-3.16-orig/nss/lib/util/secload.c nss-3.16/nss/lib/util/secload.c ---- nss-3.16-orig/nss/lib/util/secload.c 2014-03-14 21:31:59.000000000 +0100 -+++ nss-3.16/nss/lib/util/secload.c 2014-04-22 14:50:31.342743654 +0200 -@@ -69,9 +69,14 @@ +diff --git a/nss/lib/util/secload.c b/nss/lib/util/secload.c +index eb8a9ec..f94f67d 100644 +--- a/nss/lib/util/secload.c ++++ b/nss/lib/util/secload.c +@@ -69,9 +69,14 @@ loader_LoadLibInReferenceDir(const char *referencePath, const char *name) /* Remove the trailing filename from referencePath and add the new one */ c = strrchr(referencePath, PR_GetDirectorySeparator()); @@ -57,7 +60,7 @@ diff -ru nss-3.16-orig/nss/lib/util/secload.c nss-3.16/nss/lib/util/secload.c if (fullName) { memcpy(fullName, referencePath, referencePathSize); strcpy(fullName + referencePathSize, name); -@@ -81,6 +86,11 @@ +@@ -81,6 +86,11 @@ loader_LoadLibInReferenceDir(const char *referencePath, const char *name) #endif libSpec.type = PR_LibSpec_Pathname; libSpec.value.pathname = fullName; @@ -69,7 +72,7 @@ diff -ru nss-3.16-orig/nss/lib/util/secload.c nss-3.16/nss/lib/util/secload.c dlh = PR_LoadLibraryWithFlags(libSpec, PR_LD_NOW | PR_LD_LOCAL #ifdef PR_LD_ALT_SEARCH_PATH /* allow library's dependencies to be found in the same directory -@@ -88,6 +98,10 @@ +@@ -88,6 +98,10 @@ loader_LoadLibInReferenceDir(const char *referencePath, const char *name) | PR_LD_ALT_SEARCH_PATH #endif ); diff --git a/pkgs/development/libraries/nss/default.nix b/pkgs/development/libraries/nss/default.nix index d3c2deb609e..e8be7299952 100644 --- a/pkgs/development/libraries/nss/default.nix +++ b/pkgs/development/libraries/nss/default.nix @@ -11,11 +11,11 @@ let in stdenv.mkDerivation rec { name = "nss-${version}"; - version = "3.22"; + version = "3.23"; src = fetchurl { - url = "http://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_22_RTM/src/${name}.tar.gz"; - sha256 = "30ebd121c77e725a1383618eff79a6752d6e9f0f21882ad825ddab12e7227611"; + url = "http://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_23_RTM/src/${name}.tar.gz"; + sha256 = "1kqidv91icq96m9m8zx50n7px08km2l88458rkgyjwcn3kiq7cwl"; }; buildInputs = [ nspr perl zlib sqlite ]; diff --git a/pkgs/development/libraries/opencsg/default.nix b/pkgs/development/libraries/opencsg/default.nix index 89176c10843..7f9c3803896 100644 --- a/pkgs/development/libraries/opencsg/default.nix +++ b/pkgs/development/libraries/opencsg/default.nix @@ -13,6 +13,10 @@ stdenv.mkDerivation rec { doCheck = false; + preConfigure = '' + sed -i 's/^\(LIBS *=.*\)$/\1 -lX11/' example/Makefile + ''; + installPhase = '' mkdir -pv "$out/"{bin,share/doc/opencsg} diff --git a/pkgs/development/libraries/openmpi/default.nix b/pkgs/development/libraries/openmpi/default.nix index 1862e633ad5..18dc2251013 100644 --- a/pkgs/development/libraries/openmpi/default.nix +++ b/pkgs/development/libraries/openmpi/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, gfortran, perl +{stdenv, fetchurl, gfortran, perl, libibverbs # Enable the Sun Grid Engine bindings , enableSGE ? false @@ -20,7 +20,7 @@ in stdenv.mkDerivation rec { sha256 = "14p4px9a3qzjc22lnl6braxrcrmd9rgmy7fh4qpanawn2pgfq6br"; }; - buildInputs = [ gfortran ]; + buildInputs = [ gfortran libibverbs ]; nativeBuildInputs = [ perl ]; diff --git a/pkgs/development/libraries/opensubdiv/default.nix b/pkgs/development/libraries/opensubdiv/default.nix index 91ebc7cc661..c9bf9a72503 100644 --- a/pkgs/development/libraries/opensubdiv/default.nix +++ b/pkgs/development/libraries/opensubdiv/default.nix @@ -3,13 +3,13 @@ }: stdenv.mkDerivation { - name = "opensubdiv-3.0.3"; + name = "opensubdiv-3.0.4"; src = fetchFromGitHub { owner = "PixarAnimationStudios"; repo = "OpenSubdiv"; - rev = "v3_0_3"; - sha256 = "1pd7xsz4lx5l2hdixfgqx9yijchw108wqkvxj78rbblkkawvqhmx"; + rev = "v3_0_4"; + sha256 = "14ylpzk4121gi3fl02dwmqjp5sbaqpkm4gd0lh6jijccdih0xsc0"; }; patches = diff --git a/pkgs/development/libraries/pangomm/default.nix b/pkgs/development/libraries/pangomm/default.nix index f71c52e670b..c13af349d43 100644 --- a/pkgs/development/libraries/pangomm/default.nix +++ b/pkgs/development/libraries/pangomm/default.nix @@ -1,19 +1,21 @@ -{ stdenv, fetchurl, pkgconfig, pango, glibmm, cairomm, libpng, cairo }: +{ stdenv, fetchurl, pkgconfig, pango, glibmm, cairomm }: let - ver_maj = "2.34"; - ver_min = "0"; + ver_maj = "2.38"; + ver_min = "1"; in stdenv.mkDerivation rec { name = "pangomm-${ver_maj}.${ver_min}"; src = fetchurl { url = "mirror://gnome/sources/pangomm/${ver_maj}/${name}.tar.xz"; - sha256 = "0hcyvv7c5zmivprdam6cp111i6hn2y5jsxzk00m6j9pncbzvp0hf"; + sha256 = "effb18505b36d81fc32989a39ead8b7858940d0533107336a30bc3eef096bc8b"; }; nativeBuildInputs = [ pkgconfig ]; - propagatedBuildInputs = [ pango glibmm cairomm libpng cairo ]; + propagatedBuildInputs = [ pango glibmm cairomm ]; + + doCheck = true; meta = with stdenv.lib; { description = "C++ interface to the Pango text rendering library"; diff --git a/pkgs/development/libraries/science/math/suitesparse/default.nix b/pkgs/development/libraries/science/math/suitesparse/default.nix index e32b8b34426..7dc6c32a8db 100644 --- a/pkgs/development/libraries/science/math/suitesparse/default.nix +++ b/pkgs/development/libraries/science/math/suitesparse/default.nix @@ -5,6 +5,7 @@ let name = "suitesparse-${version}"; int_t = if openblas.blas64 then "int64_t" else "int32_t"; + SHLIB_EXT = if stdenv.isDarwin then "dylib" else "so"; in stdenv.mkDerivation { inherit name; @@ -23,6 +24,10 @@ stdenv.mkDerivation { -e 's/METIS_PATH .*$/METIS_PATH =/' \ -e '/CHOLMOD_CONFIG/ s/$/-DNPARTITION -DLONGBLAS=${int_t}/' \ -e '/UMFPACK_CONFIG/ s/$/-DLONGBLAS=${int_t}/' + '' + + stdenv.lib.optionalString stdenv.isDarwin '' + sed -i "SuiteSparse_config/SuiteSparse_config.mk" \ + -e 's/^[[:space:]]*\(LIB = -lm\) -lrt/\1/' ''; makeFlags = [ @@ -33,7 +38,7 @@ stdenv.mkDerivation { "LAPACK=" ]; - NIX_CFLAGS = "-fPIC"; + NIX_CFLAGS = "-fPIC" + stdenv.lib.optionalString stdenv.isDarwin " -DNTIMER"; postInstall = '' # Build and install shared library @@ -42,10 +47,10 @@ stdenv.mkDerivation { for i in "$out"/lib/lib*.a; do ar -x $i done - gcc *.o --shared -o "$out/lib/libsuitesparse.so" -lopenblas + ''${CC} *.o ${if stdenv.isDarwin then "-dynamiclib" else "--shared"} -o "$out/lib/libsuitesparse.${SHLIB_EXT}" -lopenblas ) for i in umfpack cholmod amd camd colamd spqr; do - ln -s libsuitesparse.so "$out"/lib/lib$i.so; + ln -s libsuitesparse.${SHLIB_EXT} "$out"/lib/lib$i.${SHLIB_EXT} done # Install documentation diff --git a/pkgs/development/libraries/silgraphite/graphite2.nix b/pkgs/development/libraries/silgraphite/graphite2.nix index 83f64d1eb00..4e23a36939d 100644 --- a/pkgs/development/libraries/silgraphite/graphite2.nix +++ b/pkgs/development/libraries/silgraphite/graphite2.nix @@ -1,12 +1,13 @@ { stdenv, fetchurl, pkgconfig, freetype, cmake }: stdenv.mkDerivation rec { - version = "1.2.4"; + version = "1.3.6"; name = "graphite2-${version}"; src = fetchurl { - url = "mirror://sourceforge/silgraphite/graphite2/${name}.tgz"; - sha256 = "00xhv1mp640fr3wmdzwn4yz0g56jd4r9fb7b02mc1g19h0bdbhsb"; + url = "https://github.com/silnrsi/graphite/releases/download/" + + "${version}/graphite-${version}.tgz"; + sha256 = "0xdg6bc02bl8yz39l5i2skczfg17q4lif0qqan0dhvk0mibpcpj7"; }; buildInputs = [ pkgconfig freetype cmake ]; diff --git a/pkgs/development/libraries/sparsehash/default.nix b/pkgs/development/libraries/sparsehash/default.nix index 1f9bbcbd18d..15b84363e02 100644 --- a/pkgs/development/libraries/sparsehash/default.nix +++ b/pkgs/development/libraries/sparsehash/default.nix @@ -1,17 +1,20 @@ -{ stdenv, fetchurl }: +{ stdenv, fetchFromGitHub }: -stdenv.mkDerivation { - name = "sparsehash-2.0.2"; +stdenv.mkDerivation rec { + name = "sparsehash-2.0.3"; - src = fetchurl { - url = http://sparsehash.googlecode.com/files/sparsehash-2.0.2.tar.gz; - sha256 = "0z5qa1sbp6xx5qpdvrdjh185k5kj53sgb6h2qabw01sn2nkkkmif"; + src = fetchFromGitHub { + owner = "sparsehash"; + repo = "sparsehash"; + rev = name; + sha256 = "0m3f0cnpnpf6aak52wn8xbrrdw8p0yhq8csgc8nlvf9zp8c402na"; }; meta = with stdenv.lib; { - homepage = "http://code.google.com/p/sparsehash/"; + homepage = http://code.google.com/p/sparsehash/; description = "An extremely memory-efficient hash_map implementation"; platforms = platforms.all; license = licenses.bsd3; + maintainers = with maintainers; [ pSub ]; }; } diff --git a/pkgs/development/libraries/sqlite/default.nix b/pkgs/development/libraries/sqlite/default.nix index d9fbde9aa09..24be2c2a9c8 100644 --- a/pkgs/development/libraries/sqlite/default.nix +++ b/pkgs/development/libraries/sqlite/default.nix @@ -3,11 +3,11 @@ assert interactive -> readline != null && ncurses != null; stdenv.mkDerivation { - name = "sqlite-3.9.2"; + name = "sqlite-3.11.1"; src = fetchurl { - url = "http://sqlite.org/2015/sqlite-autoconf-3090200.tar.gz"; - sha1 = "dae1ae5297fece9671ae0c434a7ecd0cda09c76a"; + url = "http://sqlite.org/2016/sqlite-autoconf-3110100.tar.gz"; + sha1 = "c4b4dcd735a4daf5a2e2bb90f374484c8d4dad29"; }; buildInputs = lib.optionals interactive [ readline ncurses ]; diff --git a/pkgs/development/libraries/taglib-sharp/default.nix b/pkgs/development/libraries/taglib-sharp/default.nix new file mode 100644 index 00000000000..6da524c2339 --- /dev/null +++ b/pkgs/development/libraries/taglib-sharp/default.nix @@ -0,0 +1,26 @@ +{ stdenv, fetchFromGitHub, autoreconfHook, which, pkgconfig, mono }: + +stdenv.mkDerivation rec { + name = "taglib-sharp-${version}"; + version = "2.1.0.0"; + + src = fetchFromGitHub { + owner = "mono"; + repo = "taglib-sharp"; + + rev = "taglib-sharp-${version}"; + sha256 = "12pk4z6ag8w7kj6vzplrlasq5lwddxrww1w1ya5ivxrfki15h5cp"; + }; + + nativeBuildInputs = [ pkgconfig autoreconfHook which ]; + buildInputs = [ mono ]; + + dontStrip = true; + + configureFlags = [ "--disable-docs" ]; + + meta = with stdenv.lib; { + description = "Library for reading and writing metadata in media files"; + platforms = platforms.linux; + }; +} diff --git a/pkgs/development/libraries/tevent/default.nix b/pkgs/development/libraries/tevent/default.nix index 4b77ced250b..95eb0255bdc 100644 --- a/pkgs/development/libraries/tevent/default.nix +++ b/pkgs/development/libraries/tevent/default.nix @@ -3,11 +3,11 @@ }: stdenv.mkDerivation rec { - name = "tevent-0.9.26"; + name = "tevent-0.9.28"; src = fetchurl { url = "mirror://samba/tevent/${name}.tar.gz"; - sha256 = "1gbh6d2m49j1v2hkaiyrh8bj02i5wxd4hqayzk2g44yyivbi8b16"; + sha256 = "0a9ml52jjnzz7qg9z750mavlvs1yibjwrzy4yl55dc95j0vm7n84"; }; buildInputs = [ diff --git a/pkgs/development/libraries/udunits/default.nix b/pkgs/development/libraries/udunits/default.nix index 608900c85ad..a48f4487dd5 100644 --- a/pkgs/development/libraries/udunits/default.nix +++ b/pkgs/development/libraries/udunits/default.nix @@ -3,17 +3,19 @@ }: stdenv.mkDerivation rec { - name = "udunits-2.1.24"; + name = "udunits-2.2.20"; src = fetchurl { url = "ftp://ftp.unidata.ucar.edu/pub/udunits/${name}.tar.gz"; - sha256 = "1l0fdsl55374w7fjyd1wdx474f3p265b6rw1lq269cii61ca8prf"; + sha256 = "15fiv66ni6fmyz96k138vrjd7cx6ndxrj6c71pah18n69c0h42pi"; }; - buildInputs = [ - bison flex expat file - ]; + buildInputs = [ bison flex expat file ]; - patches = [ ./configure.patch ]; - - MAGIC_CMD="${file}/bin/file"; + meta = with stdenv.lib; { + homepage = http://www.unidata.ucar.edu/software/udunits/; + description = "A C-based package for the programatic handling of units of physical quantities"; + license = licenses.bsdOriginal; + platforms = platforms.linux; + maintainers = with maintainers; [ pSub ]; + }; } diff --git a/pkgs/development/libraries/unibilium/default.nix b/pkgs/development/libraries/unibilium/default.nix index 369e271191f..63bd86ca991 100644 --- a/pkgs/development/libraries/unibilium/default.nix +++ b/pkgs/development/libraries/unibilium/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { name = "unibilium-${version}"; - version = "1.1.2"; + version = "1.2.0"; src = fetchFromGitHub { owner = "mauke"; repo = "unibilium"; rev = "v${version}"; - sha256 = "143j7qrqjxxmdf3yzhn6av2qwiyjjk4cnskkgz6ir2scjfd5gvja"; + sha256 = "1qsw19irg70l29j7qv403f32l4rrzn53w7881a6h874j9gisl51s"; }; makeFlags = [ "PREFIX=$(out)" ] @@ -20,5 +20,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "A very basic terminfo library"; license = licenses.lgpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ pSub ]; }; } diff --git a/pkgs/development/libraries/vc/default.nix b/pkgs/development/libraries/vc/default.nix index f73f35a2376..e61c3a47ff1 100644 --- a/pkgs/development/libraries/vc/default.nix +++ b/pkgs/development/libraries/vc/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { description = "Library for multiprecision complex arithmetic with exact rounding"; homepage = https://github.com/VcDevel/Vc; license = licenses.bsd3; - platforms = platforms.all; + platforms = [ "x86_64-linux" "x86_64-darwin" ]; maintainers = with maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/libraries/webkitgtk/2.4.nix b/pkgs/development/libraries/webkitgtk/2.4.nix index 8ad3fcd0428..b1f47b80d78 100644 --- a/pkgs/development/libraries/webkitgtk/2.4.nix +++ b/pkgs/development/libraries/webkitgtk/2.4.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { homepage = "http://webkitgtk.org/"; license = licenses.bsd2; platforms = platforms.linux; - maintainers = [ maintainers.iyzsong ]; + maintainers = []; }; src = fetchurl { diff --git a/pkgs/development/libraries/webkitgtk/default.nix b/pkgs/development/libraries/webkitgtk/default.nix index 29e3206da0f..5fd10816168 100644 --- a/pkgs/development/libraries/webkitgtk/default.nix +++ b/pkgs/development/libraries/webkitgtk/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { license = licenses.bsd2; platforms = platforms.linux; hydraPlatforms = []; - maintainers = with maintainers; [ iyzsong koral ]; + maintainers = with maintainers; [ koral ]; }; preConfigure = "patchShebangs Tools"; diff --git a/pkgs/development/libraries/wolfssl/default.nix b/pkgs/development/libraries/wolfssl/default.nix index 5bb63c915e6..3e534a8b955 100644 --- a/pkgs/development/libraries/wolfssl/default.nix +++ b/pkgs/development/libraries/wolfssl/default.nix @@ -1,19 +1,17 @@ -{ stdenv, fetchurl, autoconf, automake, libtool }: +{ stdenv, fetchFromGitHub, autoreconfHook }: stdenv.mkDerivation rec { name = "wolfssl-${version}"; - version = "3.7.0"; + version = "3.9.0"; - src = fetchurl { - url = "https://github.com/wolfSSL/wolfssl/archive/v${version}.tar.gz"; - sha256 = "1r1awivral4xjjvnna9lrfz2rh84rcbp04834rymbsz0kbyykgb6"; + src = fetchFromGitHub { + owner = "wolfSSL"; + repo = "wolfssl"; + rev = "v${version}"; + sha256 = "0j4la9936jcy2fam1x5wplbslqa4zjnrk4wyipkbwz9m8cxg0n6v"; }; - nativeBuildInputs = [ autoconf automake libtool ]; - - preConfigure = '' - ./autogen.sh - ''; + nativeBuildInputs = [ autoreconfHook ]; meta = with stdenv.lib; { description = "A small, fast, portable implementation of TLS/SSL for embedded devices"; diff --git a/pkgs/development/libraries/wxGTK-2.8/default.nix b/pkgs/development/libraries/wxGTK-2.8/default.nix index d7ca92f70d9..50220c227f7 100644 --- a/pkgs/development/libraries/wxGTK-2.8/default.nix +++ b/pkgs/development/libraries/wxGTK-2.8/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pkgconfig, gtk, libXinerama, libSM, libXxf86vm, xf86vidmodeproto -, gstreamer, gst_plugins_base, GConf +, gstreamer, gst_plugins_base, GConf, libX11, cairo , withMesa ? true, mesa ? null, compat24 ? false, compat26 ? true, unicode ? true, }: @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { sha256 = "1l1w4i113csv3bd5r8ybyj0qpxdq83lj6jrc5p7cc10mkwyiagqz"; }; - buildInputs = [ gtk libXinerama libSM libXxf86vm xf86vidmodeproto gstreamer gst_plugins_base GConf ] + buildInputs = [ gtk libXinerama libSM libXxf86vm xf86vidmodeproto gstreamer gst_plugins_base GConf libX11 cairo ] ++ optional withMesa mesa; nativeBuildInputs = [ pkgconfig ]; @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { + optionalString withMesa "${mesa}/lib "; # Work around a bug in configure. - NIX_CFLAGS_COMPILE = "-DHAVE_X11_XLIB_H=1"; + NIX_CFLAGS_COMPILE = [ "-DHAVE_X11_XLIB_H=1" "-lX11" "-lcairo" ]; preConfigure = " substituteInPlace configure --replace 'SEARCH_INCLUDE=' 'DUMMY_SEARCH_INCLUDE=' diff --git a/pkgs/development/libraries/x265/default.nix b/pkgs/development/libraries/x265/default.nix index 1473910e004..736c350bc06 100644 --- a/pkgs/development/libraries/x265/default.nix +++ b/pkgs/development/libraries/x265/default.nix @@ -16,14 +16,14 @@ in stdenv.mkDerivation rec { name = "x265-${version}"; - version = "1.7"; + version = "1.9"; src = fetchurl { urls = [ "http://get.videolan.org/x265/x265_${version}.tar.gz" "https://github.com/videolan/x265/archive/${version}.tar.gz" ]; - sha256 = "18w3whmbjlalvysny51kdq9b228iwg3rdav4kmifazksvrm4yacq"; + sha256 = "1j0mbcf10aj6zi1nxql45f9817jd2ndcpd7x123sjmyr7q9m8iiy"; }; patchPhase = '' diff --git a/pkgs/development/libraries/xylib/default.nix b/pkgs/development/libraries/xylib/default.nix index fe9b6c5c3ca..030e2f0857b 100644 --- a/pkgs/development/libraries/xylib/default.nix +++ b/pkgs/development/libraries/xylib/default.nix @@ -1,23 +1,21 @@ { stdenv, fetchurl, boost, zlib, bzip2 }: -let - name = "xylib"; - version = "1.3"; -in -stdenv.mkDerivation { - name = "${name}-${version}"; +stdenv.mkDerivation rec { + name = "xylib-${version}"; + version = "1.4"; src = fetchurl { url = "https://github.com/wojdyr/xylib/releases/download/v${version}/${name}-${version}.tar.bz2"; sha256 = "09j426qjbg3damch1hfw16j992kn2hj8gs4lpvqgfqdw61kvqivh"; }; - buildInputs = [boost zlib bzip2 ]; + buildInputs = [ boost zlib bzip2 ]; - meta = { + meta = with stdenv.lib; { description = "Portable library for reading files that contain x-y data from powder diffraction, spectroscopy and other experimental methods"; - license = "LGPL"; + license = licenses.lgpl21; homepage = http://xylib.sourceforge.net/; - platforms = stdenv.lib.platforms.linux; + platforms = platforms.linux; + maintainers = with maintainers; [ pSub ]; }; } diff --git a/pkgs/development/lisp-modules/clwrapper/cl-wrapper.sh b/pkgs/development/lisp-modules/clwrapper/cl-wrapper.sh index 05376c1e9a3..5bf375a4eff 100755 --- a/pkgs/development/lisp-modules/clwrapper/cl-wrapper.sh +++ b/pkgs/development/lisp-modules/clwrapper/cl-wrapper.sh @@ -19,16 +19,19 @@ case "$NIX_LISP" in sbcl) NIX_LISP_LOAD_FILE="--load" NIX_LISP_EXEC_CODE="--eval" + NIX_LISP_QUIT="(quit)" NIX_LISP_FINAL_PARAMETERS= ;; ecl) NIX_LISP_LOAD_FILE="-load" NIX_LISP_EXEC_CODE="-eval" + NIX_LISP_QUIT="(quit)" NIX_LISP_FINAL_PARAMETERS= ;; clisp) NIX_LISP_LOAD_FILE="-c -l" NIX_LISP_EXEC_CODE="-x" + NIX_LISP_QUIT="(quit)" NIX_LISP_FINAL_PARAMETERS="-repl" ;; esac diff --git a/pkgs/development/lisp-modules/clwrapper/common-lisp.sh b/pkgs/development/lisp-modules/clwrapper/common-lisp.sh index b22ca016128..43349cc7f8a 100755 --- a/pkgs/development/lisp-modules/clwrapper/common-lisp.sh +++ b/pkgs/development/lisp-modules/clwrapper/common-lisp.sh @@ -1,3 +1,3 @@ #! /bin/sh -"$(dirname "$0")"/cl-wrapper.sh "${NIX_LISP_COMMAND:-sbcl}" "$@" +source "@out@"/bin/cl-wrapper.sh "${NIX_LISP_COMMAND:-$(ls "@lisp@/bin"/* | head -n 1)}" "$@" diff --git a/pkgs/development/lisp-modules/clwrapper/default.nix b/pkgs/development/lisp-modules/clwrapper/default.nix index be1f1f93a02..172af31f834 100644 --- a/pkgs/development/lisp-modules/clwrapper/default.nix +++ b/pkgs/development/lisp-modules/clwrapper/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { installPhase='' mkdir -p "$out"/bin - cp ${./common-lisp.sh} "$out"/bin/common-lisp.sh + substituteAll ${./common-lisp.sh} "$out"/bin/common-lisp.sh substituteAll "${./build-with-lisp.sh}" "$out/bin/build-with-lisp.sh" substituteAll "${./cl-wrapper.sh}" "$out/bin/cl-wrapper.sh" chmod a+x "$out"/bin/* diff --git a/pkgs/development/lisp-modules/lisp-packages.nix b/pkgs/development/lisp-modules/lisp-packages.nix index 36e0b34e005..8e3c56d49a8 100644 --- a/pkgs/development/lisp-modules/lisp-packages.nix +++ b/pkgs/development/lisp-modules/lisp-packages.nix @@ -575,5 +575,32 @@ let lispPackages = rec { }; }; + quicklisp = buildLispPackage rec { + baseName = "quicklisp"; + version = "2016-01-21"; + description = "The Common Lisp package manager"; + deps = []; + src = pkgs.fetchgit { + url = "https://github.com/quicklisp/quicklisp-client/"; + rev = "refs/tags/version-${version}"; + sha256 = "0a6zjsd5c8zg2x26lc027538xfl182xvg7ps81pyvi4k5qd42xhd"; + }; + overrides = x: rec { + inherit clwrapper; + quicklispdist = pkgs.fetchurl { + # Will usually be replaced with a fresh version anyway, but needs to be + # a valid distinfo.txt + url = "http://beta.quicklisp.org/dist/quicklisp/2016-03-18/distinfo.txt"; + sha256 = "13mvign4rsicfvg3vs3vj1qcjvj2m1aqhq93ck0sgizxfcj5167m"; + }; + buildPhase = '' true; ''; + postInstall = '' + substituteAll ${./quicklisp.sh} "$out"/bin/quicklisp + chmod a+x "$out"/bin/quicklisp + cp "${quicklispdist}" "$out/lib/common-lisp/quicklisp/quicklisp-distinfo.txt" + ''; + }; + }; + }; in lispPackages diff --git a/pkgs/development/lisp-modules/quicklisp.sh b/pkgs/development/lisp-modules/quicklisp.sh new file mode 100644 index 00000000000..30d14419461 --- /dev/null +++ b/pkgs/development/lisp-modules/quicklisp.sh @@ -0,0 +1,85 @@ +#! /usr/bin/env bash + +op= +end_param= +args=() +cmd_args=() + +while let "$#"; do + if test -n "$end_param" || test "$1" = "${1#--}"; then + if test -n "$op"; then + args[${#args[@]}]="$1"; + else + op="$1" + fi + shift + else + case "$1" in + --) + end_param=1; shift; + ;; + --quicklisp-dir) + NIX_QUICKLISP_DIR="$2"; + shift; shift; + ;; + --help) + echo "Operation: init, run, update, install {system-name}" + exit 0; + ;; + *) + echo "Unknown parameter [$1]" >&2 + exit 2; + ;; + esac + fi +done + +NIX_QUICKLISP_DIR="${NIX_QUICKLISP_DIR:-${HOME}/quicklisp}" + +case "$op" in + '') echo "Specify an operation: init, install, run, update" + ;; + install) + NIX_LISP_SKIP_CODE=1 source "@clwrapper@/bin/common-lisp.sh"; + + cmd_args[${#cmd_args[@]}]="$NIX_LISP_EXEC_CODE" + cmd_args[${#cmd_args[@]}]="(load \"$NIX_QUICKLISP_DIR/setup.lisp\")" + for i in "${args[@]}"; do + cmd_args[${#cmd_args[@]}]="$NIX_LISP_EXEC_CODE" + cmd_args[${#cmd_args[@]}]="(ql:quickload :$i)" + done + cmd_args[${#cmd_args[@]}]="$NIX_LISP_EXEC_CODE" + cmd_args[${#cmd_args[@]}]="$NIX_LISP_QUIT" + + "@clwrapper@/bin/common-lisp.sh" "${cmd_args[@]}" + ;; + update) + NIX_LISP_SKIP_CODE=1 source "@clwrapper@/bin/common-lisp.sh" + + ln -sfT "@out@/lib/common-lisp/quicklisp/asdf.lisp" "$NIX_QUICKLISP_DIR/asdf.lisp" + cp -f "@out@/lib/common-lisp/quicklisp/setup.lisp" "$NIX_QUICKLISP_DIR/setup.lisp" + + if test -d "$NIX_QUICKLISP_DIR/quicklisp"; then + mv "$NIX_QUICKLISP_DIR/quicklisp"{,-old-$(date +%Y%m%d-%H%M%S)} + fi + + ln -sfT "@out@/lib/common-lisp/quicklisp/quicklisp" "$NIX_QUICKLISP_DIR/quicklisp" + + "@clwrapper@/bin/common-lisp.sh" "$NIX_LISP_EXEC_CODE" \ + "(load \"$NIX_QUICKLISP_DIR/setup.lisp\")" "$NIX_LISP_EXEC_CODE" \ + "(ql:update-all-dists)" "$NIX_LISP_EXEC_CODE" "$NIX_LISP_QUIT" + ;; + init) + mkdir -p "$NIX_QUICKLISP_DIR"/{dists/quicklisp,tmp,local-projects} + echo 1 > "$NIX_QUICKLISP_DIR/dists/quicklisp/enabled.txt" + cp -f "@out@/lib/common-lisp/quicklisp/quicklisp-distinfo.txt" \ + "$NIX_QUICKLISP_DIR/dists/quicklisp/distinfo.txt" + + NIX_QUICKLISP_DIR="$NIX_QUICKLISP_DIR" "$0" update + ;; + run) + NIX_LISP_SKIP_CODE=1 source "@clwrapper@/bin/common-lisp.sh" + "@clwrapper@/bin/common-lisp.sh" "$NIX_LISP_EXEC_CODE" \ + "(load \"$NIX_QUICKLISP_DIR/setup.lisp\")" "${args[@]}" + ;; +esac diff --git a/pkgs/development/ocaml-modules/ansiterminal/default.nix b/pkgs/development/ocaml-modules/ansiterminal/default.nix index 64b4f8263ff..615e1d1b673 100644 --- a/pkgs/development/ocaml-modules/ansiterminal/default.nix +++ b/pkgs/development/ocaml-modules/ansiterminal/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation { this part is currently work in progress). ''; license = licenses.lgpl3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ maintainers.jirkamarsik ]; }; } diff --git a/pkgs/development/ocaml-modules/asn1-combinators/default.nix b/pkgs/development/ocaml-modules/asn1-combinators/default.nix index b3555d7fddb..544db9e0d78 100644 --- a/pkgs/development/ocaml-modules/asn1-combinators/default.nix +++ b/pkgs/development/ocaml-modules/asn1-combinators/default.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation { meta = { homepage = https://github.com/mirleft/ocaml-asn1-combinators; description = "Combinators for expressing ASN.1 grammars in OCaml"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = stdenv.lib.licenses.bsd2; maintainers = with stdenv.lib.maintainers; [ vbgl ]; broken = stdenv.isi686; # https://github.com/mirleft/ocaml-asn1-combinators/issues/13 diff --git a/pkgs/development/ocaml-modules/base64/default.nix b/pkgs/development/ocaml-modules/base64/default.nix index f7e4513d826..aabb9f8a76a 100644 --- a/pkgs/development/ocaml-modules/base64/default.nix +++ b/pkgs/development/ocaml-modules/base64/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation { meta = { homepage = https://github.com/mirage/ocaml-base64; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; description = "Base64 encoding and decoding in OCaml"; license = stdenv.lib.licenses.isc; maintainers = with stdenv.lib.maintainers; [ vbgl ]; diff --git a/pkgs/development/ocaml-modules/batteries/default.nix b/pkgs/development/ocaml-modules/batteries/default.nix index 06618fff819..ae4dcc93076 100644 --- a/pkgs/development/ocaml-modules/batteries/default.nix +++ b/pkgs/development/ocaml-modules/batteries/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation { language. ''; license = stdenv.lib.licenses.lgpl21Plus; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.z77z ]; diff --git a/pkgs/development/ocaml-modules/biniou/default.nix b/pkgs/development/ocaml-modules/biniou/default.nix index 565176276f9..d2d3159cde1 100644 --- a/pkgs/development/ocaml-modules/biniou/default.nix +++ b/pkgs/development/ocaml-modules/biniou/default.nix @@ -31,6 +31,6 @@ stdenv.mkDerivation rec { homepage = "${webpage}"; license = licenses.bsd3; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/bolt/default.nix b/pkgs/development/ocaml-modules/bolt/default.nix index 61c3d6f23b4..cf8b21edb50 100644 --- a/pkgs/development/ocaml-modules/bolt/default.nix +++ b/pkgs/development/ocaml-modules/bolt/default.nix @@ -48,7 +48,7 @@ EOF modeled after the famous log4j logging framework for Java. ''; license = licenses.lgpl3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ maintainers.jirkamarsik ]; }; } diff --git a/pkgs/development/ocaml-modules/calendar/default.nix b/pkgs/development/ocaml-modules/calendar/default.nix index 48aaf972503..c33deec9c78 100644 --- a/pkgs/development/ocaml-modules/calendar/default.nix +++ b/pkgs/development/ocaml-modules/calendar/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation { homepage = https://forge.ocamlcore.org/projects/calendar/; description = "An Objective Caml library managing dates and times"; license = "LGPL"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.gal_bolle ]; diff --git a/pkgs/development/ocaml-modules/camlzip/default.nix b/pkgs/development/ocaml-modules/camlzip/default.nix index 2024f5a5ab8..de800a295bc 100644 --- a/pkgs/development/ocaml-modules/camlzip/default.nix +++ b/pkgs/development/ocaml-modules/camlzip/default.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation { for reading from and writing to compressed files in these formats. ''; license = "LGPL+linking exceptions"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.z77z ]; diff --git a/pkgs/development/ocaml-modules/camomile/0.8.2.nix b/pkgs/development/ocaml-modules/camomile/0.8.2.nix index f6d22f62ec0..9f7201708af 100644 --- a/pkgs/development/ocaml-modules/camomile/0.8.2.nix +++ b/pkgs/development/ocaml-modules/camomile/0.8.2.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation { description = "A comprehensive Unicode library for OCaml"; license = stdenv.lib.licenses.lgpl21; branch = "0.8.2"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.z77z ]; diff --git a/pkgs/development/ocaml-modules/camomile/default.nix b/pkgs/development/ocaml-modules/camomile/default.nix index ecdc5bef295..11a7828f1e4 100644 --- a/pkgs/development/ocaml-modules/camomile/default.nix +++ b/pkgs/development/ocaml-modules/camomile/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation { homepage = https://github.com/yoriyuki/Camomile/tree/master/Camomile; description = "A comprehensive Unicode library for OCaml"; license = stdenv.lib.licenses.lgpl21; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.z77z ]; diff --git a/pkgs/development/ocaml-modules/cil/default.nix b/pkgs/development/ocaml-modules/cil/default.nix index 43522e180b6..1753084910b 100644 --- a/pkgs/development/ocaml-modules/cil/default.nix +++ b/pkgs/development/ocaml-modules/cil/default.nix @@ -20,6 +20,6 @@ stdenv.mkDerivation { description = "A front-end for the C programming language that facilitates program analysis and transformation"; license = licenses.bsd3; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/cmdliner/default.nix b/pkgs/development/ocaml-modules/cmdliner/default.nix index ba955061740..80992bdfe7c 100644 --- a/pkgs/development/ocaml-modules/cmdliner/default.nix +++ b/pkgs/development/ocaml-modules/cmdliner/default.nix @@ -35,6 +35,6 @@ stdenv.mkDerivation { description = "An OCaml module for the declarative definition of command line interfaces"; license = licenses.bsd3; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/config-file/default.nix b/pkgs/development/ocaml-modules/config-file/default.nix index 15eb0666777..4ca9d4a30e0 100644 --- a/pkgs/development/ocaml-modules/config-file/default.nix +++ b/pkgs/development/ocaml-modules/config-file/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation { meta = { homepage = http://config-file.forge.ocamlcore.org/; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; description = "An OCaml library used to manage the configuration file(s) of an application"; license = stdenv.lib.licenses.lgpl2Plus; maintainers = with stdenv.lib.maintainers; [ vbgl ]; diff --git a/pkgs/development/ocaml-modules/containers/default.nix b/pkgs/development/ocaml-modules/containers/default.nix index 5c2447614ad..4a3ed5723dd 100644 --- a/pkgs/development/ocaml-modules/containers/default.nix +++ b/pkgs/development/ocaml-modules/containers/default.nix @@ -1,6 +1,14 @@ -{ stdenv, fetchFromGitHub, ocaml, findlib, cppo, gen, sequence, qtest, ounit }: +{ stdenv, fetchFromGitHub, ocaml, findlib, cppo, gen, sequence, qtest, ounit, ocaml_oasis, result }: -let version = "0.15"; in +let + + mkpath = p: + let v = stdenv.lib.getVersion ocaml; in + "${p}/lib/ocaml/${v}/site-lib"; + + version = "0.16"; + +in stdenv.mkDerivation { name = "ocaml-containers-${version}"; @@ -9,10 +17,24 @@ stdenv.mkDerivation { owner = "c-cube"; repo = "ocaml-containers"; rev = "${version}"; - sha256 = "13mdl8jp4ymg1wip7lqmh4224x4jnji3frm1ik55vvm3ac8caqng"; + sha256 = "1mc33b4nvn9k3r4k56amxr804bg5ndhxv92cmjzg5pf4qh220c2h"; }; - buildInputs = [ ocaml findlib cppo gen sequence qtest ounit ]; + buildInputs = [ ocaml findlib cppo gen sequence qtest ounit ocaml_oasis ]; + + propagatedBuildInputs = [ result ]; + + preConfigure = '' + # The following is done so that the '#use "topfind"' directive works in the ocaml top-level + export HOME="$(mktemp -d)" + export OCAML_TOPLEVEL_PATH="${mkpath findlib}" + cat < $HOME/.ocamlinit +let () = + try Topdirs.dir_directory (Sys.getenv "OCAML_TOPLEVEL_PATH") + with Not_found -> () +;; +EOF + ''; configureFlags = [ "--enable-unix" @@ -42,6 +64,6 @@ stdenv.mkDerivation { helpers for unix and threads. ''; license = stdenv.lib.licenses.bsd2; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/cpdf/default.nix b/pkgs/development/ocaml-modules/cpdf/default.nix index 20f03667c3b..d29136dd434 100644 --- a/pkgs/development/ocaml-modules/cpdf/default.nix +++ b/pkgs/development/ocaml-modules/cpdf/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation { meta = { homepage = http://www.coherentpdf.com/; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; description = "PDF Command Line Tools"; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/cryptgps/default.nix b/pkgs/development/ocaml-modules/cryptgps/default.nix index 8f18658b0f6..114aa7e5ffd 100644 --- a/pkgs/development/ocaml-modules/cryptgps/default.nix +++ b/pkgs/development/ocaml-modules/cryptgps/default.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation { itself. ''; license = stdenv.lib.licenses.mit; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.z77z ]; diff --git a/pkgs/development/ocaml-modules/cryptokit/default.nix b/pkgs/development/ocaml-modules/cryptokit/default.nix index cfb353bfe3e..f56ec3cbed6 100644 --- a/pkgs/development/ocaml-modules/cryptokit/default.nix +++ b/pkgs/development/ocaml-modules/cryptokit/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation { meta = { homepage = "http://pauillac.inria.fr/~xleroy/software.html"; description = "A library of cryptographic primitives for OCaml"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.z77z ]; diff --git a/pkgs/development/ocaml-modules/cstruct/default.nix b/pkgs/development/ocaml-modules/cstruct/default.nix index 5b2eebed9e0..57a057e0eaa 100644 --- a/pkgs/development/ocaml-modules/cstruct/default.nix +++ b/pkgs/development/ocaml-modules/cstruct/default.nix @@ -24,6 +24,6 @@ stdenv.mkDerivation { description = "Map OCaml arrays onto C-like structs"; license = stdenv.lib.licenses.isc; maintainers = [ maintainers.vbgl maintainers.ericbmerritt ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/csv/default.nix b/pkgs/development/ocaml-modules/csv/default.nix index e04523cd14c..760b981dd2c 100644 --- a/pkgs/development/ocaml-modules/csv/default.nix +++ b/pkgs/development/ocaml-modules/csv/default.nix @@ -27,6 +27,6 @@ stdenv.mkDerivation { homepage = https://github.com/Chris00/ocaml-csv; license = licenses.lgpl21; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/dolog/default.nix b/pkgs/development/ocaml-modules/dolog/default.nix index 898c2b67fd6..5987c53898f 100644 --- a/pkgs/development/ocaml-modules/dolog/default.nix +++ b/pkgs/development/ocaml-modules/dolog/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation { meta = { homepage = https://github.com/UnixJunkie/dolog; description = "Minimalistic lazy logger in OCaml"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = stdenv.lib.licenses.bsd3; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/dypgen/default.nix b/pkgs/development/ocaml-modules/dypgen/default.nix index 63a48219b15..b579c073f29 100644 --- a/pkgs/development/ocaml-modules/dypgen/default.nix +++ b/pkgs/development/ocaml-modules/dypgen/default.nix @@ -28,6 +28,6 @@ stdenv.mkDerivation { homepage = http://dypgen.free.fr; description = "Dypgen GLR self extensible parser generator"; license = stdenv.lib.licenses.cecill-b; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/eliom/default.nix b/pkgs/development/ocaml-modules/eliom/default.nix index ef0a88fb228..80b5b9eae0e 100644 --- a/pkgs/development/ocaml-modules/eliom/default.nix +++ b/pkgs/development/ocaml-modules/eliom/default.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation rec license = stdenv.lib.licenses.lgpl21; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.gal_bolle ]; }; diff --git a/pkgs/development/ocaml-modules/enumerate/default.nix b/pkgs/development/ocaml-modules/enumerate/default.nix index ce20cdd47bb..a9475649ff6 100644 --- a/pkgs/development/ocaml-modules/enumerate/default.nix +++ b/pkgs/development/ocaml-modules/enumerate/default.nix @@ -19,6 +19,6 @@ stdenv.mkDerivation { homepage = https://ocaml.janestreet.com/; description = "Quotation expanders for enumerating finite types"; license = stdenv.lib.licenses.asl20; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/erm_xml/default.nix b/pkgs/development/ocaml-modules/erm_xml/default.nix index 0ff2a725ea2..ecfdb846ff1 100644 --- a/pkgs/development/ocaml-modules/erm_xml/default.nix +++ b/pkgs/development/ocaml-modules/erm_xml/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation { meta = { homepage = https://github.com/ermine/xml; description = "XML Parser for discrete data"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = stdenv.lib.licenses.bsd3; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/erm_xmpp/default.nix b/pkgs/development/ocaml-modules/erm_xmpp/default.nix index 7508a14738d..efa239f6c33 100644 --- a/pkgs/development/ocaml-modules/erm_xmpp/default.nix +++ b/pkgs/development/ocaml-modules/erm_xmpp/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation { meta = { homepage = https://github.com/ermine/xmpp; description = "OCaml based XMPP implementation"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = stdenv.lib.licenses.bsd3; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/extlib/default.nix b/pkgs/development/ocaml-modules/extlib/default.nix index 9f5f8119fb6..492b10bb09b 100644 --- a/pkgs/development/ocaml-modules/extlib/default.nix +++ b/pkgs/development/ocaml-modules/extlib/default.nix @@ -23,6 +23,6 @@ stdenv.mkDerivation { homepage = http://code.google.com/p/ocaml-extlib/; description = "Enhancements to the OCaml Standard Library modules"; license = stdenv.lib.licenses.lgpl21; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/ezjsonm/default.nix b/pkgs/development/ocaml-modules/ezjsonm/default.nix index 25a9e4128bf..fd8ce1c3389 100644 --- a/pkgs/development/ocaml-modules/ezjsonm/default.nix +++ b/pkgs/development/ocaml-modules/ezjsonm/default.nix @@ -21,6 +21,6 @@ stdenv.mkDerivation { homepage = https://github.com/mirage/ezjsonm; license = stdenv.lib.licenses.isc; maintainers = with stdenv.lib.maintainers; [ vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/fieldslib/default.nix b/pkgs/development/ocaml-modules/fieldslib/default.nix index 38548790329..bbefcc0f3cc 100644 --- a/pkgs/development/ocaml-modules/fieldslib/default.nix +++ b/pkgs/development/ocaml-modules/fieldslib/default.nix @@ -20,6 +20,6 @@ stdenv.mkDerivation { 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"; license = licenses.asl20; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/fileutils/default.nix b/pkgs/development/ocaml-modules/fileutils/default.nix index 7a8a80a446c..3ffcfada3d5 100644 --- a/pkgs/development/ocaml-modules/fileutils/default.nix +++ b/pkgs/development/ocaml-modules/fileutils/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation { meta = { homepage = https://forge.ocamlcore.org/projects/ocaml-fileutils/; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; description = "Library to provide pure OCaml functions to manipulate real file (POSIX like) and filename"; license = stdenv.lib.licenses.lgpl21Plus; maintainers = with stdenv.lib.maintainers; [ vbgl ]; diff --git a/pkgs/development/ocaml-modules/fix/default.nix b/pkgs/development/ocaml-modules/fix/default.nix index b0429e0e910..77e2461bda0 100644 --- a/pkgs/development/ocaml-modules/fix/default.nix +++ b/pkgs/development/ocaml-modules/fix/default.nix @@ -20,6 +20,6 @@ stdenv.mkDerivation { description = "A simple OCaml module for computing the least solution of a system of monotone equations"; license = licenses.cecill-c; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/fontconfig/default.nix b/pkgs/development/ocaml-modules/fontconfig/default.nix index 65311683d0c..635572ea9c8 100644 --- a/pkgs/development/ocaml-modules/fontconfig/default.nix +++ b/pkgs/development/ocaml-modules/fontconfig/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation { meta = { description = "Fontconfig bindings for OCaml"; license = stdenv.lib.licenses.gpl2Plus; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/functory/default.nix b/pkgs/development/ocaml-modules/functory/default.nix index 35dd542af9e..6d4deac38c4 100644 --- a/pkgs/development/ocaml-modules/functory/default.nix +++ b/pkgs/development/ocaml-modules/functory/default.nix @@ -22,6 +22,6 @@ stdenv.mkDerivation { description = "A distributed computing library for Objective Caml which facilitates distributed execution of parallelizable computations in a seamless fashion"; license = licenses.lgpl21; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/gapi-ocaml/default.nix b/pkgs/development/ocaml-modules/gapi-ocaml/default.nix index 51afb39ca65..ac85a03cc98 100644 --- a/pkgs/development/ocaml-modules/gapi-ocaml/default.nix +++ b/pkgs/development/ocaml-modules/gapi-ocaml/default.nix @@ -19,6 +19,6 @@ stdenv.mkDerivation rec { homepage = http://gapi-ocaml.forge.ocamlcore.org; license = stdenv.lib.licenses.mit; maintainers = with stdenv.lib.maintainers; [ bennofs ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/gen/default.nix b/pkgs/development/ocaml-modules/gen/default.nix index 0b8f4253e76..90f74b2c602 100644 --- a/pkgs/development/ocaml-modules/gen/default.nix +++ b/pkgs/development/ocaml-modules/gen/default.nix @@ -20,6 +20,6 @@ stdenv.mkDerivation { homepage = https://github.com/c-cube/gen; description = "Simple, efficient iterators for OCaml"; license = stdenv.lib.licenses.bsd3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/gg/default.nix b/pkgs/development/ocaml-modules/gg/default.nix index 653b627fc0b..9351bfa7520 100644 --- a/pkgs/development/ocaml-modules/gg/default.nix +++ b/pkgs/development/ocaml-modules/gg/default.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { raster data. ''; homepage = "${webpage}"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = licenses.bsd3; maintainers = [ maintainers.jirkamarsik ]; }; diff --git a/pkgs/development/ocaml-modules/gtktop/default.nix b/pkgs/development/ocaml-modules/gtktop/default.nix index ca068788287..de0334c2a18 100644 --- a/pkgs/development/ocaml-modules/gtktop/default.nix +++ b/pkgs/development/ocaml-modules/gtktop/default.nix @@ -20,6 +20,6 @@ stdenv.mkDerivation { description = "A small OCaml library to ease the creation of graphical toplevels"; license = stdenv.lib.licenses.lgpl3; maintainers = with stdenv.lib.maintainers; [ vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/hex/default.nix b/pkgs/development/ocaml-modules/hex/default.nix index a9d30f1a9e7..07b7773ff2c 100644 --- a/pkgs/development/ocaml-modules/hex/default.nix +++ b/pkgs/development/ocaml-modules/hex/default.nix @@ -22,6 +22,6 @@ stdenv.mkDerivation { homepage = https://github.com/mirage/ocaml-hex; license = stdenv.lib.licenses.isc; maintainers = with stdenv.lib.maintainers; [ vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/http/default.nix b/pkgs/development/ocaml-modules/http/default.nix index 932a5811bec..d2fa675bbd8 100644 --- a/pkgs/development/ocaml-modules/http/default.nix +++ b/pkgs/development/ocaml-modules/http/default.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation { meta = with stdenv.lib; { homepage = http://ocaml-http.forge.ocamlcore.org/; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; description = "do it yourself (OCaml) HTTP daemon"; license = licenses.lgpl2; maintainers = with maintainers; [ roconnor vbgl ]; diff --git a/pkgs/development/ocaml-modules/io-page/default.nix b/pkgs/development/ocaml-modules/io-page/default.nix index c883175f6e0..8580bb64713 100644 --- a/pkgs/development/ocaml-modules/io-page/default.nix +++ b/pkgs/development/ocaml-modules/io-page/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation { meta = { homepage = https://github.com/mirage/io-page; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; description = "IO memory page library for Mirage backends"; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/iso8601/default.nix b/pkgs/development/ocaml-modules/iso8601/default.nix index 4b194332d08..0aad6f7b13b 100644 --- a/pkgs/development/ocaml-modules/iso8601/default.nix +++ b/pkgs/development/ocaml-modules/iso8601/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation { homepage = http://sagotch.github.io/ISO8601.ml/; description = "ISO 8601 and RFC 3999 date parsing for OCaml"; license = stdenv.lib.licenses.mit; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/javalib/default.nix b/pkgs/development/ocaml-modules/javalib/default.nix index 7272e668aa2..894c93eba4d 100644 --- a/pkgs/development/ocaml-modules/javalib/default.nix +++ b/pkgs/development/ocaml-modules/javalib/default.nix @@ -38,6 +38,6 @@ stdenv.mkDerivation rec { homepage = "${webpage}"; license = licenses.lgpl3; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/jsonm/default.nix b/pkgs/development/ocaml-modules/jsonm/default.nix index e81c94d8b24..cc5de781bee 100644 --- a/pkgs/development/ocaml-modules/jsonm/default.nix +++ b/pkgs/development/ocaml-modules/jsonm/default.nix @@ -25,6 +25,6 @@ stdenv.mkDerivation { homepage = http://erratique.ch/software/jsonm; license = stdenv.lib.licenses.bsd3; maintainers = with stdenv.lib.maintainers; [ vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/lablgtk-extras/1.4.nix b/pkgs/development/ocaml-modules/lablgtk-extras/1.4.nix index fbe9898fd81..dae81f1df16 100644 --- a/pkgs/development/ocaml-modules/lablgtk-extras/1.4.nix +++ b/pkgs/development/ocaml-modules/lablgtk-extras/1.4.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation { createFindlibDestdir = true; meta = { - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with stdenv.lib.maintainers; [ vbgl ]; homepage = http://gtk-extras.forge.ocamlcore.org/; description = "A collection of libraries and modules useful when developing OCaml/LablGtk2 applications"; diff --git a/pkgs/development/ocaml-modules/lablgtk-extras/default.nix b/pkgs/development/ocaml-modules/lablgtk-extras/default.nix index 80e5a72abf5..68019113f38 100644 --- a/pkgs/development/ocaml-modules/lablgtk-extras/default.nix +++ b/pkgs/development/ocaml-modules/lablgtk-extras/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation { createFindlibDestdir = true; meta = { - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with stdenv.lib.maintainers; [ vbgl ]; homepage = http://gtk-extras.forge.ocamlcore.org/; description = "A collection of libraries and modules useful when developing OCaml/LablGtk2 applications"; diff --git a/pkgs/development/ocaml-modules/lablgtk/2.14.0.nix b/pkgs/development/ocaml-modules/lablgtk/2.14.0.nix index 1815bfc64dd..bc4b490e853 100644 --- a/pkgs/development/ocaml-modules/lablgtk/2.14.0.nix +++ b/pkgs/development/ocaml-modules/lablgtk/2.14.0.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation (rec { meta = { branch = "2.14"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.z77z stdenv.lib.maintainers.roconnor diff --git a/pkgs/development/ocaml-modules/lablgtk/default.nix b/pkgs/development/ocaml-modules/lablgtk/default.nix index 4c1665540ec..a4d4314cd02 100644 --- a/pkgs/development/ocaml-modules/lablgtk/default.nix +++ b/pkgs/development/ocaml-modules/lablgtk/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation { ''; meta = with stdenv.lib; { - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ z77z roconnor vbgl ]; diff --git a/pkgs/development/ocaml-modules/lambda-term/1.6.nix b/pkgs/development/ocaml-modules/lambda-term/1.6.nix index 9f4b17f9b61..026f67d8ef4 100644 --- a/pkgs/development/ocaml-modules/lambda-term/1.6.nix +++ b/pkgs/development/ocaml-modules/lambda-term/1.6.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { homepage = https://github.com/diml/lambda-term; license = stdenv.lib.licenses.bsd3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; branch = "1.6"; maintainers = [ stdenv.lib.maintainers.gal_bolle diff --git a/pkgs/development/ocaml-modules/lambda-term/default.nix b/pkgs/development/ocaml-modules/lambda-term/default.nix index 0186ab055f5..ec9232645e7 100644 --- a/pkgs/development/ocaml-modules/lambda-term/default.nix +++ b/pkgs/development/ocaml-modules/lambda-term/default.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { homepage = https://github.com/diml/lambda-term; license = stdenv.lib.licenses.bsd3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.gal_bolle ]; diff --git a/pkgs/development/ocaml-modules/llvm/default.nix b/pkgs/development/ocaml-modules/llvm/default.nix index 57cf9fe4678..2f58c41ba35 100644 --- a/pkgs/development/ocaml-modules/llvm/default.nix +++ b/pkgs/development/ocaml-modules/llvm/default.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation { meta = { inherit (llvm.meta) license homepage; - inherit (ocaml.meta) platforms; + platforms = ocaml.meta.platforms or []; description = "OCaml bindings distributed with LLVM"; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/lwt/default.nix b/pkgs/development/ocaml-modules/lwt/default.nix index a018194a2ac..e8cdc180b72 100644 --- a/pkgs/development/ocaml-modules/lwt/default.nix +++ b/pkgs/development/ocaml-modules/lwt/default.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation { homepage = http://ocsigen.org/lwt; description = "Lightweight thread library for Objective Caml"; license = licenses.lgpl21; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ z77z vbgl gal_bolle ]; diff --git a/pkgs/development/ocaml-modules/macaque/default.nix b/pkgs/development/ocaml-modules/macaque/default.nix index 99c2a292fe8..a24859892fa 100644 --- a/pkgs/development/ocaml-modules/macaque/default.nix +++ b/pkgs/development/ocaml-modules/macaque/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation { description = "Macros for Caml Queries"; homepage = https://github.com/ocsigen/macaque; license = licenses.lgpl2; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/magic-mime/default.nix b/pkgs/development/ocaml-modules/magic-mime/default.nix index d77c3f68115..9c42aed37df 100644 --- a/pkgs/development/ocaml-modules/magic-mime/default.nix +++ b/pkgs/development/ocaml-modules/magic-mime/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation { meta = { homepage = https://github.com/mirage/ocaml-magic-mime; description = "Convert file extensions to MIME types"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = stdenv.lib.licenses.isc; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/menhir/generic.nix b/pkgs/development/ocaml-modules/menhir/generic.nix index 8758ff3cffb..088c2db061b 100644 --- a/pkgs/development/ocaml-modules/menhir/generic.nix +++ b/pkgs/development/ocaml-modules/menhir/generic.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation { qpl /* generator */ lgpl2 /* library */ ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ z77z ]; }; } diff --git a/pkgs/development/ocaml-modules/nocrypto/default.nix b/pkgs/development/ocaml-modules/nocrypto/default.nix index a5d73839cb2..ed13a56955b 100644 --- a/pkgs/development/ocaml-modules/nocrypto/default.nix +++ b/pkgs/development/ocaml-modules/nocrypto/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation { meta = { homepage = https://github.com/mirleft/ocaml-nocrypto; description = "Simplest possible crypto to support TLS"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = stdenv.lib.licenses.bsd2; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/ocaml-cairo/default.nix b/pkgs/development/ocaml-modules/ocaml-cairo/default.nix index f77bd3acc62..f4076fbd95f 100644 --- a/pkgs/development/ocaml-modules/ocaml-cairo/default.nix +++ b/pkgs/development/ocaml-modules/ocaml-cairo/default.nix @@ -40,6 +40,6 @@ stdenv.mkDerivation { homepage = http://cairographics.org/cairo-ocaml; description = "ocaml bindings for cairo library"; license = stdenv.lib.licenses.gpl2; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/ocaml-cairo2/default.nix b/pkgs/development/ocaml-modules/ocaml-cairo2/default.nix index 97178ac701f..6b9f6f09ea3 100644 --- a/pkgs/development/ocaml-modules/ocaml-cairo2/default.nix +++ b/pkgs/development/ocaml-modules/ocaml-cairo2/default.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation { and SVG file output. ''; license = licenses.lgpl3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ maintainers.jirkamarsik ]; }; } diff --git a/pkgs/development/ocaml-modules/ocaml-result/default.nix b/pkgs/development/ocaml-modules/ocaml-result/default.nix index 8b6e0966f7e..f531de5118e 100644 --- a/pkgs/development/ocaml-modules/ocaml-result/default.nix +++ b/pkgs/development/ocaml-modules/ocaml-result/default.nix @@ -25,6 +25,6 @@ stdenv.mkDerivation { Result module defined in this library. ''; license = stdenv.lib.licenses.bsd3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/ocaml-text/default.nix b/pkgs/development/ocaml-modules/ocaml-text/default.nix index 8bbf08e3c74..9c84045de60 100644 --- a/pkgs/development/ocaml-modules/ocaml-text/default.nix +++ b/pkgs/development/ocaml-modules/ocaml-text/default.nix @@ -19,6 +19,6 @@ stdenv.mkDerivation { homepage = "http://ocaml-text.forge.ocamlcore.org/"; description = "A library for convenient text manipulation"; license = stdenv.lib.licenses.bsd3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/ocamlgraph/default.nix b/pkgs/development/ocaml-modules/ocamlgraph/default.nix index c7427558314..bbef4e01015 100644 --- a/pkgs/development/ocaml-modules/ocamlgraph/default.nix +++ b/pkgs/development/ocaml-modules/ocamlgraph/default.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation { homepage = http://ocamlgraph.lri.fr/; description = "Graph library for Objective Caml"; license = stdenv.lib.licenses.gpl2Oss; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.kkallio ]; diff --git a/pkgs/development/ocaml-modules/ocamlnat/default.nix b/pkgs/development/ocaml-modules/ocamlnat/default.nix index dc5d191f75a..1aeb43b8cf4 100644 --- a/pkgs/development/ocaml-modules/ocamlnat/default.nix +++ b/pkgs/development/ocaml-modules/ocamlnat/default.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation { x86 or x86-64 processors. Support for additional architectures and operating systems is planned, but not yet available. ''; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.z77z ]; diff --git a/pkgs/development/ocaml-modules/ocamlnet/default.nix b/pkgs/development/ocaml-modules/ocamlnet/default.nix index 0948b7132a4..8ef940e75b0 100644 --- a/pkgs/development/ocaml-modules/ocamlnet/default.nix +++ b/pkgs/development/ocaml-modules/ocamlnet/default.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation { homepage = http://projects.camlcity.org/projects/ocamlnet.html; description = "A library implementing Internet protocols (http, cgi, email, etc.) for OCaml"; license = "Most Ocamlnet modules are released under the zlib/png license. The HTTP server module Nethttpd is, however, under the GPL."; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.z77z ]; diff --git a/pkgs/development/ocaml-modules/ocplib-endian/default.nix b/pkgs/development/ocaml-modules/ocplib-endian/default.nix index aede92fc0f0..351f667a8c9 100644 --- a/pkgs/development/ocaml-modules/ocplib-endian/default.nix +++ b/pkgs/development/ocaml-modules/ocplib-endian/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation { description = "Optimised functions to read and write int16/32/64"; homepage = https://github.com/OCamlPro/ocplib-endian; license = stdenv.lib.licenses.lgpl21; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/ocsigen-deriving/default.nix b/pkgs/development/ocaml-modules/ocsigen-deriving/default.nix index 89efb58ecbb..d2d66994604 100644 --- a/pkgs/development/ocaml-modules/ocsigen-deriving/default.nix +++ b/pkgs/development/ocaml-modules/ocsigen-deriving/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation { homepage = https://github.com/ocsigen/deriving; description = "Extension to OCaml for deriving functions from type declarations"; license = stdenv.lib.licenses.mit; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with stdenv.lib.maintainers; [ gal_bolle vbgl ]; diff --git a/pkgs/development/ocaml-modules/ocsigen-server/default.nix b/pkgs/development/ocaml-modules/ocsigen-server/default.nix index a1bd7d16234..d2613830a7c 100644 --- a/pkgs/development/ocaml-modules/ocsigen-server/default.nix +++ b/pkgs/development/ocaml-modules/ocsigen-server/default.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation { 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. ''; license = stdenv.lib.licenses.lgpl21; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.gal_bolle ]; }; diff --git a/pkgs/development/ocaml-modules/ocurl/default.nix b/pkgs/development/ocaml-modules/ocurl/default.nix index 2cfb6af68a8..d711bae0f34 100644 --- a/pkgs/development/ocaml-modules/ocurl/default.nix +++ b/pkgs/development/ocaml-modules/ocurl/default.nix @@ -14,6 +14,6 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.bsd3; homepage = http://ocurl.forge.ocamlcore.org/; maintainers = with stdenv.lib.maintainers; [ bennofs ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/odn/default.nix b/pkgs/development/ocaml-modules/odn/default.nix index eaeb7e7b22f..b3c7ddb8433 100644 --- a/pkgs/development/ocaml-modules/odn/default.nix +++ b/pkgs/development/ocaml-modules/odn/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation { description = "Store data using OCaml notation"; homepage = https://forge.ocamlcore.org/projects/odn/; license = licenses.lgpl21; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ vbgl z77z ]; diff --git a/pkgs/development/ocaml-modules/ojquery/default.nix b/pkgs/development/ocaml-modules/ojquery/default.nix index c048f62e89c..054303ac850 100644 --- a/pkgs/development/ocaml-modules/ojquery/default.nix +++ b/pkgs/development/ocaml-modules/ojquery/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { description = "jQuery Binding for Eliom"; homepage = http://ocsigen.org/ojquery/; license = stdenv.lib.licenses.lgpl3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/optcomp/default.nix b/pkgs/development/ocaml-modules/optcomp/default.nix index b134a842c5c..12075145415 100644 --- a/pkgs/development/ocaml-modules/optcomp/default.nix +++ b/pkgs/development/ocaml-modules/optcomp/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation { homepage = https://github.com/diml/optcomp; description = "Optional compilation for OCaml with cpp-like directives"; license = stdenv.lib.licenses.bsd3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.gal_bolle ]; diff --git a/pkgs/development/ocaml-modules/otfm/default.nix b/pkgs/development/ocaml-modules/otfm/default.nix index 5a118c0bcd8..a2047a0fe78 100644 --- a/pkgs/development/ocaml-modules/otfm/default.nix +++ b/pkgs/development/ocaml-modules/otfm/default.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { of them. ''; homepage = "${webpage}"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = licenses.bsd3; maintainers = [ maintainers.jirkamarsik ]; }; diff --git a/pkgs/development/ocaml-modules/ounit/default.nix b/pkgs/development/ocaml-modules/ounit/default.nix index ba0ce29bdf9..d449296ab70 100644 --- a/pkgs/development/ocaml-modules/ounit/default.nix +++ b/pkgs/development/ocaml-modules/ounit/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation { homepage = http://ounit.forge.ocamlcore.org/; description = "Unit test framework for OCaml"; license = stdenv.lib.licenses.mit; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.z77z ]; diff --git a/pkgs/development/ocaml-modules/pcre/default.nix b/pkgs/development/ocaml-modules/pcre/default.nix index 7f7caf8e5a8..dd152262ca7 100644 --- a/pkgs/development/ocaml-modules/pcre/default.nix +++ b/pkgs/development/ocaml-modules/pcre/default.nix @@ -22,7 +22,7 @@ buildOcaml { homepage = "https://bitbucket.org/mmottl/pcre-ocaml"; description = "An efficient C-library for pattern matching with Perl-style regular expressions in OCaml"; license = licenses.lgpl21; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ z77z vbmithr ]; }; } diff --git a/pkgs/development/ocaml-modules/pgocaml/default.nix b/pkgs/development/ocaml-modules/pgocaml/default.nix index 00c0d472f9a..f1bc4849a7f 100644 --- a/pkgs/development/ocaml-modules/pgocaml/default.nix +++ b/pkgs/development/ocaml-modules/pgocaml/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation { description = "An interface to PostgreSQL databases for OCaml applications"; homepage = http://pgocaml.forge.ocamlcore.org/; license = licenses.lgpl2; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/pprint/default.nix b/pkgs/development/ocaml-modules/pprint/default.nix index 18cc4817b13..e28f85b475c 100644 --- a/pkgs/development/ocaml-modules/pprint/default.nix +++ b/pkgs/development/ocaml-modules/pprint/default.nix @@ -23,6 +23,6 @@ stdenv.mkDerivation { description = "An OCaml adaptation of Wadler’s and Leijen’s prettier printer"; license = licenses.cecill-c; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/ppx_tools/default.nix b/pkgs/development/ocaml-modules/ppx_tools/default.nix index 4e99dcd1af4..1fea9bbd191 100644 --- a/pkgs/development/ocaml-modules/ppx_tools/default.nix +++ b/pkgs/development/ocaml-modules/ppx_tools/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation { description = "Tools for authors of ppx rewriters"; homepage = http://www.lexifi.com/ppx_tools; license = licenses.mit; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/pycaml/default.nix b/pkgs/development/ocaml-modules/pycaml/default.nix index 070bd270b11..403c39a465d 100644 --- a/pkgs/development/ocaml-modules/pycaml/default.nix +++ b/pkgs/development/ocaml-modules/pycaml/default.nix @@ -46,6 +46,6 @@ in stdenv.mkDerivation { homepage = "http://github.com/chemoelectric/pycaml"; description = "Bindings for python and ocaml"; license = "LGPL"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/qcheck/default.nix b/pkgs/development/ocaml-modules/qcheck/default.nix index 260a1fc9811..7d904e57633 100644 --- a/pkgs/development/ocaml-modules/qcheck/default.nix +++ b/pkgs/development/ocaml-modules/qcheck/default.nix @@ -24,6 +24,6 @@ stdenv.mkDerivation { homepage = https://github.com/c-cube/qcheck/; license = stdenv.lib.licenses.bsd2; maintainers = with stdenv.lib.maintainers; [ vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/qtest/default.nix b/pkgs/development/ocaml-modules/qtest/default.nix index e68a8729c01..f7e585b43b0 100644 --- a/pkgs/development/ocaml-modules/qtest/default.nix +++ b/pkgs/development/ocaml-modules/qtest/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation { meta = { description = "Inline (Unit) Tests for OCaml (formerly “qtest”)"; homepage = https://github.com/vincent-hugot/iTeML; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/re/default.nix b/pkgs/development/ocaml-modules/re/default.nix index 5e7ae1cba09..6b7ba1a13b2 100644 --- a/pkgs/development/ocaml-modules/re/default.nix +++ b/pkgs/development/ocaml-modules/re/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { meta = { homepage = https://github.com/ocaml/ocaml-re; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; description = "Pure OCaml regular expressions, with support for Perl and POSIX-style strings"; license = stdenv.lib.licenses.lgpl2; maintainers = with stdenv.lib.maintainers; [ vbgl ]; diff --git a/pkgs/development/ocaml-modules/react/default.nix b/pkgs/development/ocaml-modules/react/default.nix index dfc8dcd1439..943e5e1e8dc 100644 --- a/pkgs/development/ocaml-modules/react/default.nix +++ b/pkgs/development/ocaml-modules/react/default.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation { homepage = http://erratique.ch/software/react; description = "Applicative events and signals for OCaml"; license = licenses.bsd3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ z77z vbmithr gal_bolle]; }; } diff --git a/pkgs/development/ocaml-modules/reactivedata/default.nix b/pkgs/development/ocaml-modules/reactivedata/default.nix index eecae885302..ef0197f60f5 100644 --- a/pkgs/development/ocaml-modules/reactivedata/default.nix +++ b/pkgs/development/ocaml-modules/reactivedata/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation { description = "An OCaml module for functional reactive programming (FRP) based on React"; homepage = https://github.com/hhugo/reactiveData; license = licenses.lgpl21; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/safepass/default.nix b/pkgs/development/ocaml-modules/safepass/default.nix index 7fc5dadda74..2f941b923e3 100644 --- a/pkgs/development/ocaml-modules/safepass/default.nix +++ b/pkgs/development/ocaml-modules/safepass/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation { homepage = http://ocaml-safepass.forge.ocamlcore.org/; description = "An OCaml library offering facilities for the safe storage of user passwords"; license = stdenv.lib.licenses.lgpl21; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/sawja/default.nix b/pkgs/development/ocaml-modules/sawja/default.nix index 534a7684cec..cfc74ad1668 100644 --- a/pkgs/development/ocaml-modules/sawja/default.nix +++ b/pkgs/development/ocaml-modules/sawja/default.nix @@ -34,6 +34,6 @@ stdenv.mkDerivation rec { homepage = "${webpage}"; license = licenses.gpl3Plus; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/sequence/default.nix b/pkgs/development/ocaml-modules/sequence/default.nix index d9c49ece60d..c689aec1904 100644 --- a/pkgs/development/ocaml-modules/sequence/default.nix +++ b/pkgs/development/ocaml-modules/sequence/default.nix @@ -33,6 +33,6 @@ stdenv.mkDerivation { sequence is iterated/folded on. ''; license = stdenv.lib.licenses.bsd2; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/sexplib/108.08.00.nix b/pkgs/development/ocaml-modules/sexplib/108.08.00.nix index dd9e89bcef7..40b95e09e8b 100644 --- a/pkgs/development/ocaml-modules/sexplib/108.08.00.nix +++ b/pkgs/development/ocaml-modules/sexplib/108.08.00.nix @@ -25,6 +25,6 @@ stdenv.mkDerivation { description = "Library for serializing OCaml values to and from S-expressions"; license = licenses.asl20; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/sexplib/111.25.00.nix b/pkgs/development/ocaml-modules/sexplib/111.25.00.nix index 61d46e205fa..55b09c3fdc3 100644 --- a/pkgs/development/ocaml-modules/sexplib/111.25.00.nix +++ b/pkgs/development/ocaml-modules/sexplib/111.25.00.nix @@ -24,6 +24,6 @@ stdenv.mkDerivation { description = "Library for serializing OCaml values to and from S-expressions"; license = licenses.asl20; maintainers = [ maintainers.vbgl maintainers.ericbmerritt ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/sqlite3/default.nix b/pkgs/development/ocaml-modules/sqlite3/default.nix index 53549791b25..804e33fc738 100644 --- a/pkgs/development/ocaml-modules/sqlite3/default.nix +++ b/pkgs/development/ocaml-modules/sqlite3/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { homepage = http://mmottl.github.io/sqlite3-ocaml/; description = "OCaml bindings to the SQLite 3 database access library"; license = licenses.mit; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ z77z vbgl ]; diff --git a/pkgs/development/ocaml-modules/sqlite3EZ/default.nix b/pkgs/development/ocaml-modules/sqlite3EZ/default.nix index 94377a646c1..a6ff9f44116 100644 --- a/pkgs/development/ocaml-modules/sqlite3EZ/default.nix +++ b/pkgs/development/ocaml-modules/sqlite3EZ/default.nix @@ -21,6 +21,6 @@ stdenv.mkDerivation { description = "A thin wrapper for sqlite3-ocaml with a simplified interface"; license = licenses.mit; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/ssl/default.nix b/pkgs/development/ocaml-modules/ssl/default.nix index 6e3ded0b0f2..6eb43d07b68 100644 --- a/pkgs/development/ocaml-modules/ssl/default.nix +++ b/pkgs/development/ocaml-modules/ssl/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation { homepage = http://savonet.rastageeks.org/; description = "OCaml bindings for libssl "; license = "LGPL+link exception"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.z77z ]; diff --git a/pkgs/development/ocaml-modules/stringext/default.nix b/pkgs/development/ocaml-modules/stringext/default.nix index 961ee4b1fcd..05aa2c2da68 100644 --- a/pkgs/development/ocaml-modules/stringext/default.nix +++ b/pkgs/development/ocaml-modules/stringext/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation { meta = { homepage = https://github.com/rgrinberg/stringext; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; description = "Extra string functions for OCaml"; license = stdenv.lib.licenses.mit; maintainers = with stdenv.lib.maintainers; [ vbgl ]; diff --git a/pkgs/development/ocaml-modules/tsdl/default.nix b/pkgs/development/ocaml-modules/tsdl/default.nix index 85ea80aeafe..79a696632e1 100644 --- a/pkgs/development/ocaml-modules/tsdl/default.nix +++ b/pkgs/development/ocaml-modules/tsdl/default.nix @@ -44,6 +44,6 @@ stdenv.mkDerivation { homepage = "${webpage}"; description = "Thin bindings to the cross-platform SDL library"; license = licenses.bsd3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/twt/default.nix b/pkgs/development/ocaml-modules/twt/default.nix index 4ddbc6705a5..e5831be93bd 100644 --- a/pkgs/development/ocaml-modules/twt/default.nix +++ b/pkgs/development/ocaml-modules/twt/default.nix @@ -25,6 +25,6 @@ stdenv.mkDerivation { description = "“The Whitespace Thing” for OCaml"; license = licenses.mit; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/type_conv/108.08.00.nix b/pkgs/development/ocaml-modules/type_conv/108.08.00.nix index d3e32105f7d..e014da8b66a 100644 --- a/pkgs/development/ocaml-modules/type_conv/108.08.00.nix +++ b/pkgs/development/ocaml-modules/type_conv/108.08.00.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation { description = "Support library for OCaml preprocessor type conversions"; license = licenses.asl20; branch = "108"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ z77z ]; }; } diff --git a/pkgs/development/ocaml-modules/type_conv/109.60.01.nix b/pkgs/development/ocaml-modules/type_conv/109.60.01.nix index fe42dd5ddcb..b6747a48d95 100644 --- a/pkgs/development/ocaml-modules/type_conv/109.60.01.nix +++ b/pkgs/development/ocaml-modules/type_conv/109.60.01.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation { homepage = "http://forge.ocamlcore.org/projects/type-conv/"; description = "Support library for OCaml preprocessor type conversions"; license = stdenv.lib.licenses.lgpl21; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with stdenv.lib.maintainers; [ z77z ]; }; } diff --git a/pkgs/development/ocaml-modules/tyxml/default.nix b/pkgs/development/ocaml-modules/tyxml/default.nix index d3a0b3557c5..64c1de13fb3 100644 --- a/pkgs/development/ocaml-modules/tyxml/default.nix +++ b/pkgs/development/ocaml-modules/tyxml/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation { homepage = http://ocsigen.org/tyxml/; description = "A library that makes it almost impossible for your OCaml programs to generate wrong XML output, using static typing"; license = licenses.lgpl21; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ gal_bolle vbgl ]; diff --git a/pkgs/development/ocaml-modules/ulex/default.nix b/pkgs/development/ocaml-modules/ulex/default.nix index 61c52278621..1e0632387e3 100644 --- a/pkgs/development/ocaml-modules/ulex/default.nix +++ b/pkgs/development/ocaml-modules/ulex/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation { homepage = http://www.cduce.org/download.html; description = "A lexer generator for Unicode and OCaml"; license = stdenv.lib.licenses.mit; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.roconnor ]; }; } diff --git a/pkgs/development/ocaml-modules/uri/default.nix b/pkgs/development/ocaml-modules/uri/default.nix index 03620d05f54..dca989c88ef 100644 --- a/pkgs/development/ocaml-modules/uri/default.nix +++ b/pkgs/development/ocaml-modules/uri/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation { meta = { homepage = https://github.com/mirage/ocaml-uri; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; description = "RFC3986 URI parsing library for OCaml"; license = stdenv.lib.licenses.isc; maintainers = with stdenv.lib.maintainers; [ vbgl ]; diff --git a/pkgs/development/ocaml-modules/uucd/default.nix b/pkgs/development/ocaml-modules/uucd/default.nix index 476f0e9bbe8..8e497560c68 100644 --- a/pkgs/development/ocaml-modules/uucd/default.nix +++ b/pkgs/development/ocaml-modules/uucd/default.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "An OCaml module to decode the data of the Unicode character database from its XML representation"; homepage = "${webpage}"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ maintainers.vbgl ]; license = licenses.bsd3; }; diff --git a/pkgs/development/ocaml-modules/uucp/default.nix b/pkgs/development/ocaml-modules/uucp/default.nix index 67df949ac8b..4e4dd67e210 100644 --- a/pkgs/development/ocaml-modules/uucp/default.nix +++ b/pkgs/development/ocaml-modules/uucp/default.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation { meta = with stdenv.lib; { description = "An OCaml library providing efficient access to a selection of character properties of the Unicode character database"; homepage = "${webpage}"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = licenses.bsd3; maintainers = [ maintainers.vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/uuidm/default.nix b/pkgs/development/ocaml-modules/uuidm/default.nix index 78869f2f130..07ba10a74a9 100644 --- a/pkgs/development/ocaml-modules/uuidm/default.nix +++ b/pkgs/development/ocaml-modules/uuidm/default.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { 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"; homepage = http://erratique.ch/software/uuidm; license = licenses.bsd3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ maintainers.maurer ]; }; } diff --git a/pkgs/development/ocaml-modules/uunf/default.nix b/pkgs/development/ocaml-modules/uunf/default.nix index ece5fb5e3e3..4e5d73e4cb3 100644 --- a/pkgs/development/ocaml-modules/uunf/default.nix +++ b/pkgs/development/ocaml-modules/uunf/default.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "An OCaml module for normalizing Unicode text"; homepage = "${webpage}"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = licenses.bsd3; maintainers = [ maintainers.vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/uuseg/default.nix b/pkgs/development/ocaml-modules/uuseg/default.nix index 0101c43e504..5946fd2a70d 100644 --- a/pkgs/development/ocaml-modules/uuseg/default.nix +++ b/pkgs/development/ocaml-modules/uuseg/default.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation { meta = with stdenv.lib; { description = "An OCaml library for segmenting Unicode text"; homepage = "${webpage}"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = licenses.bsd3; maintainers = [ maintainers.vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/uutf/default.nix b/pkgs/development/ocaml-modules/uutf/default.nix index 26dc9742aeb..7c4cff57128 100644 --- a/pkgs/development/ocaml-modules/uutf/default.nix +++ b/pkgs/development/ocaml-modules/uutf/default.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Non-blocking streaming Unicode codec for OCaml"; homepage = "${webpage}"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = licenses.bsd3; maintainers = [ maintainers.vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/vg/default.nix b/pkgs/development/ocaml-modules/vg/default.nix index bfff4c68cef..17bb8eeb464 100644 --- a/pkgs/development/ocaml-modules/vg/default.nix +++ b/pkgs/development/ocaml-modules/vg/default.nix @@ -55,7 +55,7 @@ stdenv.mkDerivation rec { module. An API allows to implement new renderers. ''; homepage = "${webpage}"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = licenses.bsd3; maintainers = [ maintainers.jirkamarsik ]; }; diff --git a/pkgs/development/ocaml-modules/x509/default.nix b/pkgs/development/ocaml-modules/x509/default.nix index 0d9b657969d..c44ccb18982 100644 --- a/pkgs/development/ocaml-modules/x509/default.nix +++ b/pkgs/development/ocaml-modules/x509/default.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation { meta = { homepage = https://github.com/mirleft/ocaml-x509; description = "X509 (RFC5280) handling in OCaml"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = stdenv.lib.licenses.bsd2; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/xml-light/default.nix b/pkgs/development/ocaml-modules/xml-light/default.nix index 5eb4fbfd6b1..82f635afb68 100644 --- a/pkgs/development/ocaml-modules/xml-light/default.nix +++ b/pkgs/development/ocaml-modules/xml-light/default.nix @@ -38,6 +38,6 @@ stdenv.mkDerivation { homepage = "http://tech.motion-twin.com/xmllight.html"; license = stdenv.lib.licenses.lgpl21; maintainers = [ stdenv.lib.maintainers.romildo ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/xmlm/default.nix b/pkgs/development/ocaml-modules/xmlm/default.nix index dacaeea49f4..5dedfb396d5 100644 --- a/pkgs/development/ocaml-modules/xmlm/default.nix +++ b/pkgs/development/ocaml-modules/xmlm/default.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "An OCaml streaming codec to decode and encode the XML data format"; homepage = "${webpage}"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ maintainers.vbgl ]; license = licenses.bsd3; }; diff --git a/pkgs/development/ocaml-modules/yojson/default.nix b/pkgs/development/ocaml-modules/yojson/default.nix index 34bcc08275b..ab949f4f1f2 100644 --- a/pkgs/development/ocaml-modules/yojson/default.nix +++ b/pkgs/development/ocaml-modules/yojson/default.nix @@ -29,6 +29,6 @@ stdenv.mkDerivation { homepage = "http://mjambon.com/${pname}.html"; license = licenses.bsd3; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/zarith/default.nix b/pkgs/development/ocaml-modules/zarith/default.nix index ccd278a2faa..16a1ac3b30f 100644 --- a/pkgs/development/ocaml-modules/zarith/default.nix +++ b/pkgs/development/ocaml-modules/zarith/default.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { description = "fast, arbitrary precision OCaml integers"; homepage = "http://forge.ocamlcore.org/projects/zarith"; license = licenses.lgpl2; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ thoughtpolice vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/zed/default.nix b/pkgs/development/ocaml-modules/zed/default.nix index 935d3a56648..f9bf65cf814 100644 --- a/pkgs/development/ocaml-modules/zed/default.nix +++ b/pkgs/development/ocaml-modules/zed/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { ''; homepage = https://github.com/diml/zed; license = stdenv.lib.licenses.bsd3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.gal_bolle ]; diff --git a/pkgs/development/python-modules/bootstrapped-pip/default.nix b/pkgs/development/python-modules/bootstrapped-pip/default.nix index c0e5ae0ec77..dfa5f86944a 100644 --- a/pkgs/development/python-modules/bootstrapped-pip/default.nix +++ b/pkgs/development/python-modules/bootstrapped-pip/default.nix @@ -9,13 +9,17 @@ let url = "https://pypi.python.org/packages/3.5/s/setuptools/setuptools-19.4-py2.py3-none-any.whl"; sha256 = "0801e6d862ca4ce24d918420d62f07ee2fe736dc016e3afa99d2103e7a02e9a6"; }; + argparse_source = fetchurl { + url = "https://pypi.python.org/packages/2.7/a/argparse/argparse-1.4.0-py2.py3-none-any.whl"; + sha256 = "0533cr5w14da8wdb2q4py6aizvbvsdbk3sj7m1jx9lwznvnlf5n3"; + }; in stdenv.mkDerivation rec { name = "python-${python.version}-bootstrapped-pip-${version}"; - version = "8.0.2"; + version = "8.1.1"; src = fetchurl { url = "https://pypi.python.org/packages/py2.py3/p/pip/pip-${version}-py2.py3-none-any.whl"; - sha256 = "249a6f3194be8c2e8cb4d4be3f6fd16a9f1e3336218caffa8e7419e3816f9988"; + sha256 = "0p62v87lm595kwmxrnqxc81dr7h6maaxj1y28b00bf9ag11c7fa4"; }; unpackPhase = '' @@ -23,8 +27,11 @@ in stdenv.mkDerivation rec { unzip -d $out/${python.sitePackages} $src unzip -d $out/${python.sitePackages} ${setuptools_source} unzip -d $out/${python.sitePackages} ${wheel_source} + '' + stdenv.lib.optionalString (python.isPy26 or false) '' + unzip -d $out/${python.sitePackages} ${argparse_source} ''; + patchPhase = '' mkdir -p $out/bin ''; @@ -34,7 +41,9 @@ in stdenv.mkDerivation rec { installPhase = '' # install pip binary - echo '${python.interpreter} -m pip "$@"' > $out/bin/pip + echo '#!${python.interpreter}' > $out/bin/pip + echo 'import sys;from pip import main' >> $out/bin/pip + echo 'sys.exit(main())' >> $out/bin/pip chmod +x $out/bin/pip # wrap binaries with PYTHONPATH diff --git a/pkgs/development/python-modules/pyqt/5.x.nix b/pkgs/development/python-modules/pyqt/5.x.nix index 2cc1a82ca09..795019d0b41 100644 --- a/pkgs/development/python-modules/pyqt/5.x.nix +++ b/pkgs/development/python-modules/pyqt/5.x.nix @@ -11,7 +11,7 @@ in stdenv.mkDerivation { homepage = http://www.riverbankcomputing.co.uk; license = licenses.gpl3; platforms = platforms.mesaPlatforms; - maintainers = with maintainers; [ sander iyzsong ]; + maintainers = with maintainers; [ sander ]; }; src = fetchurl { diff --git a/pkgs/development/python-modules/setuptools/default.nix b/pkgs/development/python-modules/setuptools/default.nix index 74624063ba3..a924a1f3b85 100644 --- a/pkgs/development/python-modules/setuptools/default.nix +++ b/pkgs/development/python-modules/setuptools/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { version = "19.4"; # 18.4 and up breaks python34Packages.characteristic and many others src = fetchurl { - url = "http://pypi.python.org/packages/source/s/setuptools/${shortName}.tar.gz"; + url = "https://pypi.python.org/packages/source/s/setuptools/${shortName}.tar.gz"; sha256 = "214bf29933f47cf25e6faa569f710731728a07a19cae91ea64f826051f68a8cf"; }; diff --git a/pkgs/development/python-modules/wxPython/generic.nix b/pkgs/development/python-modules/wxPython/generic.nix index 3151dbcfac3..16c7c126318 100644 --- a/pkgs/development/python-modules/wxPython/generic.nix +++ b/pkgs/development/python-modules/wxPython/generic.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pkgconfig, python, isPy3k, isPyPy, wxGTK, openglSupport ? true, pyopengl -, version, sha256, wrapPython, setuptools, ... +, version, sha256, wrapPython, setuptools, libX11, ... }: assert wxGTK.unicode; @@ -17,9 +17,11 @@ stdenv.mkDerivation rec { }; pythonPath = [ python setuptools ]; - buildInputs = [ python setuptools pkgconfig wxGTK (wxGTK.gtk) wrapPython ] ++ stdenv.lib.optional openglSupport pyopengl; + buildInputs = [ python setuptools pkgconfig wxGTK (wxGTK.gtk) wrapPython libX11 ] ++ stdenv.lib.optional openglSupport pyopengl; preConfigure = "cd wxPython"; + NIX_LDFLAGS = "-lX11 -lgdk-x11-2.0"; + installPhase = '' ${python.interpreter} setup.py install WXPORT=gtk2 NO_HEADERS=1 BUILD_GLCANVAS=${if openglSupport then "1" else "0"} UNICODE=1 --prefix=$out wrapPythonPrograms diff --git a/pkgs/development/interpreters/ruby/bundix/default.nix b/pkgs/development/ruby-modules/bundix/default.nix similarity index 93% rename from pkgs/development/interpreters/ruby/bundix/default.nix rename to pkgs/development/ruby-modules/bundix/default.nix index 1ce2528291e..ac3abcdcdf7 100644 --- a/pkgs/development/interpreters/ruby/bundix/default.nix +++ b/pkgs/development/ruby-modules/bundix/default.nix @@ -5,9 +5,9 @@ buildRubyGem rec { name = "${gemName}-${version}"; gemName = "bundix"; - version = "2.0.5"; + version = "2.0.8"; - sha256 = "0bsynhr44jz6nih0xn7v32h1qvywnb5335ka208gn7jp6bjwabhy"; + sha256 = "0ikpf2g01izadjpdnc4k2rb9v4g11f1jk2y5alxc7n7rxjkwdc66"; buildInputs = [bundler]; diff --git a/pkgs/development/interpreters/ruby/bundler-env/default.nix b/pkgs/development/ruby-modules/bundler-env/default.nix similarity index 94% rename from pkgs/development/interpreters/ruby/bundler-env/default.nix rename to pkgs/development/ruby-modules/bundler-env/default.nix index 0c9ed40d3f8..d5e2154ab3b 100644 --- a/pkgs/development/interpreters/ruby/bundler-env/default.nix +++ b/pkgs/development/ruby-modules/bundler-env/default.nix @@ -1,6 +1,5 @@ { stdenv, runCommand, writeText, writeScript, writeScriptBin, ruby, lib , callPackage, defaultGemConfig, fetchurl, fetchgit, buildRubyGem, buildEnv -, rubygems , git , makeWrapper , bundler @@ -28,10 +27,9 @@ let ); hasBundler = builtins.hasAttr "bundler" importedGemset; bundler = if hasBundler then gems.bundler else defs.bundler.override (attrs: { inherit ruby; }); - rubygems = defs.rubygems.override (attrs: { inherit ruby; }); gems = lib.flip lib.mapAttrs configuredGemset (name: attrs: buildRubyGem ((removeAttrs attrs ["source"]) // attrs.source // { - inherit ruby rubygems; + inherit ruby; gemName = name; gemPath = map (gemName: gems."${gemName}") (attrs.dependencies or []); })); @@ -45,7 +43,6 @@ let cd $out chmod +w Gemfile.lock - source ${rubygems}/nix-support/setup-hook export GEM_PATH=${bundler}/${ruby.gemPath} ${ruby}/bin/ruby -rubygems -e \ "require 'bundler'; Bundler.definition.lock('Gemfile.lock')" @@ -56,8 +53,6 @@ let paths = envPaths; pathsToLink = [ "/lib" ]; postBuild = '' - source ${rubygems}/nix-support/setup-hook - ${ruby}/bin/ruby ${./gen-bin-stubs.rb} \ "${ruby}/bin/ruby" \ "${confFiles}/Gemfile" \ diff --git a/pkgs/development/interpreters/ruby/bundler-env/gen-bin-stubs.rb b/pkgs/development/ruby-modules/bundler-env/gen-bin-stubs.rb similarity index 87% rename from pkgs/development/interpreters/ruby/bundler-env/gen-bin-stubs.rb rename to pkgs/development/ruby-modules/bundler-env/gen-bin-stubs.rb index fac9c9ad944..fa77682cfd5 100644 --- a/pkgs/development/interpreters/ruby/bundler-env/gen-bin-stubs.rb +++ b/pkgs/development/ruby-modules/bundler-env/gen-bin-stubs.rb @@ -32,10 +32,8 @@ paths.each do |path| ENV["BUNDLE_GEMFILE"] = "#{gemfile}" ENV["BUNDLE_PATH"] = "#{bundle_path}" -gem_path = ENV["GEM_PATH"] -ENV["GEM_PATH"] = "\#{gem_path}\#{":" unless gem_path.nil? || gem_path.empty?}#{bundler_gem_path}" +Gem.use_paths("#{bundler_gem_path}", ENV["GEM_PATH"]) -require 'rubygems' require 'bundler/setup' load Gem.bin_path(#{name.inspect}, #{exe.inspect}) diff --git a/pkgs/development/interpreters/ruby/bundler.nix b/pkgs/development/ruby-modules/bundler/default.nix similarity index 66% rename from pkgs/development/interpreters/ruby/bundler.nix rename to pkgs/development/ruby-modules/bundler/default.nix index cdcd12990e2..718da20b006 100644 --- a/pkgs/development/interpreters/ruby/bundler.nix +++ b/pkgs/development/ruby-modules/bundler/default.nix @@ -4,7 +4,7 @@ buildRubyGem rec { inherit ruby; name = "${gemName}-${version}"; gemName = "bundler"; - version = "1.10.6"; - sha256 = "1vlzfq0bkkj4jyq6av0y55mh5nj5n0f3mfbmmifwgkh44g8k6agv"; + version = "1.11.2"; + sha256 = "0s37j1hyngc4shq0in8f9y1knjdqkisdg3dd1mfwgq7n1bz8zan7"; dontPatchShebangs = true; } diff --git a/pkgs/development/ruby-modules/fake-s3-list-bucket.patch b/pkgs/development/ruby-modules/fake-s3-list-bucket.patch deleted file mode 100644 index 251935161d1..00000000000 --- a/pkgs/development/ruby-modules/fake-s3-list-bucket.patch +++ /dev/null @@ -1,30 +0,0 @@ -commit 983634ea6b81910529596c262644eacfa2c2c4f9 -Author: Shea Levy -Date: Wed Sep 4 16:16:12 2013 -0400 - - Fix LS_BUCKET - - GET foo.s3.amazonaws.com/ and GET s3.amazonaws.com/foo should result in - an LS_BUCKET request, but under the previous logic it would result in a - LIST_BUCKETS request. GET s3.amazonaws.com/ still results in a - LIST_BUCKETS request due to the 'if path == "/" and s_req.is_path_style' - conditional. - - Signed-off-by: Shea Levy - -diff --git a/lib/fakes3/server.rb b/lib/fakes3/server.rb -index 6958151..36d9cad 100644 ---- a/lib/fakes3/server.rb -+++ b/lib/fakes3/server.rb -@@ -213,10 +213,7 @@ module FakeS3 - elems = path.split("/") - end - -- if elems.size == 0 -- # List buckets -- s_req.type = Request::LIST_BUCKETS -- elsif elems.size == 1 -+ if elems.size < 2 - s_req.type = Request::LS_BUCKET - s_req.query = query - else diff --git a/pkgs/development/interpreters/ruby/gemconfig/default.nix b/pkgs/development/ruby-modules/gem-config/default.nix similarity index 97% rename from pkgs/development/interpreters/ruby/gemconfig/default.nix rename to pkgs/development/ruby-modules/gem-config/default.nix index dd4ae725095..05be9090c84 100644 --- a/pkgs/development/interpreters/ruby/gemconfig/default.nix +++ b/pkgs/development/ruby-modules/gem-config/default.nix @@ -21,7 +21,7 @@ , libiconv, postgresql, v8_3_16_14, clang, sqlite, zlib, imagemagick , pkgconfig , ncurses, xapian, gpgme, utillinux, fetchpatch, tzdata, icu, libffi , cmake, libssh2, openssl, mysql, darwin, git, perl, gecode_3, curl -, libmsgpack +, libmsgpack, qt5Full }: let @@ -29,6 +29,10 @@ let in { + capybara-webkit = attrs: { + buildInputs = [ qt5Full ]; + }; + charlock_holmes = attrs: { buildInputs = [ which icu zlib ]; }; diff --git a/pkgs/development/interpreters/ruby/gemconfig/mkrf_conf_xapian.rb b/pkgs/development/ruby-modules/gem-config/mkrf_conf_xapian.rb similarity index 100% rename from pkgs/development/interpreters/ruby/gemconfig/mkrf_conf_xapian.rb rename to pkgs/development/ruby-modules/gem-config/mkrf_conf_xapian.rb diff --git a/pkgs/development/interpreters/ruby/gemconfig/xapian-Rakefile b/pkgs/development/ruby-modules/gem-config/xapian-Rakefile similarity index 100% rename from pkgs/development/interpreters/ruby/gemconfig/xapian-Rakefile rename to pkgs/development/ruby-modules/gem-config/xapian-Rakefile diff --git a/pkgs/development/interpreters/ruby/build-ruby-gem/default.nix b/pkgs/development/ruby-modules/gem/default.nix similarity index 96% rename from pkgs/development/interpreters/ruby/build-ruby-gem/default.nix rename to pkgs/development/ruby-modules/gem/default.nix index db1ef4c6c43..6e1b0c00bd0 100644 --- a/pkgs/development/interpreters/ruby/build-ruby-gem/default.nix +++ b/pkgs/development/ruby-modules/gem/default.nix @@ -18,7 +18,7 @@ # Normal gem packages can be used outside of bundler; a binstub is created in # $out/bin. -{ lib, ruby, rubygems, bundler, fetchurl, fetchgit, makeWrapper, git, +{ lib, ruby, bundler, fetchurl, fetchgit, makeWrapper, git, buildRubyGem, darwin } @ defs: @@ -54,9 +54,6 @@ lib.makeOverridable ( let shellEscape = x: "'${lib.replaceChars ["'"] [("'\\'" + "'")] x}'"; - rubygems = (attrs.rubygems or defs.rubygems).override { - inherit ruby; - }; src = attrs.src or ( if type == "gem" then fetchurl { @@ -79,14 +76,14 @@ let in stdenv.mkDerivation (attrs // { - inherit ruby rubygems; + inherit ruby; inherit doCheck; inherit dontBuild; inherit dontStrip; inherit type; buildInputs = [ - ruby rubygems makeWrapper + ruby makeWrapper ] ++ lib.optionals (type == "git") [ git bundler ] ++ lib.optional stdenv.isDarwin darwin.libobjc ++ buildInputs; diff --git a/pkgs/development/interpreters/ruby/build-ruby-gem/gem-post-build.rb b/pkgs/development/ruby-modules/gem/gem-post-build.rb similarity index 93% rename from pkgs/development/interpreters/ruby/build-ruby-gem/gem-post-build.rb rename to pkgs/development/ruby-modules/gem/gem-post-build.rb index 112a9accc33..4480c525bf1 100644 --- a/pkgs/development/interpreters/ruby/build-ruby-gem/gem-post-build.rb +++ b/pkgs/development/ruby-modules/gem/gem-post-build.rb @@ -64,8 +64,7 @@ spec.executables.each do |exe| # this file is here to facilitate running it. # -gem_path = ENV["GEM_PATH"] -ENV["GEM_PATH"] = "\#{gem_path}\#{":" unless gem_path.nil? || gem_path.empty?}#{(gem_path+[gem_home]).join(":")}" +Gem.use_paths "#{gem_home}", #{gem_path.to_s} require 'rubygems' diff --git a/pkgs/development/interpreters/ruby/build-ruby-gem/nix-bundle-install.rb b/pkgs/development/ruby-modules/gem/nix-bundle-install.rb similarity index 100% rename from pkgs/development/interpreters/ruby/build-ruby-gem/nix-bundle-install.rb rename to pkgs/development/ruby-modules/gem/nix-bundle-install.rb diff --git a/pkgs/development/ruby-modules/sqlite3/default.nix b/pkgs/development/ruby-modules/sqlite3/default.nix deleted file mode 100644 index 33a8951921e..00000000000 --- a/pkgs/development/ruby-modules/sqlite3/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -{stdenv, fetchurl, ruby, sqlite}: - -stdenv.mkDerivation { - name = "ruby-sqlite3-1.2.4"; - src = fetchurl { - url = http://rubyforge.org/frs/download.php/42055/sqlite3-ruby-1.2.4.tar.bz2; - sha256 = "1mmhlrggzdsbhpmifv1iibrf4ch3ycm878pxil3x3xhf9l6vp0a7"; - }; - buildInputs = [ruby sqlite]; - buildPhase = "true"; - installPhase = '' - mkdir -p $out/lib - ruby setup.rb config --prefix=$out - # --bindir $out/bin --libdir $out/lib - ruby setup.rb setup - ruby setup.rb install - ''; -} diff --git a/pkgs/development/tools/analysis/checkstyle/default.nix b/pkgs/development/tools/analysis/checkstyle/default.nix index 168e9ce95be..0d961ab5c23 100644 --- a/pkgs/development/tools/analysis/checkstyle/default.nix +++ b/pkgs/development/tools/analysis/checkstyle/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - version = "6.16"; + version = "6.17"; name = "checkstyle-${version}"; src = fetchurl { url = "mirror://sourceforge/checkstyle/${name}-bin.tar.gz"; - sha256 = "0kmddfzn7p6fads6crw4gnahvi36xwqyw35i7a2lplrdp8dn9xdd"; + sha256 = "1cfcjz1fg9ilqqaqlbzd5n7nsx1kzy6sabjp92b9d8mwy15bn5ql"; }; installPhase = '' diff --git a/pkgs/development/tools/analysis/cppcheck/default.nix b/pkgs/development/tools/analysis/cppcheck/default.nix index 5955f34b58e..e89d8c113a1 100644 --- a/pkgs/development/tools/analysis/cppcheck/default.nix +++ b/pkgs/development/tools/analysis/cppcheck/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { sha256 = "085lm8v7biixy6rykq836gfy91jcccpz9qpk8i9x339dzy2b2q4l"; }; - buildInputs = [ libxslt docbook_xsl docbook_xml_dtd_45 ]; + nativeBuildInputs = [ libxslt docbook_xsl docbook_xml_dtd_45 ]; makeFlags = ''PREFIX=$(out) CFGDIR=$(out)/cfg''; diff --git a/pkgs/development/tools/analysis/flow/default.nix b/pkgs/development/tools/analysis/flow/default.nix index 938f6e9c2b9..e0802f9850b 100644 --- a/pkgs/development/tools/analysis/flow/default.nix +++ b/pkgs/development/tools/analysis/flow/default.nix @@ -3,13 +3,13 @@ with lib; stdenv.mkDerivation rec { - version = "0.18.1"; + version = "0.22.1"; name = "flow-${version}"; src = fetchFromGitHub { owner = "facebook"; repo = "flow"; rev = "v${version}"; - sha256 = "00pmrk577p6ngqif4rvhwybb4gyw70vsgxcxxwj995dg4hf196s1"; + sha256 = "11d04g8rvjv2q79pmrjjx8lmmm1ix8kih7wc0adln0ap5123ph46"; }; installPhase = '' diff --git a/pkgs/development/tools/analysis/rr/default.nix b/pkgs/development/tools/analysis/rr/default.nix index 039cb742463..ea733b5b461 100644 --- a/pkgs/development/tools/analysis/rr/default.nix +++ b/pkgs/development/tools/analysis/rr/default.nix @@ -1,14 +1,14 @@ -{ stdenv, fetchFromGitHub, cmake, libpfm, zlib, python, pkgconfig, pythonPackages, which, procps }: +{ stdenv, fetchFromGitHub, cmake, libpfm, zlib, python, pkgconfig, pythonPackages, which, procps, gdb }: stdenv.mkDerivation rec { - version = "4.0.3"; + version = "4.2.0"; name = "rr-${version}"; src = fetchFromGitHub { owner = "mozilla"; repo = "rr"; rev = version; - sha256 = "0k12r1hzkn5286kz5cg4mvii92m0prs58przchr495r9hfjcy276"; + sha256 = "03fl2wgbc1cilaw8hrhfqjsbpi05cid6k4cr3s2vmv5gx0dnrgy4"; }; patchPhase = '' @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { patchShebangs . ''; - buildInputs = [ cmake libpfm zlib python pkgconfig pythonPackages.pexpect which procps ]; + buildInputs = [ cmake libpfm zlib python pkgconfig pythonPackages.pexpect which procps gdb ]; cmakeFlags = "-DCMAKE_C_FLAGS_RELEASE:STRING= -DCMAKE_CXX_FLAGS_RELEASE:STRING="; enableParallelBuilding = true; diff --git a/pkgs/development/tools/analysis/spin/default.nix b/pkgs/development/tools/analysis/spin/default.nix index 29559bf8b0e..6da6bd4b4f9 100644 --- a/pkgs/development/tools/analysis/spin/default.nix +++ b/pkgs/development/tools/analysis/spin/default.nix @@ -1,6 +1,11 @@ -{stdenv, fetchurl, yacc }: +{ stdenv, lib, fetchurl, makeWrapper, yacc, gcc +, withISpin ? true, tk, swarm, graphviz }: -stdenv.mkDerivation rec { +let + binPath = stdenv.lib.makeBinPath [ gcc ]; + ibinPath = stdenv.lib.makeBinPath [ gcc tk swarm graphviz tk ]; + +in stdenv.mkDerivation rec { name = "spin-${version}"; version = "6.4.5"; url-version = stdenv.lib.replaceChars ["."] [""] version; @@ -13,11 +18,20 @@ stdenv.mkDerivation rec { sha256 = "0x8qnwm2xa8f176c52mzpvnfzglxs6xgig7bcgvrvkb3xf114224"; }; + nativeBuildInputs = [ makeWrapper ]; buildInputs = [ yacc ]; sourceRoot = "Spin/Src${version}"; - installPhase = "install -D spin $out/bin/spin"; + installPhase = '' + install -Dm755 spin $out/bin/spin + wrapProgram $out/bin/spin \ + --prefix PATH : ${binPath} + '' + lib.optionalString withISpin '' + install -Dm755 ../iSpin/ispin.tcl $out/bin/ispin + wrapProgram $out/bin/ispin \ + --prefix PATH ':' "$out/bin:${ibinPath}" + ''; meta = with stdenv.lib; { description = "Formal verification tool for distributed software systems"; diff --git a/pkgs/development/tools/analysis/swarm/default.nix b/pkgs/development/tools/analysis/swarm/default.nix new file mode 100644 index 00000000000..a67d9b8d42e --- /dev/null +++ b/pkgs/development/tools/analysis/swarm/default.nix @@ -0,0 +1,30 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "swarm-${version}"; + version = "3.1"; + + src = fetchurl { + url = "http://www.spinroot.com/swarm/swarm${version}.tar"; + sha256 = "12hi6wy0v0jfbrmgfxpnz7vxfzz3g1c6z7dj8p8kc2nm0q5bii47"; + }; + + sourceRoot = "."; + + buildPhase = '' + gcc -O2 -lm swarm.c -o swarm + ''; + + installPhase = '' + install -Dm755 swarm $out/bin/swarm + install -Dm644 swarm.1 $out/share/man/man1/swarm.1 + ''; + + meta = with stdenv.lib; { + description = "Verification script generator for Spin"; + homepage = http://spinroot.com/; + license = licenses.free; + platforms = platforms.linux; + maintainers = with maintainers; [ abbradar ]; + }; +} diff --git a/pkgs/development/tools/analysis/verasco/default.nix b/pkgs/development/tools/analysis/verasco/default.nix new file mode 100644 index 00000000000..9b3ff8e570d --- /dev/null +++ b/pkgs/development/tools/analysis/verasco/default.nix @@ -0,0 +1,48 @@ +{ stdenv, fetchurl, coq, ocamlPackages +, tools ? stdenv.cc +}: + +stdenv.mkDerivation rec { + name = "verasco-1.3"; + src = fetchurl { + url = "http://compcert.inria.fr/verasco/release/${name}.tgz"; + sha256 = "0zvljrpwnv443k939zlw1f7ijwx18nhnpr8jl3f01jc5v66hr2k8"; + }; + + buildInputs = [ coq ] ++ (with ocamlPackages; [ ocaml findlib menhir zarith ]); + + preConfigure = '' + substituteInPlace ./configure --replace '{toolprefix}gcc' '{toolprefix}cc' + ''; + + configureFlags = [ + "-toolprefix ${tools}/bin/" + (if stdenv.isDarwin then "ia32-macosx" else "ia32-linux") + ]; + + prefixKey = "-prefix "; + + enableParallelBuilding = true; + buildFlags = "proof extraction ccheck"; + + installPhase = '' + mkdir -p $out/bin + cp ccheck $out/bin/ + ln -s $out/bin/ccheck $out/bin/verasco + if [ -e verasco.ini ] + then + mkdir -p $out/share + cp verasco.ini $out/share/ + fi + mkdir -p $out/lib/compcert + cp -riv runtime/include $out/lib/compcert + ''; + + meta = { + homepage = http://compcert.inria.fr/verasco/; + description = "A static analyzer for the CompCert subset of ISO C 1999"; + maintainers = with stdenv.lib.maintainers; [ vbgl ]; + license = stdenv.lib.licenses.unfree; + platforms = with stdenv.lib.platforms; darwin ++ linux; + }; +} diff --git a/pkgs/development/tools/backblaze-b2/default.nix b/pkgs/development/tools/backblaze-b2/default.nix index 3c7d69bc1b4..0ba346ec110 100644 --- a/pkgs/development/tools/backblaze-b2/default.nix +++ b/pkgs/development/tools/backblaze-b2/default.nix @@ -1,31 +1,37 @@ -{ stdenv, lib, fetchFromGitHub, pkgs }: +{ fetchFromGitHub, makeWrapper, pythonPackages, stdenv }: -stdenv.mkDerivation rec { - name = "backblaze-b2-0.3.10"; +pythonPackages.buildPythonApplication rec { + name = "backblaze-b2-${version}"; + version = "0.4.4"; src = fetchFromGitHub { owner = "Backblaze"; repo = "B2_Command_Line_Tool"; - rev = "b097f0f04d3f88d7a372b50ee6db1f89a5249028"; - sha256 = "1rcy8180476cpmrbls4424qbq8nyq7mxkfikd52a8skz7rd5ljc6"; + rev = "74a5e567925899f1fc6204aa85d4c84c0d0e511a"; + sha256 = "1g9j5s69w6n70nb18rvx3gm9f4gi1vis23ib8rn2v1khv6z2acqp"; }; - - buildInputs = with pkgs; [ python2 ]; - doCheck = true; + propagatedBuildInputs = with pythonPackages; [ six ]; + checkPhase = '' python test_b2_command_line.py test ''; - installPhase = '' - install -Dm755 b2 "$out/bin/backblaze-b2" + postInstall = '' + mv "$out/bin/b2" "$out/bin/backblaze-b2" + + sed 's/^have b2 \&\&$/have backblaze-b2 \&\&/' -i contrib/bash_completion/b2 + sed 's/^\(complete -F _b2\) b2/\1 backblaze-b2/' -i contrib/bash_completion/b2 + + mkdir -p "$out/etc/bash_completion.d" + cp contrib/bash_completion/b2 "$out/etc/bash_completion.d/backblaze-b2" ''; meta = with stdenv.lib; { description = "Command-line tool for accessing the Backblaze B2 storage service"; - homepage = https://github.com/Backblaze/B2_Command_Line_Tool; - license = licenses.mit; - maintainers = with maintainers; [ kevincox ]; - platforms = platforms.unix; + homepage = https://github.com/Backblaze/B2_Command_Line_Tool; + license = licenses.mit; + maintainers = with maintainers; [ hrdinka kevincox ]; + platforms = platforms.unix; }; } diff --git a/pkgs/development/tools/build-managers/cargo/head.nix b/pkgs/development/tools/build-managers/cargo/head.nix index 298177296a6..570e96eedeb 100644 --- a/pkgs/development/tools/build-managers/cargo/head.nix +++ b/pkgs/development/tools/build-managers/cargo/head.nix @@ -5,7 +5,7 @@ with rustPlatform; with ((import ./common.nix) { inherit stdenv rustc; - version = "2016-02-25"; + version = "2016-03-20"; }); buildRustPackage rec { @@ -14,11 +14,11 @@ buildRustPackage rec { # Needs to use fetchgit instead of fetchFromGitHub to fetch submodules src = fetchgit { url = "git://github.com/rust-lang/cargo"; - rev = "e7212896dc1b182493a0252a2a126db8be067153"; - sha256 = "1qbic7gp7cpihi40kfv3kagja8zsngica8sq9jcm9czb6ba44dsa"; + rev = "132b82d75f607dcb1116b8d44fe60f202f1eb110"; + sha256 = "0kx2m0p45zr0ils2ax19sr32cibjppgwj8xvsgrfvzvlnc540xpl"; }; - depsSha256 = "1xfpj1233p4314j6jmip0jjl5m3kj2wbac1ll3yvh7383zb83i1s"; + depsSha256 = "19d2fl5p92108a0yjpix0qxdc23jy122xc87k69hk0pwwxa92l3a"; buildInputs = [ file curl pkgconfig python openssl cmake zlib makeWrapper ]; diff --git a/pkgs/development/tools/build-managers/cargo/snapshot.nix b/pkgs/development/tools/build-managers/cargo/snapshot.nix index 6dbe1e727d3..4a779cc456e 100644 --- a/pkgs/development/tools/build-managers/cargo/snapshot.nix +++ b/pkgs/development/tools/build-managers/cargo/snapshot.nix @@ -2,7 +2,7 @@ /* Cargo binary snapshot */ -let snapshotDate = "2015-06-17"; +let snapshotDate = "2016-01-31"; in with ((import ./common.nix) { @@ -11,13 +11,13 @@ with ((import ./common.nix) { }); let snapshotHash = if stdenv.system == "i686-linux" - then "g2h9l35123r72hqdwayd9h79kspfb4y9" + then "7e2f9c82e1af5aa43ef3ee2692b985a5f2398f0a" else if stdenv.system == "x86_64-linux" - then "fnx2rf1j8zvrplcc7xzf89czn0hf3397" + then "4c03a3fd2474133c7ad6d8bb5f6af9915ca5292a" else if stdenv.system == "i686-darwin" - then "3viz3fi2jx18qjwrc90nfhm9cik59my6" + then "4d84d31449a5926f9e7ceb344540d6e5ea530b88" else if stdenv.system == "x86_64-darwin" - then "h2bf3db4vwz5cjjkn98lxayivdc6dflp" + then "f8baef5b0b3e6f9825be1f1709594695ac0f0abc" else throw "no snapshot for platform ${stdenv.system}"; snapshotName = "cargo-nightly-${platform}.tar.gz"; in diff --git a/pkgs/development/tools/build-managers/gradle/default.nix b/pkgs/development/tools/build-managers/gradle/default.nix index 82d0d402698..c2b24c69904 100644 --- a/pkgs/development/tools/build-managers/gradle/default.nix +++ b/pkgs/development/tools/build-managers/gradle/default.nix @@ -35,11 +35,11 @@ rec { }; gradleLatest = gradleGen rec { - name = "gradle-2.11"; + name = "gradle-2.12"; src = fetchurl { url = "http://services.gradle.org/distributions/${name}-bin.zip"; - sha256 = "1mhydg6mj9y7qr2s9bkdaijkjrq7nf6rqix415izvjan4c43fx4d"; + sha256 = "0p5b6dngza6c2lchz5j0w4cbsizpzvkf638yzxv09k8636c68w77"; }; }; diff --git a/pkgs/development/tools/chefdk/Gemfile b/pkgs/development/tools/chefdk/Gemfile index 9cd40fd3f4b..7d974e49891 100644 --- a/pkgs/development/tools/chefdk/Gemfile +++ b/pkgs/development/tools/chefdk/Gemfile @@ -1,3 +1,17 @@ -source "https://rubygems.org" +source 'https://rubygems.org' gem 'chef-dk' +gem 'pry' +gem 'test-kitchen' +gem 'inspec' +gem 'kitchen-inspec' +gem 'kitchen-vagrant' +gem 'berkshelf' +gem 'chef-vault' +gem 'foodcritic' +gem 'ohai' +gem 'rubocop' +gem 'knife-spork' +gem 'fauxhai' +gem 'chefspec' +gem 'chef-provisioning' diff --git a/pkgs/development/tools/chefdk/Gemfile.lock b/pkgs/development/tools/chefdk/Gemfile.lock index 28b0e7f8aa4..ddbb1f5f1dd 100644 --- a/pkgs/development/tools/chefdk/Gemfile.lock +++ b/pkgs/development/tools/chefdk/Gemfile.lock @@ -1,35 +1,74 @@ GEM remote: https://rubygems.org/ specs: + addressable (2.4.0) + app_conf (0.4.2) + ast (2.2.0) + berkshelf (4.3.0) + addressable (~> 2.3, >= 2.3.4) + berkshelf-api-client (~> 2.0, >= 2.0.2) + buff-config (~> 1.0) + buff-extensions (~> 1.0) + buff-shell_out (~> 0.1) + celluloid (= 0.16.0) + celluloid-io (~> 0.16.1) + cleanroom (~> 1.0) + faraday (~> 0.9) + httpclient (~> 2.7) + minitar (~> 0.5, >= 0.5.4) + octokit (~> 4.0) + retryable (~> 2.0) + ridley (~> 4.5) + solve (~> 2.0) + thor (~> 0.19) + berkshelf-api-client (2.0.2) + faraday (~> 0.9.1) + httpclient (~> 2.7.0) + ridley (~> 4.5) + buff-config (1.0.1) + buff-extensions (~> 1.0) + varia_model (~> 0.4) + buff-extensions (1.0.0) + buff-ignore (1.1.1) + buff-ruby_engine (0.1.0) + buff-shell_out (0.2.0) + buff-ruby_engine (~> 0.1.0) builder (3.2.2) - chef (12.5.1) - chef-config (= 12.5.1) - chef-zero (~> 4.2, >= 4.2.2) + celluloid (0.16.0) + timers (~> 4.0.0) + celluloid-io (0.16.2) + celluloid (>= 0.16.0) + nio4r (>= 1.1.0) + chef (12.8.1) + bundler (>= 1.10) + chef-config (= 12.8.1) + chef-zero (~> 4.5) diff-lcs (~> 1.2, >= 1.2.4) erubis (~> 2.7) ffi-yajl (~> 2.2) highline (~> 1.6, >= 1.6.9) - mixlib-authentication (~> 1.3) + mixlib-authentication (~> 1.4) mixlib-cli (~> 1.4) mixlib-log (~> 1.3) mixlib-shellout (~> 2.0) - net-ssh (~> 2.6) + net-ssh (>= 2.9, < 4.0) net-ssh-multi (~> 1.1) ohai (>= 8.6.0.alpha.1, < 9) plist (~> 3.1.0) - pry (~> 0.9) - rspec-core (~> 3.2) - rspec-expectations (~> 3.2) - rspec-mocks (~> 3.2) + proxifier (~> 1.0) + rspec-core (~> 3.4) + rspec-expectations (~> 3.4) + rspec-mocks (~> 3.4) rspec_junit_formatter (~> 0.2.0) serverspec (~> 2.7) specinfra (~> 2.10) syslog-logger (~> 1.6) - chef-config (12.5.1) + uuidtools (~> 2.1.5) + chef-config (12.8.1) mixlib-config (~> 2.0) mixlib-shellout (~> 2.0) - chef-dk (0.10.0) - chef (~> 12.0, >= 12.2.1) + chef-dk (0.11.2) + chef (~> 12.5) chef-provisioning (~> 1.2) cookbook-omnifetch (~> 0.2, >= 0.2.2) diff-lcs (~> 1.0) @@ -39,92 +78,184 @@ GEM mixlib-shellout (~> 2.0) paint (~> 1.0) solve (~> 2.0, >= 2.0.1) - chef-provisioning (1.5.0) - cheffish (~> 1.3, >= 1.3.1) + chef-provisioning (1.6.0) + cheffish (>= 1.3.1, < 3.0) inifile (~> 2.0) mixlib-install (~> 0.7.0) net-scp (~> 1.0) - net-ssh (~> 2.0) + net-ssh (>= 2.9, < 4.0) net-ssh-gateway (~> 1.2.0) winrm (~> 1.3) - chef-zero (4.3.2) + chef-vault (2.8.0) + chef-zero (4.5.0) ffi-yajl (~> 2.2) hashie (>= 2.0, < 4.0) mixlib-log (~> 1.3) rack uuidtools (~> 2.1) - cheffish (1.6.0) + cheffish (2.0.2) chef-zero (~> 4.3) - coderay (1.1.0) + compat_resource + chefspec (4.6.0) + chef (>= 11.14) + fauxhai (~> 3.0, >= 3.0.1) + rspec (~> 3.0) + cleanroom (1.0.0) + coderay (1.1.1) + compat_resource (12.8.0) cookbook-omnifetch (0.2.2) minitar (~> 0.5.4) diff-lcs (1.2.5) + diffy (3.1.0) + docker-api (1.26.2) + excon (>= 0.38.0) + json erubis (2.7.0) + excon (0.48.0) + faraday (0.9.2) + multipart-post (>= 1.2, < 3) + fauxhai (3.1.0) + net-ssh ffi (1.9.10) - ffi-yajl (2.2.2) + ffi-yajl (2.2.3) libyajl2 (~> 1.2) + foodcritic (6.0.1) + erubis + gherkin (~> 2.11) + nokogiri (>= 1.5, < 2.0) + rake + rufus-lru (~> 1.0) + treetop (~> 1.4) + yajl-ruby (~> 1.1) + gherkin (2.12.2) + multi_json (~> 1.3) + git (1.3.0) gssapi (1.2.0) ffi (>= 1.0.1) gyoku (1.3.1) builder (>= 2.1.2) hashie (3.4.3) highline (1.7.8) - httpclient (2.7.0.1) + hitimes (1.2.3) + httpclient (2.7.1) inifile (2.0.2) - ipaddress (0.8.0) + inspec (0.14.8) + json (~> 1.8) + method_source (~> 0.8) + pry (~> 0) + r-train (~> 0.10.1) + rainbow (~> 2) + rspec (~> 3.3) + rspec-its (~> 1.2) + rubyzip (~> 1.1) + thor (~> 0.19) + ipaddress (0.8.3) + json (1.8.3) + kitchen-inspec (0.12.3) + inspec (~> 0.14.1) + test-kitchen (~> 1.6) + kitchen-vagrant (0.19.0) + test-kitchen (~> 1.4) + knife-spork (1.6.1) + app_conf (>= 0.4.0) + chef (>= 11.0.0) + diffy (>= 3.0.1) + git (>= 1.2.5) libyajl2 (1.2.0) little-plugger (1.1.4) logging (2.0.0) little-plugger (~> 1.1) multi_json (~> 1.10) method_source (0.8.2) - mime-types (2.99) + mini_portile2 (2.0.0) minitar (0.5.4) - mixlib-authentication (1.3.0) + mixlib-authentication (1.4.0) mixlib-log + rspec-core (~> 3.2) + rspec-expectations (~> 3.2) + rspec-mocks (~> 3.2) mixlib-cli (1.5.0) mixlib-config (2.2.1) - mixlib-install (0.7.0) + mixlib-install (0.7.1) mixlib-log (1.6.0) - mixlib-shellout (2.2.5) + mixlib-shellout (2.2.6) molinillo (0.2.3) multi_json (1.11.2) + multipart-post (2.0.0) net-scp (1.2.1) net-ssh (>= 2.6.5) - net-ssh (2.9.2) + net-ssh (3.0.2) net-ssh-gateway (1.2.0) net-ssh (>= 2.6.5) net-ssh-multi (1.2.1) net-ssh (>= 2.6.5) net-ssh-gateway (>= 1.2.0) net-telnet (0.1.1) + nio4r (1.2.1) + nokogiri (1.6.7.2) + mini_portile2 (~> 2.0.0.rc2) nori (2.6.0) - ohai (8.7.0) + octokit (4.3.0) + sawyer (~> 0.7.0, >= 0.5.3) + ohai (8.12.0) chef-config (>= 12.5.0.alpha.1, < 13) ffi (~> 1.9) ffi-yajl (~> 2.2) ipaddress - mime-types (~> 2.0) mixlib-cli mixlib-config (~> 2.0) mixlib-log mixlib-shellout (~> 2.0) + plist rake (~> 10.1) systemu (~> 2.6.4) wmi-lite (~> 1.0) - paint (1.0.0) + paint (1.0.1) + parser (2.3.0.6) + ast (~> 2.2) plist (3.1.0) + polyglot (0.3.5) + powerpack (0.1.1) + proxifier (1.0.3) pry (0.10.3) coderay (~> 1.1.0) method_source (~> 0.8.1) slop (~> 3.4) + r-train (0.10.3) + docker-api (~> 1.26.2) + json (~> 1.8) + mixlib-shellout (~> 2.1) + net-scp (~> 1.2) + net-ssh (>= 2.9, < 4.0) + winrm (~> 1.6) + winrm-fs (~> 0.3) rack (1.6.4) - rake (10.4.2) + rainbow (2.1.0) + rake (10.5.0) + retryable (2.0.3) + ridley (4.5.0) + addressable + buff-config (~> 1.0) + buff-extensions (~> 1.0) + buff-ignore (~> 1.1) + buff-shell_out (~> 0.1) + celluloid (~> 0.16.0) + celluloid-io (~> 0.16.1) + chef-config (>= 12.5.0) + erubis + faraday (~> 0.9.0) + hashie (>= 2.0.2, < 4.0.0) + httpclient (~> 2.7) + json (>= 1.7.7) + mixlib-authentication (>= 1.3.0) + retryable (~> 2.0) + semverse (~> 1.1) + varia_model (~> 0.4.0) rspec (3.4.0) rspec-core (~> 3.4.0) rspec-expectations (~> 3.4.0) rspec-mocks (~> 3.4.0) - rspec-core (3.4.1) + rspec-core (3.4.4) rspec-support (~> 3.4.0) rspec-expectations (3.4.0) diff-lcs (>= 1.2.0, < 2.0) @@ -132,49 +263,97 @@ GEM rspec-its (1.2.0) rspec-core (>= 3.0.0) rspec-expectations (>= 3.0.0) - rspec-mocks (3.4.0) + rspec-mocks (3.4.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.4.0) rspec-support (3.4.1) rspec_junit_formatter (0.2.3) builder (< 4) rspec-core (>= 2, < 4, != 2.12.0) - rubyntlm (0.4.0) + rubocop (0.38.0) + parser (>= 2.3.0.6, < 3.0) + powerpack (~> 0.1) + rainbow (>= 1.99.1, < 3.0) + ruby-progressbar (~> 1.7) + unicode-display_width (~> 1.0, >= 1.0.1) + ruby-progressbar (1.7.5) + rubyntlm (0.6.0) + rubyzip (1.2.0) + rufus-lru (1.0.5) + safe_yaml (1.0.4) + sawyer (0.7.0) + addressable (>= 2.3.5, < 2.5) + faraday (~> 0.8, < 0.10) semverse (1.2.1) - serverspec (2.24.3) + serverspec (2.31.0) multi_json rspec (~> 3.0) rspec-its - specinfra (~> 2.43) + specinfra (~> 2.53) sfl (2.2) slop (3.6.0) - solve (2.0.1) + solve (2.0.2) molinillo (~> 0.2.3) semverse (~> 1.1) - specinfra (2.44.5) + specinfra (2.53.1) net-scp - net-ssh (~> 2.7) + net-ssh (>= 2.7, < 3.1) net-telnet sfl syslog-logger (1.6.8) systemu (2.6.5) + test-kitchen (1.6.0) + mixlib-install (~> 0.7) + mixlib-shellout (>= 1.2, < 3.0) + net-scp (~> 1.1) + net-ssh (>= 2.9, < 4.0) + safe_yaml (~> 1.0) + thor (~> 0.18) + thor (0.19.1) + timers (4.0.4) + hitimes + treetop (1.6.5) + polyglot (~> 0.3) + unicode-display_width (1.0.2) uuidtools (2.1.5) - winrm (1.3.6) + varia_model (0.4.1) + buff-extensions (~> 1.0) + hashie (>= 2.0.2, < 4.0.0) + winrm (1.7.2) builder (>= 2.1.2) gssapi (~> 1.2) gyoku (~> 1.0) httpclient (~> 2.2, >= 2.2.0.2) logging (>= 1.6.1, < 3.0) nori (~> 2.0) - rubyntlm (~> 0.4.0) - uuidtools (~> 2.1.2) + rubyntlm (~> 0.6.0) + winrm-fs (0.3.2) + erubis (~> 2.7) + logging (>= 1.6.1, < 3.0) + rubyzip (~> 1.1) + winrm (~> 1.5) wmi-lite (1.0.0) + yajl-ruby (1.2.1) PLATFORMS ruby DEPENDENCIES + berkshelf chef-dk + chef-provisioning + chef-vault + chefspec + fauxhai + foodcritic + inspec + kitchen-inspec + kitchen-vagrant + knife-spork + ohai + pry + rubocop + test-kitchen BUNDLED WITH 1.10.5 diff --git a/pkgs/development/tools/chefdk/default.nix b/pkgs/development/tools/chefdk/default.nix index 3b427aae4d2..80f9ef56abc 100644 --- a/pkgs/development/tools/chefdk/default.nix +++ b/pkgs/development/tools/chefdk/default.nix @@ -1,7 +1,7 @@ { stdenv, lib, bundlerEnv, ruby, perl, autoconf }: bundlerEnv { - name = "chefdk-0.10.0"; + name = "chefdk-0.11.2"; inherit ruby; gemfile = ./Gemfile; diff --git a/pkgs/development/tools/chefdk/gemset.nix b/pkgs/development/tools/chefdk/gemset.nix index cb4c1fcb67d..87faa3105ad 100644 --- a/pkgs/development/tools/chefdk/gemset.nix +++ b/pkgs/development/tools/chefdk/gemset.nix @@ -1,4 +1,104 @@ { + "addressable" = { + version = "2.4.0"; + source = { + type = "gem"; + sha256 = "0mpn7sbjl477h56gmxsjqb89r5s3w7vx5af994ssgc3iamvgzgvs"; + }; + }; + "app_conf" = { + version = "0.4.2"; + source = { + type = "gem"; + sha256 = "1yqwhr7d9i0cgavqkkq0b4pfqpn213dbhj5ayygr293wplm0jh57"; + }; + }; + "ast" = { + version = "2.2.0"; + source = { + type = "gem"; + sha256 = "14md08f8f1mmr2v7lczqnf1n1v8bal73gvg6ldhvkds1bmbnkrlb"; + }; + }; + "berkshelf" = { + version = "4.3.0"; + source = { + type = "gem"; + sha256 = "1dsbyq3749b9133rmnzjak7rsysyps1ryalc2r4rxyihflmxhix9"; + }; + dependencies = [ + "addressable" + "berkshelf-api-client" + "buff-config" + "buff-extensions" + "buff-shell_out" + "celluloid" + "celluloid-io" + "cleanroom" + "faraday" + "httpclient" + "minitar" + "octokit" + "retryable" + "ridley" + "solve" + "thor" + ]; + }; + "berkshelf-api-client" = { + version = "2.0.2"; + source = { + type = "gem"; + sha256 = "0xbn8q2xi09x5a7ma6wqs13gkpzj4ly21vls7m7ffv3sw8x29cyc"; + }; + dependencies = [ + "faraday" + "httpclient" + "ridley" + ]; + }; + "buff-config" = { + version = "1.0.1"; + source = { + type = "gem"; + sha256 = "0r3h3mk1dj7pc4zymz450bdqp23faqprx363ji4zfdg8z6r31jfh"; + }; + dependencies = [ + "buff-extensions" + "varia_model" + ]; + }; + "buff-extensions" = { + version = "1.0.0"; + source = { + type = "gem"; + sha256 = "1jqb5sn38qgx66lc4km6rljzz05myijjw12hznz1fk0k4qfw6yzk"; + }; + }; + "buff-ignore" = { + version = "1.1.1"; + source = { + type = "gem"; + sha256 = "1ghzhkgbq7f5fc7xilw0c9gspxpdhqhq3ygi1ybjm6r0dxlmvdb4"; + }; + }; + "buff-ruby_engine" = { + version = "0.1.0"; + source = { + type = "gem"; + sha256 = "1llpwpmzkakbgz9fc3vr1298cx1n9zv1g25fwj80xnnr7428aj8p"; + }; + }; + "buff-shell_out" = { + version = "0.2.0"; + source = { + type = "gem"; + sha256 = "0sphb69vxm346ys2laiz174k5jx628vfwz9ch8g2w9plc4xkxf3p"; + }; + dependencies = [ + "buff-ruby_engine" + ]; + }; "builder" = { version = "3.2.2"; source = { @@ -6,11 +106,32 @@ sha256 = "14fii7ab8qszrvsvhz6z2z3i4dw0h41a62fjr2h1j8m41vbrmyv2"; }; }; - "chef" = { - version = "12.5.1"; + "celluloid" = { + version = "0.16.0"; source = { type = "gem"; - sha256 = "0hf6766wmh1dg7f09hi80s8hn1knvzgnaimbhvc05b4q973k5lmb"; + sha256 = "044xk0y7i1xjafzv7blzj5r56s7zr8nzb619arkrl390mf19jxv3"; + }; + dependencies = [ + "timers" + ]; + }; + "celluloid-io" = { + version = "0.16.2"; + source = { + type = "gem"; + sha256 = "1l1x0p6daa5vskywrvaxdlanwib3k5pps16axwyy4p8d49pn9rnx"; + }; + dependencies = [ + "celluloid" + "nio4r" + ]; + }; + "chef" = { + version = "12.8.1"; + source = { + type = "gem"; + sha256 = "16wb3ymnl7rbayy8qp35fp0947cnq2y9bac7xzhc1njp5j2p6lhg"; }; dependencies = [ "chef-config" @@ -27,7 +148,7 @@ "net-ssh-multi" "ohai" "plist" - "pry" + "proxifier" "rspec-core" "rspec-expectations" "rspec-mocks" @@ -35,13 +156,14 @@ "serverspec" "specinfra" "syslog-logger" + "uuidtools" ]; }; "chef-config" = { - version = "12.5.1"; + version = "12.8.1"; source = { type = "gem"; - sha256 = "18iqlf9x3iavh6183zlkiasxsz45drshihmk8yj56prrzfiys67m"; + sha256 = "0chgbdv9c1xfkhzx3kmpr8lj0wjdbziixgln2y3ryn84x4fg84ic"; }; dependencies = [ "mixlib-config" @@ -49,10 +171,10 @@ ]; }; "chef-dk" = { - version = "0.10.0"; + version = "0.11.2"; source = { type = "gem"; - sha256 = "0gxm8dbq7y4bf9wb8zad9q5idsl88f1nm3rvnd2am0xka6bnxv29"; + sha256 = "1qfx5qclvh3kwjgfs18iwdn0knpgka5py7mwi4r0mz2sw14wq5wk"; }; dependencies = [ "chef" @@ -68,10 +190,10 @@ ]; }; "chef-provisioning" = { - version = "1.5.0"; + version = "1.6.0"; source = { type = "gem"; - sha256 = "1xln9hf8mcm81cmw96ccmyzrak54fbjrl9wgii37rx04v4a2435n"; + sha256 = "1nxgia4zyhyqbrz65q7lgjwx8ba5iyzxdxa181y0s4aqqpv0j45g"; }; dependencies = [ "cheffish" @@ -83,11 +205,18 @@ "winrm" ]; }; - "chef-zero" = { - version = "4.3.2"; + "chef-vault" = { + version = "2.8.0"; source = { type = "gem"; - sha256 = "1djnxs97kj13vj1hxx4v6978pkwm8i03p76gbirbp3z2zs6jyvjf"; + sha256 = "0dbvawlrfx9mqjyh8q71jjfh987xqqv3f6c0pmcjp6qxs95l1dqq"; + }; + }; + "chef-zero" = { + version = "4.5.0"; + source = { + type = "gem"; + sha256 = "1lqvmgjniviahrhim8k67qddnwh5p7wzw33r1wga4z136pfka1zx"; }; dependencies = [ "ffi-yajl" @@ -98,20 +227,47 @@ ]; }; "cheffish" = { - version = "1.6.0"; + version = "2.0.2"; source = { type = "gem"; - sha256 = "10aj660azybnf7444a604pjs8p9pvwm3n4mavy8mp3g30yr07paq"; + sha256 = "0mvp7kybgp3nm2sdcmlx8bv147hcdjx745a8k97bx1m47isv97ax"; }; dependencies = [ "chef-zero" + "compat_resource" ]; }; - "coderay" = { - version = "1.1.0"; + "chefspec" = { + version = "4.6.0"; source = { type = "gem"; - sha256 = "059wkzlap2jlkhg460pkwc1ay4v4clsmg1bp4vfzjzkgwdckr52s"; + sha256 = "1ikn8k6xdqixdjga50jmkqajz2z2z71dg4j3dsmd31hv1mdbp7wz"; + }; + dependencies = [ + "chef" + "fauxhai" + "rspec" + ]; + }; + "cleanroom" = { + version = "1.0.0"; + source = { + type = "gem"; + sha256 = "1r6qa4b248jasv34vh7rw91pm61gzf8g5dvwx2gxrshjs7vbhfml"; + }; + }; + "coderay" = { + version = "1.1.1"; + source = { + type = "gem"; + sha256 = "1x6z923iwr1hi04k6kz5a6llrixflz8h5sskl9mhaaxy9jx2x93r"; + }; + }; + "compat_resource" = { + version = "12.8.0"; + source = { + type = "gem"; + sha256 = "0zp1dd1wkbgxbazvs7acqyk1xjls0wq1pd5ilhj6zi63lpychgy5"; }; }; "cookbook-omnifetch" = { @@ -131,6 +287,24 @@ sha256 = "1vf9civd41bnqi6brr5d9jifdw73j9khc6fkhfl1f8r9cpkdvlx1"; }; }; + "diffy" = { + version = "3.1.0"; + source = { + type = "gem"; + sha256 = "1azibizfv91sjbzhjqj1pg2xcv8z9b8a7z6kb3wpl4hpj5hil5kj"; + }; + }; + "docker-api" = { + version = "1.26.2"; + source = { + type = "gem"; + sha256 = "0sg2xazcga21pmlb9yy1z5f3yyzqa2ly5b2h2cxfhyfda6k748wk"; + }; + dependencies = [ + "excon" + "json" + ]; + }; "erubis" = { version = "2.7.0"; source = { @@ -138,6 +312,33 @@ sha256 = "1fj827xqjs91yqsydf0zmfyw9p4l2jz5yikg3mppz6d7fi8kyrb3"; }; }; + "excon" = { + version = "0.48.0"; + source = { + type = "gem"; + sha256 = "0hjfd2p2mhklavhy8gy1ygm390iz3imx71065dcr9r28s3wk63gf"; + }; + }; + "faraday" = { + version = "0.9.2"; + source = { + type = "gem"; + sha256 = "1kplqkpn2s2yl3lxdf6h7sfldqvkbkpxwwxhyk7mdhjplb5faqh6"; + }; + dependencies = [ + "multipart-post" + ]; + }; + "fauxhai" = { + version = "3.1.0"; + source = { + type = "gem"; + sha256 = "0ff8wappc4n4v7v6969zm64c36qiadfw3igl8cyqrpp36fnqm04d"; + }; + dependencies = [ + "net-ssh" + ]; + }; "ffi" = { version = "1.9.10"; source = { @@ -146,15 +347,48 @@ }; }; "ffi-yajl" = { - version = "2.2.2"; + version = "2.2.3"; source = { type = "gem"; - sha256 = "013n5cf80p2wfpmj1mdjkbmcyx3hg4c81wl3bamglaf4i12a2qk2"; + sha256 = "14wgy2isc5yir4zdkk0l3hzh1s1ycwblqb1hllbv4g9svb9naqbz"; }; dependencies = [ "libyajl2" ]; }; + "foodcritic" = { + version = "6.0.1"; + source = { + type = "gem"; + sha256 = "06pi4984g6vwfzqvsf73zpw4h1p63bl7yn2sjb9mqd896bb3v6cn"; + }; + dependencies = [ + "erubis" + "gherkin" + "nokogiri" + "rake" + "rufus-lru" + "treetop" + "yajl-ruby" + ]; + }; + "gherkin" = { + version = "2.12.2"; + source = { + type = "gem"; + sha256 = "1mxfgw15pii1jmq00xxbyp77v71mh3bp99ndgwzfwkxvbcisha25"; + }; + dependencies = [ + "multi_json" + ]; + }; + "git" = { + version = "1.3.0"; + source = { + type = "gem"; + sha256 = "1waikaggw7a1d24nw0sh8fd419gbf7awh000qhsf411valycj6q3"; + }; + }; "gssapi" = { version = "1.2.0"; source = { @@ -189,11 +423,18 @@ sha256 = "1nf5lgdn6ni2lpfdn4gk3gi47fmnca2bdirabbjbz1fk9w4p8lkr"; }; }; - "httpclient" = { - version = "2.7.0.1"; + "hitimes" = { + version = "1.2.3"; source = { type = "gem"; - sha256 = "0k6bqsaqq6c824vrbfb5pkz8bpk565zikd10w85rzj2dy809ik6c"; + sha256 = "1fr9raz7652bnnx09dllyjdlnwdxsnl0ig5hq9s4s8vackvmckv4"; + }; + }; + "httpclient" = { + version = "2.7.1"; + source = { + type = "gem"; + sha256 = "1y01wgmvwz8r4ycr87d12niglpk0nlh2hkpgy9bnmm8as7kgs428"; }; }; "inifile" = { @@ -203,12 +444,71 @@ sha256 = "03rpacxnrnisjhd2zhc7629ica958bkdbakicl5kipw1wbprck25"; }; }; - "ipaddress" = { - version = "0.8.0"; + "inspec" = { + version = "0.14.8"; source = { type = "gem"; - sha256 = "0cwy4pyd9nl2y2apazp3hvi12gccj5a3ify8mi8k3knvxi5wk2ir"; + sha256 = "0whd57f82ml0awn7wgfi8gj3mwl7njww22hn2ciabxafqld9xrri"; }; + dependencies = [ + "json" + "method_source" + "pry" + "r-train" + "rainbow" + "rspec" + "rspec-its" + "rubyzip" + "thor" + ]; + }; + "ipaddress" = { + version = "0.8.3"; + source = { + type = "gem"; + sha256 = "1x86s0s11w202j6ka40jbmywkrx8fhq8xiy8mwvnkhllj57hqr45"; + }; + }; + "json" = { + version = "1.8.3"; + source = { + type = "gem"; + sha256 = "1nsby6ry8l9xg3yw4adlhk2pnc7i0h0rznvcss4vk3v74qg0k8lc"; + }; + }; + "kitchen-inspec" = { + version = "0.12.3"; + source = { + type = "gem"; + sha256 = "1vjb9pxb4ga9ppr35k6vsqh053k35b4fxamzg99g17y1rijp6dbj"; + }; + dependencies = [ + "inspec" + "test-kitchen" + ]; + }; + "kitchen-vagrant" = { + version = "0.19.0"; + source = { + type = "gem"; + sha256 = "0sydjihhvnr40vqnj7bg65zxf00crwvwdli1av03ghhggrp5scla"; + }; + dependencies = [ + "test-kitchen" + ]; + }; + "knife-spork" = { + version = "1.6.1"; + source = { + type = "gem"; + sha256 = "104f3xq4gfy7rszc8zbfakg9wlnwnf8k9zij9ahdq4id3sdf1ylb"; + }; + dependencies = [ + "app_conf" + "chef" + "diffy" + "git" + ]; }; "libyajl2" = { version = "1.2.0"; @@ -242,11 +542,11 @@ sha256 = "1g5i4w0dmlhzd18dijlqw5gk27bv6dj2kziqzrzb7mpgxgsd1sf2"; }; }; - "mime-types" = { - version = "2.99"; + "mini_portile2" = { + version = "2.0.0"; source = { type = "gem"; - sha256 = "1hravghdnk9qbibxb3ggzv7mysl97djh8n0rsswy3ssjaw7cbvf2"; + sha256 = "056drbn5m4khdxly1asmiik14nyllswr6sh3wallvsywwdiryz8l"; }; }; "minitar" = { @@ -257,13 +557,16 @@ }; }; "mixlib-authentication" = { - version = "1.3.0"; + version = "1.4.0"; source = { type = "gem"; - sha256 = "1c5p5ipa3cssmwgdn0q3lyy1w7asikh9qfpnn7xcfz2f9m7v02zg"; + sha256 = "0qk6mln2bkp6jgkz3sh5r69lzipzjs4dqdixqq12wzvwapmgc0zj"; }; dependencies = [ "mixlib-log" + "rspec-core" + "rspec-expectations" + "rspec-mocks" ]; }; "mixlib-cli" = { @@ -281,10 +584,10 @@ }; }; "mixlib-install" = { - version = "0.7.0"; + version = "0.7.1"; source = { type = "gem"; - sha256 = "0ll1p7v7fp3rf11dz8pifz33jhl4bdg779n4hzlnbia2z7xfsa2w"; + sha256 = "1ws2syfimnqzlff2fp6yj5v7zgnzmi3pj9kbkg7xlmd9fhnkb0n7"; }; }; "mixlib-log" = { @@ -295,10 +598,10 @@ }; }; "mixlib-shellout" = { - version = "2.2.5"; + version = "2.2.6"; source = { type = "gem"; - sha256 = "1is07rar0x8n9h67j4iyrxz2yfgis4bnhh3x7vhbbi6khqqixg79"; + sha256 = "1xfs7yp533qx3nsd4x2q2r125awyxcizgdc4dwgdlxsa1n1pj0pd"; }; }; "molinillo" = { @@ -315,6 +618,13 @@ sha256 = "1rf3l4j3i11lybqzgq2jhszq7fh7gpmafjzd14ymp9cjfxqg596r"; }; }; + "multipart-post" = { + version = "2.0.0"; + source = { + type = "gem"; + sha256 = "09k0b3cybqilk1gwrwwain95rdypixb2q9w65gd44gfzsd84xi1x"; + }; + }; "net-scp" = { version = "1.2.1"; source = { @@ -326,10 +636,10 @@ ]; }; "net-ssh" = { - version = "2.9.2"; + version = "3.0.2"; source = { type = "gem"; - sha256 = "1p0bj41zrmw5lhnxlm1pqb55zfz9y4p9fkrr9a79nrdmzrk1ph8r"; + sha256 = "1k3hrgr899dlhkn53c4hnn5qzbhc7lwks0vaqgw95gg74hn1ivqw"; }; }; "net-ssh-gateway" = { @@ -360,6 +670,23 @@ sha256 = "13qxznpwmc3hs51b76wqx2w29r158gzzh8719kv2gpi56844c8fx"; }; }; + "nio4r" = { + version = "1.2.1"; + source = { + type = "gem"; + sha256 = "1adnm77xfxck0mrvid5d7lwng783gh580rh3y18nq4bwdikr6nha"; + }; + }; + "nokogiri" = { + version = "1.6.7.2"; + source = { + type = "gem"; + sha256 = "11sbmpy60ynak6s3794q32lc99hs448msjy8rkp84ay7mq7zqspv"; + }; + dependencies = [ + "mini_portile2" + ]; + }; "nori" = { version = "2.6.0"; source = { @@ -367,34 +694,54 @@ sha256 = "066wc774a2zp4vrq3k7k8p0fhv30ymqmxma1jj7yg5735zls8agn"; }; }; - "ohai" = { - version = "8.7.0"; + "octokit" = { + version = "4.3.0"; source = { type = "gem"; - sha256 = "1f10kgxh89iwij54yx8q11n1q87653ckvdmdwg8cwz3qlgf4flhy"; + sha256 = "1hq47ck0z03vr3rzblyszihn7x2m81gv35chwwx0vrhf17nd27np"; + }; + dependencies = [ + "sawyer" + ]; + }; + "ohai" = { + version = "8.12.0"; + source = { + type = "gem"; + sha256 = "0l7vdfnfm4plla6q4qkngwpmy0ah53pnymlwfzc7iy6jn2n9ibpm"; }; dependencies = [ "chef-config" "ffi" "ffi-yajl" "ipaddress" - "mime-types" "mixlib-cli" "mixlib-config" "mixlib-log" "mixlib-shellout" + "plist" "rake" "systemu" "wmi-lite" ]; }; "paint" = { - version = "1.0.0"; + version = "1.0.1"; source = { type = "gem"; - sha256 = "0mhwj6w60q40w4f6jz8xx8bv1kghjvsjc3d8q8pnslax4fkmzbp1"; + sha256 = "1z1fqyyc2jiv6yabv467h652cxr2lmxl5gqqg7p14y28kdqf0nhj"; }; }; + "parser" = { + version = "2.3.0.6"; + source = { + type = "gem"; + sha256 = "1r14k5jlsc5ivxjm1kljhk9sqp50rnd71n0mzx18hz135nvw1hbz"; + }; + dependencies = [ + "ast" + ]; + }; "plist" = { version = "3.1.0"; source = { @@ -402,6 +749,27 @@ sha256 = "0rh8nddwdya888j1f4wix3dfan1rlana3mc7mwrvafxir88a1qcs"; }; }; + "polyglot" = { + version = "0.3.5"; + source = { + type = "gem"; + sha256 = "1bqnxwyip623d8pr29rg6m8r0hdg08fpr2yb74f46rn1wgsnxmjr"; + }; + }; + "powerpack" = { + version = "0.1.1"; + source = { + type = "gem"; + sha256 = "1fnn3fli5wkzyjl4ryh0k90316shqjfnhydmc7f8lqpi0q21va43"; + }; + }; + "proxifier" = { + version = "1.0.3"; + source = { + type = "gem"; + sha256 = "1abzlg39cfji1nx3i8kmb5k3anr2rd392yg2icms24wkqz9g9zj0"; + }; + }; "pry" = { version = "0.10.3"; source = { @@ -414,6 +782,22 @@ "slop" ]; }; + "r-train" = { + version = "0.10.3"; + source = { + type = "gem"; + sha256 = "1hn0aap2lq15p97mb91h32yfsw8rh4imhyjlbs4jx9x52h2q6nam"; + }; + dependencies = [ + "docker-api" + "json" + "mixlib-shellout" + "net-scp" + "net-ssh" + "winrm" + "winrm-fs" + ]; + }; "rack" = { version = "1.6.4"; source = { @@ -421,13 +805,53 @@ sha256 = "09bs295yq6csjnkzj7ncj50i6chfxrhmzg1pk6p0vd2lb9ac8pj5"; }; }; - "rake" = { - version = "10.4.2"; + "rainbow" = { + version = "2.1.0"; source = { type = "gem"; - sha256 = "1rn03rqlf1iv6n87a78hkda2yqparhhaivfjpizblmxvlw2hk5r8"; + sha256 = "11licivacvfqbjx2rwppi8z89qff2cgs67d4wyx42pc5fg7g9f00"; }; }; + "rake" = { + version = "10.5.0"; + source = { + type = "gem"; + sha256 = "0jcabbgnjc788chx31sihc5pgbqnlc1c75wakmqlbjdm8jns2m9b"; + }; + }; + "retryable" = { + version = "2.0.3"; + source = { + type = "gem"; + sha256 = "0lr3wasxwdyzr0bag179003hs2ycn9w86m450pazc81v19j4x1dq"; + }; + }; + "ridley" = { + version = "4.5.0"; + source = { + type = "gem"; + sha256 = "0y0p45y3xp37gg8ab132x4i0iggl3p907wfklhr5gb7r5yj6sj4r"; + }; + dependencies = [ + "addressable" + "buff-config" + "buff-extensions" + "buff-ignore" + "buff-shell_out" + "celluloid" + "celluloid-io" + "chef-config" + "erubis" + "faraday" + "hashie" + "httpclient" + "json" + "mixlib-authentication" + "retryable" + "semverse" + "varia_model" + ]; + }; "rspec" = { version = "3.4.0"; source = { @@ -441,10 +865,10 @@ ]; }; "rspec-core" = { - version = "3.4.1"; + version = "3.4.4"; source = { type = "gem"; - sha256 = "0zl4fbrzl4gg2bn3fhv910q04sm2jvzdidmvd71gdgqwbzk0zngn"; + sha256 = "1z2zmy3xaq00v20ykamqvnynzv2qrrnbixc6dn0jw1c5q9mqq9fp"; }; dependencies = [ "rspec-support" @@ -473,10 +897,10 @@ ]; }; "rspec-mocks" = { - version = "3.4.0"; + version = "3.4.1"; source = { type = "gem"; - sha256 = "0iw9qvpawj3cfcg3xipi1v4y11g9q4f5lvmzgksn6f0chf97sjy1"; + sha256 = "0sk8ijq5d6bwhvjq94gfm02fssxkm99bgpasqazsmmll5m1cn7vr"; }; dependencies = [ "diff-lcs" @@ -501,12 +925,65 @@ "rspec-core" ]; }; - "rubyntlm" = { - version = "0.4.0"; + "rubocop" = { + version = "0.38.0"; source = { type = "gem"; - sha256 = "03xmi8mxcbc5laad10r6b705dk4vyhl9lr7h940f2rhibymxq45x"; + sha256 = "0qgwq558n41z2id7nwc3bh7z8h9yh7c9zdasqn8p30p0p72f5520"; }; + dependencies = [ + "parser" + "powerpack" + "rainbow" + "ruby-progressbar" + "unicode-display_width" + ]; + }; + "ruby-progressbar" = { + version = "1.7.5"; + source = { + type = "gem"; + sha256 = "0hynaavnqzld17qdx9r7hfw00y16ybldwq730zrqfszjwgi59ivi"; + }; + }; + "rubyntlm" = { + version = "0.6.0"; + source = { + type = "gem"; + sha256 = "00k1cll10mcyg6qpdzyrazm5pjbpj7wq54ki2y8vxz86842vbsgp"; + }; + }; + "rubyzip" = { + version = "1.2.0"; + source = { + type = "gem"; + sha256 = "10a9p1m68lpn8pwqp972lv61140flvahm3g9yzbxzjks2z3qlb2s"; + }; + }; + "rufus-lru" = { + version = "1.0.5"; + source = { + type = "gem"; + sha256 = "1vrsbvcsl7yspzb761p2gbl7dwz0d1j82msbjsksf8hi4cv970s5"; + }; + }; + "safe_yaml" = { + version = "1.0.4"; + source = { + type = "gem"; + sha256 = "1hly915584hyi9q9vgd968x2nsi5yag9jyf5kq60lwzi5scr7094"; + }; + }; + "sawyer" = { + version = "0.7.0"; + source = { + type = "gem"; + sha256 = "1cn48ql00mf1ag9icmfpj7g7swh7mdn7992ggynjqbw1gh15bs3j"; + }; + dependencies = [ + "addressable" + "faraday" + ]; }; "semverse" = { version = "1.2.1"; @@ -516,10 +993,10 @@ }; }; "serverspec" = { - version = "2.24.3"; + version = "2.31.0"; source = { type = "gem"; - sha256 = "03v6qqshqjsvbbjf1pwbi2mzgqg84wdbhnqb3gdbl1m9bz7sxg1n"; + sha256 = "169mh6s4drxy9qs7f01gqcaq1qfkvy9hdc1ny3lnk0aiwfcm2s1p"; }; dependencies = [ "multi_json" @@ -543,10 +1020,10 @@ }; }; "solve" = { - version = "2.0.1"; + version = "2.0.2"; source = { type = "gem"; - sha256 = "0009xvg40y59bijds5njnwfshfw68wmj54yz3qy538g9rpxvmqp1"; + sha256 = "0mwdd6z3vbzna9vphnkgdghy40xawn0yiwhamvb6spfk6n2c80kb"; }; dependencies = [ "molinillo" @@ -554,10 +1031,10 @@ ]; }; "specinfra" = { - version = "2.44.5"; + version = "2.53.1"; source = { type = "gem"; - sha256 = "018i3bmmy7lc21hagvwfmz2sdfj0v87a7yy3z162lcpq62vxw89r"; + sha256 = "17jbrn7nm6c72qy1nw064c0yi9cimd295s7j6x9bm878cbyq9i6i"; }; dependencies = [ "net-scp" @@ -580,6 +1057,55 @@ sha256 = "0gmkbakhfci5wnmbfx5i54f25j9zsvbw858yg3jjhfs5n4ad1xq1"; }; }; + "test-kitchen" = { + version = "1.6.0"; + source = { + type = "gem"; + sha256 = "1glmvjm24fmlbhm8q4lzi1ynds77ip3s4s5q6fdjlhdanh6jrgwz"; + }; + dependencies = [ + "mixlib-install" + "mixlib-shellout" + "net-scp" + "net-ssh" + "safe_yaml" + "thor" + ]; + }; + "thor" = { + version = "0.19.1"; + source = { + type = "gem"; + sha256 = "08p5gx18yrbnwc6xc0mxvsfaxzgy2y9i78xq7ds0qmdm67q39y4z"; + }; + }; + "timers" = { + version = "4.0.4"; + source = { + type = "gem"; + sha256 = "1jx4wb0x182gmbcs90vz0wzfyp8afi1mpl9w5ippfncyk4kffvrz"; + }; + dependencies = [ + "hitimes" + ]; + }; + "treetop" = { + version = "1.6.5"; + source = { + type = "gem"; + sha256 = "1lg7j8xf8yxmnz1v8zkwhs4l6j30kq2pxvvrvpah2frlaqz077dh"; + }; + dependencies = [ + "polyglot" + ]; + }; + "unicode-display_width" = { + version = "1.0.2"; + source = { + type = "gem"; + sha256 = "1cffs73zrn788dyd1vv91p0mcxgx2g1sis6552ggmfib3f148gbi"; + }; + }; "uuidtools" = { version = "2.1.5"; source = { @@ -587,11 +1113,22 @@ sha256 = "0zjvq1jrrnzj69ylmz1xcr30skf9ymmvjmdwbvscncd7zkr8av5g"; }; }; - "winrm" = { - version = "1.3.6"; + "varia_model" = { + version = "0.4.1"; source = { type = "gem"; - sha256 = "1rx42y5w9d3w6axxwdj9zckzsgsjk172zxn52w2jj65spl98vxbc"; + sha256 = "1qm9fhizfry055yras9g1129lfd48fxg4lh0hck8h8cvjdjz1i62"; + }; + dependencies = [ + "buff-extensions" + "hashie" + ]; + }; + "winrm" = { + version = "1.7.2"; + source = { + type = "gem"; + sha256 = "1as865gd6f0g0hppw8plki1i4afpn6lcx89sgi52v1mlgwxfifff"; }; dependencies = [ "builder" @@ -601,7 +1138,19 @@ "logging" "nori" "rubyntlm" - "uuidtools" + ]; + }; + "winrm-fs" = { + version = "0.3.2"; + source = { + type = "gem"; + sha256 = "08j2ip9wx1vcx45kd9ws6lb6znfq9gib1n2j7shzs10rxwgs1bj8"; + }; + dependencies = [ + "erubis" + "logging" + "rubyzip" + "winrm" ]; }; "wmi-lite" = { @@ -611,4 +1160,11 @@ sha256 = "06pm7jr2gcnphhhswha2kqw0vhxy91i68942s7gqriadbc8pq9z3"; }; }; + "yajl-ruby" = { + version = "1.2.1"; + source = { + type = "gem"; + sha256 = "0zvvb7i1bl98k3zkdrnx9vasq0rp2cyy5n7p9804dqs4fz9xh9vf"; + }; + }; } \ No newline at end of file diff --git a/pkgs/development/tools/continuous-integration/jenkins/default.nix b/pkgs/development/tools/continuous-integration/jenkins/default.nix index f416345028f..8cde6e1e365 100644 --- a/pkgs/development/tools/continuous-integration/jenkins/default.nix +++ b/pkgs/development/tools/continuous-integration/jenkins/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "jenkins-${version}"; - version = "1.650"; + version = "1.653"; src = fetchurl { url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war"; - sha256 = "0iypkyjcsfj36j683a6yis4q0wil6m8l065fx8v2p7ba4j2ql00n"; + sha256 = "1z24vddr8v64g4x3s7qx5n30sjcm2xpz7mn23zlc0n8lhnmkzqs8"; }; meta = with stdenv.lib; { description = "An extendable open source continuous integration server"; diff --git a/pkgs/development/tools/database/sqlitebrowser/default.nix b/pkgs/development/tools/database/sqlitebrowser/default.nix index e5c2060b5e9..338f3323d94 100644 --- a/pkgs/development/tools/database/sqlitebrowser/default.nix +++ b/pkgs/development/tools/database/sqlitebrowser/default.nix @@ -1,13 +1,14 @@ -{ stdenv, fetchzip, qt4, sqlite, cmake }: +{ stdenv, fetchFromGitHub, qt4, sqlite, cmake }: stdenv.mkDerivation rec { - version = "3.7.0"; + version = "3.8.0"; name = "sqlitebrowser-${version}"; - src = fetchzip { - name = "${name}-src"; - url = "https://github.com/sqlitebrowser/sqlitebrowser/archive/v${version}.tar.gz"; - sha256 = "1zsgylnxk4lyg7p6k6pv8d3mh1k0wkfcplh5c5da3x3i9a3qs78j"; + src = fetchFromGitHub { + repo = "sqlitebrowser"; + owner = "sqlitebrowser"; + rev = "v${version}"; + sha256 = "009yaamf6f654dl796f1gmj3rb34d55w87snsfgk33gpy6x19ccp"; }; buildInputs = [ qt4 sqlite cmake ]; diff --git a/pkgs/development/tools/documentation/doxygen/default.nix b/pkgs/development/tools/documentation/doxygen/default.nix index 82bbab5ff87..c843f0d2eef 100644 --- a/pkgs/development/tools/documentation/doxygen/default.nix +++ b/pkgs/development/tools/documentation/doxygen/default.nix @@ -1,45 +1,24 @@ -{ stdenv, fetchurl, perl, python, flex, bison, qt4, CoreServices, libiconv }: +{ stdenv, cmake, fetchurl, perl, python, flex, bison, qt4, CoreServices, libiconv }: -let - name = "doxygen-1.8.6"; -in -stdenv.mkDerivation { - inherit name; +stdenv.mkDerivation rec { + name = "doxygen-1.8.11"; + src = fetchurl { url = "ftp://ftp.stack.nl/pub/users/dimitri/${name}.src.tar.gz"; - sha256 = "0pskjlkbj76m9ka7zi66yj8ffjcv821izv3qxqyyphf0y0jqcwba"; + sha256 = "0ja02pm3fpfhc5dkry00kq8mn141cqvdqqpmms373ncbwi38pl35"; }; - prePatch = '' - substituteInPlace configure --replace /usr/bin/install $(type -P install) - ''; - - patches = [ ./tmake.patch ]; - + nativeBuildInputs = [ cmake ]; + buildInputs = [ perl python flex bison ] ++ stdenv.lib.optional (qt4 != null) qt4 ++ stdenv.lib.optional stdenv.isSunOS libiconv ++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices libiconv ]; - prefixKey = "--prefix "; - - configureFlags = - [ "--dot dot" ] - ++ stdenv.lib.optional stdenv.isSunOS "--install install" - ++ stdenv.lib.optional (qt4 != null) "--with-doxywizard"; - - preConfigure = - '' - patchShebangs . - '' + stdenv.lib.optionalString (qt4 != null) - '' - echo "using QTDIR=${qt4}..." - export QTDIR=${qt4} - ''; - - makeFlags = "MAN1DIR=share/man/man1"; + cmakeFlags = + stdenv.lib.optional (qt4 != null) "-Dbuild_wizard=YES"; enableParallelBuilding = true; diff --git a/pkgs/development/tools/documentation/doxygen/tmake.patch b/pkgs/development/tools/documentation/doxygen/tmake.patch deleted file mode 100644 index 4bba986c12c..00000000000 --- a/pkgs/development/tools/documentation/doxygen/tmake.patch +++ /dev/null @@ -1,23 +0,0 @@ -Fix the `check_unix' function, which looks for `/bin/uname' to determine -whether we're on a Unix-like system. - ---- doxygen-1.5.8/tmake/bin/tmake 2008-12-06 14:16:20.000000000 +0100 -+++ doxygen-1.5.8/tmake/bin/tmake 2009-03-05 11:29:55.000000000 +0100 -@@ -234,17 +234,7 @@ sub tmake_verb { - # - - sub check_unix { -- my($r); -- $r = 0; -- if ( -f "/bin/uname" ) { -- $r = 1; -- (-f "\\bin\\uname") && ($r = 0); -- } -- if ( -f "/usr/bin/uname" ) { -- $r = 1; -- (-f "\\usr\\bin\\uname") && ($r = 0); -- } -- return $r; -+ return 1; - } - diff --git a/pkgs/development/tools/documentation/gtk-doc/default.nix b/pkgs/development/tools/documentation/gtk-doc/default.nix index 6d93dc6def0..bb70b1ad364 100644 --- a/pkgs/development/tools/documentation/gtk-doc/default.nix +++ b/pkgs/development/tools/documentation/gtk-doc/default.nix @@ -3,11 +3,11 @@ stdenv.mkDerivation rec { name = "gtk-doc-${version}"; - version = "1.24"; + version = "1.25"; src = fetchurl { url = "mirror://gnome/sources/gtk-doc/${version}/${name}.tar.xz"; - sha256 = "12xmmcnq4138dlbhmqa45wqza8dky4lf856sp80h6xjwl2g7a85l"; + sha256 = "0hpxcij9xx9ny3gs9p0iz4r8zslw8wqymbyababiyl7603a6x90y"; }; # maybe there is a better way to pass the needed dtd and xsl files diff --git a/pkgs/development/tools/erlang/cuter/default.nix b/pkgs/development/tools/erlang/cuter/default.nix new file mode 100644 index 00000000000..a8806127d35 --- /dev/null +++ b/pkgs/development/tools/erlang/cuter/default.nix @@ -0,0 +1,43 @@ +{stdenv, autoconf, which, writeText, makeWrapper, fetchFromGitHub, erlang, + erlangPackages, z3, python27 }: + +stdenv.mkDerivation rec { + name = "cuter"; + version = "0.1"; + + src = fetchFromGitHub { + owner = "aggelgian"; + repo = "cuter"; + rev = "v${version}"; + sha256 = "1ax1pj6ji4w2mg3p0nh2lzmg3n9mgfxk4cf07pll51yrcfpfrnfv"; + }; + + setupHook = writeText "setupHook.sh" '' + addToSearchPath ERL_LIBS "$1/lib/erlang/lib/" + ''; + buildInputs = with erlangPackages; [ autoconf erlang z3 python27 makeWrapper which ]; + + buildFlags = "PWD=$(out)/lib/erlang/lib/cuter-${version} cuter_target"; + configurePhase = '' + autoconf + ./configure --prefix $out + ''; + + installPhase = '' + mkdir -p "$out/lib/erlang/lib/cuter-${version}" + mkdir -p "$out/bin" + cp -r * "$out/lib/erlang/lib/cuter-${version}" + cp cuter "$out/bin/cuter" + wrapProgram $out/bin/cuter \ + --prefix PATH : "${python27}/bin" \ + --suffix PYTHONPATH : "${z3}/lib/python2.7/site-packages" \ + --suffix ERL_LIBS : "$out/lib/erlang/lib" + ''; + + meta = { + description = "A concolic testing tool for the Erlang functional programming language"; + license = stdenv.lib.licenses.gpl3; + homepage = "https://github.com/aggelgian/cuter"; + maintainers = with stdenv.lib.maintainers; [ ericbmerritt ]; + }; +} diff --git a/pkgs/development/tools/galen/default.nix b/pkgs/development/tools/galen/default.nix index 169c8fdd68a..7ff283176e1 100644 --- a/pkgs/development/tools/galen/default.nix +++ b/pkgs/development/tools/galen/default.nix @@ -2,14 +2,14 @@ stdenv.mkDerivation rec { pname = "galen"; - version = "2.2.1"; + version = "2.2.3"; name = "${pname}-${version}"; inherit jdk; src = fetchurl { - url = "https://github.com/galenframework/galen/releases/download/galen-2.2.1/galen-bin-${version}.zip"; - sha256 = "0zwrh3bxcgkwip6z9lvy3hn53kfr99cdij64c57ff8d95xilclhb"; + url = "https://github.com/galenframework/galen/releases/download/galen-${version}/galen-bin-${version}.zip"; + sha256 = "13kvxbw68g82rv8bp9g4fkrrsd7nag1a4bspilqi2wnxc51c8mqq"; }; buildInputs = [ unzip ]; diff --git a/pkgs/development/tools/guile/g-wrap/default.nix b/pkgs/development/tools/guile/g-wrap/default.nix index 14777b95b85..6cce86a8062 100644 --- a/pkgs/development/tools/guile/g-wrap/default.nix +++ b/pkgs/development/tools/guile/g-wrap/default.nix @@ -4,7 +4,7 @@ stdenv.mkDerivation rec { name = "g-wrap-1.9.15"; src = fetchurl { url = "mirror://savannah/g-wrap/${name}.tar.gz"; - sha256 = "140fcvp24pqmfmiibhjxl3s75hj26ln7pkl2wxas84lnchbj9m4d"; + sha256 = "0ak0bha37dfpj9kmyw1r8fj8nva639aw5xr66wr5gd3l1rqf5xhg"; }; # Note: Glib support is optional, but it's quite useful (e.g., it's diff --git a/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix b/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix index 68c85fb2951..87dc173dd87 100644 --- a/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix +++ b/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix @@ -6,12 +6,12 @@ mkDerivation rec { pname = "cabal2nix"; - version = "20151217"; + version = "20160308"; src = fetchFromGitHub { owner = "nixos"; repo = "cabal2nix"; rev = "v${version}"; - sha256 = "1140ym5j1prvzyfw8q784dr0hwvfw6s4h63j3a4j67cawa2dbkr5"; + sha256 = "02lj3x0rgpxvaimwbbjjgwm4ka0wkk4x5h35jjygz6bkr5lv3m52"; }; postUnpack = "sourceRoot+=/${pname}"; isLibrary = false; diff --git a/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix b/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix index 7aac407e3ce..5aa4370b26f 100644 --- a/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix +++ b/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix @@ -11,8 +11,8 @@ mkDerivation rec { src = fetchFromGitHub { owner = "nixos"; repo = "cabal2nix"; - rev = "v20151217"; - sha256 = "1140ym5j1prvzyfw8q784dr0hwvfw6s4h63j3a4j67cawa2dbkr5"; + rev = "v20160308"; + sha256 = "02lj3x0rgpxvaimwbbjjgwm4ka0wkk4x5h35jjygz6bkr5lv3m52"; }; postUnpack = "sourceRoot+=/${pname}"; libraryHaskellDepends = [ diff --git a/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix b/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix index b2b3b46581a..ce1d9303cdc 100644 --- a/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix +++ b/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix @@ -7,12 +7,12 @@ mkDerivation rec { pname = "hackage2nix"; - version = "20151217"; + version = "20160308"; src = fetchFromGitHub { owner = "nixos"; repo = "cabal2nix"; rev = "v${version}"; - sha256 = "1140ym5j1prvzyfw8q784dr0hwvfw6s4h63j3a4j67cawa2dbkr5"; + sha256 = "02lj3x0rgpxvaimwbbjjgwm4ka0wkk4x5h35jjygz6bkr5lv3m52"; }; postUnpack = "sourceRoot+=/${pname}"; isLibrary = false; diff --git a/pkgs/development/tools/heroku/default.nix b/pkgs/development/tools/heroku/default.nix index f41ad639e45..d3e115708cc 100644 --- a/pkgs/development/tools/heroku/default.nix +++ b/pkgs/development/tools/heroku/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, postgresql, ruby }: +{ stdenv, fetchurl, postgresql, ruby, makeWrapper, nodejs-5_x }: with stdenv.lib; stdenv.mkDerivation rec { @@ -20,7 +20,8 @@ stdenv.mkDerivation rec { installPhase = '' mkdir -p $out cp -R * $out/ + wrapProgram $out/bin/heroku --set HEROKU_NODE_PATH ${nodejs-5_x}/bin/node ''; - buildInputs = [ ruby postgresql ]; + buildInputs = [ ruby postgresql makeWrapper ]; } diff --git a/pkgs/development/tools/jo/default.nix b/pkgs/development/tools/jo/default.nix new file mode 100644 index 00000000000..09b5edeeecd --- /dev/null +++ b/pkgs/development/tools/jo/default.nix @@ -0,0 +1,26 @@ +{stdenv, fetchFromGitHub, autoreconfHook}: + +stdenv.mkDerivation rec { + name = "jo-${version}"; + version = "1.0"; + + src = fetchFromGitHub { + owner = "jpmens"; + repo = "jo"; + + rev = "v${version}"; + sha256="0vyi0aaxsp6x3cvym7mlcfdsxjhj5h0b00mqc42mg8kc95cyp2c1"; + }; + + enableParallelBuilding = true; + + nativeBuildInputs = [ autoreconfHook ]; + + meta = with stdenv.lib; { + description = "A small utility to create JSON objects"; + homepage = https://github.com/jpmens/jo; + license = licenses.gpl2Plus; + maintainers = [maintainers.markus1189]; + platforms = platforms.all; + }; +} diff --git a/pkgs/development/tools/misc/distcc/20-minute-io-timeout.patch b/pkgs/development/tools/misc/distcc/20-minute-io-timeout.patch deleted file mode 100644 index 175060137fd..00000000000 --- a/pkgs/development/tools/misc/distcc/20-minute-io-timeout.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -ubr distcc-3.1-orig/src/io.c distcc-3.1-patched/src/io.c ---- distcc-3.1-orig/src/io.c 2008-12-02 22:50:25.000000000 +0100 -+++ distcc-3.1-patched/src/io.c 2010-01-07 15:07:18.000000000 +0100 -@@ -64,7 +64,7 @@ - - /** Timeout for all IO other than opening connections. Much longer, because - * compiling files can take a long time. **/ --const int dcc_io_timeout = 300; /* seconds */ -+const int dcc_io_timeout = 1200; /* seconds */ - - - /** diff --git a/pkgs/development/tools/misc/distcc/default.nix b/pkgs/development/tools/misc/distcc/default.nix index 0b42b88ef7a..cf9d7a01920 100644 --- a/pkgs/development/tools/misc/distcc/default.nix +++ b/pkgs/development/tools/misc/distcc/default.nix @@ -1,21 +1,25 @@ -{ stdenv, fetchurl, popt, avahi, pkgconfig, python, gtk, runCommand, gcc +{ stdenv, fetchFromGitHub, popt, avahi, pkgconfig, python, gtk, runCommand, gcc, autoconf, automake, which, procps , sysconfDir ? "" # set this parameter to override the default value $out/etc , static ? false }: let name = "distcc"; - version = "3.1"; + version = "2016-02-24"; distcc = stdenv.mkDerivation { name = "${name}-${version}"; - src = fetchurl { - url = "http://distcc.googlecode.com/files/${name}-${version}.tar.bz2"; - sha256 = "f55dbafd76bed3ce57e1bbcdab1329227808890d90f4c724fcd2d53f934ddd89"; + src = fetchFromGitHub { + owner = "distcc"; + repo = "distcc"; + rev = "b2fa4e21b4029e13e2c33f7b03ca43346f2cecb8"; + sha256 = "1vj31wcdas8wy52hy6749mlrca9v6ynycdiigx5ay8pnya9z73c6"; }; - buildInputs = [popt avahi pkgconfig python gtk]; + buildInputs = [popt avahi pkgconfig python gtk autoconf automake pkgconfig which procps]; preConfigure = '' + export CPATH=$(ls -d ${gcc.cc}/lib/gcc/*/${gcc.cc.version}/plugin/include) + configureFlagsArray=( CFLAGS="-O2 -fno-strict-aliasing" CXXFLAGS="-O2 -fno-strict-aliasing" --mandir=$out/share/man @@ -29,8 +33,9 @@ let --disable-Werror # a must on gcc 4.6 ) installFlags="sysconfdir=$out/etc"; + + ./autogen.sh ''; - patches = [ ./20-minute-io-timeout.patch ]; # The test suite fails because it uses hard-coded paths, i.e. /usr/bin/gcc. doCheck = false; @@ -69,7 +74,7 @@ let license = "GPL"; platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = with stdenv.lib.maintainers; [ simons anderspapitto ]; }; }; in diff --git a/pkgs/development/tools/misc/global/default.nix b/pkgs/development/tools/misc/global/default.nix index 3b9eccb2ae6..298a99ef665 100644 --- a/pkgs/development/tools/misc/global/default.nix +++ b/pkgs/development/tools/misc/global/default.nix @@ -3,11 +3,11 @@ }: stdenv.mkDerivation rec { - name = "global-6.5.2"; + name = "global-6.5.3"; src = fetchurl { url = "mirror://gnu/global/${name}.tar.gz"; - sha256 = "07qx3dbjwkbd1dn42qs7zgj77rxdj2psfrf7bx7yx9al38f87z60"; + sha256 = "00h3p10rn312rnsipfvpyr61bsfdqyfpxp506yy6ji58skqr2vrk"; }; nativeBuildInputs = [ libtool makeWrapper ]; diff --git a/pkgs/development/tools/misc/indent/default.nix b/pkgs/development/tools/misc/indent/default.nix index 17714b7a9d4..c66455791e8 100644 --- a/pkgs/development/tools/misc/indent/default.nix +++ b/pkgs/development/tools/misc/indent/default.nix @@ -7,16 +7,9 @@ stdenv.mkDerivation rec { url = "mirror://gnu/indent/${name}.tar.gz"; sha256 = "0f9655vqdvfwbxvs1gpa7py8k1z71aqh8hp73f65vazwbfz436wa"; }; - - preBuild = - '' - sed -e '/extern FILE [*]output/i#ifndef OUTPUT_DEFINED_ELSEWHERE' -i src/indent.h - sed -e '/extern FILE [*]output/a#endif' -i src/indent.h - sed -e '1i#define OUTPUT_DEFINED_ELSEWHERE 1' -i src/output.c - ''; meta = { - homepage = http://www.gnu.org/software/indent/; + homepage = https://www.gnu.org/software/indent/; description = "A source code reformatter"; license = stdenv.lib.licenses.gpl3Plus; }; diff --git a/pkgs/development/tools/misc/intel-gpu-tools/default.nix b/pkgs/development/tools/misc/intel-gpu-tools/default.nix index 28deca284ce..3d3e457781a 100644 --- a/pkgs/development/tools/misc/intel-gpu-tools/default.nix +++ b/pkgs/development/tools/misc/intel-gpu-tools/default.nix @@ -1,16 +1,20 @@ { stdenv, fetchurl, pkgconfig, libdrm, libpciaccess, cairo, dri2proto, udev -, libX11, libXext, libXv, libXrandr, glib, bison, libunwind }: +, libX11, libXext, libXv, libXrandr, glib, bison, libunwind, python3 }: stdenv.mkDerivation rec { - name = "intel-gpu-tools-1.13"; + name = "intel-gpu-tools-1.14"; src = fetchurl { url = "http://xorg.freedesktop.org/archive/individual/app/${name}.tar.bz2"; - sha256 = "0d5ff9l12zw9mdsjwbwn6y9k1gz6xlzsx5k87apz9vq6q625irn6"; + sha256 = "030g1akybk19y3jcxd8pp573ymrd4w7mmzxbspp064lwdv9y35im"; }; buildInputs = [ pkgconfig libdrm libpciaccess cairo dri2proto udev libX11 - libXext libXv libXrandr glib bison libunwind ]; + libXext libXv libXrandr glib bison libunwind python3 ]; + + preBuild = '' + patchShebangs debugger/system_routine/pre_cpp.py + ''; meta = with stdenv.lib; { homepage = https://01.org/linuxgraphics/; diff --git a/pkgs/development/tools/misc/trv/default.nix b/pkgs/development/tools/misc/trv/default.nix index 0f99cabbb96..606cc514647 100644 --- a/pkgs/development/tools/misc/trv/default.nix +++ b/pkgs/development/tools/misc/trv/default.nix @@ -34,6 +34,6 @@ stdenv.mkDerivation { description = "Shim for vrt to enable bootstrapping"; license = licenses.asl20; maintainers = [ maintainers.ericbmerritt ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/tools/misc/uhd/default.nix b/pkgs/development/tools/misc/uhd/default.nix index 67ef086941e..786a7d8cdb5 100644 --- a/pkgs/development/tools/misc/uhd/default.nix +++ b/pkgs/development/tools/misc/uhd/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchurl, cmake, pkgconfig, python, cheetahTemplate, orc, libusb1, boost }: +{ stdenv, fetchurl, fetchFromGitHub, cmake, pkgconfig +, python, pythonPackages, orc, libusb1, boost }: # You need these udev rules to not have to run as root (copied from # ${uhd}/share/uhd/utils/uhd-usrp.rules): @@ -8,29 +9,33 @@ stdenv.mkDerivation rec { name = "uhd-${version}"; - version = "3.7.0"; + version = "3.9.3"; # UHD seems to use three different version number styles: x.y.z, xxx_yyy_zzz # and xxx.yyy.zzz. Hrmpf... - src = fetchurl { - name = "${name}.tar.gz"; - url = "https://github.com/EttusResearch/uhd/archive/release_003_007_000.tar.gz"; - sha256 = "0x9imfy63s6wlbilr2n82c15nd33ix0mbap0q1xwh2pj1mk4d5jk"; + src = fetchFromGitHub { + owner = "EttusResearch"; + repo = "uhd"; + rev = "release_003_009_003"; + sha256 = "0nbm8nrjd0l8jj1wq0kkgd8pifzysdyc7pvraq16m0dc01mr638h"; }; + enableParallelBuilding = true; + cmakeFlags = "-DLIBUSB_INCLUDE_DIRS=${libusb1}/include/libusb-1.0"; - buildInputs = [ cmake pkgconfig python cheetahTemplate orc libusb1 boost ]; + nativeBuildInputs = [ cmake pkgconfig ]; + buildInputs = [ python pythonPackages.pyramid_mako orc libusb1 boost ]; # Build only the host software preConfigure = "cd host"; # Firmware images are downloaded (pre-built) - uhdImagesName = "uhd-images_003.007.000-release"; + uhdImagesName = "uhd-images_003.007.003-release"; uhdImagesSrc = fetchurl { url = "http://files.ettus.com/binaries/maint_images/archive/${uhdImagesName}.tar.gz"; - sha256 = "0vb0rc5ji8n6l6ycvd7pbazxzm0ihvkmqm77jflqrd3kky8r722d"; + sha256 = "1pv5c5902041494z0jfw623ca29pvylrw5klybbhklvn5wwlr6cv"; }; postPhases = [ "installFirmware" ]; @@ -51,6 +56,6 @@ stdenv.mkDerivation rec { homepage = http://ettus-apps.sourcerepo.com/redmine/ettus/projects/uhd/wiki; license = licenses.gpl3Plus; platforms = platforms.linux; - maintainers = [ maintainers.bjornfor ]; + maintainers = with maintainers; [ bjornfor fpletz ]; }; } diff --git a/pkgs/development/tools/ocaml/camlp4/default.nix b/pkgs/development/tools/ocaml/camlp4/default.nix index 20373c923e7..ae253180aee 100644 --- a/pkgs/development/tools/ocaml/camlp4/default.nix +++ b/pkgs/development/tools/ocaml/camlp4/default.nix @@ -39,6 +39,6 @@ stdenv.mkDerivation { meta = with stdenv.lib; { description = "A software system for writing extensible parsers for programming languages"; homepage = https://github.com/ocaml/camlp4; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/tools/ocaml/camlp5/5.15.nix b/pkgs/development/tools/ocaml/camlp5/5.15.nix index adfdb4bd204..e8cda36f101 100644 --- a/pkgs/development/tools/ocaml/camlp5/5.15.nix +++ b/pkgs/development/tools/ocaml/camlp5/5.15.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation { homepage = "${webpage}"; license = stdenv.lib.licenses.bsd3; branch = "5"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.z77z ]; diff --git a/pkgs/development/tools/ocaml/camlp5/default.nix b/pkgs/development/tools/ocaml/camlp5/default.nix index d9f36423430..83dd74d321e 100644 --- a/pkgs/development/tools/ocaml/camlp5/default.nix +++ b/pkgs/development/tools/ocaml/camlp5/default.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation { ''; homepage = http://pauillac.inria.fr/~ddr/camlp5/; license = licenses.bsd3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ z77z vbgl ]; diff --git a/pkgs/development/tools/ocaml/findlib/default.nix b/pkgs/development/tools/ocaml/findlib/default.nix index 746be6dd081..5d9757f2666 100644 --- a/pkgs/development/tools/ocaml/findlib/default.nix +++ b/pkgs/development/tools/ocaml/findlib/default.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation rec { homepage = http://projects.camlcity.org/projects/findlib.html; description = "O'Caml library manager"; license = stdenv.lib.licenses.mit; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.z77z stdenv.lib.maintainers.vbmithr diff --git a/pkgs/development/tools/ocaml/js_of_ocaml/default.nix b/pkgs/development/tools/ocaml/js_of_ocaml/default.nix index ca5230d1e08..3258aaf08c2 100644 --- a/pkgs/development/tools/ocaml/js_of_ocaml/default.nix +++ b/pkgs/development/tools/ocaml/js_of_ocaml/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation { homepage = http://ocsigen.org/js_of_ocaml/; description = "Compiler of OCaml bytecode to Javascript. It makes it possible to run Ocaml programs in a Web browser"; license = licenses.lgpl2; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ maintainers.gal_bolle ]; diff --git a/pkgs/development/tools/ocaml/oasis/default.nix b/pkgs/development/tools/ocaml/oasis/default.nix index e823466f417..70d90752ace 100644 --- a/pkgs/development/tools/ocaml/oasis/default.nix +++ b/pkgs/development/tools/ocaml/oasis/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation { homepage = http://oasis.forge.ocamlcore.org/; description = "Configure, build and install system for OCaml projects"; license = licenses.lgpl21; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ vbgl z77z ]; diff --git a/pkgs/development/tools/ocaml/ocaml-top/default.nix b/pkgs/development/tools/ocaml/ocaml-top/default.nix index 79c81c5c447..9bea3e9dc17 100644 --- a/pkgs/development/tools/ocaml/ocaml-top/default.nix +++ b/pkgs/development/tools/ocaml/ocaml-top/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation { homepage = http://www.typerex.org/ocaml-top.html; license = stdenv.lib.licenses.gpl3; description = "A simple cross-platform OCaml code editor built for top-level evaluation"; - platforms = ocamlPackages.ocaml.meta.platforms; + platforms = ocamlPackages.ocaml.meta.platforms or []; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/tools/ocaml/ocamlify/default.nix b/pkgs/development/tools/ocaml/ocamlify/default.nix index 0a402d4ba46..f3caa42b8fd 100644 --- a/pkgs/development/tools/ocaml/ocamlify/default.nix +++ b/pkgs/development/tools/ocaml/ocamlify/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation { meta = { homepage = http://forge.ocamlcore.org/projects/ocamlmod/ocamlmod; description = "Generate OCaml modules from source files"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = stdenv.lib.licenses.lgpl21; maintainers = with stdenv.lib.maintainers; [ z77z diff --git a/pkgs/development/tools/ocaml/ocamlmod/default.nix b/pkgs/development/tools/ocaml/ocamlmod/default.nix index 65359049a96..7ff73ff28dc 100644 --- a/pkgs/development/tools/ocaml/ocamlmod/default.nix +++ b/pkgs/development/tools/ocaml/ocamlmod/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation { meta = { homepage = http://forge.ocamlcore.org/projects/ocamlmod/ocamlmod; description = "Generate OCaml modules from source files"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with stdenv.lib.maintainers; [ z77z ]; diff --git a/pkgs/development/tools/ocaml/ocamlscript/default.nix b/pkgs/development/tools/ocaml/ocamlscript/default.nix index 1b37c21fdfa..28efaf4cf3d 100644 --- a/pkgs/development/tools/ocaml/ocamlscript/default.nix +++ b/pkgs/development/tools/ocaml/ocamlscript/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation { meta = with stdenv.lib; { homepage = http://martin.jambon.free.fr/ocamlscript.html; license = licenses.boost; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; description = "Natively-compiled OCaml scripts"; maintainers = [ maintainers.vbgl ]; }; diff --git a/pkgs/development/tools/ocaml/ocp-build/default.nix b/pkgs/development/tools/ocaml/ocp-build/default.nix index 31b99ada2a3..48657a8e19d 100644 --- a/pkgs/development/tools/ocaml/ocp-build/default.nix +++ b/pkgs/development/tools/ocaml/ocp-build/default.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation { between source files. ''; license = licenses.gpl3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ maintainers.jirkamarsik ]; }; } diff --git a/pkgs/development/tools/ocaml/ocp-indent/default.nix b/pkgs/development/tools/ocaml/ocp-indent/default.nix index 224ce57808f..d146dd5e973 100644 --- a/pkgs/development/tools/ocaml/ocp-indent/default.nix +++ b/pkgs/development/tools/ocaml/ocp-indent/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation { homepage = "http://typerex.ocamlpro.com/ocp-indent.html"; description = "A customizable tool to indent OCaml code"; license = licenses.gpl3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ maintainers.jirkamarsik ]; }; } diff --git a/pkgs/development/tools/ocaml/ocp-index/default.nix b/pkgs/development/tools/ocaml/ocp-index/default.nix index 76be5f8bd47..37f90c41100 100644 --- a/pkgs/development/tools/ocaml/ocp-index/default.nix +++ b/pkgs/development/tools/ocaml/ocp-index/default.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation { homepage = http://typerex.ocamlpro.com/ocp-index.html; description = "A simple and light-weight documentation extractor for OCaml"; license = stdenv.lib.licenses.lgpl3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/tools/ocaml/omake/0.9.8.6-rc1.nix b/pkgs/development/tools/ocaml/omake/0.9.8.6-rc1.nix index 40188734a99..9f318afc67d 100644 --- a/pkgs/development/tools/ocaml/omake/0.9.8.6-rc1.nix +++ b/pkgs/development/tools/ocaml/omake/0.9.8.6-rc1.nix @@ -33,6 +33,6 @@ stdenv.mkDerivation { description = "Omake build system"; homepage = "${webpage}"; license = "GPL"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/tools/ocaml/utop/default.nix b/pkgs/development/tools/ocaml/utop/default.nix index c9addf55312..b5de65b7c10 100644 --- a/pkgs/development/tools/ocaml/utop/default.nix +++ b/pkgs/development/tools/ocaml/utop/default.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { ''; homepage = https://github.com/diml/utop; license = stdenv.lib.licenses.bsd3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.gal_bolle ]; diff --git a/pkgs/development/tools/parsing/flexc++/default.nix b/pkgs/development/tools/parsing/flexc++/default.nix index e1426b3a1d4..c01c374b5fd 100644 --- a/pkgs/development/tools/parsing/flexc++/default.nix +++ b/pkgs/development/tools/parsing/flexc++/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "flexc++-${version}"; - version = "2.03.00"; + version = "2.04.00"; src = fetchFromGitHub { - sha256 = "1knb5h6l71n5zi9xzml5f6v7wspbk7vrcaiy2div8bnj7na3z717"; + sha256 = "0fz9gxpc491cngj9z9y059vbl65ng48c4nw9k3sl983zfnqfy26y"; rev = version; repo = "flexcpp"; owner = "fbb-git"; @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { postPatch = '' substituteInPlace INSTALL.im --replace /usr $out - patchShebangs ./build + patchShebangs . ''; buildPhase = '' @@ -28,11 +28,7 @@ stdenv.mkDerivation rec { ''; installPhase = '' - ./build install man - ./build install manual - ./build install program - ./build install skel - ./build install std + ./build install x ''; meta = with stdenv.lib; { diff --git a/pkgs/development/tools/rust/rustfmt/default.nix b/pkgs/development/tools/rust/rustfmt/default.nix index 28c88d6c15a..55e721306ce 100644 --- a/pkgs/development/tools/rust/rustfmt/default.nix +++ b/pkgs/development/tools/rust/rustfmt/default.nix @@ -3,15 +3,17 @@ with rustPlatform; buildRustPackage rec { - name = "rustfmt-git-2016-02-15"; + name = "rustfmt-${version}"; + version = "2016-03-22"; + src = fetchFromGitHub { owner = "rust-lang-nursery"; repo = "rustfmt"; - rev = "65bc5c242de86f0651b34fd913ca338a880696e8"; - sha256 = "02rdim0y5zg1r2zkfy6kj53idlbdybf3ckardbjsvdna5idc1hpz"; + rev = "ca757183fedf8e89286372b91ca074c11d99c4f4"; + sha256 = "0ngg5m002hwwmsqy9wr50dj3l3zgwk39701wzszm3nrhz6x13dmj"; }; - depsSha256 = "1297vy5sgiq4xqdm27pa8f99qiwrl15hb2r1dydzgk7n4iqyir6c"; + depsSha256 = "0mg4z197iiwjlgqs5izacld25cr11qi3bcrqq204f0jzrnj3y8ag"; meta = with stdenv.lib; { description = "A tool for formatting Rust code according to style guidelines"; diff --git a/pkgs/development/tools/sauce-connect/default.nix b/pkgs/development/tools/sauce-connect/default.nix index 3818020d931..dbaef2c9ad7 100644 --- a/pkgs/development/tools/sauce-connect/default.nix +++ b/pkgs/development/tools/sauce-connect/default.nix @@ -4,18 +4,18 @@ with lib; stdenv.mkDerivation rec { name = "sauce-connect-${version}"; - version = "4.3.13"; + version = "4.3.14"; src = fetchurl ( if stdenv.system == "x86_64-linux" then { url = "https://saucelabs.com/downloads/sc-${version}-linux.tar.gz"; - sha256 = "1flhsssb7wvfbwyvhc9k2di3nd7dlq832xp6dg658xbqk7mr9rvw"; + sha256 = "0j900dijhq8rpjaf2hgqvz5gy3dgal6l1f7q6353m2v14jbwb786"; } else if stdenv.system == "i686-linux" then { url = "https://saucelabs.com/downloads/sc-${version}-linux32.tar.gz"; - sha256 = "1hy0riljgjf4sf4cg7kn0hd18w393bdwhp0ajyimzvscg05nx8fq"; + sha256 = "0nkgd1pyh21p0yg1zs0nzki0w4wsl1yy964lbz6mf6nrsjzqg54k"; } else { url = "https://saucelabs.com/downloads/sc-${version}-osx.zip"; - sha256 = "1fhclbc79rk6pmf5qzc2pkz1z3nsawr9pfi5bzqs8r1514ki4m4p"; + sha256 = "1mcvxvqvfikkn19mjwws55x2abjp09jvjjg6b15x8w075bd9ql8g"; } ); diff --git a/pkgs/development/web/nodejs/v5.nix b/pkgs/development/web/nodejs/v5.nix index 185ad61680b..c1d45443885 100644 --- a/pkgs/development/web/nodejs/v5.nix +++ b/pkgs/development/web/nodejs/v5.nix @@ -3,11 +3,10 @@ }: # nodejs 5.0.0 can't be built on armv5tel. Armv6 with FPU, minimum I think. -# Related post: http://zo0ok.com/techfindings/archives/1820 assert stdenv.system != "armv5tel-linux"; let - version = "5.7.1"; + version = "5.9.0"; deps = { inherit openssl zlib libuv; @@ -31,7 +30,7 @@ in stdenv.mkDerivation { src = fetchurl { url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.gz"; - sha256 = "16016cjycg0filh15nqfh3k1fdw3kaykl87xf8dnzf666mirbm7c"; + sha256 = "0ghgfqs64794g6ggrvsdcqwz2lnhck0yiy2fyyg3in8z91k5l5z5"; }; configureFlags = concatMap sharedConfigureFlags (builtins.attrNames deps) ++ [ "--without-dtrace" ]; diff --git a/pkgs/games/anki/default.nix b/pkgs/games/anki/default.nix index 4c06f9126a9..f4fff289fec 100644 --- a/pkgs/games/anki/default.nix +++ b/pkgs/games/anki/default.nix @@ -1,11 +1,12 @@ { stdenv, lib, fetchurl, substituteAll, lame, mplayer -, libpulseaudio, python, pyqt4, qt4, pythonPackages +, libpulseaudio, python, pyqt4, qt4, wrapPython +, pysqlite, sqlalchemy, pyaudio, beautifulsoup, httplib2, matplotlib # This little flag adds a huge number of dependencies, but we assume that # everyone wants Anki to draw plots with statistics by default. -, plotsSupport ? true }: +, plotsSupport ? true +}: let - py = pythonPackages; version = "2.0.33"; in stdenv.mkDerivation rec { @@ -18,10 +19,10 @@ stdenv.mkDerivation rec { sha256 = "1d5rf5gcw98m38wam6wh3hyh7qd78ws7zipm67xg744flqsjrzmr"; }; - pythonPath = [ pyqt4 py.pysqlite py.sqlalchemy9 py.pyaudio py.beautifulsoup py.httplib2 ] - ++ lib.optional plotsSupport py.matplotlib; + pythonPath = [ pyqt4 pysqlite sqlalchemy pyaudio beautifulsoup httplib2 ] + ++ lib.optional plotsSupport matplotlib; - buildInputs = [ python py.wrapPython lame mplayer libpulseaudio ]; + buildInputs = [ python wrapPython lame mplayer libpulseaudio ]; phases = [ "unpackPhase" "patchPhase" "installPhase" ]; diff --git a/pkgs/games/cataclysm-dda/default.nix b/pkgs/games/cataclysm-dda/default.nix index ed4aed35e11..3956c994531 100644 --- a/pkgs/games/cataclysm-dda/default.nix +++ b/pkgs/games/cataclysm-dda/default.nix @@ -1,15 +1,7 @@ { fetchFromGitHub, stdenv, makeWrapper, pkgconfig, ncurses, lua, SDL2, SDL2_image, SDL2_ttf, SDL2_mixer, freetype, gettext }: -let architecture = - if stdenv.system == "i686-linux" then - "linux32" - else if stdenv.system == "x86_64-linux" then - "linux64" - else - abort "currently only linux 32-bit and 64-bit are supported"; - -in stdenv.mkDerivation rec { +stdenv.mkDerivation rec { version = "0.C"; name = "cataclysm-dda-${version}"; @@ -20,13 +12,15 @@ in stdenv.mkDerivation rec { sha256 = "03sdzsk4qdq99qckq0axbsvg1apn6xizscd8pwp5w6kq2fyj5xkv"; }; - buildInputs = [ makeWrapper pkgconfig ncurses lua SDL2 SDL2_image SDL2_ttf SDL2_mixer freetype gettext ]; + nativeBuildInputs = [ makeWrapper pkgconfig ]; - patchPhase = '' + buildInputs = [ ncurses lua SDL2 SDL2_image SDL2_ttf SDL2_mixer freetype gettext ]; + + postPatch = '' patchShebangs . - substituteAllInPlace lang/compile_mo.sh \ - --replace msgfmt ${gettext}/msgfmt - sed -i -e 's|DATA_PREFIX=$(PREFIX)/share/cataclysm-dda/|DATA_PREFIX=$(PREFIX)/share/|g' Makefile + sed -i Makefile \ + -e 's,-Werror,,g' \ + -e 's,\(DATA_PREFIX=$(PREFIX)/share/\)cataclysm-dda/,\1,g' ''; makeFlags = "PREFIX=$(out) LUA=1 TILES=1 SOUND=1 RELEASE=1 USE_HOME_DIR=1"; diff --git a/pkgs/games/chessx/default.nix b/pkgs/games/chessx/default.nix index dd0fa16b707..39ec3670e54 100644 --- a/pkgs/games/chessx/default.nix +++ b/pkgs/games/chessx/default.nix @@ -22,7 +22,9 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; installPhase = '' mkdir -p "$out/bin" + mkdir -p "$out/share/applications" cp -pr release/chessx "$out/bin" + cp -pr unix/chessx.desktop "$out/share/applications" ''; meta = with stdenv.lib; { diff --git a/pkgs/games/eduke32/default.nix b/pkgs/games/eduke32/default.nix index beb2bb57908..a4f296da039 100644 --- a/pkgs/games/eduke32/default.nix +++ b/pkgs/games/eduke32/default.nix @@ -2,6 +2,7 @@ , pkgconfig, SDL2, SDL2_mixer }: let + year = "2015"; date = "20150420"; rev = "5160"; in stdenv.mkDerivation rec { @@ -9,7 +10,7 @@ in stdenv.mkDerivation rec { version = "${date}-${rev}"; src = fetchurl { - url = "http://dukeworld.duke4.net/eduke32/synthesis/${version}/eduke32_src_${version}.tar.xz"; + url = "http://dukeworld.duke4.net/eduke32/synthesis/old/${year}/${version}/eduke32_src_${version}.tar.xz"; sha256 = "1nlq5jbglg00c1z1vsyl627fh0mqfxvk5qyxav5vzla2b4svik2v"; }; diff --git a/pkgs/games/keen4/default.nix b/pkgs/games/keen4/default.nix index 562df3ac1b6..64522e568db 100644 --- a/pkgs/games/keen4/default.nix +++ b/pkgs/games/keen4/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, dosbox, unzip}: +{ lib, stdenv, fetchurl, dosbox, unzip }: stdenv.mkDerivation { name = "keen4"; @@ -15,5 +15,7 @@ stdenv.mkDerivation { meta = { description = "Commander Keen Episode 4: Secret of the Oracle"; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.eelco ]; }; } diff --git a/pkgs/games/openra/default.nix b/pkgs/games/openra/default.nix index b666ac2ecca..c79c0680410 100644 --- a/pkgs/games/openra/default.nix +++ b/pkgs/games/openra/default.nix @@ -12,7 +12,6 @@ in stdenv.mkDerivation rec { homepage = "http://www.open-ra.org/"; license = licenses.gpl3; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/games/performous/default.nix b/pkgs/games/performous/default.nix index ff4f370f04a..faeb11c3781 100644 --- a/pkgs/games/performous/default.nix +++ b/pkgs/games/performous/default.nix @@ -11,7 +11,6 @@ stdenv.mkDerivation { homepage = "http://performous.org/"; license = licenses.gpl2Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchFromGitHub { diff --git a/pkgs/games/quake3/ioquake/default.nix b/pkgs/games/quake3/ioquake/default.nix index 8988c391824..3067b5cefea 100644 --- a/pkgs/games/quake3/ioquake/default.nix +++ b/pkgs/games/quake3/ioquake/default.nix @@ -1,23 +1,21 @@ -{ lib, stdenv, fetchFromGitHub, xlibsWrapper, SDL2, mesa, openalSoft +{ lib, stdenv, fetchFromGitHub, which, pkgconfig, xlibsWrapper, SDL2, mesa, openalSoft , curl, speex, opusfile, libogg, libopus, libjpeg, mumble, freetype }: stdenv.mkDerivation rec { name = "ioquake3-git-${version}"; - version = "2016-02-18"; + version = "2016-03-15"; src = fetchFromGitHub { owner = "ioquake"; repo = "ioq3"; - rev = "a331637745fb82266f3627fb438f2d58d53e366c"; - sha256 = "0l9ppv1msd73bhqmdiv5lsvkr5i6khqgi6gi322gbnndr20arn4n"; + rev = "f911e32bb059f714dfc49dc2296bc6f27c442e4c"; + sha256 = "0l60snxlgvwxbpv31nwshy0rddyyxmcvqg6xqj9ifzr1gj4np5r8"; }; + nativeBuildInputs = [ which pkgconfig ]; buildInputs = [ xlibsWrapper SDL2 mesa openalSoft curl speex opusfile libogg libopus libjpeg freetype mumble ]; - NIX_CFLAGS_COMPILE = [ "-I${SDL2}/include/SDL2" "-I${opusfile}/include/opus" "-I${libopus}/include/opus" ]; - NIX_CFLAGS_LINK = [ "-lSDL2" ]; - enableParallelBuilding = true; makeFlags = [ "USE_INTERNAL_LIBS=0" "USE_FREETYPE=1" "USE_OPENAL_DLOPEN=0" "USE_CURL_DLOPEN=0" ]; diff --git a/pkgs/games/rimshot/default.nix b/pkgs/games/rimshot/default.nix new file mode 100644 index 00000000000..ac6fdee1f6b --- /dev/null +++ b/pkgs/games/rimshot/default.nix @@ -0,0 +1,62 @@ +{ stdenv, fetchurl, unzip, love, lua, makeWrapper, makeDesktopItem }: + +let + pname = "rimshot"; + version = "1.0"; + + icon = fetchurl { + url = "http://stabyourself.net/images/screenshots/rimshot-2.png"; + sha256 = "08fyiqym3gcpq2vgb5dvafkban42fsbzfcr3iiyw03hz99q53psd"; + }; + + desktopItem = makeDesktopItem { + name = "rimshot"; + exec = "${pname}"; + icon = "${icon}"; + comment = "Create your own music"; + desktopName = "Rimshot"; + genericName = "rimshot"; + categories = "Audio;AudioVideo;Music"; + }; + +in + +stdenv.mkDerivation rec { + name = "${pname}-${version}"; + + src = fetchurl { + url = "http://stabyourself.net/dl.php?file=${pname}/${pname}-source.zip"; + sha256 = "08pdkyvki92549605m9bqnr24ipkbwkp5nkr5aagdqnr8ai4rgmi"; + }; + + nativeBuildInputs = [ makeWrapper unzip ]; + buildInputs = [ lua love ]; + + phases = [ "unpackPhase" "installPhase" ]; + + unpackPhase = '' + unzip -j $src + ''; + + installPhase = + '' + mkdir -p $out/bin + mkdir -p $out/share/games/lovegames + + cp -v ./*.love $out/share/games/lovegames/${pname}.love + makeWrapper ${love}/bin/love $out/bin/${pname} --add-flags $out/share/games/lovegames/${pname}.love + + chmod +x $out/bin/${pname} + mkdir -p $out/share/applications + ln -s ${desktopItem}/share/applications/* $out/share/applications/ + ''; + + meta = with stdenv.lib; { + description = "Create your own music"; + maintainers = with maintainers; [ leenaars ]; + platforms = platforms.linux; + license = licenses.free; + downloadPage = http://stabyourself.net/rimshot/; + }; + +} diff --git a/pkgs/games/stepmania/default.nix b/pkgs/games/stepmania/default.nix index 0ec52cc5804..c4dc96a4c4d 100644 --- a/pkgs/games/stepmania/default.nix +++ b/pkgs/games/stepmania/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, fetchFromGitHub, cmake, nasm +{ stdenv, lib, fetchpatch, fetchFromGitHub, cmake, nasm , gtk2, glib, ffmpeg, alsaLib, libmad, libogg, libvorbis , glew, libpulseaudio }: @@ -27,6 +27,14 @@ stdenv.mkDerivation rec { "-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib}/lib/glib-2.0/include" ]; + patches = [ + # Fix compilation on i686 + (fetchpatch { + url = "https://github.com/stepmania/stepmania/commit/f1e114aa03c90884946427bb43a75badec21f163.patch"; + sha256 = "1cm14w92dilqvlyqfffiihf09ra97hxzgfal5gx08brc3j1yyzdw"; + }) + ]; + postInstall = '' mkdir -p $out/bin ln -s $out/stepmania-5.0/stepmania $out/bin/stepmania diff --git a/pkgs/misc/cups/drivers/brgenml1cupswrapper/default.nix b/pkgs/misc/cups/drivers/brgenml1cupswrapper/default.nix new file mode 100644 index 00000000000..e4ac510dd14 --- /dev/null +++ b/pkgs/misc/cups/drivers/brgenml1cupswrapper/default.nix @@ -0,0 +1,105 @@ +{ stdenv, fetchurl, cups, perl, brgenml1lpr, debugLvl ? "0"}: + +/* + [Setup instructions](http://support.brother.com/g/s/id/linux/en/instruction_prn1a.html). + + URI example + ~ `lpd://BRW0080927AFBCE/binary_p1` + + Logging + ------- + + `/tmp/br_cupswrapper_ml1.log` when `DEBUG > 0` in `brother_lpdwrapper_BrGenML1`. + Note that when `DEBUG > 1` the wrapper stops performing its function. Better + keep `DEBUG == 1` unless this is desirable. + + Now activable through this package's `debugLvl` parameter whose value is to be + used to establish `DEBUG`. + + Issues + ------ + + 1. > Error: /tmp/brBrGenML1rc_15642 :cannot open file !! + + This is a non fatal issue. The job will still be printed. However, not sure + what kind of information could be lost. + + There should be a more elegant way to patch this. + + 2. > touch: cannot touch '/tmp/BrGenML1_latest_print_info': Permission denied + + TODO: Address. + + 3. > perl: warning: Falling back to the standard locale ("C"). + + are supported and installed on your system. + LANG = "en_US.UTF-8" + LC_ALL = (unset), + LANGUAGE = (unset), + perl: warning: Please check that your locale settings: + perl: warning: Setting locale failed. + + TODO: Address. +*/ + +stdenv.mkDerivation rec { + + name = "brgenml1cupswrapper-3.1.0-1"; + src = fetchurl { + url = "http://download.brother.com/welcome/dlf101125/${name}.i386.deb"; + sha256 = "0kd2a2waqr10kfv1s8is3nd5dlphw4d1343srdsbrlbbndja3s6r"; + }; + + unpackPhase = '' + ar x $src + tar xfvz data.tar.gz + ''; + + buildInputs = [ cups perl brgenml1lpr ]; + buildPhase = ":"; + + patchPhase = '' + WRAPPER=opt/brother/Printers/BrGenML1/cupswrapper/brother_lpdwrapper_BrGenML1 + PAPER_CFG=opt/brother/Printers/BrGenML1/cupswrapper/paperconfigml1 + + substituteInPlace $WRAPPER \ + --replace "basedir =~" "basedir = \"${brgenml1lpr}/opt/brother/Printers/BrGenML1\"; #" \ + --replace "PRINTER =~" "PRINTER = \"BrGenML1\"; #" \ + --replace "\$DEBUG=0;" "\$DEBUG=${debugLvl};" + + # Fixing issue #2. + substituteInPlace $WRAPPER \ + --replace "\`cp " "\`cp -p " \ + --replace "\$TEMPRC\`" "\$TEMPRC; chmod a+rw \$TEMPRC\`" \ + --replace "\`mv " "\`cp -p " + + # This config script make this assumption that the *.ppd are found in a global location `/etc/cups/ppd`. + substituteInPlace $PAPER_CFG \ + --replace "/etc/cups/ppd" "$out/share/cups/model" + ''; + + installPhase = '' + CUPSFILTER=$out/lib/cups/filter + CUPSPPD=$out/share/cups/model + + CUPSWRAPPER=opt/brother/Printers/BrGenML1/cupswrapper + mkdir -p $out/$CUPSWRAPPER + cp -rp $CUPSWRAPPER/* $out/$CUPSWRAPPER + + mkdir -p $CUPSFILTER + ln -s $out/$CUPSWRAPPER/brother_lpdwrapper_BrGenML1 $CUPSFILTER + + mkdir -p $CUPSPPD + ln -s $out/$CUPSWRAPPER/brother-BrGenML1-cups-en.ppd $CUPSPPD + ''; + + dontPatchELF = true; + + meta = { + description = "Brother BrGenML1 CUPS wrapper driver"; + homepage = http://www.brother.com; + platforms = stdenv.lib.platforms.linux; + license = stdenv.lib.licenses.gpl2Plus; + maintainers = with stdenv.lib.maintainers; [ jraygauthier ]; + }; +} diff --git a/pkgs/misc/cups/drivers/brgenml1lpr/default.nix b/pkgs/misc/cups/drivers/brgenml1lpr/default.nix new file mode 100644 index 00000000000..6dc2408ec88 --- /dev/null +++ b/pkgs/misc/cups/drivers/brgenml1lpr/default.nix @@ -0,0 +1,93 @@ +{ stdenv, fetchurl, cups, perl, glibc, ghostscript, which, makeWrapper}: + +/* + [Setup instructions](http://support.brother.com/g/s/id/linux/en/instruction_prn1a.html). + + URI example + ~ `lpd://BRW0080927AFBCE/binary_p1` + + Logging + ------- + + `/tmp/br_lpdfilter_ml1.log` when `$ENV{LPD_DEBUG} > 0` in `filter_BrGenML1` + which is activated automatically when `DEBUG > 0` in `brother_lpdwrapper_BrGenML1` + from the cups wrapper. + + Issues + ------ + + - filter_BrGenML1 ln 196 `my $GHOST_SCRIPT=`which gs`;` + + `GHOST_SCRIPT` is empty resulting in an empty `/tmp/br_lpdfilter_ml1_gsout.dat` file. + See `/tmp/br_lpdfilter_ml1.log` for the executed command. + + Notes + ----- + + - The `setupPrintcap` has totally no use in our context. +*/ + +let + myPatchElf = file: with stdenv.lib; '' + patchelf --set-interpreter \ + ${stdenv.glibc}/lib/ld-linux${optionalString stdenv.is64bit "-x86-64"}.so.2 \ + ${file} + ''; +in +stdenv.mkDerivation rec { + + name = "brgenml1lpr-3.1.0-1"; + src = fetchurl { + url = "http://download.brother.com/welcome/dlf101123/${name}.i386.deb"; + sha256 = "0zdvjnrjrz9sba0k525linxp55lr4cyivfhqbkq1c11br2nvy09f"; + }; + + unpackPhase = '' + ar x $src + tar xfvz data.tar.gz + ''; + + nativeBuildInputs = [ makeWrapper ]; + buildInputs = [ cups perl glibc ghostscript which ]; + + buildPhase = ":"; + + patchPhase = '' + INFDIR=opt/brother/Printers/BrGenML1/inf + LPDDIR=opt/brother/Printers/BrGenML1/lpd + + # Setup max debug log by default. + substituteInPlace $LPDDIR/filter_BrGenML1 \ + --replace "BR_PRT_PATH =~" "BR_PRT_PATH = \"$out/opt/brother/Printers/BrGenML1\"; #" \ + --replace "PRINTER =~" "PRINTER = \"BrGenML1\"; #" + + ${myPatchElf "$INFDIR/braddprinter"} + ${myPatchElf "$LPDDIR/brprintconflsr3"} + ${myPatchElf "$LPDDIR/rawtobr3"} + ''; + + installPhase = '' + INFDIR=opt/brother/Printers/BrGenML1/inf + LPDDIR=opt/brother/Printers/BrGenML1/lpd + + mkdir -p $out/$INFDIR + cp -rp $INFDIR/* $out/$INFDIR + mkdir -p $out/$LPDDIR + cp -rp $LPDDIR/* $out/$LPDDIR + + wrapProgram $out/$LPDDIR/filter_BrGenML1 \ + --prefix PATH ":" "${ghostscript}/bin" \ + --prefix PATH ":" "${which}/bin" + ''; + + dontPatchELF = true; + + + meta = { + description = "Brother BrGenML1 LPR driver"; + homepage = http://www.brother.com; + platforms = stdenv.lib.platforms.linux; + license = stdenv.lib.licenses.gpl2Plus; + maintainers = with stdenv.lib.maintainers; [ jraygauthier ]; + }; +} diff --git a/pkgs/misc/cups/drivers/mfcj470dw/default.nix b/pkgs/misc/cups/drivers/mfcj470dw/default.nix index d1a1b239371..d6ce3fbcdc6 100644 --- a/pkgs/misc/cups/drivers/mfcj470dw/default.nix +++ b/pkgs/misc/cups/drivers/mfcj470dw/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, cups, dpkg, ghostscript, patchelf, bash, file }: +{ stdenv, fetchurl, cups, dpkg, ghostscript, patchelf, a2ps, coreutils, gnused, gawk, file }: stdenv.mkDerivation rec { name = "mfcj470dw-cupswrapper-${version}"; @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { }) ]; - buildInputs = [ dpkg cups patchelf bash ]; + buildInputs = [ cups ghostscript dpkg a2ps ]; unpackPhase = "true"; @@ -29,9 +29,20 @@ stdenv.mkDerivation rec { substituteInPlace $out/opt/brother/Printers/mfcj470dw/lpd/filtermfcj470dw \ --replace /opt "$out/opt" \ - --replace file "/run/current-system/sw/bin/file" + --replace file "${file}/bin/file" \ + --replace sed "${gnused}/bin/sed" \ + --replace mktemp "${coreutils}/bin/mktemp" \ + --replace cat "${coreutils}/bin/cat" \ + --replace rm "${coreutils}/bin/rm" sed -i '/GHOST_SCRIPT=/c\GHOST_SCRIPT=gs' $out/opt/brother/Printers/mfcj470dw/lpd/psconvertij2 + substituteInPlace $out/opt/brother/Printers/mfcj470dw/lpd/psconvertij2 \ + --replace awk "${gawk}/bin/awk" \ + --replace cat "${coreutils}/bin/cat" \ + --replace mktemp "${coreutils}/bin/mktemp" \ + --replace sed "${gnused}/bin/sed" \ + --replace expr "${coreutils}/bin/expr" \ + --replace rm "${coreutils}/bin/rm" patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux.so.2 $out/opt/brother/Printers/mfcj470dw/lpd/brmfcj470dwfilter patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux.so.2 $out/opt/brother/Printers/mfcj470dw/cupswrapper/brcupsconfpt1 diff --git a/pkgs/misc/cups/drivers/splix/default.nix b/pkgs/misc/cups/drivers/splix/default.nix index ab6bcfba6a1..9a924e044d7 100644 --- a/pkgs/misc/cups/drivers/splix/default.nix +++ b/pkgs/misc/cups/drivers/splix/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { makeFlags="V=1 DISABLE_JBIG=1 CUPSFILTER=$out/lib/cups/filter CUPSPPD=$out/share/cups/model" ''; - buildInputs = [ cups zlib ]; + buildInputs = [cups zlib]; meta = { homepage = http://splix.sourceforge.net; diff --git a/pkgs/misc/drivers/epson_201207w/default.nix b/pkgs/misc/drivers/epson_201207w/default.nix new file mode 100644 index 00000000000..2a92f8a59d9 --- /dev/null +++ b/pkgs/misc/drivers/epson_201207w/default.nix @@ -0,0 +1,72 @@ +{ stdenv, fetchurl, rpmextract, autoreconfHook, file, libjpeg, cups }: + +let + version = "1.0.0"; +in + stdenv.mkDerivation { + + name = "epson_201207w-${version}"; + + src = fetchurl { + url = "https://download.ebz.epson.net/dsc/op/stable/SRPMS/epson-inkjet-printer-201207w-${version}-1lsb3.2.src.rpm"; + sha256 = "1ixnhn2dk83nh9v8sdivzgc2bm9z2phvsbx8bc6ainbjq6vn7lns"; + }; + + nativeBuildInputs = [ rpmextract autoreconfHook file ]; + + buildInputs = [ libjpeg cups ]; + + unpackPhase = '' + rpmextract $src + tar -zxf epson-inkjet-printer-201207w-${version}.tar.gz + tar -zxf epson-inkjet-printer-filter-${version}.tar.gz + for ppd in epson-inkjet-printer-201207w-${version}/ppds/*; do + substituteInPlace $ppd --replace "/opt/epson-inkjet-printer-201207w" "$out" + substituteInPlace $ppd --replace "/cups/lib" "/lib/cups" + done + cd epson-inkjet-printer-filter-${version} + ''; + + preConfigure = '' + chmod +x configure + export LDFLAGS="$LDFLAGS -Wl,--no-as-needed" + ''; + + postInstall = '' + cd ../epson-inkjet-printer-201207w-${version} + cp -a lib64 resource watermark $out + mkdir -p $out/share/cups/model/epson-inkjet-printer-201207w + cp -a ppds $out/share/cups/model/epson-inkjet-printer-201207w/ + cp -a Manual.txt $out/doc/ + cp -a README $out/doc/README.driver + ''; + + meta = with stdenv.lib; { + homepage = https://www.openprinting.org/driver/epson-201207w; + description = "Epson printer driver (L110, L210, L300, L350, L355, L550, L555)"; + longDescription = '' + This software is a filter program used with the Common UNIX Printing + System (CUPS) under Linux. It supplies high quality printing with + Seiko Epson Color Ink Jet Printers. + + List of printers supported by this package: + Epson L110 Series + Epson L210 Series + Epson L300 Series + Epson L350 Series + Epson L355 Series + Epson L550 Series + Epson L555 Series + + To use the driver adjust your configuration.nix file: + services.printing = { + enable = true; + drivers = [ pkgs.epson_201207w ]; + }; + ''; + license = with licenses; [ lgpl21 epson ]; + maintainers = [ maintainers.romildo ]; + platforms = [ "x86_64-linux" ]; + }; + + } diff --git a/pkgs/misc/emulators/mednaffe/default.nix b/pkgs/misc/emulators/mednaffe/default.nix new file mode 100644 index 00000000000..7777e73d337 --- /dev/null +++ b/pkgs/misc/emulators/mednaffe/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchFromGitHub, pkgconfig, gtk2, mednafen }: + +stdenv.mkDerivation rec { + + version = "0.8"; + name = "mednaffe-${version}"; + + src = fetchFromGitHub { + repo = "mednaffe"; + owner = "AmatCoder"; + rev = "v${version}"; + sha256 = "1j4py4ih14fa6dv0hka03rs4mq19ir83qkbxsz3695a4phmip0jr"; + }; + + prePatch = '' + substituteInPlace src/mednaffe.c --replace "binpath = NULL" "binpath = \"${mednafen}/bin/mednafen\"" + ''; + + buildInputs = [ pkgconfig gtk2 mednafen ]; + + meta = with stdenv.lib; { + description = "A GTK based frontend for mednafen"; + homepage = https://github.com/AmatCoder/mednaffe; + license = licenses.gpl3; + maintainers = [ maintainers.sheenobu ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/misc/emulators/retroarch/cores.nix b/pkgs/misc/emulators/retroarch/cores.nix index 332357e317e..35a55a8933a 100644 --- a/pkgs/misc/emulators/retroarch/cores.nix +++ b/pkgs/misc/emulators/retroarch/cores.nix @@ -158,6 +158,18 @@ in buildPhase = "make"; }; + mednafen-psx = (mkLibRetroCore rec { + core = "mednafen-psx"; + src = fetchRetro { + repo = "beetle-psx-libretro"; + rev = "20c9b0eb0062b8768cc40aca0e2b2d626f1002a2"; + sha256 = "1dhql8zy9wv55m1lgvqv412087cqmlw7zwcsmxkl3r4z199dsh3m"; + }; + description = "Port of Mednafen's PSX Engine core to libretro"; + }).override { + buildPhase = "make"; + }; + mupen64plus = (mkLibRetroCore rec { core = "mupen64plus"; src = fetchRetro { diff --git a/pkgs/misc/emulators/retroarch/default.nix b/pkgs/misc/emulators/retroarch/default.nix index bdac2980a39..87fb854c844 100644 --- a/pkgs/misc/emulators/retroarch/default.nix +++ b/pkgs/misc/emulators/retroarch/default.nix @@ -1,7 +1,21 @@ -{ stdenv, fetchgit, pkgconfig, ffmpeg, mesa, nvidia_cg_toolkit +{ stdenv, fetchgit, makeDesktopItem, pkgconfig, ffmpeg, mesa, nvidia_cg_toolkit , freetype, libxml2, libv4l, coreutils, python34, which, udev, alsaLib , libX11, libXext, libXxf86vm, libXdmcp, SDL, libpulseaudio ? null }: +let + desktopItem = makeDesktopItem { + name = "retroarch"; + exec = "retroarch"; + icon = "retroarch"; + comment = "Multi-Engine Platform"; + desktopName = "RetroArch"; + genericName = "Libretro Frontend"; + categories = "Game;Emulator;"; + #keywords = "multi;engine;emulator;xmb;"; + }; + +in + stdenv.mkDerivation rec { name = "retroarch-bare-${version}"; version = "2015-11-20"; @@ -20,6 +34,14 @@ stdenv.mkDerivation rec { sed -e 's#/bin/true#${coreutils}/bin/true#' -i qb/qb.libs.sh ''; + postInstall = '' + mkdir -p $out/share/icons/hicolor/scalable/apps + cp -p -T ./media/retroarch.svg $out/share/icons/hicolor/scalable/apps/retroarch.svg + + mkdir -p "$out/share/applications" + cp ${desktopItem}/share/applications/* $out/share/applications + ''; + enableParallelBuilding = true; meta = with stdenv.lib; { diff --git a/pkgs/misc/emulators/retroarch/wrapper.nix b/pkgs/misc/emulators/retroarch/wrapper.nix index f7e903ef529..e6eb930695a 100644 --- a/pkgs/misc/emulators/retroarch/wrapper.nix +++ b/pkgs/misc/emulators/retroarch/wrapper.nix @@ -18,6 +18,9 @@ stdenv.mkDerivation { do $(ln -s $coreDir/*.so $out/lib/.) done) + + ln -s -t $out ${retroarch}/share + makeWrapper ${retroarch}/bin/retroarch $out/bin/retroarch \ --suffix-each LD_LIBRARY_PATH ':' "$cores" \ --add-flags "-L $out/lib/ --menu" \ diff --git a/pkgs/misc/emulators/retrofe/default.nix b/pkgs/misc/emulators/retrofe/default.nix index bf3091d1d70..a13cc49b572 100644 --- a/pkgs/misc/emulators/retrofe/default.nix +++ b/pkgs/misc/emulators/retrofe/default.nix @@ -2,11 +2,7 @@ , python, SDL2, SDL2_image, SDL2_mixer, SDL2_ttf, sqlite, zlib }: -let - gstPlugins = with gst_all_1; [ gst-libav gst-plugins-base gst-plugins-good ]; - GST_PLUGIN_PATH = stdenv.lib.makeSearchPath "lib/gstreamer-1.0" gstPlugins; - -in stdenv.mkDerivation rec { +stdenv.mkDerivation rec { name = "retrofe-${version}"; version = "0.6.169"; @@ -20,7 +16,7 @@ in stdenv.mkDerivation rec { buildInputs = [ glib gst_all_1.gstreamer SDL2 SDL2_image SDL2_mixer SDL2_ttf sqlite zlib - ] ++ gstPlugins; + ] ++ (with gst_all_1; [ gst-libav gst-plugins-base gst-plugins-good ]); patches = [ ./include-paths.patch ]; @@ -58,22 +54,24 @@ in stdenv.mkDerivation rec { EOF chmod +x $out/bin/retrofe-init + + runHook postInstall ''; # retrofe will look for config files in its install path ($out/bin). # When set it will use $RETROFE_PATH instead. Sadly this behaviour isn't # documented well. To make it behave more like as expected it's set to # $PWD by default here. - fixupPhase = '' + postInstall = '' wrapProgram "$out/bin/retrofe" \ - --prefix GST_PLUGIN_PATH : '${GST_PLUGIN_PATH}/lib/gstreamer-1.0' \ + --prefix GST_PLUGIN_PATH : "$GST_PLUGIN_SYSTEM_PATH_1_0" \ --set RETROFE_PATH "\''${RETROFE_PATH:-\$PWD}" ''; meta = with stdenv.lib; { description = "A frontend for arcade cabinets and media PCs"; - license = licenses.gpl3Plus; homepage = http://retrofe.com; + license = licenses.gpl3Plus; maintainers = with maintainers; [ hrdinka ]; }; } diff --git a/pkgs/misc/lilypond/default.nix b/pkgs/misc/lilypond/default.nix index 8b2be0914e3..731dc263a02 100644 --- a/pkgs/misc/lilypond/default.nix +++ b/pkgs/misc/lilypond/default.nix @@ -30,6 +30,8 @@ stdenv.mkDerivation rec{ # confused the version detection… sed -re 's%("[$]exe" --version .*)([|\\] *$)%\1 | sed -re "s@/nix/store/[a-z0-9]{32}-@@" \2%' \ -i configure + + export HOME=$TMPDIR/home ''; postInstall = '' diff --git a/pkgs/misc/my-env/default.nix b/pkgs/misc/my-env/default.nix index ce7813b237c..5e94f6f7771 100644 --- a/pkgs/misc/my-env/default.nix +++ b/pkgs/misc/my-env/default.nix @@ -88,6 +88,7 @@ mkDerivation { -e '1i initialPath="${toString initialPath}"' \ "$setupNew" > "$s" cat >> "$out/dev-envs/''${name/env-/}" << EOF + defaultNativeBuildInputs="$defaultNativeBuildInputs" nativeBuildInputs="$nativeBuildInputs" propagatedBuildInputs="$propagatedBuildInputs2" # the setup-new script wants to write some data to a temp file.. so just let it do that and tidy up afterwards diff --git a/pkgs/misc/my-env/loadenv.sh b/pkgs/misc/my-env/loadenv.sh index 2a990e8685c..816c1b8a711 100644 --- a/pkgs/misc/my-env/loadenv.sh +++ b/pkgs/misc/my-env/loadenv.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!@shell@ OLDPATH="$PATH" OLDTZ="$TZ" diff --git a/pkgs/misc/themes/mate-icon-theme/default.nix b/pkgs/misc/themes/mate-icon-theme/default.nix index ba732c6521f..6749b5e4c39 100644 --- a/pkgs/misc/themes/mate-icon-theme/default.nix +++ b/pkgs/misc/themes/mate-icon-theme/default.nix @@ -15,6 +15,5 @@ stdenv.mkDerivation { homepage = "http://mate-desktop.org"; license = stdenv.lib.licenses.gpl2; platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ iyzsong ]; }; } diff --git a/pkgs/misc/themes/mate-themes/default.nix b/pkgs/misc/themes/mate-themes/default.nix index f7559ee2126..5c69bd78ed7 100644 --- a/pkgs/misc/themes/mate-themes/default.nix +++ b/pkgs/misc/themes/mate-themes/default.nix @@ -15,6 +15,5 @@ stdenv.mkDerivation { homepage = "http://mate-desktop.org"; license = stdenv.lib.licenses.lgpl21; platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ iyzsong ]; }; } diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix index 5e6e73419d2..fa09d1ca92b 100644 --- a/pkgs/misc/vim-plugins/default.nix +++ b/pkgs/misc/vim-plugins/default.nix @@ -163,11 +163,11 @@ rec { }; Syntastic = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "Syntastic-2016-02-20"; + name = "Syntastic-2016-03-08"; src = fetchgit { url = "git://github.com/scrooloose/syntastic"; - rev = "8f97e64c78e9ade6cf09fc5d5446f5d2a8deaa35"; - sha256 = "1xxmcr5r0cf2nyp2c2dfxm38x4c19dmax1g2m4clnys5dak7lsdd"; + rev = "0f82191a74328ecb618ac74735645fbd1c36d9a1"; + sha256 = "1arai7blnicp28l6z92xzvvrwrblwg0z26lbr92nch4cpzsf1pzq"; }; dependencies = []; @@ -311,11 +311,11 @@ rec { }; fugitive = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "fugitive-2016-02-24"; + name = "fugitive-2016-03-05"; src = fetchgit { url = "git://github.com/tpope/vim-fugitive"; - rev = "008b9570860f552534109b4f618cf2ddd145eeb4"; - sha256 = "0nj6airs00q3f1ly29k0nk3ypznzsylqm8n0wakllg86qic4xjlr"; + rev = "099d65826e0e0863552a92f7e574e3f24c8f4197"; + sha256 = "05ych7091gi1r22n8jkw2hxjyghcmbk0w227311ar3flgar6s197"; }; dependencies = []; @@ -332,6 +332,17 @@ rec { }; + vim-autoformat = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-autoformat-2016-02-29"; + src = fetchgit { + url = "git://github.com/Chiel92/vim-autoformat"; + rev = "36282560c3514453ac2db4d96085e6b6cfdc7a49"; + sha256 = "1ppdy56i7l60x9jd346qqmv3pdx5k2w64gmxl5ah5qvgw2qcaz02"; + }; + dependencies = []; + + }; + vim-nix = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "vim-nix-2015-12-10"; src = fetchgit { @@ -343,23 +354,12 @@ rec { }; - vim-autoformat = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-autoformat-2016-02-24"; - src = fetchgit { - url = "git://github.com/Chiel92/vim-autoformat"; - rev = "a2f9b88bcd66fe47a44ae8b5e1002c2d8e6f4ad4"; - sha256 = "1fahm3dzcmpr7f9rrhzhyrj6fz95fblxal57gajcc3g136bizbnj"; - }; - dependencies = []; - - }; - vim-css-color = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-css-color-2015-10-03"; + name = "vim-css-color-2016-03-07"; src = fetchgit { url = "git://github.com/ap/vim-css-color"; - rev = "7ad79c7b77bd83296d7a10e596860d9269070207"; - sha256 = "020phzw0pnsjsjx9l1ry5xbrjpspagmvifl3h00hqllxmpfx2smx"; + rev = "81ce9558b0f5c8f0b015042415566f02360c67d0"; + sha256 = "04if4ch5db7lkh0swb9rwqpqzk2k8kkc6aszy4bvqg08irk4lqsi"; }; dependencies = []; @@ -399,11 +399,11 @@ rec { }; ctrlp-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "ctrlp-vim-2016-01-18"; + name = "ctrlp-vim-2016-03-09"; src = fetchgit { url = "git://github.com/ctrlpvim/ctrlp.vim"; - rev = "7f74368d85bb521951dd58123349ce66b947d058"; - sha256 = "0csz2624zw9p22gzlkf3dk24s9p2z1h1cgif3lmfgkswhhvi3kgy"; + rev = "0853394bee04fef74d96e536985765ea16c61b27"; + sha256 = "1ylh978kh6c6hznp20db9dmx4q6xmgb98j6lj227blc2936pg5fx"; }; dependencies = []; @@ -421,11 +421,11 @@ rec { }; neco-ghc = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neco-ghc-2016-02-13"; + name = "neco-ghc-2016-03-04"; src = fetchgit { url = "git://github.com/eagletmt/neco-ghc"; - rev = "a7b3dc018dff0cbe033c4c3939e1bd777f023083"; - sha256 = "0f48y8fnh9wp1iyq8w7sqzsw3vqm348vqs4p81nwnmwnhgpzxfri"; + rev = "df959a20468c2f455b599d1d21de8d2c4334c7aa"; + sha256 = "16gnrg8sa5d3w1lg0bsx24cbvyb9pfgkm67rgnxr39g8b9h9pr09"; }; dependencies = []; @@ -443,22 +443,22 @@ rec { }; vim-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-go-2016-02-25"; + name = "vim-go-2016-03-03"; src = fetchgit { url = "git://github.com/fatih/vim-go"; - rev = "c264aec72eac21f868fdfff2aef67b9ca21aab74"; - sha256 = "1yld56l4bl17r9s1rn72fqfkrjpm96n4wx3qv9hk5vd0yn0nw7y1"; + rev = "fd5661a1e16a1fd41385d7011877bfa1f0a1353f"; + sha256 = "1ps6hmzad0pmr8amk5knhrmc7giww7586pr2j36f6h60wzjvxgnn"; }; dependencies = []; }; vim-colorschemes = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-colorschemes-2015-07-25"; + name = "vim-colorschemes-2016-03-09"; src = fetchgit { url = "git://github.com/flazz/vim-colorschemes"; - rev = "28a989b28457e38df620e4c7ab23e224aff70efe"; - sha256 = "1r9nmlw6ranl5xc3cx0knkmq90rcp6vlmrg2xib35h2dldsch22k"; + rev = "93593970393b0b14d9ee1ac963bea8db2ae30481"; + sha256 = "1wq4pzfgd8scx8slmaz3l3ab9hsp286v6rydhw8ydp7wwi6ixpnr"; }; dependencies = []; @@ -476,11 +476,11 @@ rec { }; calendar-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "calendar-vim-2016-01-19"; + name = "calendar-vim-2016-03-06"; src = fetchgit { url = "git://github.com/itchyny/calendar.vim"; - rev = "2a6c13ee8056fe5b82ce6529f426ed63096dc6bc"; - sha256 = "164xzzhavf852vz17y9sfmajzz574hgkjpp3x2w4w9a2gklvca42"; + rev = "b2bbf257fbcb71a7854daaa99aa8cd7f15709df5"; + sha256 = "1w1w8s90l0hs65sp69a7w6wq63281lpksn459zy21i7zhflnl57l"; }; dependencies = []; @@ -586,11 +586,11 @@ rec { }; vim-peekaboo = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-peekaboo-2015-07-16"; + name = "vim-peekaboo-2016-02-29"; src = fetchgit { url = "git://github.com/junegunn/vim-peekaboo"; - rev = "b14a7496897bb0a520bed4f519ca79a683bafeec"; - sha256 = "1hz8iaw6xj2s6v9raxam5zn2qj3p207pnvjjlgc5lfbi8bp44vwj"; + rev = "111c4bacbe5216022d56489c366bf4ce985506e9"; + sha256 = "0pblcxb467n4nxkvmb8sl8765nmz17h74hs5dy5dnmaxiy55v0d9"; }; dependencies = []; @@ -630,11 +630,11 @@ rec { }; vimtex = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vimtex-2016-02-23"; + name = "vimtex-2016-03-08"; src = fetchgit { url = "git://github.com/lervag/vimtex"; - rev = "ec5e0df3607de6bf6562e60d4fe2759519e9f9a7"; - sha256 = "0ld27rr5lnqzlhqpjrkgvrgs7h1hdsrwswkg7whynw83vilal8bd"; + rev = "4ecf478faf24158839e0b6fcf4fd301a9128103e"; + sha256 = "04vb121c109h02393z7hr1kiy2bc02aa8lqfwwh57wx7mzxjsfs5"; }; dependencies = []; @@ -667,11 +667,11 @@ rec { }; vim-startify = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-startify-2016-02-15"; + name = "vim-startify-2016-03-07"; src = fetchgit { url = "git://github.com/mhinz/vim-startify"; - rev = "23e043cc828b76524edc09f7dd091753dd1c7f12"; - sha256 = "0cplcpl9a2nhnmnh1h13pxf3hg823frhjmdxssyk35snf6ycgm24"; + rev = "193e0802ecde996a00ed58248d17a0e99ab077af"; + sha256 = "1zkqxhvc1cvsdgk5il38fxjcgds3x1fql2fjfn8v72rna1075xks"; }; dependencies = []; @@ -722,66 +722,66 @@ rec { }; vim-racer = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-racer-2016-02-02"; + name = "vim-racer-2016-03-09"; src = fetchgit { url = "git://github.com/racer-rust/vim-racer"; - rev = "ec26ab4ca71a5a805339e1243a691c9f6472eeaa"; - sha256 = "0c70s1dymvp4ji81z2302j2dzl7z8sndvzpf2dwwl14fwlar52db"; + rev = "263d3f48ff96c0e8f347f660f97edca13ea36405"; + sha256 = "0aak5jhzps173k52ql6isdwhjhmp69bnzzjrqjqnriyy0xay2d38"; }; dependencies = []; }; neocomplete-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neocomplete-vim-2016-02-20"; + name = "neocomplete-vim-2016-03-01"; src = fetchgit { url = "git://github.com/shougo/neocomplete.vim"; - rev = "fe8aa93a8a6030af3d208f2ecc92096cb3d52693"; - sha256 = "12lxb64jnjgppadli4g388cmf3mg5addkml03xmb94vpyf65cprx"; + rev = "a21f22f19d6dbd0fb0d58b555c186138c4c9cfc9"; + sha256 = "1kqg747s3pw6gc8g6h3s3bcsc3vjn00gav29zms6hpywiz6x931x"; }; dependencies = []; }; neosnippet-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neosnippet-snippets-2016-02-15"; + name = "neosnippet-snippets-2016-03-05"; src = fetchgit { url = "git://github.com/shougo/neosnippet-snippets"; - rev = "4e7b0a3962742eccaae298100e23e599d384ea67"; - sha256 = "1299wjmwc82x9z6jcy8332lk6jwnjhizgqzg9jf57704n312py8v"; + rev = "65810a15db3f09384d62ddcd42d9f97dcb96dde9"; + sha256 = "1zqw8mkljzq5mknridxp77gwfbhn2wrz8czhjlgg8k4q8alyziqp"; }; dependencies = []; }; neosnippet-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neosnippet-vim-2016-02-24"; + name = "neosnippet-vim-2016-03-05"; src = fetchgit { url = "git://github.com/shougo/neosnippet.vim"; - rev = "e908126f402c4c0f4ff6b21c9dd0e5349f39e585"; - sha256 = "09r0b199fk4m5zvc1f1x2lwyapxhaws1lvvm69jjwp1x4vhfdvjv"; + rev = "bcb7620a852a542d0940a2ff691deb9da9309f07"; + sha256 = "06f6flbv4zbdckjxchfwhm36syma6bzywassrf7hachnsx0s3ys3"; }; dependencies = []; }; unite-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "unite-vim-2016-02-25"; + name = "unite-vim-2016-03-06"; src = fetchgit { url = "git://github.com/shougo/unite.vim"; - rev = "65dffd7a27d9cbb0e026621c59d4ccc6073202bf"; - sha256 = "0m57f4kb8vh8z804qsahn94d3rcaqianpxfb3d0cd2d7v1cbgm71"; + rev = "c9d2ced6b993653a7ebbc572039f8d03ba2b997f"; + sha256 = "1b444a6zls7n321s03cljzv35id2rhp3aflpngyxk6l3j3ml2shx"; }; dependencies = []; }; vimproc-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vimproc-vim-2016-02-16"; + name = "vimproc-vim-2016-03-09"; src = fetchgit { url = "git://github.com/shougo/vimproc.vim"; - rev = "78cbb5c683026085de133f160929ccc56a6b203a"; - sha256 = "0hw6ghldrg9zvnkh3j9r9ldi1lzhda71gd630zj09wlaz70x60nj"; + rev = "3ab0a236e65b277670266c1187da9a49064c1500"; + sha256 = "0vwrlds6dhvrq2sv2g2041cw1jx3c3snsv5pnlnma3nflxpxvry0"; }; dependencies = []; buildInputs = [ which ]; @@ -796,11 +796,11 @@ rec { }; vimshell-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vimshell-vim-2016-02-18"; + name = "vimshell-vim-2016-03-05"; src = fetchgit { url = "git://github.com/shougo/vimshell.vim"; - rev = "f51ad1e3b4a897f32bb7ca0382f8fb25519e0d11"; - sha256 = "17zk2sm9n7cyhf92613vpqgaq74z4x61p4pxvvl25fc44bsddndf"; + rev = "ce19571a937c9cfa9d5c993c9c06c1457376759e"; + sha256 = "03fvzi4dlg7irljywy1kikkvq4sd4rnvvf8ji2pv68dl8s3zwmr2"; }; dependencies = [ "vimproc-vim" ]; }; @@ -883,11 +883,11 @@ rec { }; youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "youcompleteme-2016-02-25"; + name = "youcompleteme-2016-03-10"; src = fetchgit { url = "git://github.com/valloric/youcompleteme"; - rev = "35f6090b7661989518d64451ea4effa376fcb795"; - sha256 = "1n8wzsbw4saawpjmacw7kvk5mhcxckik0sw8zdpbp885812ly5wi"; + rev = "f44435b88ec98156d17869aa67ad15f38cfecbf3"; + sha256 = "1y50ilyfwj6rvpvg50iq418maxvsfs54i202v7x0lfs5hmvcb4hi"; }; dependencies = []; buildInputs = [ @@ -904,7 +904,7 @@ rec { mkdir build pushd build cmake -G "Unix Makefiles" . ../third_party/ycmd/cpp -DPYTHON_LIBRARIES:PATH=${python}/lib/libpython2.7.so -DPYTHON_INCLUDE_DIR:PATH=${python}/include/python2.7 -DUSE_CLANG_COMPLETER=ON -DUSE_SYSTEM_LIBCLANG=ON - make ycm_support_libs -j''${NIX_BUILD_CORES} -l''${NIX_BUILD_CORES}} + make ycm_core -j''${NIX_BUILD_CORES} -l''${NIX_BUILD_CORES}} ${python}/bin/python ../third_party/ycmd/build.py --gocode-completer --clang-completer --system-libclang popd ''; @@ -930,11 +930,11 @@ rec { }; vim-pandoc-syntax = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-pandoc-syntax-2016-02-22"; + name = "vim-pandoc-syntax-2016-03-08"; src = fetchgit { url = "git://github.com/vim-pandoc/vim-pandoc-syntax"; - rev = "c9f4eb129881fa48b82c181c84a77ec5ceacb6f6"; - sha256 = "117zl8fpzd34895f0i05zc8zx0jsdald0j2wb12yrhsxiw97fwlq"; + rev = "a7783e5834008c4bec3f38b78bd2e48e113c9d4c"; + sha256 = "0hzgnyjscljylgv4ss5w1hfff1mdl4kdpl0gm7yrl964rlifcgzg"; }; dependencies = []; @@ -1018,22 +1018,22 @@ rec { }; vim-wakatime = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-wakatime-2016-01-11"; + name = "vim-wakatime-2016-03-06"; src = fetchgit { url = "git://github.com/wakatime/vim-wakatime"; - rev = "91262cb3c04fe4d98ecdffe8da2197537c66359c"; - sha256 = "0h25j6gzkiwlik2zp4h2k3wp7away1n63cnqrq5vnxfm6ax42blr"; + rev = "115b02198233745c86ef453b5cf5f8fc2d493ae0"; + sha256 = "1jbwjg3fk59dkz6f7x8cyqgxh1cg0a3qy3aj7abg4k2aip67101y"; }; dependencies = []; buildInputs = [ python ]; }; command-t = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "command-t-2016-02-09"; + name = "command-t-2016-03-09"; src = fetchgit { url = "git://github.com/wincent/command-t"; - rev = "4c7f02c5a9020bbbd498f643abfb059048388707"; - sha256 = "1ij3zkc29zn03kw82c6zv8sbhx3ma3m39fgy9c29419brspzg1r5"; + rev = "9740c9cd318d4e004f330358c76a27948dc5779e"; + sha256 = "0wb6wabd758xzh722d2vs3hrx77gf2sh24g9fnrzj4hwwglrld1s"; }; dependencies = []; buildInputs = [ perl ruby ]; @@ -1145,11 +1145,11 @@ rec { }; snipmate = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "snipmate-2015-10-27"; + name = "snipmate-2016-03-01"; src = fetchgit { url = "git://github.com/garbas/vim-snipmate"; - rev = "7f91de39088138491e40a35a855adb70677b02d3"; - sha256 = "0cv6xh0crnrp9qpnkxqnim0lygd96s3hgfsgh4317z4nsjx0piz8"; + rev = "71250b0ef2b03b40ded5e93f4abe66fc2ee4aa75"; + sha256 = "0nzpk9h31m73anb16hj19mp8q9ccq8aqgck482alxapgf1g0mzli"; }; dependencies = ["vim-addon-mw-utils" "tlib"]; @@ -1441,16 +1441,26 @@ rec { }; vim-airline = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-airline-2016-02-25"; + name = "vim-airline-2016-03-08"; src = fetchgit { url = "git://github.com/bling/vim-airline"; - rev = "5cf193fa28d0c6f0f93fd1b481ba4845eac9a1ac"; - sha256 = "1dgh9xs4rhziayl18nrknvgjnx8ll5pw4xcy43wrcr7icnmddgrw"; + rev = "4395405628534b2c7f9c4be2bdba03315241393c"; + sha256 = "1fgq9jjdlmrak663iw7xbx348l7zz5jsx477n7l3s338wj4h9bsb"; }; dependencies = []; }; + vim-airline-themes = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-airline-themes-2016-02-24"; + src = fetchgit { + url = "git://github.com/vim-airline/vim-airline-themes"; + rev = "13bad30d4ee3892cae755c83433ee85fbc96d028"; + sha256 = "0w36ani4r2v58pd0fcqv12j0hjd97g2q78zici1a72njvwp9qhgj"; + }; + dependencies = [ "vim-airline" ]; + }; + vim-coffee-script = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "vim-coffee-script-2015-04-20"; src = fetchgit { @@ -1463,33 +1473,33 @@ rec { }; vim-easy-align = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-easy-align-2016-02-05"; + name = "vim-easy-align-2016-03-06"; src = fetchgit { url = "git://github.com/junegunn/vim-easy-align"; - rev = "dd98d0a8957b7d43ac84be3318bbc950bc9ed467"; - sha256 = "1hdfcg07p4xvd5aa7hqmjg2zf6cmlrp4maid7qc4l0xcfx6wx4j1"; + rev = "0cb6b98fc155717b0a56c110551ac57d1d951ddb"; + sha256 = "089c4grk24albishgxdskb1zsvxbzlp2yq1baf0vy6cryxwm8ykq"; }; dependencies = []; }; vim-gista = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-gista-2016-02-22"; + name = "vim-gista-2016-03-02"; src = fetchgit { url = "git://github.com/lambdalisue/vim-gista"; - rev = "d4da4b6f53a93ebadc7c1dcc4e82836f96c706c9"; - sha256 = "19786fr2m44krq7l62j3h39ayl6a04474s2mkbv8szkg8jb4syzq"; + rev = "9b6719242c0dfbb8b01a49b8765fc8dfeb022118"; + sha256 = "0kl1f2w8pvmx3jkiwq2ygrdq9yccxnh9kl0fwjwjp5gqhhw0d2vp"; }; dependencies = []; }; vim-gitgutter = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-gitgutter-2016-02-21"; + name = "vim-gitgutter-2016-03-07"; src = fetchgit { url = "git://github.com/airblade/vim-gitgutter"; - rev = "0af9f2a3ab029054d279f69364351e95e107008a"; - sha256 = "0kqj50sha1i1jsm9mirx6jn7kpdm0zl60n0zc3rh8z1zsjic0mqr"; + rev = "28353bd0609ae7b8c7e01c70dce31700d8c6e654"; + sha256 = "04dmbqpmk3da3wnklzv3ws0r3fjd55yc8z2j5f695x60f2cab8qz"; }; dependencies = []; @@ -1529,44 +1539,44 @@ rec { }; vim-signature = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-signature-2016-02-22"; + name = "vim-signature-2016-03-03"; src = fetchgit { url = "git://github.com/kshenoy/vim-signature"; - rev = "8b7b40041f938092d3cb5c5db33fec54c41a1854"; - sha256 = "0qqc785r84g1ckxyds0zmf881wslsfa1cmpcx35jwcyjwdaya0a6"; + rev = "85b22e21ad4276c54d557ac640e1d32b2b4e6b5e"; + sha256 = "1rygsgahcf9lbi0ddk3f2srda3mlmhnwpal842bms60crj9jimxk"; }; dependencies = []; }; vim-signify = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-signify-2016-02-25"; + name = "vim-signify-2016-03-03"; src = fetchgit { url = "git://github.com/mhinz/vim-signify"; - rev = "051dc1a853cb86231497c58a5c06dc82a17837ca"; - sha256 = "0iy03qxv9m301pqa495ydacx072pa1jwdqgk50dpd1z6711cdh44"; + rev = "a02c8793bfda7ddd386587c64246bec6aa78ff62"; + sha256 = "0lv37z8zcwz3fvlc6qjg8nbmgqkall776w46ifps51pn03qwp91d"; }; dependencies = []; }; vim-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-snippets-2016-02-19"; + name = "vim-snippets-2016-03-09"; src = fetchgit { url = "git://github.com/honza/vim-snippets"; - rev = "732978ab1622c8d6fdf0384cd3b524e3fe7ba5f3"; - sha256 = "0i7jr48vwazdy3bm9y2wa0y5ay1rhp91dpi5kqgs06na85qvhsiz"; + rev = "743be1a6e0c93e84a7ae6bc7066bf6ed358b5fbe"; + sha256 = "0p0ld2m0mka5kq324vs0k3m7ffpvjg7kjh5vdqz9cm0ajmw3aa8p"; }; dependencies = []; }; vim-webdevicons = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-webdevicons-2016-02-08"; + name = "vim-webdevicons-2016-03-04"; src = fetchgit { url = "git://github.com/ryanoasis/vim-devicons"; - rev = "d0111ec77c3d7e3e3072e576bb26055643e64a2f"; - sha256 = "1lhycam07licxkf8isl641mwd64i2x8kjqqvzxndhr26incs9pv2"; + rev = "f8841e2bd46e9fed95c0389190e3ef1b6ba77440"; + sha256 = "0f0fxn7pck9k642sgmv0y68qi0hqnw46pl919c2sq542da7g4k0p"; }; dependencies = []; @@ -1606,14 +1616,34 @@ rec { }; vundle = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vundle-2016-02-21"; + name = "vundle-2016-02-26"; src = fetchgit { url = "git://github.com/gmarik/vundle"; - rev = "8a054139a3623739321303cf06c09b0f9874dc0d"; - sha256 = "0hhjnp9i0glfa5fdfg9n9286zdfvfmdx1ln9ayfr8kmm9nwy24gp"; + rev = "4984767509e3d05ca051e253c8a8b37de784be45"; + sha256 = "0n2k3ip81yfx00ch45nqiwayhz8qxmwg5s34a4k5snapzcxcm2fn"; }; dependencies = []; }; + lightline-vim = buildVimPluginFrom2Nix { + name = "lightline-2016-02-10"; + src = fetchgit { + url = "git://github.com/itchyny/lightline.vim"; + rev = "e6a43f98fab1ee2e373bd0b670803222607ed123"; + sha256 = "abb836d728a8f674f3aa71c4936798c9be02bb352ca0e6e5f5b262886622ac3b"; + }; + dependencies = []; + }; + + Spacegray-vim = buildVimPluginFrom2Nix { + name = "spacegray-2015-04-05"; + src = fetchgit { + url = "git://github.com/ajh17/Spacegray.vim"; + rev = "1c10d0da045609910e8fb03b33c043bbcff35d9e"; + sha256 = "bced8987539ca42f84350b90e2570a226dad66e8061b90b79a41d51f9fb4b4b5"; + }; + dependencies = []; + }; + } diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names index 87420a7a4ca..88e9bbb9594 100644 --- a/pkgs/misc/vim-plugins/vim-plugin-names +++ b/pkgs/misc/vim-plugins/vim-plugin-names @@ -21,6 +21,7 @@ "ghcmod" "github:Chiel92/vim-autoformat" "github:LnL7/vim-nix" +"github:ajh17/Spacegray.vim" "github:ap/vim-css-color" "github:benekastah/neomake" "github:bitc/vim-hdevtools" @@ -34,6 +35,7 @@ "github:idris-hackers/idris-vim" "github:itchyny/calendar.vim" "github:itchyny/thumbnail.vim" +"github:itchyny/lightline.vim" "github:ivanov/vim-ipython" "github:jceb/vim-hier" "github:jeetsukumaran/vim-buffergator" @@ -110,6 +112,7 @@ "vim-addon-toggle-buffer" "vim-addon-xdebug" "vim-airline" +"vim-airline-themes" "vim-coffee-script" "vim-easy-align" "vim-gista" diff --git a/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme b/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme index 48f5322267b..cb90adfdc39 100644 --- a/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme +++ b/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme @@ -12,7 +12,7 @@ mkdir build pushd build cmake -G "Unix Makefiles" . ../third_party/ycmd/cpp -DPYTHON_LIBRARIES:PATH=${python}/lib/libpython2.7.so -DPYTHON_INCLUDE_DIR:PATH=${python}/include/python2.7 -DUSE_CLANG_COMPLETER=ON -DUSE_SYSTEM_LIBCLANG=ON - make ycm_support_libs -j''${NIX_BUILD_CORES} -l''${NIX_BUILD_CORES}} + make ycm_core -j''${NIX_BUILD_CORES} -l''${NIX_BUILD_CORES}} ${python}/bin/python ../third_party/ycmd/build.py --gocode-completer --clang-completer --system-libclang popd ''; diff --git a/pkgs/os-specific/darwin/htop/default.nix b/pkgs/os-specific/darwin/htop/default.nix deleted file mode 100644 index 3f076b838d4..00000000000 --- a/pkgs/os-specific/darwin/htop/default.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ fetchurl, stdenv, ncurses, autoconf, automake, IOKit }: - -stdenv.mkDerivation rec { - name = "htop-0.8.2.2"; - - src = fetchurl { - url = "https://github.com/max-horvath/htop-osx/archive/0.8.2.2.tar.gz"; - sha256 = "0qxibadn2lfqn10a5jmkv8r5ljfs0vaaa4j6psd7ppxa2w6bx5li"; - }; - - buildInputs = [ autoconf automake ncurses IOKit ]; - - preConfigure = "./autogen.sh"; - - meta = { - description = "An interactive process viewer for Mac OS X"; - homepage = "https://github.com/max-horvath/htop-osx"; - platforms = stdenv.lib.platforms.darwin; - maintainers = with stdenv.lib.maintainers; [ joelteon ]; - }; -} diff --git a/pkgs/os-specific/darwin/otool/default.nix b/pkgs/os-specific/darwin/otool/default.nix deleted file mode 100644 index 671e51542d0..00000000000 --- a/pkgs/os-specific/darwin/otool/default.nix +++ /dev/null @@ -1,39 +0,0 @@ -{ stdenv }: - -assert stdenv.isDarwin; -/* this tool only exists on darwin - NOTE: it might make sense to compile this from source (maybe it even works for non-darwin) - I see cctools source is under GPL2+ as well as APSL 2.0 - http://opensource.apple.com/release/developer-tools-46/ -*/ - -stdenv.mkDerivation { - name = "otool"; - - src = "/usr/bin/otool"; - - unpackPhase = "true"; - configurePhase = "true"; - buildPhase = "true"; - - installPhase = '' - mkdir -p "$out/bin" - ln -s $src "$out/bin" - ''; - - meta = with stdenv.lib; { - description = "Object file displaying tool"; - homepage = https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man1/otool.1.html; - license = with licenses; [ apsl20 gpl2Plus ]; - maintainers = with maintainers; [ lovek323 ]; - platforms = platforms.darwin; - - longDescription = '' - The otool command displays specified parts of object files or libraries. - If the, -m option is not used, the file arguments may be of the form - libx.a(foo.o), to request information about only that object file and not - the entire library. - ''; - }; -} - diff --git a/pkgs/os-specific/linux/criu/default.nix b/pkgs/os-specific/linux/criu/default.nix index 433cc2c81d7..6afaf36bd80 100644 --- a/pkgs/os-specific/linux/criu/default.nix +++ b/pkgs/os-specific/linux/criu/default.nix @@ -18,6 +18,7 @@ stdenv.mkDerivation rec { substituteInPlace ./scripts/gen-offsets.sh --replace hexdump ${utillinux}/bin/hexdump substituteInPlace ./Documentation/Makefile --replace "2>/dev/null" "" substituteInPlace ./Documentation/Makefile --replace "--skip-validation" "--skip-validation -x ${docbook_xsl}/xml/xsl/docbook/manpages/docbook.xsl" + substituteInPlace ./Makefile --replace "-Werror" "" ''; configurePhase = "make config PREFIX=$out"; @@ -28,11 +29,11 @@ stdenv.mkDerivation rec { make install PREFIX=$out LIBDIR=$out/lib ASCIIDOC=${asciidoc}/bin/asciidoc XMLTO=${xmlto}/bin/xmlto ''; - meta = { - description = "userspace checkpoint/restore for Linux"; - homepage = "http://criu.org"; - license = stdenv.lib.licenses.gpl2; + meta = with stdenv.lib; { + description = "Userspace checkpoint/restore for Linux"; + homepage = https://criu.org; + license = licenses.gpl2; platforms = [ "x86_64-linux" ]; - maintainers = [ stdenv.lib.maintainers.thoughtpolice ]; + maintainers = [ maintainers.thoughtpolice ]; }; } diff --git a/pkgs/os-specific/linux/firmware/raspberrypi/default.nix b/pkgs/os-specific/linux/firmware/raspberrypi/default.nix index 4d875d15d48..dc0b061af14 100644 --- a/pkgs/os-specific/linux/firmware/raspberrypi/default.nix +++ b/pkgs/os-specific/linux/firmware/raspberrypi/default.nix @@ -17,6 +17,11 @@ in stdenv.mkDerivation { cp -R boot/* $out/share/raspberrypi/boot cp -R hardfp/opt/vc/* $out cp opt/vc/LICENCE $out/share/raspberrypi + + for f in $out/bin/*; do + patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" "$f" + patchelf --set-rpath "$out/lib" "$f" + done ''; meta = { diff --git a/pkgs/os-specific/linux/freefall/default.nix b/pkgs/os-specific/linux/freefall/default.nix index 590b6b61dd3..54be786d10d 100644 --- a/pkgs/os-specific/linux/freefall/default.nix +++ b/pkgs/os-specific/linux/freefall/default.nix @@ -1,13 +1,9 @@ -{ stdenv, fetchurl }: +{ stdenv, kernel }: stdenv.mkDerivation rec { - name = "freefall-${version}"; - version = "4.3"; + inherit (kernel) version src; - src = fetchurl { - sha256 = "1bpkr45i4yzp32p0vpnz8mlv9lk4q2q9awf1kg9khg4a9g42qqja"; - url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - }; + name = "freefall-${version}"; postPatch = '' cd tools/laptop/freefall @@ -20,6 +16,8 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; meta = with stdenv.lib; { + inherit (kernel.meta) homepage license; + description = "Free-fall protection for spinning HP/Dell laptop hard drives"; longDescription = '' Provides a shock protection facility in modern laptops with spinning hard @@ -29,7 +27,7 @@ stdenv.mkDerivation rec { feature, which should cause the drive to switch to idle mode and unload the disk heads, and an accelerometer device. It has no effect on SSD devices! ''; - license = licenses.gpl2; + platforms = platforms.linux; maintainers = with maintainers; [ nckx ]; }; diff --git a/pkgs/os-specific/linux/fuse/builder.sh b/pkgs/os-specific/linux/fuse/builder.sh deleted file mode 100644 index c843ae6183b..00000000000 --- a/pkgs/os-specific/linux/fuse/builder.sh +++ /dev/null @@ -1,18 +0,0 @@ -source $stdenv/setup - -export MOUNT_FUSE_PATH=$out/sbin -export INIT_D_PATH=$out/etc/init.d -export UDEV_RULES_PATH=$out/etc/udev/rules.d - -# This is ugly. Normally, FUSE executes $out/bin/fusermount to mount -# the file system. However, fusermount should be setuid root, but Nix -# doesn't support setuid binaries, so fusermount will fail. By -# setting FUSERMOUNT_DIR to a non-existant path, FUSE will fall back -# to searching for fusermount in $PATH. The user is responsible for -# (e.g.) setting up a setuid-wrapper for fusermount and adding it to -# $PATH. -export NIX_CFLAGS_COMPILE="-DFUSERMOUNT_DIR=\"/no-such-path\"" - -export preBuild="sed -e 's@/bin/@$utillinux/bin/@g' -i lib/mount_util.c"; - -genericBuild diff --git a/pkgs/os-specific/linux/fuse/default.nix b/pkgs/os-specific/linux/fuse/default.nix index 036ece4627b..d86eb2a9756 100644 --- a/pkgs/os-specific/linux/fuse/default.nix +++ b/pkgs/os-specific/linux/fuse/default.nix @@ -1,21 +1,35 @@ { stdenv, fetchurl, utillinux }: stdenv.mkDerivation rec { - name = "fuse-2.9.3"; - - builder = ./builder.sh; - + name = "fuse-2.9.5"; + + #builder = ./builder.sh; + src = fetchurl { - url = "mirror://sourceforge/fuse/${name}.tar.gz"; - sha256 = "071r6xjgssy8vwdn6m28qq1bqxsd2bphcd2mzhq0grf5ybm87sqb"; + url = "https://github.com/libfuse/libfuse/releases/download/fuse_2_9_5/${name}.tar.gz"; + sha256 = "1dfvbi1p57svbv2sfnbqwpnsk219spvjnlapf35azhgzqlf3g7sp"; }; - - configureFlags = "--disable-kernel-module"; - + buildInputs = [ utillinux ]; - + inherit utillinux; + preConfigure = + '' + export MOUNT_FUSE_PATH=$out/sbin + export INIT_D_PATH=$TMPDIR/etc/init.d + export UDEV_RULES_PATH=$out/etc/udev/rules.d + + # Ensure that FUSE calls the setuid wrapper, not + # $out/bin/fusermount. It falls back to calling fusermount in + # $PATH, so it should also work on non-NixOS systems. + export NIX_CFLAGS_COMPILE="-DFUSERMOUNT_DIR=\"/var/setuid-wrappers\"" + + sed -e 's@/bin/@${utillinux}/bin/@g' -i lib/mount_util.c + ''; + + enableParallelBuilding = true; + meta = with stdenv.lib; { homepage = http://fuse.sourceforge.net/; description = "Kernel module and library that allows filesystems to be implemented in user space"; diff --git a/pkgs/os-specific/linux/htop/default.nix b/pkgs/os-specific/linux/htop/default.nix deleted file mode 100644 index b722815f295..00000000000 --- a/pkgs/os-specific/linux/htop/default.nix +++ /dev/null @@ -1,26 +0,0 @@ -{ fetchFromGitHub, stdenv, autoreconfHook, ncurses }: - -stdenv.mkDerivation rec { - name = "htop-2.0.0"; - - src = fetchFromGitHub { - sha256 = "1z8rzf3ndswk3090qypl0bqzq9f32w0ik2k5x4zd7jg4hkx66k7z"; - rev = "2.0.0"; - repo = "htop"; - owner = "hishamhm"; - }; - - buildInputs = [ ncurses ]; - nativeBuildInputs = [ autoreconfHook ]; - - postPatch = '' - touch *.h */*.h # unnecessary regeneration requires Python - ''; - - meta = { - description = "An interactive process viewer for Linux"; - homepage = "http://htop.sourceforge.net"; - platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ rob simons relrod ]; - }; -} diff --git a/pkgs/os-specific/linux/jool/default.nix b/pkgs/os-specific/linux/jool/default.nix index fdb2f041a65..389dcc22053 100644 --- a/pkgs/os-specific/linux/jool/default.nix +++ b/pkgs/os-specific/linux/jool/default.nix @@ -26,5 +26,7 @@ stdenv.mkDerivation { description = "Fairly compliant SIIT and Stateful NAT64 for Linux - kernel modules"; platforms = platforms.linux; maintainers = with maintainers; [ fpletz ]; + # kernel version 4.3 is the most recent supported version + broken = builtins.compareVersions kernel.version "4.3" == 1; }; } diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix index 254910cf842..f3dd32386bc 100644 --- a/pkgs/os-specific/linux/kernel/common-config.nix +++ b/pkgs/os-specific/linux/kernel/common-config.nix @@ -478,7 +478,9 @@ with stdenv.lib; ''} ${optionalString (versionAtLeast version "3.7") '' MEDIA_USB_SUPPORT y - MEDIA_PCI_SUPPORT y + ${optionalString (!(features.chromiumos or false)) '' + MEDIA_PCI_SUPPORT y + ''} ''} # Our initrd init uses shebang scripts, so can't be modular. diff --git a/pkgs/os-specific/linux/kernel/grsec-path.patch b/pkgs/os-specific/linux/kernel/grsecurity-path-3.14.patch similarity index 100% rename from pkgs/os-specific/linux/kernel/grsec-path.patch rename to pkgs/os-specific/linux/kernel/grsecurity-path-3.14.patch diff --git a/pkgs/os-specific/linux/kernel/grsecurity-path-4.4.patch b/pkgs/os-specific/linux/kernel/grsecurity-path-4.4.patch new file mode 100644 index 00000000000..bef1a75c23d --- /dev/null +++ b/pkgs/os-specific/linux/kernel/grsecurity-path-4.4.patch @@ -0,0 +1,18 @@ +diff --git a/kernel/kmod.c b/kernel/kmod.c +index a689506..30747b4 100644 +--- a/kernel/kmod.c ++++ b/kernel/kmod.c +@@ -294,11 +294,8 @@ static int ____call_usermodehelper(void *data) + out the path to be used prior to this point and are now operating + on that copy + */ +- if ((strncmp(sub_info->path, "/sbin/", 6) && strncmp(sub_info->path, "/usr/lib/", 9) && +- strncmp(sub_info->path, "/lib/", 5) && strncmp(sub_info->path, "/lib64/", 7) && +- strncmp(sub_info->path, "/usr/libexec/", 13) && strncmp(sub_info->path, "/usr/bin/", 9) && +- strncmp(sub_info->path, "/usr/sbin/", 10) && +- strcmp(sub_info->path, "/usr/share/apport/apport")) || strstr(sub_info->path, "..")) { ++ if ((strncmp(sub_info->path, "/sbin/", 6) && strncmp(sub_info->path, "/nix/store/", 11) && ++ strncmp(sub_info->path, "/run/current-system/systemd/lib/", 32)) || strstr(sub_info->path, "..")) { + printk(KERN_ALERT "grsec: denied exec of usermode helper binary %.950s located outside of permitted system paths\n", sub_info->path); + retval = -EPERM; + goto out; diff --git a/pkgs/os-specific/linux/kernel/linux-3.10.nix b/pkgs/os-specific/linux/kernel/linux-3.10.nix index d0c09d35cd0..3fe7df6b40e 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.10.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.10.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "3.10.99"; + version = "3.10.101"; extraMeta.branch = "3.10"; src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; - sha256 = "1hq90yn2ry36y317px7f0wy55j70ip3wlxa4qsdl9pzlndadcp24"; + sha256 = "1g8jx6vla8bjhy3xn0s7r6awinxpfr1w8zqfzjsx88pkqbf8qd9n"; }; kernelPatches = args.kernelPatches; diff --git a/pkgs/os-specific/linux/kernel/linux-3.12.nix b/pkgs/os-specific/linux/kernel/linux-3.12.nix index f146e5f2f13..49de2c2ab0f 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.12.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.12.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "3.12.55"; + version = "3.12.57"; extraMeta.branch = "3.12"; src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; - sha256 = "0xg52i6zsrkzv0i2kxrsx0179lkp9f2388r06rahx0anf4ars5p2"; + sha256 = "0qv88rvi0n45z3888w2gis35lxdx34qg2p7c2cac2szbrzv664s8"; }; kernelPatches = args.kernelPatches; diff --git a/pkgs/os-specific/linux/kernel/linux-3.14.nix b/pkgs/os-specific/linux/kernel/linux-3.14.nix index ae3ba775d41..f69fa93ea2f 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.14.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.14.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "3.14.63"; + version = "3.14.65"; extraMeta.branch = "3.14"; src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; - sha256 = "0q3qcgcaxjc298dgjpfn6g17lvki2p87f0zkaxs0h0g13jhykwbz"; + sha256 = "0pqfgzinwgllvyx0cfv0vnllgvzrrpbr2yi21zgppdd1iw6nipsd"; }; kernelPatches = args.kernelPatches; diff --git a/pkgs/os-specific/linux/kernel/linux-3.18.nix b/pkgs/os-specific/linux/kernel/linux-3.18.nix index a8c86d0e618..28893ce3f9f 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.18.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.18.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "3.18.27"; + version = "3.18.29"; extraMeta.branch = "3.18"; src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; - sha256 = "01lz0c3ns0yp5vnjch1pn10h43g6fr4xw7w3b6kb477083cjr7dc"; + sha256 = "0g8vlhifl31dyghiamykrpgj6n8h5w6gh6n88ir57z6lj188vaj8"; }; kernelPatches = args.kernelPatches; diff --git a/pkgs/os-specific/linux/kernel/linux-4.1.nix b/pkgs/os-specific/linux/kernel/linux-4.1.nix index fbcfa17a8bc..57e239c1d09 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.1.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.1.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.1.17"; + version = "4.1.20"; extraMeta.branch = "4.1"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "084ij19vgm27ljrjabqqmlqn27p168nsm9grhr6rajid4n79h6ab"; + sha256 = "1dpq8dgj351jzm7n6330a4xriz9dxv7d9wxzj9zn9q7ya22np9gs"; }; kernelPatches = args.kernelPatches; diff --git a/pkgs/os-specific/linux/kernel/linux-4.4.nix b/pkgs/os-specific/linux/kernel/linux-4.4.nix index 6819dfedb13..fecb3b05f97 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.4.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.4.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.4.4"; + version = "4.4.6"; extraMeta.branch = "4.4"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "0b4190mwmxf329n16yl32my7dfi02pi7qf39a8v61sl9b2gxffad"; + sha256 = "0zapxjnawdn0km6b9pc7399zbjiyb0a28rqmsif3afc9qb2cxg53"; }; kernelPatches = args.kernelPatches; diff --git a/pkgs/os-specific/linux/kernel/linux-4.5.nix b/pkgs/os-specific/linux/kernel/linux-4.5.nix new file mode 100644 index 00000000000..790175d6e88 --- /dev/null +++ b/pkgs/os-specific/linux/kernel/linux-4.5.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, perl, buildLinux, ... } @ args: + +import ./generic.nix (args // rec { + version = "4.5"; + modDirVersion = "4.5.0"; + extraMeta.branch = "4.5"; + + src = fetchurl { + url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; + sha256 = "172i3arrc34mb7nxw31iqrmbwrdnp8dmrbf8p3b3f6z006sfy3d4"; + }; + + kernelPatches = args.kernelPatches; + + features.iwlwifi = true; + features.efiBootStub = true; + features.needsCifsUtils = true; + features.canDisableNetfilterConntrackHelpers = true; + features.netfilterRPFilter = true; +} // (args.argsOverride or {})) diff --git a/pkgs/os-specific/linux/kernel/linux-chromiumos-3.14.nix b/pkgs/os-specific/linux/kernel/linux-chromiumos-3.14.nix index fb52b14c9ae..d781a5b9685 100644 --- a/pkgs/os-specific/linux/kernel/linux-chromiumos-3.14.nix +++ b/pkgs/os-specific/linux/kernel/linux-chromiumos-3.14.nix @@ -1,5 +1,8 @@ { stdenv, fetchgit, perl, buildLinux, ncurses, openssh, ... } @ args: +# ChromiumOS requires a 64bit build host +assert stdenv.is64bit; + import ./generic.nix (args // rec { version = "3.14.0"; extraMeta.branch = "3.14"; diff --git a/pkgs/os-specific/linux/kernel/linux-chromiumos-3.18.nix b/pkgs/os-specific/linux/kernel/linux-chromiumos-3.18.nix index 9ab3f70c97f..fc0997eabdd 100644 --- a/pkgs/os-specific/linux/kernel/linux-chromiumos-3.18.nix +++ b/pkgs/os-specific/linux/kernel/linux-chromiumos-3.18.nix @@ -1,5 +1,8 @@ { stdenv, fetchgit, perl, buildLinux, ncurses, ... } @ args: +# ChromiumOS requires a 64bit build host +assert stdenv.is64bit; + import ./generic.nix (args // rec { version = "3.18.0"; extraMeta.branch = "3.18"; diff --git a/pkgs/os-specific/linux/kernel/linux-grsecurity-3.14.nix b/pkgs/os-specific/linux/kernel/linux-grsecurity-3.14.nix new file mode 100644 index 00000000000..da628620764 --- /dev/null +++ b/pkgs/os-specific/linux/kernel/linux-grsecurity-3.14.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl, perl, buildLinux, ... } @ args: + +throw "grsecurity stable is no longer supported; please update your configuration" + +import ./generic.nix (args // rec { + version = "3.14.51"; + extraMeta.branch = "3.14"; + + src = fetchurl { + url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; + sha256 = "1gqsd69cqijff4c4br4ydmcjl226d0yy6vrmgfvy16xiraavq1mk"; + }; + + kernelPatches = args.kernelPatches; + + features.iwlwifi = true; + features.efiBootStub = true; + features.needsCifsUtils = true; + features.canDisableNetfilterConntrackHelpers = true; + features.netfilterRPFilter = true; +} // (args.argsOverride or {})) diff --git a/pkgs/os-specific/linux/kernel/linux-grsecurity-4.1.nix b/pkgs/os-specific/linux/kernel/linux-grsecurity-4.1.nix new file mode 100644 index 00000000000..4359f4586c5 --- /dev/null +++ b/pkgs/os-specific/linux/kernel/linux-grsecurity-4.1.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl, perl, buildLinux, ... } @ args: + +import ./generic.nix (args // rec { + version = "4.1.7"; + extraMeta.branch = "4.1"; + + src = fetchurl { + url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; + sha256 = "0g1dnvak0pd03d4miy1025bw64wq71w29a058dzspdr6jcf9qwbn"; + }; + + kernelPatches = args.kernelPatches; + + features.iwlwifi = true; + features.efiBootStub = true; + features.needsCifsUtils = true; + features.canDisableNetfilterConntrackHelpers = true; + features.netfilterRPFilter = true; +} // (args.argsOverride or {})) diff --git a/pkgs/os-specific/linux/kernel/linux-grsecurity-4.4.nix b/pkgs/os-specific/linux/kernel/linux-grsecurity-4.4.nix new file mode 100644 index 00000000000..36181308a8b --- /dev/null +++ b/pkgs/os-specific/linux/kernel/linux-grsecurity-4.4.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl, perl, buildLinux, ... } @ args: + +import ./generic.nix (args // rec { + version = "4.4.5"; + extraMeta.branch = "4.4"; + + src = fetchurl { + url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; + sha256 = "1daavrj2msl85aijh1izfm1cwf14c7mi75hldzidr1h2v629l89h"; + }; + + kernelPatches = args.kernelPatches; + + features.iwlwifi = true; + features.efiBootStub = true; + features.needsCifsUtils = true; + features.canDisableNetfilterConntrackHelpers = true; + features.netfilterRPFilter = true; +} // (args.argsOverride or {})) diff --git a/pkgs/os-specific/linux/kernel/linux-testing.nix b/pkgs/os-specific/linux/kernel/linux-testing.nix index 9b0ec5c355a..57a825ec0a0 100644 --- a/pkgs/os-specific/linux/kernel/linux-testing.nix +++ b/pkgs/os-specific/linux/kernel/linux-testing.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.5-rc6"; - modDirVersion = "4.5.0-rc6"; + version = "4.5-rc7"; + modDirVersion = "4.5.0-rc7"; extraMeta.branch = "4.5"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz"; - sha256 = "1cpbg6w0mzlxrc6crgqh5n4c8wxxr4yyikmk0bkpgsbr6qk3bydk"; + sha256 = "0z43s7ccikmqigv4insjvizs3bkx2lgjvzsz5rmmpcga28dz44kq"; }; features.iwlwifi = true; diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index 3f7afd90322..67f6ad9c94a 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl }: +{ stdenv, fetchurl, pkgs }: let @@ -18,11 +18,14 @@ let }; }; - grsecPatch = { grversion ? "3.1", kversion, revision, branch, sha256 }: + grsecPatch = { grversion ? "3.1", kernel, patches, kversion, revision, branch ? "test", sha256 }: + assert kversion == kernel.version; { name = "grsecurity-${grversion}-${kversion}"; - inherit grversion kversion revision; + inherit grversion kernel patches kversion revision; patch = fetchurl { - url = "https://github.com/slashbeast/grsecurity-scrape/blob/master/${branch}/grsecurity-${grversion}-${kversion}-${revision}.patch?raw=true"; + url = if branch == "stable" + then "https://github.com/kdave/grsecurity-patches/blob/master/grsecurity_patches/grsecurity-${grversion}-${kversion}-${revision}.patch?raw=true" + else "https://github.com/slashbeast/grsecurity-scrape/blob/master/${branch}/grsecurity-${grversion}-${kversion}-${revision}.patch?raw=true"; inherit sha256; }; features.grsecurity = true; @@ -79,23 +82,41 @@ rec { sha256 = "00b1rqgd4yr206dxp4mcymr56ymbjcjfa4m82pxw73khj032qw3j"; }; - grsecurity_stable = grsecPatch - { kversion = "3.14.51"; + grsecurity_3_14 = grsecPatch + { kernel = pkgs.grsecurity_base_linux_3_14; + patches = [ grsecurity_fix_path_3_14 ]; + kversion = "3.14.51"; revision = "201508181951"; branch = "stable"; sha256 = "1sp1gwa7ahzflq7ayb51bg52abrn5zx1hb3pff3axpjqq7vfai6f"; }; - grsecurity_unstable = grsecPatch - { kversion = "4.3.4"; - revision = "201601231215"; - branch = "test"; - sha256 = "1dacld4zlp8mk6ykc0f1v5crppvq3znbdw9rwfrf6qi90984x0mr"; + grsecurity_4_1 = grsecPatch + { kernel = pkgs.grsecurity_base_linux_4_1; + patches = [ grsecurity_fix_path_3_14 ]; + kversion = "4.1.7"; + revision = "201509201149"; + sha256 = "1agv8c3c4vmh5algbzmrq2f6vwk72rikrlcbm4h7jbrb9js6fxk4"; }; - grsec_fix_path = - { name = "grsec-fix-path"; - patch = ./grsec-path.patch; + grsecurity_4_4 = grsecPatch + { kernel = pkgs.grsecurity_base_linux_4_4; + patches = [ grsecurity_fix_path_4_4 ]; + kversion = "4.4.5"; + revision = "201603131305"; + sha256 = "04k4nhshl6r5n41ha5620s7cd70dmmmvyf9mnn5359jr1720kxpf"; + }; + + grsecurity_latest = grsecurity_4_4; + + grsecurity_fix_path_3_14 = + { name = "grsecurity-fix-path-3.14"; + patch = ./grsecurity-path-3.14.patch; + }; + + grsecurity_fix_path_4_4 = + { name = "grsecurity-fix-path-4.4"; + patch = ./grsecurity-path-4.4.patch; }; crc_regression = diff --git a/pkgs/os-specific/linux/ldm/default.nix b/pkgs/os-specific/linux/ldm/default.nix index c5e94ed81e9..a32d815ac2f 100644 --- a/pkgs/os-specific/linux/ldm/default.nix +++ b/pkgs/os-specific/linux/ldm/default.nix @@ -19,9 +19,10 @@ stdenv.mkDerivation rec { buildInputs = [ udev utillinux ]; - preBuild = '' + postPatch = '' substituteInPlace ldm.c \ --replace "/mnt/" "${mountPath}" + sed '16i#include ' -i ldm.c ''; buildPhase = "make ldm"; diff --git a/pkgs/os-specific/linux/lttng-modules/default.nix b/pkgs/os-specific/linux/lttng-modules/default.nix index dc21176fa3c..f029c6b82be 100644 --- a/pkgs/os-specific/linux/lttng-modules/default.nix +++ b/pkgs/os-specific/linux/lttng-modules/default.nix @@ -25,6 +25,9 @@ stdenv.mkDerivation rec { license = with licenses; [ lgpl21 gpl2 mit ]; platforms = platforms.linux; maintainers = [ maintainers.bjornfor ]; + broken = + (builtins.compareVersions kernel.version "3.18" == -1) || + (kernel.features.grsecurity or false); }; } diff --git a/pkgs/os-specific/linux/lxc/default.nix b/pkgs/os-specific/linux/lxc/default.nix index 43a77f4c828..fcfe4975fd7 100644 --- a/pkgs/os-specific/linux/lxc/default.nix +++ b/pkgs/os-specific/linux/lxc/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, autoreconfHook, pkgconfig, perl, docbook2x +{ stdenv, fetchurl, fetchpatch, autoreconfHook, pkgconfig, perl, docbook2x , docbook_xml_dtd_45, python3Packages # Optional Dependencies @@ -12,11 +12,11 @@ in with stdenv.lib; stdenv.mkDerivation rec { name = "lxc-${version}"; - version = "1.1.4"; + version = "1.1.5"; src = fetchurl { url = "https://linuxcontainers.org/downloads/lxc/lxc-${version}.tar.gz"; - sha256 = "1p75ff4lnkm7hq26zq09nqbdypl508csk0ix024l7j8v02i2w1wg"; + sha256 = "1gnhgs4i2zamfdydj895inr9i072658wd47nf1ryw5710hdsv24m"; }; nativeBuildInputs = [ @@ -27,7 +27,13 @@ stdenv.mkDerivation rec { python3Packages.python systemd ]; - patches = [ ./support-db2x.patch ]; + patches = [ + ./support-db2x.patch + (fetchpatch { + url = "https://github.com/lxc/lxc/commit/3db8dd39a797f87f8b348f1b6b44953a25f3f170.patch"; + sha256 = "0scbzm9dqqhqsl0ri8da8a34r4qj9ph0cg68l9s7gw01vpvqbs8l"; + }) + ]; XML_CATALOG_FILES = "${docbook_xml_dtd_45}/xml/dtd/docbook/catalog.xml"; @@ -79,6 +85,6 @@ stdenv.mkDerivation rec { ''; platforms = platforms.linux; - maintainers = with maintainers; [ simons wkennington globin ]; + maintainers = with maintainers; [ simons wkennington globin fpletz ]; }; } diff --git a/pkgs/os-specific/linux/macchanger/default.nix b/pkgs/os-specific/linux/macchanger/default.nix index b6ae89afbaf..c335031f2e5 100644 --- a/pkgs/os-specific/linux/macchanger/default.nix +++ b/pkgs/os-specific/linux/macchanger/default.nix @@ -1,12 +1,8 @@ { stdenv, fetchFromGitHub, autoreconfHook, texinfo }: -let - pname = "macchanger"; - version = "1.7.0"; -in - stdenv.mkDerivation rec { - name = "${pname}-${version}"; + name = "macchanger-${version}"; + version = "1.7.0"; src = fetchFromGitHub { owner = "alobbs"; @@ -15,13 +11,15 @@ stdenv.mkDerivation rec { sha256 = "1hypx6sxhd2b1nsxj314hpkhj7q4x9p2kfaaf20rjkkkig0nck9r"; }; - buildInputs = [ autoreconfHook texinfo ]; + nativeBuildInputs = [ autoreconfHook texinfo ]; - meta = { + outputs = [ "out" "info" ]; + + meta = with stdenv.lib; { description = "A utility for viewing/manipulating the MAC address of network interfaces"; - maintainers = [ stdenv.lib.maintainers.joachifm ]; - license = stdenv.lib.licenses.gpl2Plus; - homepage = "https://www.gnu.org/software/macchanger"; - platforms = stdenv.lib.platforms.linux; + maintainers = with maintainers; [ joachifm ]; + license = licenses.gpl2Plus; + homepage = https://www.gnu.org/software/macchanger; + platforms = platforms.linux; }; } diff --git a/pkgs/os-specific/linux/mba6x_bl/default.nix b/pkgs/os-specific/linux/mba6x_bl/default.nix new file mode 100644 index 00000000000..010bda4bb15 --- /dev/null +++ b/pkgs/os-specific/linux/mba6x_bl/default.nix @@ -0,0 +1,32 @@ +{ fetchFromGitHub, kernel, stdenv }: + +with stdenv.lib; + +let pkgName = "mba6x_bl"; +in + +stdenv.mkDerivation rec { + name = "${pkgName}-2016-02-12"; + + src = fetchFromGitHub { + owner = "patjak"; + repo = pkgName; + rev = "9c2de8a24e7d4e8506170a19d32d6f11f380a142"; + sha256 = "1zaypai8lznqcaszb6an643amsvr5qjnqj6aq6jkr0qk37x0fjff"; + }; + + enableParallelBuilding = true; + + makeFlags = [ + "KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" + "INSTALL_MOD_PATH=$(out)" + ]; + + meta = { + description = "MacBook Air 6,1 and 6,2 (mid 2013) backlight driver"; + homepage = "https://github.com/patjak/mba6x_bl"; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = [ maintainers.simonvandel ]; + }; +} diff --git a/pkgs/os-specific/linux/mbpfan/default.nix b/pkgs/os-specific/linux/mbpfan/default.nix index 75099e95f90..54de1e1108c 100644 --- a/pkgs/os-specific/linux/mbpfan/default.nix +++ b/pkgs/os-specific/linux/mbpfan/default.nix @@ -2,12 +2,12 @@ stdenv.mkDerivation rec { name = "mbpfan-${version}"; - version = "1.9.0"; + version = "1.9.1"; src = fetchFromGitHub { owner = "dgraziotin"; repo = "mbpfan"; rev = "v${version}"; - sha256 = "15nm1d0a0c0lzxqngrpn2qpsydsmglnn6d20djl7brpsq26j24h9"; + sha256 = "0issn5233h2nclrmh2jzyy5y0dyyd57f1ia7gvs3bys95glcm2s5"; }; patches = [ ./fixes.patch ]; postPatch = '' diff --git a/pkgs/os-specific/linux/mcelog/default.nix b/pkgs/os-specific/linux/mcelog/default.nix index a30558092c3..cd2cd511435 100644 --- a/pkgs/os-specific/linux/mcelog/default.nix +++ b/pkgs/os-specific/linux/mcelog/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "mcelog-${version}"; - version = "133"; + version = "135"; src = fetchFromGitHub { - sha256 = "1qj9jz67bd834sgqcxhyhn9fzxg8y9vfw7gmza5ikmjm6yi6mmfr"; + sha256 = "1bkbcb2zz7x7q893f1r8bm783jb3v7ww1yqys1hmqzn40hdwfr8p"; rev = "v${version}"; repo = "mcelog"; owner = "andikleen"; diff --git a/pkgs/os-specific/linux/mxu11x0/default.nix b/pkgs/os-specific/linux/mxu11x0/default.nix new file mode 100644 index 00000000000..4af40432403 --- /dev/null +++ b/pkgs/os-specific/linux/mxu11x0/default.nix @@ -0,0 +1,38 @@ +{ stdenv, fetchFromGitHub, kernel }: + +# it doesn't compile anymore on 3.14 +assert stdenv.lib.versionAtLeast kernel.version "3.18"; + +stdenv.mkDerivation { + name = "mxu11x0-1.3.11-${kernel.version}"; + + src = fetchFromGitHub { + owner = "ellysh"; + repo = "mxu11x0"; + rev = "de54053d6f297785d77aba9e9c880001519ffddf"; + sha256 = "1zmqanw22pgaj3b3lnciq33w6svm5ngg6g0k5xxwwijixg8ri3lf"; + }; + + preBuild = '' + sed -i -e "s/\$(uname -r).*/${kernel.modDirVersion}/g" driver/mxconf + sed -i -e "s/\$(shell uname -r).*/${kernel.modDirVersion}/g" driver/Makefile + sed -i -e 's|/lib/modules|${kernel.dev}/lib/modules|' driver/mxconf + sed -i -e 's|/lib/modules|${kernel.dev}/lib/modules|' driver/Makefile + ''; + installPhase = '' + install -v -D -m 644 ./driver/mxu11x0.ko "$out/lib/modules/${kernel.modDirVersion}/kernel/drivers/usb/serial/mxu11x0.ko" + install -v -D -m 644 ./driver/mxu11x0.ko "$out/lib/modules/${kernel.modDirVersion}/misc/mxu11x0.ko" + ''; + + dontStrip = true; + + enableParallelBuilding = true; + + meta = with stdenv.lib; { + description = "MOXA UPort 11x0 USB to Serial Hub driver"; + homepage = "https://github.com/ellysh/mxu11x0"; + license = licenses.gpl1; + maintainers = with maintainers; [ uralbash ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/os-specific/linux/nvidia-x11/legacy173.nix b/pkgs/os-specific/linux/nvidia-x11/legacy173.nix index 6bde91d0ffc..91813d67e1c 100644 --- a/pkgs/os-specific/linux/nvidia-x11/legacy173.nix +++ b/pkgs/os-specific/linux/nvidia-x11/legacy173.nix @@ -14,12 +14,12 @@ stdenv.mkDerivation { src = if stdenv.system == "i686-linux" then fetchurl { - url = "http://us.download.nvidia.com/XFree86/Linux-x86/${versionNumber}/NVIDIA-Linux-x86-${versionNumber}-pkg0.run"; + url = "http://download.nvidia.com/XFree86/Linux-x86/${versionNumber}/NVIDIA-Linux-x86-${versionNumber}-pkg0.run"; sha256 = "08xb7s7cxmj4zv4i3645kjhlhhwxiq6km9ixmsw3vv91f7rkb6d0"; } else if stdenv.system == "x86_64-linux" then fetchurl { - url = "http://us.download.nvidia.com/XFree86/Linux-x86_64/${versionNumber}/NVIDIA-Linux-x86_64-${versionNumber}-pkg0.run"; + url = "http://download.nvidia.com/XFree86/Linux-x86_64/${versionNumber}/NVIDIA-Linux-x86_64-${versionNumber}-pkg0.run"; sha256 = "1p2ls0xj81l8v4n6dbjj3p5wlw1iyhgzyvqcv4h5fdxhhs2cb3md"; } else throw "nvidia-x11 does not support platform ${stdenv.system}"; diff --git a/pkgs/os-specific/linux/nvidia-x11/legacy304.nix b/pkgs/os-specific/linux/nvidia-x11/legacy304.nix index 42e65f927b3..5cf3583e873 100644 --- a/pkgs/os-specific/linux/nvidia-x11/legacy304.nix +++ b/pkgs/os-specific/linux/nvidia-x11/legacy304.nix @@ -8,25 +8,23 @@ with stdenv.lib; -let versionNumber = "304.125"; in +let versionNumber = "304.131"; in stdenv.mkDerivation { name = "nvidia-x11-${versionNumber}${optionalString (!libsOnly) "-${kernel.version}"}"; builder = ./builder-legacy304.sh; - patches = [ ./nvidia-340.76-kernel-4.0.patch ]; - src = if stdenv.system == "i686-linux" then fetchurl { - url = "http://us.download.nvidia.com/XFree86/Linux-x86/${versionNumber}/NVIDIA-Linux-x86-${versionNumber}.run"; - sha256 = "1xy4g3yc73mb932cfr25as648k12sxpyymppb8nia3lijakv7idf"; + url = "http://download.nvidia.com/XFree86/Linux-x86/${versionNumber}/NVIDIA-Linux-x86-${versionNumber}.run"; + sha256 = "1a1d0fsahgijcvs2p59vwhs0dpp7pp2wmvgcs1i7fzl6yyv4nmfj"; } else if stdenv.system == "x86_64-linux" then fetchurl { - url = "http://us.download.nvidia.com/XFree86/Linux-x86_64/${versionNumber}/NVIDIA-Linux-x86_64-${versionNumber}-no-compat32.run"; - sha256 = "08p6hikn7pbfg0apnsbaqyyh2s9m5r0ckqzgjvxirn5qcyll0g5a"; + url = "http://download.nvidia.com/XFree86/Linux-x86_64/${versionNumber}/NVIDIA-Linux-x86_64-${versionNumber}-no-compat32.run"; + sha256 = "0gpqzb5gvhrcgrp3kph1p0yjkndx9wfzgh5j88ysrlflkv3q4vig"; } else throw "nvidia-x11 does not support platform ${stdenv.system}"; diff --git a/pkgs/os-specific/linux/pax-utils/default.nix b/pkgs/os-specific/linux/pax-utils/default.nix index a35b8181544..65cbf1c4589 100644 --- a/pkgs/os-specific/linux/pax-utils/default.nix +++ b/pkgs/os-specific/linux/pax-utils/default.nix @@ -2,21 +2,20 @@ stdenv.mkDerivation rec { name = "pax-utils-${version}"; - version = "1.1.1"; + version = "1.1.6"; src = fetchurl { - url = "http://dev.gentoo.org/~vapier/dist/${name}.tar.xz"; - sha256 = "0gldvyr96jgbcahq7rl3k4krzyhvlz95ckiqh3yhink56s5z58cy"; + url = "https://dev.gentoo.org/~vapier/dist/${name}.tar.xz"; + sha256 = "04hvsizzspfzfq6hhfif7ya9nwsc0cs6z6n2bq1zfh7agd8nqhzm"; }; makeFlags = [ - "DESTDIR=$(out)" "PREFIX=$(out)" ]; meta = with stdenv.lib; { description = "A suite of tools for PaX/grsecurity"; - homepage = "http://dev.gentoo.org/~vapier/dist/"; + homepage = "https://dev.gentoo.org/~vapier/dist/"; license = licenses.gpl2; platforms = platforms.linux; maintainers = with maintainers; [ thoughtpolice ]; diff --git a/pkgs/os-specific/linux/rtl8723bs/default.nix b/pkgs/os-specific/linux/rtl8723bs/default.nix new file mode 100644 index 00000000000..6d55c5522f4 --- /dev/null +++ b/pkgs/os-specific/linux/rtl8723bs/default.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchFromGitHub, kernel }: + +let + ver = "c517f2b"; +in +stdenv.mkDerivation rec { + name = "rtl8723bs-${kernel.version}-c517f2b"; + + src = fetchFromGitHub { + owner = "hadess"; + repo = "rtl8723bs"; + rev = "c517f2bf8bcc3d57311252ea7cd49ae81466eead"; + sha256 = "0phzrhq85g52pi2b74a9sr9l2x6dzlz714k3pix486w2x5axw4xb"; + }; + + patchPhase = '' + substituteInPlace ./Makefile --replace /lib/modules/ "${kernel.dev}/lib/modules/" + substituteInPlace ./Makefile --replace '$(shell uname -r)' "${kernel.modDirVersion}" + substituteInPlace ./Makefile --replace /sbin/depmod # + substituteInPlace ./Makefile --replace '$(MODDESTDIR)' "$out/lib/modules/${kernel.modDirVersion}/kernel/net/wireless/" + substituteInPlace ./Makefile --replace '/lib/firmware' "$out/lib/firmware" + ''; + + preInstall = '' + mkdir -p "$out/lib/modules/${kernel.modDirVersion}/kernel/net/wireless/" + mkdir -p "$out/lib/firmware/rtlwifi" + ''; + + meta = { + description = "Realtek SDIO Wi-Fi driver"; + homepage = "https://github.com/hadess/rtl8723bs"; + license = stdenv.lib.licenses.gpl2; + platforms = [ "x86_64-linux" "i686-linux" ]; + broken = !stdenv.lib.versionAtLeast kernel.version "3.19"; + }; +} diff --git a/pkgs/os-specific/linux/rtl8812au/default.nix b/pkgs/os-specific/linux/rtl8812au/default.nix index 6279deac60a..bc6a97029c7 100644 --- a/pkgs/os-specific/linux/rtl8812au/default.nix +++ b/pkgs/os-specific/linux/rtl8812au/default.nix @@ -27,5 +27,6 @@ stdenv.mkDerivation rec { homepage = "https://github.com/csssuf/rtl8812au"; license = stdenv.lib.licenses.gpl2; platforms = [ "x86_64-linux" "i686-linux" ]; + broken = (kernel.features.grsecurity or false); }; -} \ No newline at end of file +} diff --git a/pkgs/os-specific/linux/spl/default.nix b/pkgs/os-specific/linux/spl/default.nix index 959523ec597..09cdcbf8a24 100644 --- a/pkgs/os-specific/linux/spl/default.nix +++ b/pkgs/os-specific/linux/spl/default.nix @@ -17,13 +17,13 @@ assert buildKernel -> kernel != null; stdenv.mkDerivation rec { name = "spl-${configFile}-${version}${optionalString buildKernel "-${kernel.version}"}"; - version = "0.6.5.4"; + version = "0.6.5.5"; src = fetchFromGitHub { owner = "zfsonlinux"; repo = "spl"; rev = "spl-${version}"; - sha256 = "0k80xvl15ahbs0mylfl2bd5widxhngpf7dl6zq46s21wk0795jl4"; + sha256 = "1f49qv648klg2sn1v1wzwd6ls1njjj0hrazz7msd74ayhwm0zcw7"; }; patches = [ ./const.patch ./install_prefix.patch ]; @@ -62,5 +62,6 @@ stdenv.mkDerivation rec { platforms = platforms.linux; license = licenses.gpl2Plus; maintainers = with maintainers; [ jcumming wizeman wkennington ]; + broken = (kernel.features.grsecurity or false); }; } diff --git a/pkgs/os-specific/linux/upower/default.nix b/pkgs/os-specific/linux/upower/default.nix index 0f7f93a5741..490df3e1abe 100644 --- a/pkgs/os-specific/linux/upower/default.nix +++ b/pkgs/os-specific/linux/upower/default.nix @@ -6,11 +6,11 @@ assert stdenv.isLinux; stdenv.mkDerivation rec { - name = "upower-0.99.3"; + name = "upower-0.99.4"; src = fetchurl { url = "http://upower.freedesktop.org/releases/${name}.tar.xz"; - sha256 = "0f6x9mi1jzgqdpycaikyhjljnw3aacsl3gxndyg0dfqkq6y9jwb9"; + sha256 = "1c1ph1j1fnrf3vipxb7ncmdfc36dpvcvpsv8n8lmal7grjk2b8ww"; }; buildInputs = diff --git a/pkgs/os-specific/linux/zfs/default.nix b/pkgs/os-specific/linux/zfs/default.nix index 42da97a7a7b..d29a7560771 100644 --- a/pkgs/os-specific/linux/zfs/default.nix +++ b/pkgs/os-specific/linux/zfs/default.nix @@ -20,13 +20,13 @@ assert buildKernel -> kernel != null && spl != null; stdenv.mkDerivation rec { name = "zfs-${configFile}-${version}${optionalString buildKernel "-${kernel.version}"}"; - version = "0.6.5.4"; + version = "0.6.5.5"; src = fetchFromGitHub { owner = "zfsonlinux"; repo = "zfs"; rev = "zfs-${version}"; - sha256 = "10zf1kdgmdiaaa3zmz4sz5aj5ql6v24wcwixlxbwhwc51mr46k50"; + sha256 = "0np03p5zkx87a0a5rw629f9m4wp5gd01c1jkh5p7h63mmvaxfdda"; }; patches = [ ./nix-build.patch ]; diff --git a/pkgs/servers/dns/bind/default.nix b/pkgs/servers/dns/bind/default.nix index a6933653e60..61ca93184dd 100644 --- a/pkgs/servers/dns/bind/default.nix +++ b/pkgs/servers/dns/bind/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, openssl, libtool, perl, libxml2 }: -let version = "9.10.3"; in +let version = "9.10.3-P4"; in stdenv.mkDerivation rec { name = "bind-${version}"; src = fetchurl { url = "http://ftp.isc.org/isc/bind9/${version}/${name}.tar.gz"; - sha256 = "1w4gp4hdkb452nmz91l413d1rx89isl2l6wv8kpbdd2afpc3phws"; + sha256 = "0giys46ifypysf799w9v58kbaz1v3fbdzw3s212znifzzfsl9h1a"; }; patches = [ ./libressl.patch ./remove-mkdir-var.patch ]; diff --git a/pkgs/servers/foswiki/default.nix b/pkgs/servers/foswiki/default.nix new file mode 100644 index 00000000000..c5831325958 --- /dev/null +++ b/pkgs/servers/foswiki/default.nix @@ -0,0 +1,42 @@ +{ stdenv, fetchurl, perlPackages }: + +perlPackages.buildPerlPackage rec { + name = "foswiki-${version}"; + version = "2.1.0"; + + src = fetchurl { + url = "mirror://sourceforge/foswiki/${version}/Foswiki-${version}.tgz"; + sha256 = "03286pb966h99zgickm2f20rgnqwp9wga5wfkdvirv084kjdh8vp"; + }; + + buildInputs = with perlPackages; [ + # minimum requirements from INSTALL.html#System_Requirements + AlgorithmDiff ArchiveTar AuthenSASL CGI CGISession CryptPasswdMD5 + DigestSHA EmailMIME Encode Error FileCopyRecursive HTMLParser HTMLTree + IOSocketIP IOSocketSSL JSON + LocaleMaketext LocaleMaketextLexicon LocaleMsgfmt + LWP URI perlPackages.version + /*# optional dependencies + libapreq2 DBI DBDmysql DBDPg DBDSQLite FCGI FCGIProcManager + CryptSMIME CryptX509 ConvertPEM + */ + ]; + + preConfigure = '' + touch Makefile.PL + patchShebangs . + ''; + configureScript = "bin/configure"; + + # there's even no makefile + doCheck = false; + installPhase = ''cp -r . "$out" ''; # TODO: some fixups will be needed for running it + + meta = with stdenv.lib; { + description = "An open, programmable collaboration platform"; + homepage = http://foswiki.org; + license = licenses.gpl2Plus; + platforms = platforms.linux; + }; +} + diff --git a/pkgs/servers/freeradius/default.nix b/pkgs/servers/freeradius/default.nix new file mode 100644 index 00000000000..15bda5d3090 --- /dev/null +++ b/pkgs/servers/freeradius/default.nix @@ -0,0 +1,81 @@ +{ stdenv, fetchurl, autoreconfHook, talloc +, openssl +, linkOpenssl? true +, openldap +, withLdap ? false +, sqlite +, withSqlite ? false +, libpcap +, withPcap ? true +, libcap +, withCap ? true +, libmemcached +, withMemcached ? false +, hiredis +, withRedis ? false +, libmysql +, withMysql ? false +, withJson ? false +, libyubikey +, withYubikey ? false +, collectd +, withCollectd ? false +}: + +assert withSqlite -> sqlite != null; +assert withLdap -> openldap != null; +assert withPcap -> libpcap != null; +assert withCap -> libcap != null; +assert withMemcached -> libmemcached != null; +assert withRedis -> hiredis != null; +assert withMysql -> libmysql != null; +assert withYubikey -> libyubikey != null; +assert withCollectd -> collectd != null; + +## TODO: include windbind optionally (via samba?) +## TODO: include oracle optionally +## TODO: include ykclient optionally + +with stdenv.lib; +stdenv.mkDerivation rec { + name = "freeradius-${version}"; + version = "3.0.11"; + + buildInputs = [ autoreconfHook openssl talloc ] + ++ optional withLdap [ openldap ] + ++ optional withSqlite [ sqlite ] + ++ optional withPcap [ libpcap ] + ++ optional withCap [ libcap ] + ++ optional withMemcached [ libmemcached ] + ++ optional withRedis [ hiredis ] + ++ optional withMysql [ libmysql ] + ++ optional withJson [ pkgs."json-c" ] + ++ optional withYubikey [ libyubikey ] + ++ optional withCollectd [ collectd ]; + + # NOTE: are the --with-{lib}-lib-dir and --with-{lib}-include-dir necessary with buildInputs ? + + configureFlags = [ + "--sysconfdir=/etc" + "--localstatedir=/var" + ] ++ optional (!linkOpenssl) "--with-openssl=no"; + + installFlags = [ + "sysconfdir=\${out}/etc" + "localstatedir=\${TMPDIR}" + ]; + + src = fetchurl { + url = "ftp://ftp.freeradius.org/pub/freeradius/freeradius-server-${version}.tar.gz"; + sha256 = "0naxw9b060rbp4409904j6nr2zwl6wbjrbq1839xrwhmaf8p4yxr"; + }; + + meta = with stdenv.lib; { + homepage = http://freeradius.org/; + description = "A modular, high performance free RADIUS suite"; + license = stdenv.lib.licenses.gpl2; + maintainers = with maintainers; [ sheenobu ]; + }; + +} + diff --git a/pkgs/servers/http/apache-httpd/2.4.nix b/pkgs/servers/http/apache-httpd/2.4.nix index ddb1ec443a0..a2e039bd399 100644 --- a/pkgs/servers/http/apache-httpd/2.4.nix +++ b/pkgs/servers/http/apache-httpd/2.4.nix @@ -1,6 +1,7 @@ { stdenv, fetchurl, perl, zlib, apr, aprutil, pcre, libiconv , proxySupport ? true , sslSupport ? true, openssl +, http2Support ? true, libnghttp2 , ldapSupport ? true, openldap , libxml2Support ? true, libxml2 , luaSupport ? false, lua5 @@ -12,6 +13,7 @@ in assert sslSupport -> aprutil.sslSupport && openssl != null; assert ldapSupport -> aprutil.ldapSupport && openldap != null; +assert http2Support -> libnghttp2 != null; stdenv.mkDerivation rec { version = "2.4.18"; @@ -25,6 +27,7 @@ stdenv.mkDerivation rec { buildInputs = [perl] ++ optional ldapSupport openldap ++ # there is no --with-ldap flag optional libxml2Support libxml2 ++ + optional http2Support libnghttp2 ++ optional stdenv.isDarwin libiconv; # Required for ‘pthread_cancel’. @@ -44,6 +47,7 @@ stdenv.mkDerivation rec { --enable-cgi ${optionalString proxySupport "--enable-proxy"} ${optionalString sslSupport "--enable-ssl --with-ssl=${openssl}"} + ${optionalString http2Support "--enable-http2 --with-nghttp2=${libnghttp2}"} ${optionalString luaSupport "--enable-lua --with-lua=${lua5}"} ${optionalString libxml2Support "--with-libxml2=${libxml2}/include/libxml2"} ''; diff --git a/pkgs/servers/http/apt-cacher-ng/default.nix b/pkgs/servers/http/apt-cacher-ng/default.nix index f253cdba08e..9e485946a18 100644 --- a/pkgs/servers/http/apt-cacher-ng/default.nix +++ b/pkgs/servers/http/apt-cacher-ng/default.nix @@ -2,20 +2,21 @@ stdenv.mkDerivation rec { name = "apt-cacher-ng-${version}"; - version = "0.8.6"; + version = "0.9.1"; src = fetchurl { url = "http://ftp.debian.org/debian/pool/main/a/apt-cacher-ng/apt-cacher-ng_${version}.orig.tar.xz"; - sha256 = "0044dfks8djl11fs28jj8894i4rq424xix3d3fkvzz2i6lnp8nr5"; + sha256 = "1d686knvig1niapc1ib2045f7jfad3m4jvz6gkwm276fqvm4p694"; }; NIX_LDFLAGS = "-lpthread"; - buildInputs = [ doxygen cmake zlib openssl bzip2 pkgconfig libpthreadstubs ]; + nativeBuildInputs = [ cmake doxygen pkgconfig ]; + buildInputs = [ zlib openssl bzip2 libpthreadstubs ]; - meta = { + meta = with stdenv.lib; { description = "A caching proxy specialized for linux distribution files"; - homepage = http://www.unix-ag.uni-kl.de/~bloch/acng/; - license = stdenv.lib.licenses.gpl2; - maintainers = [ stdenv.lib.maintainers.makefu ]; + homepage = https://www.unix-ag.uni-kl.de/~bloch/acng/; + license = licenses.gpl2; + maintainers = [ maintainers.makefu ]; }; } diff --git a/pkgs/servers/http/nginx/modules.nix b/pkgs/servers/http/nginx/modules.nix index efa84f0fa67..f58479e4478 100644 --- a/pkgs/servers/http/nginx/modules.nix +++ b/pkgs/servers/http/nginx/modules.nix @@ -1,6 +1,16 @@ { fetchFromGitHub, pkgs }: { + brotli = { + src = fetchFromGitHub { + owner = "google"; + repo = "ngx_brotli"; + rev = "788615eab7c5e0a984278113c55248305620df14"; + sha256 = "02514bbjdhm9m38vljdh626d3c1783jxsxawv5c6bzblwmb8xgvf"; + }; + inputs = [ pkgs.libbrotli ]; + }; + rtmp = { src = fetchFromGitHub { owner = "arut"; diff --git a/pkgs/servers/http/tomcat/6.0.nix b/pkgs/servers/http/tomcat/6.0.nix index 71f1d62f4d8..c01e5065764 100644 --- a/pkgs/servers/http/tomcat/6.0.nix +++ b/pkgs/servers/http/tomcat/6.0.nix @@ -1,6 +1,6 @@ import ./recent.nix { versionMajor = "6"; - versionMinor = "0.44"; - sha256 = "0942f0ss6w9k23xg94nir2dbbkqrqp5k628jflk51ikm5qr95dxa"; + versionMinor = "0.45"; + sha256 = "0ba8h86padpk23xmscp7sg70g0v8ji2jbwwriz59hxqy5zhd76wg"; } diff --git a/pkgs/servers/http/tomcat/7.0.nix b/pkgs/servers/http/tomcat/7.0.nix index 221feb9c30e..b38f4353cc4 100644 --- a/pkgs/servers/http/tomcat/7.0.nix +++ b/pkgs/servers/http/tomcat/7.0.nix @@ -1,6 +1,6 @@ import ./recent.nix { versionMajor = "7"; - versionMinor = "0.62"; - sha256 = "0v8zvyd4h85ynnday58x0ppplw4flxyjsrmrpg78rrv3w49fm1x7"; + versionMinor = "0.68"; + sha256 = "1q5qgci5ia25zqa1k1n2xzarsgk1317ya89mfgg0fmi65x1046ic"; } diff --git a/pkgs/servers/http/tomcat/8.0.nix b/pkgs/servers/http/tomcat/8.0.nix index a6da1198c9a..00460179667 100644 --- a/pkgs/servers/http/tomcat/8.0.nix +++ b/pkgs/servers/http/tomcat/8.0.nix @@ -1,6 +1,6 @@ import ./recent.nix { versionMajor = "8"; - versionMinor = "0.23"; - sha256 = "0f0s35iqs1zpifya0qvdrk55r77jr074sc0zk5cjivxaxnhik2y9"; + versionMinor = "0.32"; + sha256 = "1f59x5z8qf4rzy49m8d5ifi4h1ghkz5r33l3i67sib414h7jc8vy"; } diff --git a/pkgs/servers/mail/archiveopteryx/default.nix b/pkgs/servers/mail/archiveopteryx/default.nix index 966f90c40f1..bb2ab16ae66 100644 --- a/pkgs/servers/mail/archiveopteryx/default.nix +++ b/pkgs/servers/mail/archiveopteryx/default.nix @@ -11,12 +11,18 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ jam ]; buildInputs = [ openssl perl zlib ]; - preConfigure = ''export PREFIX="$out" ''; + preConfigure = '' + export INSTALLROOT=installroot + sed -i 's:BINDIR = $(PREFIX)/bin:BINDIR = '$out'/bin:' ./Jamsettings + sed -i 's:SBINDIR = $(PREFIX)/sbin:SBINDIR = '$out'/bin:' ./Jamsettings + sed -i 's:LIBDIR = $(PREFIX)/lib:LIBDIR = '$out'/lib:' ./Jamsettings + sed -i 's:MANDIR = $(PREFIX)/man:MANDIR = '$out'/share/man:' ./Jamsettings + sed -i 's:READMEDIR = $(PREFIX):READMEDIR = '$out'/share/doc/archiveopteryx:' ./Jamsettings + ''; buildPhase = ''jam "-j$NIX_BUILD_CORES" ''; installPhase = '' jam install - mkdir -p "$out/share/doc/archiveopteryx" - mv -t "$out/share/doc/archiveopteryx/" "$out"/{bsd.txt,COPYING,README} + mv installroot/$out $out ''; meta = with stdenv.lib; { diff --git a/pkgs/servers/mail/dovecot/2.2.x.nix b/pkgs/servers/mail/dovecot/2.2.x.nix deleted file mode 100644 index ec4c5c935af..00000000000 --- a/pkgs/servers/mail/dovecot/2.2.x.nix +++ /dev/null @@ -1,75 +0,0 @@ -{ stdenv, lib, fetchurl, perl, pkgconfig, systemd, openssl -, bzip2, zlib, inotify-tools, pam, libcap -, clucene_core_2, icu, openldap -# Auth modules -, withMySQL ? false, libmysql -, withPgSQL ? false, postgresql -, withSQLite ? true, sqlite -}: - -stdenv.mkDerivation rec { - name = "dovecot-2.2.21"; - - nativeBuildInputs = [ perl pkgconfig ]; - buildInputs = [ openssl bzip2 zlib clucene_core_2 icu openldap ] - ++ lib.optionals (stdenv.isLinux) [ systemd pam libcap inotify-tools ] - ++ lib.optional withMySQL libmysql - ++ lib.optional withPgSQL postgresql - ++ lib.optional withSQLite sqlite; - - src = fetchurl { - url = "http://dovecot.org/releases/2.2/${name}.tar.gz"; - sha256 = "080bil83gr2dski4gk2bxykg2g497kqm2hn2z4xkbw71b6g17dvs"; - }; - - preConfigure = '' - patchShebangs src/config/settings-get.pl - ''; - - # We need this for sysconfdir, see remark below. - installFlags = [ "DESTDIR=$(out)" ]; - - postInstall = '' - cp -r $out/$out/* $out - rm -rf $out/$(echo "$out" | cut -d "/" -f2) - '' + lib.optionalString stdenv.isDarwin '' - install_name_tool -change libclucene-shared.1.dylib \ - ${clucene_core_2}/lib/libclucene-shared.1.dylib \ - $out/lib/dovecot/lib21_fts_lucene_plugin.so - install_name_tool -change libclucene-core.1.dylib \ - ${clucene_core_2}/lib/libclucene-core.1.dylib \ - $out/lib/dovecot/lib21_fts_lucene_plugin.so - ''; - - patches = [ - # Make dovecot look for plugins in /etc/dovecot/modules - # so we can symlink plugins from several packages there. - # The symlinking needs to be done in NixOS. - ./2.2.x-module_dir.patch - ]; - - configureFlags = [ - # It will hardcode this for /var/lib/dovecot. - # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=626211 - "--localstatedir=/var" - # We need this so utilities default to reading /etc/dovecot/dovecot.conf file. - "--sysconfdir=/etc" - "--with-ldap" - "--with-ssl=openssl" - "--with-zlib" - "--with-bzlib" - "--with-ldap" - "--with-lucene" - "--with-icu" - ] ++ lib.optional (stdenv.isLinux) "--with-systemdsystemunitdir=$(out)/etc/systemd/system" - ++ lib.optional withMySQL "--with-mysql" - ++ lib.optional withPgSQL "--with-pgsql" - ++ lib.optional withSQLite "--with-sqlite"; - - meta = { - homepage = "http://dovecot.org/"; - description = "Open source IMAP and POP3 email server written with security primarily in mind"; - maintainers = with stdenv.lib.maintainers; [viric simons rickynils]; - hydraPlatforms = stdenv.lib.platforms.linux; - }; -} diff --git a/pkgs/servers/mail/dovecot/default.nix b/pkgs/servers/mail/dovecot/default.nix index 3997370154e..ec4c5c935af 100644 --- a/pkgs/servers/mail/dovecot/default.nix +++ b/pkgs/servers/mail/dovecot/default.nix @@ -1,27 +1,75 @@ -{stdenv, fetchurl, openssl, pam, bzip2, zlib, inotify-tools, openldap}: +{ stdenv, lib, fetchurl, perl, pkgconfig, systemd, openssl +, bzip2, zlib, inotify-tools, pam, libcap +, clucene_core_2, icu, openldap +# Auth modules +, withMySQL ? false, libmysql +, withPgSQL ? false, postgresql +, withSQLite ? true, sqlite +}: stdenv.mkDerivation rec { - name = "dovecot-2.1.17"; + name = "dovecot-2.2.21"; - buildInputs = [openssl bzip2 zlib openldap] ++ stdenv.lib.optionals stdenv.isLinux [pam inotify-tools]; + nativeBuildInputs = [ perl pkgconfig ]; + buildInputs = [ openssl bzip2 zlib clucene_core_2 icu openldap ] + ++ lib.optionals (stdenv.isLinux) [ systemd pam libcap inotify-tools ] + ++ lib.optional withMySQL libmysql + ++ lib.optional withPgSQL postgresql + ++ lib.optional withSQLite sqlite; src = fetchurl { - url = "http://dovecot.org/releases/2.1/${name}.tar.gz"; - sha256 = "06j2s5bcrmc0dhjsyavqiss3k65p6xn00a7sffpsv6w3yngv777m"; + url = "http://dovecot.org/releases/2.2/${name}.tar.gz"; + sha256 = "080bil83gr2dski4gk2bxykg2g497kqm2hn2z4xkbw71b6g17dvs"; }; - # It will hardcode this for /var/lib/dovecot. - # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=626211 - configureFlags = [ - "--localstatedir=/var" - "--with-ldap" + preConfigure = '' + patchShebangs src/config/settings-get.pl + ''; + + # We need this for sysconfdir, see remark below. + installFlags = [ "DESTDIR=$(out)" ]; + + postInstall = '' + cp -r $out/$out/* $out + rm -rf $out/$(echo "$out" | cut -d "/" -f2) + '' + lib.optionalString stdenv.isDarwin '' + install_name_tool -change libclucene-shared.1.dylib \ + ${clucene_core_2}/lib/libclucene-shared.1.dylib \ + $out/lib/dovecot/lib21_fts_lucene_plugin.so + install_name_tool -change libclucene-core.1.dylib \ + ${clucene_core_2}/lib/libclucene-core.1.dylib \ + $out/lib/dovecot/lib21_fts_lucene_plugin.so + ''; + + patches = [ + # Make dovecot look for plugins in /etc/dovecot/modules + # so we can symlink plugins from several packages there. + # The symlinking needs to be done in NixOS. + ./2.2.x-module_dir.patch ]; + configureFlags = [ + # It will hardcode this for /var/lib/dovecot. + # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=626211 + "--localstatedir=/var" + # We need this so utilities default to reading /etc/dovecot/dovecot.conf file. + "--sysconfdir=/etc" + "--with-ldap" + "--with-ssl=openssl" + "--with-zlib" + "--with-bzlib" + "--with-ldap" + "--with-lucene" + "--with-icu" + ] ++ lib.optional (stdenv.isLinux) "--with-systemdsystemunitdir=$(out)/etc/systemd/system" + ++ lib.optional withMySQL "--with-mysql" + ++ lib.optional withPgSQL "--with-pgsql" + ++ lib.optional withSQLite "--with-sqlite"; + meta = { homepage = "http://dovecot.org/"; description = "Open source IMAP and POP3 email server written with security primarily in mind"; - maintainers = with stdenv.lib.maintainers; [viric simons]; + maintainers = with stdenv.lib.maintainers; [viric simons rickynils]; hydraPlatforms = stdenv.lib.platforms.linux; }; - } diff --git a/pkgs/servers/mail/postfix/2.11.nix b/pkgs/servers/mail/postfix/2.11.nix deleted file mode 100644 index 7c936bf1244..00000000000 --- a/pkgs/servers/mail/postfix/2.11.nix +++ /dev/null @@ -1,66 +0,0 @@ -{ stdenv, fetchurl, makeWrapper, gnused, db, openssl, cyrus_sasl, coreutils -, findutils, gnugrep, gawk -}: - -stdenv.mkDerivation rec { - - name = "postfix-${version}"; - - version = "2.11.5"; - - src = fetchurl { - url = "ftp://ftp.cs.uu.nl/mirror/postfix/postfix-release/official/${name}.tar.gz"; - sha256 = "11riz8ggaa09pi8d6xv2807qp7yjn918mrylfvkfwmvcdlgwck0a"; - }; - - patches = [ - ./postfix-2.11.0.patch - ./postfix-script-shell.patch - ]; - - buildInputs = [ makeWrapper gnused db openssl cyrus_sasl ]; - - preBuild = '' - sed -e '/^PATH=/d' -i postfix-install - - export command_directory=$out/sbin - export config_directory=$out/etc/postfix - export daemon_directory=$out/libexec/postfix - export data_directory=/var/lib/postfix - export html_directory=$out/share/postfix/doc/html - export mailq_path=$out/bin/mailq - export manpage_directory=$out/share/man - export newaliases_path=$out/bin/newaliases - export queue_directory=/var/spool/postfix - export readme_directory=$out/share/postfix/doc - export sendmail_path=$out/bin/sendmail - - make makefiles \ - CCARGS='-DUSE_TLS -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I${cyrus_sasl}/include/sasl \ - -fPIE -fstack-protector-all --param ssp-buffer-size=4 -O2 -D_FORTIFY_SOURCE=2' \ - AUXLIBS='-ldb -lnsl -lresolv -lsasl2 -lcrypto -lssl -pie -Wl,-z,relro,-z,now' - ''; - - installTargets = [ "non-interactive-package" ]; - - installFlags = [ " install_root=$out " ]; - - postInstall = '' - mkdir -p $out - mv -v ut/$out/* $out/ - sed -e '/^PATH=/d' -i $out/libexec/postfix/post-install - wrapProgram $out/libexec/postfix/post-install \ - --prefix PATH ":" ${coreutils}/bin:${findutils}/bin:${gnugrep}/bin - wrapProgram $out/libexec/postfix/postfix-script \ - --prefix PATH ":" ${coreutils}/bin:${findutils}/bin:${gnugrep}/bin:${gawk}/bin:${gnused}/bin - ''; - - meta = { - homepage = "http://www.postfix.org/"; - description = "A fast, easy to administer, and secure mail server"; - license = stdenv.lib.licenses.bsdOriginal; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.rickynils ]; - }; - -} diff --git a/pkgs/servers/mail/postfix/3.0.nix b/pkgs/servers/mail/postfix/3.0.nix deleted file mode 100644 index 52327090e44..00000000000 --- a/pkgs/servers/mail/postfix/3.0.nix +++ /dev/null @@ -1,91 +0,0 @@ -{ stdenv, lib, fetchurl, makeWrapper, gnused, db, openssl, cyrus_sasl -, coreutils, findutils, gnugrep, gawk, icu, pcre -, withPgSQL ? false, postgresql -, withMySQL ? false, libmysql -, withSQLite ? false, sqlite -}: - -let - ccargs = lib.concatStringsSep " " ([ - "-DUSE_TLS" "-DUSE_SASL_AUTH" "-DUSE_CYRUS_SASL" "-I${cyrus_sasl}/include/sasl" - "-DHAS_DB_BYPASS_MAKEDEFS_CHECK" - "-fPIE" "-fstack-protector-all" "--param" "ssp-buffer-size=4" "-O2" "-D_FORTIFY_SOURCE=2" - ] ++ lib.optional withPgSQL "-DHAS_PGSQL" - ++ lib.optionals withMySQL [ "-DHAS_MYSQL" "-I${libmysql}/include/mysql" ] - ++ lib.optional withSQLite "-DHAS_SQLITE"); - auxlibs = lib.concatStringsSep " " ([ - "-ldb" "-lnsl" "-lresolv" "-lsasl2" "-lcrypto" "-lssl" "-pie" "-Wl,-z,relro,-z,now" - ] ++ lib.optional withPgSQL "-lpq" - ++ lib.optional withMySQL "-lmysqlclient" - ++ lib.optional withSQLite "-lsqlite3"); - -in stdenv.mkDerivation rec { - - name = "postfix-${version}"; - - version = "3.0.3"; - - src = fetchurl { - url = "ftp://ftp.cs.uu.nl/mirror/postfix/postfix-release/official/${name}.tar.gz"; - sha256 = "00mc12k5p1zlrlqcf33vh5zizaqr5ai8q78dwv69smjh6kn4c7j0"; - }; - - buildInputs = [ makeWrapper gnused db openssl cyrus_sasl icu pcre ] - ++ lib.optional withPgSQL postgresql - ++ lib.optional withMySQL libmysql - ++ lib.optional withSQLite sqlite; - - patches = [ - ./postfix-script-shell.patch - ./postfix-3.0-no-warnings.patch - ./post-install-script.patch - ./relative-symlinks.patch - ]; - - preBuild = '' - sed -e '/^PATH=/d' -i postfix-install - sed -e "s|@PACKAGE@|$out|" -i conf/post-install - - # post-install need skip permissions check/set on all symlinks following to /nix/store - sed -e "s|@NIX_STORE@|$NIX_STORE|" -i conf/post-install - - export command_directory=$out/sbin - export config_directory=/etc/postfix - export meta_directory=$out/etc/postfix - export daemon_directory=$out/libexec/postfix - export data_directory=/var/lib/postfix/data - export html_directory=$out/share/postfix/doc/html - export mailq_path=$out/bin/mailq - export manpage_directory=$out/share/man - export newaliases_path=$out/bin/newaliases - export queue_directory=/var/lib/postfix/queue - export readme_directory=$out/share/postfix/doc - export sendmail_path=$out/bin/sendmail - - make makefiles CCARGS='${ccargs}' AUXLIBS='${auxlibs}' - ''; - - installTargets = [ "non-interactive-package" ]; - - installFlags = [ "install_root=installdir" ]; - - postInstall = '' - mkdir -p $out - mv -v installdir/$out/* $out/ - cp -rv installdir/etc $out - sed -e '/^PATH=/d' -i $out/libexec/postfix/post-install - wrapProgram $out/libexec/postfix/post-install \ - --prefix PATH ":" ${coreutils}/bin:${findutils}/bin:${gnugrep}/bin - wrapProgram $out/libexec/postfix/postfix-script \ - --prefix PATH ":" ${coreutils}/bin:${findutils}/bin:${gnugrep}/bin:${gawk}/bin:${gnused}/bin - ''; - - meta = { - homepage = "http://www.postfix.org/"; - description = "A fast, easy to administer, and secure mail server"; - license = lib.licenses.bsdOriginal; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.rickynils ]; - }; - -} diff --git a/pkgs/servers/mail/postfix/db-linux3.patch b/pkgs/servers/mail/postfix/db-linux3.patch deleted file mode 100644 index c9dd4646798..00000000000 --- a/pkgs/servers/mail/postfix/db-linux3.patch +++ /dev/null @@ -1,39 +0,0 @@ -diff --git a/makedefs b/makedefs -index b8b98c8..94443c0 100644 ---- a/makedefs -+++ b/makedefs -@@ -341,20 +341,20 @@ EOF - esac - ;; - Linux.3*) SYSTYPE=LINUX3 -- if [ -f /usr/include/db.h ] -- then -- : we are all set -- elif [ -f /usr/include/db/db.h ] -- then -- CCARGS="$CCARGS -I/usr/include/db" -- else -- # On a properly installed system, Postfix builds -- # by including and by linking with -ldb -- echo "No include file found." 1>&2 -- echo "Install the appropriate db*-devel package first." 1>&2 -- echo "See the RELEASE_NOTES file for more information." 1>&2 -- exit 1 -- fi -+ #if [ -f /usr/include/db.h ] -+ #then -+ #: we are all set -+ #elif [ -f /usr/include/db/db.h ] -+ #then -+ #CCARGS="$CCARGS -I/usr/include/db" -+ #else -+ ## On a properly installed system, Postfix builds -+ ## by including and by linking with -ldb -+ #echo "No include file found." 1>&2 -+ #echo "Install the appropriate db*-devel package first." 1>&2 -+ #echo "See the RELEASE_NOTES file for more information." 1>&2 -+ #exit 1 -+ #fi - SYSLIBS="-ldb" - for name in nsl resolv - do diff --git a/pkgs/servers/mail/postfix/default.nix b/pkgs/servers/mail/postfix/default.nix index 838ca7a8d8d..52327090e44 100644 --- a/pkgs/servers/mail/postfix/default.nix +++ b/pkgs/servers/mail/postfix/default.nix @@ -1,70 +1,91 @@ -{ stdenv, fetchurl, db, glibc, openssl, cyrus_sasl -, coreutils, findutils, gnused, gnugrep, bison, perl +{ stdenv, lib, fetchurl, makeWrapper, gnused, db, openssl, cyrus_sasl +, coreutils, findutils, gnugrep, gawk, icu, pcre +, withPgSQL ? false, postgresql +, withMySQL ? false, libmysql +, withSQLite ? false, sqlite }: -assert stdenv.isLinux; +let + ccargs = lib.concatStringsSep " " ([ + "-DUSE_TLS" "-DUSE_SASL_AUTH" "-DUSE_CYRUS_SASL" "-I${cyrus_sasl}/include/sasl" + "-DHAS_DB_BYPASS_MAKEDEFS_CHECK" + "-fPIE" "-fstack-protector-all" "--param" "ssp-buffer-size=4" "-O2" "-D_FORTIFY_SOURCE=2" + ] ++ lib.optional withPgSQL "-DHAS_PGSQL" + ++ lib.optionals withMySQL [ "-DHAS_MYSQL" "-I${libmysql}/include/mysql" ] + ++ lib.optional withSQLite "-DHAS_SQLITE"); + auxlibs = lib.concatStringsSep " " ([ + "-ldb" "-lnsl" "-lresolv" "-lsasl2" "-lcrypto" "-lssl" "-pie" "-Wl,-z,relro,-z,now" + ] ++ lib.optional withPgSQL "-lpq" + ++ lib.optional withMySQL "-lmysqlclient" + ++ lib.optional withSQLite "-lsqlite3"); -stdenv.mkDerivation rec { - name = "postfix-2.8.12"; +in stdenv.mkDerivation rec { + + name = "postfix-${version}"; + + version = "3.0.3"; src = fetchurl { url = "ftp://ftp.cs.uu.nl/mirror/postfix/postfix-release/official/${name}.tar.gz"; - sha256 = "11z07mjy53l1fnl7k4101yk4ilibgqr1164628mqcbmmr8bh2szl"; + sha256 = "00mc12k5p1zlrlqcf33vh5zizaqr5ai8q78dwv69smjh6kn4c7j0"; }; - buildInputs = [db openssl cyrus_sasl bison perl]; + buildInputs = [ makeWrapper gnused db openssl cyrus_sasl icu pcre ] + ++ lib.optional withPgSQL postgresql + ++ lib.optional withMySQL libmysql + ++ lib.optional withSQLite sqlite; patches = [ - ./postfix-2.2.9-db.patch - ./postfix-2.2.9-lib.patch - ./db-linux3.patch ./postfix-script-shell.patch + ./postfix-3.0-no-warnings.patch + ./post-install-script.patch + ./relative-symlinks.patch ]; - postPatch = '' - sed -i -e s,/usr/bin,/var/run/current-system/sw/bin, \ - -e s,/usr/sbin,/var/run/current-system/sw/bin, \ - -e s,:/sbin,, src/util/sys_defs.h - ''; - preBuild = '' - export daemon_directory=$out/libexec/postfix - export command_directory=$out/sbin - export queue_directory=/var/spool/postfix - export sendmail_path=$out/bin/sendmail - export mailq_path=$out/bin/mailq - export newaliases_path=$out/bin/newaliases - export html_directory=$out/share/postfix/doc/html - export manpage_directory=$out/share/man - export sample_directory=$out/share/postfix/doc/samples - export readme_directory=$out/share/postfix/doc - - make makefiles CCARGS='-DUSE_TLS -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I${cyrus_sasl}/include/sasl -fPIE -fstack-protector-all --param ssp-buffer-size=4 -O2 -D_FORTIFY_SOURCE=2' AUXLIBS='-lssl -lcrypto -lsasl2 -ldb -lnsl -pie -Wl,-z,relro,-z,now' - ''; - - installPhase = '' sed -e '/^PATH=/d' -i postfix-install - $SHELL postfix-install install_root=out -non-interactive -package + sed -e "s|@PACKAGE@|$out|" -i conf/post-install - mkdir -p $out - mv -v "out$out/"* $out/ + # post-install need skip permissions check/set on all symlinks following to /nix/store + sed -e "s|@NIX_STORE@|$NIX_STORE|" -i conf/post-install - mkdir -p $out/share/postfix - mv conf $out/share/postfix/ - mv LICENSE TLS_LICENSE $out/share/postfix/ + export command_directory=$out/sbin + export config_directory=/etc/postfix + export meta_directory=$out/etc/postfix + export daemon_directory=$out/libexec/postfix + export data_directory=/var/lib/postfix/data + export html_directory=$out/share/postfix/doc/html + export mailq_path=$out/bin/mailq + export manpage_directory=$out/share/man + export newaliases_path=$out/bin/newaliases + export queue_directory=/var/lib/postfix/queue + export readme_directory=$out/share/postfix/doc + export sendmail_path=$out/bin/sendmail - sed -e 's@^PATH=.*@PATH=${coreutils}/bin:${findutils}/bin:${gnused}/bin:${gnugrep}/bin:'$out'/sbin@' -i $out/share/postfix/conf/post-install $out/libexec/postfix/post-install - sed -e '2aPATH=${coreutils}/bin:${findutils}/bin:${gnused}/bin:${gnugrep}/bin:'$out'/sbin' -i $out/share/postfix/conf/postfix-script $out/libexec/postfix/postfix-script - chmod a+x $out/share/postfix/conf/{postfix-script,post-install} + make makefiles CCARGS='${ccargs}' AUXLIBS='${auxlibs}' ''; - inherit glibc; + installTargets = [ "non-interactive-package" ]; + + installFlags = [ "install_root=installdir" ]; + + postInstall = '' + mkdir -p $out + mv -v installdir/$out/* $out/ + cp -rv installdir/etc $out + sed -e '/^PATH=/d' -i $out/libexec/postfix/post-install + wrapProgram $out/libexec/postfix/post-install \ + --prefix PATH ":" ${coreutils}/bin:${findutils}/bin:${gnugrep}/bin + wrapProgram $out/libexec/postfix/postfix-script \ + --prefix PATH ":" ${coreutils}/bin:${findutils}/bin:${gnugrep}/bin:${gawk}/bin:${gnused}/bin + ''; meta = { homepage = "http://www.postfix.org/"; - description = "a fast, easy to administer, and secure mail server"; - license = stdenv.lib.licenses.bsdOriginal; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; + description = "A fast, easy to administer, and secure mail server"; + license = lib.licenses.bsdOriginal; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.rickynils ]; }; + } diff --git a/pkgs/servers/mail/postfix/postfix-2.11.0.patch b/pkgs/servers/mail/postfix/postfix-2.11.0.patch deleted file mode 100644 index cdc4521c428..00000000000 --- a/pkgs/servers/mail/postfix/postfix-2.11.0.patch +++ /dev/null @@ -1,76 +0,0 @@ -diff -ruN postfix-2.11.0-orig/makedefs postfix-2.11.0/makedefs ---- postfix-2.11.0-orig/makedefs 2014-01-05 18:18:56.000000000 +0100 -+++ postfix-2.11.0/makedefs 2014-04-24 09:27:58.193869491 +0200 -@@ -290,36 +290,6 @@ - esac - ;; - Linux.2*) SYSTYPE=LINUX2 -- case "$CCARGS" in -- *-DNO_DB*) ;; -- *-DHAS_DB*) ;; -- *) if [ -f /usr/include/db.h ] -- then -- : we are all set -- elif [ -f /usr/include/db/db.h ] -- then -- CCARGS="$CCARGS -I/usr/include/db" -- else -- # No, we're not going to try db1 db2 db3 etc. -- # On a properly installed system, Postfix builds -- # by including and by linking with -ldb -- echo "No include file found." 1>&2 -- echo "Install the appropriate db*-devel package first." 1>&2 -- exit 1 -- fi -- SYSLIBS="-ldb" -- ;; -- esac -- for name in nsl resolv $GDBM_LIBS -- do -- for lib in /usr/lib64 /lib64 /usr/lib /lib -- do -- test -e $lib/lib$name.a -o -e $lib/lib$name.so && { -- SYSLIBS="$SYSLIBS -l$name" -- break -- } -- done -- done - # Kernel 2.4 added IPv6 - case "$RELEASE" in - 2.[0-3].*) CCARGS="$CCARGS -DNO_IPV6";; -@@ -363,35 +333,6 @@ - esac - ;; - Linux.3*) SYSTYPE=LINUX3 -- case "$CCARGS" in -- *-DNO_DB*) ;; -- *-DHAS_DB*) ;; -- *) if [ -f /usr/include/db.h ] -- then -- : we are all set -- elif [ -f /usr/include/db/db.h ] -- then -- CCARGS="$CCARGS -I/usr/include/db" -- else -- # On a properly installed system, Postfix builds -- # by including and by linking with -ldb -- echo "No include file found." 1>&2 -- echo "Install the appropriate db*-devel package first." 1>&2 -- exit 1 -- fi -- SYSLIBS="-ldb" -- ;; -- esac -- for name in nsl resolv -- do -- for lib in /usr/lib64 /lib64 /usr/lib /usr/lib/* /lib /lib/* -- do -- test -e $lib/lib$name.a -o -e $lib/lib$name.so && { -- SYSLIBS="$SYSLIBS -l$name" -- break -- } -- done -- done - ;; - GNU.0*|GNU/kFreeBSD.[567]*) - SYSTYPE=GNU0 diff --git a/pkgs/servers/mail/postfix/postfix-2.2.9-db.patch b/pkgs/servers/mail/postfix/postfix-2.2.9-db.patch deleted file mode 100644 index 65f55ffd8f0..00000000000 --- a/pkgs/servers/mail/postfix/postfix-2.2.9-db.patch +++ /dev/null @@ -1,40 +0,0 @@ -diff -ruN postfix-2.2.9/makedefs postfix-2.2.9.new/makedefs ---- postfix-2.2.9/makedefs 2006-01-03 21:50:25.000000000 +0000 -+++ postfix-2.2.9.new/makedefs 2006-03-11 00:38:30.000000000 +0000 -@@ -219,21 +219,21 @@ - ;; - Linux.2*) SYSTYPE=LINUX2 - # Postfix no longer needs DB 1.85 compatibility -- if [ -f /usr/include/db.h ] -- then -- : we are all set -- elif [ -f /usr/include/db/db.h ] -- then -- CCARGS="$CCARGS -I/usr/include/db" -- else -- # No, we're not going to try db1 db2 db3 etc. -- # On a properly installed system, Postfix builds -- # by including and by linking with -ldb -- echo "No include file found." 1>&2 -- echo "Install the appropriate db*-devel package first." 1>&2 -- echo "See the RELEASE_NOTES file for more information." 1>&2 -- exit 1 -- fi -+ #if [ -f /usr/include/db.h ] -+ #then -+ #: we are all set -+ #elif [ -f /usr/include/db/db.h ] -+ #then -+ #CCARGS="$CCARGS -I/usr/include/db" -+ #else -+ ## No, we're not going to try db1 db2 db3 etc. -+ ## On a properly installed system, Postfix builds -+ ## by including and by linking with -ldb -+ #echo "No include file found." 1>&2 -+ #echo "Install the appropriate db*-devel package first." 1>&2 -+ #echo "See the RELEASE_NOTES file for more information." 1>&2 -+ #exit 1 -+ #fi - # GDBM locks the DBM .pag file after open. This breaks postmap. - # if [ -f /usr/include/gdbm-ndbm.h ] - # then diff --git a/pkgs/servers/mail/postfix/postfix-2.2.9-lib.patch b/pkgs/servers/mail/postfix/postfix-2.2.9-lib.patch deleted file mode 100644 index 03dcaa87f23..00000000000 --- a/pkgs/servers/mail/postfix/postfix-2.2.9-lib.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -ruN postfix-2.2.9/makedefs postfix-2.2.9.new/makedefs ---- postfix-2.2.9/makedefs 2006-01-03 21:50:25.000000000 +0000 -+++ postfix-2.2.9.new/makedefs 2006-03-11 01:40:30.000000000 +0000 -@@ -247,7 +247,7 @@ - SYSLIBS="-ldb" - for name in nsl resolv $GDBM_LIBS - do -- for lib in /usr/lib64 /lib64 /usr/lib /lib -+ for lib in $glibc/usr/lib64 $glibc/lib64 $glibc/usr/lib $glibc/lib - do - test -e $lib/lib$name.a -o -e $lib/lib$name.so && { - SYSLIBS="$SYSLIBS -l$name" diff --git a/pkgs/servers/mail/rspamd/default.nix b/pkgs/servers/mail/rspamd/default.nix index bd4f3db3ab5..f3156afd97a 100644 --- a/pkgs/servers/mail/rspamd/default.nix +++ b/pkgs/servers/mail/rspamd/default.nix @@ -6,13 +6,13 @@ in stdenv.mkDerivation rec { name = "rspamd-${version}"; - version = "1.1.3"; + version = "1.2.0"; src = fetchFromGitHub { owner = "vstakhov"; repo = "rspamd"; rev = version; - sha256 = "0mvh812a91yqynmcpv159dmkipx72fwg7rgscq7virzphchkbzvj"; + sha256 = "00d9c9b8w6j0ls1w08bfghn4635as779b45vhhlv1f5wfzhxz6a1"; }; nativeBuildInputs = [ cmake pkgconfig perl ]; diff --git a/pkgs/servers/monitoring/munin/default.nix b/pkgs/servers/monitoring/munin/default.nix index 51eda757e3c..71f76695bb2 100644 --- a/pkgs/servers/monitoring/munin/default.nix +++ b/pkgs/servers/monitoring/munin/default.nix @@ -55,7 +55,7 @@ stdenv.mkDerivation rec { doCheck = false; checkPhase = '' - export PERL5LIB="$PERL5LIB:${rrdtool}/lib/perl" + export PERL5LIB="$PERL5LIB:${rrdtool}/lib/perl5/site_perl" LC_ALL=C make -j1 test ''; @@ -109,10 +109,10 @@ stdenv.mkDerivation rec { *.jar) continue;; esac wrapProgram "$file" \ - --set PERL5LIB "$out/lib/perl5/site_perl:${rrdtool}/lib/perl:${with perlPackages; stdenv.lib.makePerlPath [ + --set PERL5LIB "$out/lib/perl5/site_perl:${with perlPackages; stdenv.lib.makePerlPath [ Log4Perl IOSocketInet6 Socket6 URI DBFile DateManip HTMLTemplate FileCopyRecursive FCGI NetCIDR NetSNMP NetServer - ListMoreUtils TimeHiRes DBDPg LWPUserAgent + ListMoreUtils TimeHiRes DBDPg LWPUserAgent rrdtool ]}" done ''; diff --git a/pkgs/servers/nosql/eventstore/default.nix b/pkgs/servers/nosql/eventstore/default.nix index a42212ade08..d58005f7be2 100644 --- a/pkgs/servers/nosql/eventstore/default.nix +++ b/pkgs/servers/nosql/eventstore/default.nix @@ -1,34 +1,26 @@ -{ stdenv, fetchFromGitHub, fetchpatch, git, mono, v8, icu }: +{ stdenv, fetchFromGitHub, fetchpatch, mono, v8 }: # There are some similarities with the pinta derivation. We should # have a helper to make it easy to package these Mono apps. stdenv.mkDerivation rec { name = "EventStore-${version}"; - version = "3.0.3"; + version = "3.5.0"; src = fetchFromGitHub { owner = "EventStore"; repo = "EventStore"; rev = "oss-v${version}"; - sha256 = "1xz1dpnbkqqd3ph9g3z5cghr8zp14sr9y31lrdjrdydr3gm4sll2"; + sha256 = "0dp5914hxwdzw62q49wavqfqkw3jy0dvml09y7gh8frnbiajcxq9"; }; - patches = [ - # see: https://github.com/EventStore/EventStore/issues/461 - (fetchpatch { - url = https://github.com/EventStore/EventStore/commit/9a0987f19935178df143a3cf876becaa1b11ffae.patch; - sha256 = "04qw0rb1pypa8dqvj94j2mwkc1y6b40zrpkn1d3zfci3k8cam79y"; - }) - ]; - buildPhase = '' - ln -s ${v8}/lib/libv8.so src/libs/libv8.so - ln -s ${icu}/lib/libicui18n.so src/libs/libicui18n.so - ln -s ${icu}/lib/libicuuc.so src/libs/libicuuc.so + mkdir -p src/libs/x64/nixos + pushd src/EventStore.Projections.v8Integration + cc -o ../libs/x64/nixos/libjs1.so -fPIC -lv8 -shared -std=c++0x *.cpp + popd patchShebangs build.sh - ./build.sh js1 - ./build.sh quick ${version} + ./build.sh ${version} release nixos ''; installPhase = '' @@ -41,8 +33,9 @@ stdenv.mkDerivation rec { chmod +x $out/bin/clusternode ''; - buildInputs = [ git v8 mono ]; + buildInputs = [ v8 mono ]; + phases = [ "unpackPhase" "buildPhase" "installPhase" ]; dontStrip = true; meta = { @@ -50,6 +43,6 @@ stdenv.mkDerivation rec { description = "Event sourcing database with processing logic in JavaScript"; license = stdenv.lib.licenses.bsd3; maintainers = with stdenv.lib.maintainers; [ puffnfresh ]; - platforms = with stdenv.lib.platforms; linux; + platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/servers/nosql/mongodb/default.nix b/pkgs/servers/nosql/mongodb/default.nix index 2ea255e4432..289607328d6 100644 --- a/pkgs/servers/nosql/mongodb/default.nix +++ b/pkgs/servers/nosql/mongodb/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, scons, boost, gperftools, pcre, snappy +{ stdenv, fetchurl, fetchpatch, scons, boost, gperftools, pcre, snappy , zlib, libyamlcpp, sasl, openssl, libpcap, wiredtiger }: @@ -53,7 +53,14 @@ in stdenv.mkDerivation rec { # vendored header file - regardless of whether or not we're using the system # tcmalloc - so we need to lift the include path manipulation out of the # conditional. - patches = [ ./valgrind-include.patch ]; + patches = + [ ./valgrind-include.patch + (fetchpatch { + url = https://projects.archlinux.org/svntogit/community.git/plain/trunk/boost160.patch?h=packages/mongodb; + name = "boost160.patch"; + sha256 = "0bvsf3499zj55pzamwjmsssr6x63w434944w76273fr5rxwzcmh8"; + }) + ]; postPatch = '' # fix environment variable reading diff --git a/pkgs/servers/nosql/riak/1.3.1.nix b/pkgs/servers/nosql/riak/1.3.1.nix deleted file mode 100644 index df85044b8d1..00000000000 --- a/pkgs/servers/nosql/riak/1.3.1.nix +++ /dev/null @@ -1,65 +0,0 @@ -{ stdenv, fetchurl, fetchFromGitHub, unzip, erlangR15}: - -let - srcs = { - riak = fetchurl { - url = "http://s3.amazonaws.com/downloads.basho.com/riak/1.3/1.3.1/riak-1.3.1.tar.gz"; - sha256 = "a69093fc5df1b79f58645048b9571c755e00c3ca14dfd27f9f1cae2c6e628f01"; - }; - leveldb = fetchFromGitHub { - owner = "basho"; - repo = "leveldb"; - rev = "1.3.1"; - sha256 = "1jvv260ic38657y4lwwcvzmhah8xai594xy19r28gkzlpra1lnbb"; - }; - }; -in -stdenv.mkDerivation rec { - name = "riak-1.3.1"; - - buildInputs = [unzip erlangR15]; - - src = srcs.riak; - - patches = [ ./riak-1.3.1.patch ./riak-admin-1.3.1.patch ]; - - postUnpack = '' - mkdir -p $sourceRoot/deps/eleveldb/c_src/leveldb - cp -r ${srcs.leveldb}/* $sourceRoot/deps/eleveldb/c_src/leveldb - chmod 755 -R $sourceRoot/deps/eleveldb/c_src/leveldb - pushd $sourceRoot/deps/ - mkdir riaknostic/deps - cp -R lager riaknostic/deps - cp -R getopt riaknostic/deps - cp -R meck riaknostic/deps - popd - patchShebangs . - ''; - - buildPhase = '' - make rel - ''; - - doCheck = false; - - installPhase = '' - mkdir $out - mv rel/riak/etc rel/riak/riak-etc - mkdir -p rel/riak/etc - mv rel/riak/riak-etc rel/riak/etc/riak - mv rel/riak/* $out - ''; - - meta = { - maintainers = [ stdenv.lib.maintainers.orbitz ]; - description = "Dynamo inspired NoSQL DB by Basho"; - longDescription = '' - This patches the riak and riak-admin scripts to work better in Nix. - Rather than the scripts using their own location to determine where - the data, log, and etc directories should live, the scripts expect - RIAK_DATA_DIR, RIAK_LOG_DIR, and RIAK_ETC_DIR to be defined - and use those. - ''; - platforms = stdenv.lib.platforms.all; - }; -} diff --git a/pkgs/servers/openafs-client/default.nix b/pkgs/servers/openafs-client/default.nix index 5d8e255f47f..abc6d78f20c 100644 --- a/pkgs/servers/openafs-client/default.nix +++ b/pkgs/servers/openafs-client/default.nix @@ -1,27 +1,18 @@ { stdenv, fetchurl, fetchgit, which, autoconf, automake, flex, yacc, kernel, glibc, ncurses, perl, kerberos }: -let - version = if stdenv.lib.versionAtLeast kernel.version "4.2" - then "1.6.14-1-602130" - else "1.6.14"; -in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "openafs-${version}-${kernel.version}"; + version = "1.6.17"; - src = if version == "1.6.14-1-602130" - # 1.6.14 + patches to run on linux 4.2 that will get into 1.6.15 - then fetchgit { - url = "git://git.openafs.org/openafs.git"; - rev = "feab09080ec050b3026eff966352b058e2c2295b"; - sha256 = "03j71c7y487jbjmm6ydr1hw38pf43j2dz153xknndf4x4v21nnp2"; - } - else fetchurl { - url = "http://www.openafs.org/dl/openafs/${version}/openafs-${version}-src.tar.bz2"; - sha256 = "3e62c798a7f982c4f88d85d32e46bee6a47848d207b1e318fe661ce44ae4e01f"; - }; + src = fetchurl { + url = "http://www.openafs.org/dl/openafs/${version}/openafs-${version}-src.tar.bz2"; + sha256 = "16532f4951piv1g2i539233868xfs1damrnxql61gjgxpwnklhcn"; + }; - buildInputs = [ autoconf automake flex yacc ncurses perl which ]; + nativeBuildInputs = [ autoconf automake flex yacc perl which ]; + + buildInputs = [ ncurses ]; preConfigure = '' ln -s "${kernel.dev}/lib/modules/"*/build $TMP/linux @@ -47,11 +38,15 @@ stdenv.mkDerivation { ) ''; - meta = { + meta = with stdenv.lib; { description = "Open AFS client"; - homepage = http://www.openafs.org; - license = stdenv.lib.licenses.ipl10; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.z77z ]; + homepage = https://www.openafs.org; + license = licenses.ipl10; + platforms = platforms.linux; + maintainers = [ maintainers.z77z ]; + broken = + (builtins.compareVersions kernel.version "3.18" == -1) || + (builtins.compareVersions kernel.version "4.4" != -1) || + (kernel.features.grsecurity or false); }; } diff --git a/pkgs/servers/osrm-backend/4.5.0-gcc-binutils.patch b/pkgs/servers/osrm-backend/4.5.0-gcc-binutils.patch new file mode 100644 index 00000000000..87b9b9501c4 --- /dev/null +++ b/pkgs/servers/osrm-backend/4.5.0-gcc-binutils.patch @@ -0,0 +1,15 @@ +diff --git a/CMakeLists.txt b/CMakeLists.txt +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -127,8 +127,9 @@ if(CMAKE_BUILD_TYPE MATCHES Release) + if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" AND + NOT "${CMAKE_CXX_COMPILER_VERSION}" VERSION_LESS "4.9.0" AND NOT MINGW) + message(STATUS "Using gcc specific binutils for LTO.") +- set(CMAKE_AR "/usr/bin/gcc-ar") +- set(CMAKE_RANLIB "/usr/bin/gcc-ranlib") ++ # Just let PATH do its job ++ set(CMAKE_AR "gcc-ar") ++ set(CMAKE_RANLIB "gcc-ranlib") + endif() + endif (HAS_LTO_FLAG) + endif() diff --git a/pkgs/servers/osrm-backend/default.nix b/pkgs/servers/osrm-backend/default.nix index 3e9e2158524..9c1dd23b39f 100644 --- a/pkgs/servers/osrm-backend/default.nix +++ b/pkgs/servers/osrm-backend/default.nix @@ -1,15 +1,18 @@ -{stdenv, fetchurl, cmake, luabind, libosmpbf, stxxl, tbb, boost, expat, protobuf, bzip2, zlib, substituteAll}: +{stdenv, fetchFromGitHub, cmake, luabind, libosmpbf, stxxl, tbb, boost, expat, protobuf, bzip2, zlib, substituteAll}: stdenv.mkDerivation rec { name = "osrm-backend-4.5.0"; - src = fetchurl { - url = "https://github.com/Project-OSRM/osrm-backend/archive/v4.5.0.tar.gz"; - sha256 = "af61e883051f2ecb73520ace6f17cc6da30edc413208ff7cf3d87992eca0756c"; + src = fetchFromGitHub { + rev = "v4.5.0"; + owner = "Project-OSRM"; + repo = "osrm-backend"; + sha256 = "19a8d1llvsrysyk1q48dpmh75qcbibfjlszndrysk11yh62hdvsz"; }; patches = [ ./4.5.0-openmp.patch + ./4.5.0-gcc-binutils.patch (substituteAll { src = ./4.5.0-default-profile-path.template.patch; }) diff --git a/pkgs/servers/owncloud/default.nix b/pkgs/servers/owncloud/default.nix index 092e9c3ff3e..4e4424c5b00 100644 --- a/pkgs/servers/owncloud/default.nix +++ b/pkgs/servers/owncloud/default.nix @@ -56,4 +56,9 @@ in { sha256 = "d5b935f904744b8b40b310f19679702387c852498d0dc7aaeda4555a3db9ad5b"; }; + owncloud90 = common { + versiona = "9.0.0"; + sha256 = "0z57lc6z1h7yn1sa26q8qnhjxyjn0ydy3mf4yy4i9a3p198kfryi"; + }; + } diff --git a/pkgs/servers/plex/default.nix b/pkgs/servers/plex/default.nix index 799fea0fe50..11f1bc4a988 100644 --- a/pkgs/servers/plex/default.nix +++ b/pkgs/servers/plex/default.nix @@ -5,9 +5,9 @@ let plexpkg = if enablePlexPass then { - version = "0.9.15.6.1714"; - vsnHash = "7be11e1"; - sha256 = "1kyk41qnbm8w5bvnisp3d99cf0r72wvlggfi9h4np7sq4p8ksa0g"; + version = "0.9.16.3.1840"; + vsnHash = "cece46d"; + sha256 = "0p1rnia18a67h05f7l7smkpry1ldkpdkyvs9fgrqpay3w0jfk9gd"; } else { version = "0.9.15.6.1714"; vsnHash = "7be11e1"; diff --git a/pkgs/servers/quagga/default.nix b/pkgs/servers/quagga/default.nix index cdc2905d62d..b73086ca7c7 100644 --- a/pkgs/servers/quagga/default.nix +++ b/pkgs/servers/quagga/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "quagga-${version}"; - version = "0.99.24.1"; + version = "1.0.20160315"; src = fetchurl { url = "mirror://savannah/quagga/${name}.tar.gz"; - sha256 = "0kvmc810m7ssrvgb3213271rpywyxb646v5bzjl1jl88vx3imbl4"; + sha256 = "0qrjhp6l1hw35jrvcwyl0df4zjx1kqhrsafx307i6pzgs2xbgzr1"; }; buildInputs = @@ -64,7 +64,7 @@ stdenv.mkDerivation rec { It is more than a routed replacement, it can be used as a Route Server and a Route Reflector. ''; - homepage = http://www.quagga.net/; + homepage = http://www.nongnu.org/quagga/; license = licenses.gpl2; platforms = platforms.unix; maintainers = with maintainers; [ tavyc ]; diff --git a/pkgs/servers/rt/default.nix b/pkgs/servers/rt/default.nix index 253f90e68ef..77b7c6d4f26 100644 --- a/pkgs/servers/rt/default.nix +++ b/pkgs/servers/rt/default.nix @@ -3,12 +3,12 @@ stdenv.mkDerivation rec { name = "rt-${version}"; - version = "4.2.12"; + version = "4.4.0"; src = fetchurl { url = "https://download.bestpractical.com/pub/rt/release/${name}.tar.gz"; - sha256 = "0r3jhgfwwhhk654zag42mrai85yrliw9sc0kgabwjvbh173204p2"; + sha256 = "1hgz50fxv9zdcngww083aqh8vzyk148lm7mcivxflpnsqfw3696x"; }; patches = [ ./override-generated.patch ]; diff --git a/pkgs/servers/samba/4.x.nix b/pkgs/servers/samba/4.x.nix index 4ef47122c28..0f3b9bb7a65 100644 --- a/pkgs/servers/samba/4.x.nix +++ b/pkgs/servers/samba/4.x.nix @@ -18,11 +18,11 @@ with lib; stdenv.mkDerivation rec { - name = "samba-4.3.1"; + name = "samba-4.3.6"; src = fetchurl { url = "mirror://samba/pub/samba/stable/${name}.tar.gz"; - sha256 = "10ic9pxsk3ml5ycmi0bql8wraxhbr2l4fhzd0qwmiqmrjl6sh24r"; + sha256 = "0929fpk2pq4v389naai519xvsm9bzpar4jlgjxwlx1cnn6jyql9j"; }; patches = diff --git a/pkgs/servers/sql/mysql/5.5.x.nix b/pkgs/servers/sql/mysql/5.5.x.nix index 8c288e54cd4..163deda7ae0 100644 --- a/pkgs/servers/sql/mysql/5.5.x.nix +++ b/pkgs/servers/sql/mysql/5.5.x.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchurl, cmake, bison, ncurses, openssl, readline, zlib, perl }: +{ stdenv, fetchurl, cmake, bison, ncurses, openssl, readline, zlib, perl +, cctools, CoreServices }: # Note: zlib is not required; MySQL can use an internal zlib. @@ -22,7 +23,7 @@ stdenv.mkDerivation rec { ''; buildInputs = [ cmake bison ncurses openssl readline zlib ] - ++ stdenv.lib.optional stdenv.isDarwin perl; + ++ stdenv.lib.optionals stdenv.isDarwin [ perl cctools CoreServices ]; enableParallelBuilding = true; diff --git a/pkgs/servers/sql/mysql/jdbc/default.nix b/pkgs/servers/sql/mysql/jdbc/default.nix index 59643fa3e00..e6c66707c4e 100644 --- a/pkgs/servers/sql/mysql/jdbc/default.nix +++ b/pkgs/servers/sql/mysql/jdbc/default.nix @@ -1,12 +1,12 @@ {stdenv, fetchurl, ant, unzip}: stdenv.mkDerivation { - name = "mysql-connector-java-5.1.32"; + name = "mysql-connector-java-5.1.38"; builder = ./builder.sh; src = fetchurl { - url = http://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-5.1.32.zip; - sha256 = "11vjwws1pa8fdwn86rrmqdwsq3ld3sh2r0pp4lpr2gxw0w18ykc7"; + url = http://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-5.1.38.zip; + sha256 = "0b1j2dylnpk6b17gn3168qdrrwq8kdil57nxrd08n1lnkirdsx33"; }; buildInputs = [ unzip ant ]; diff --git a/pkgs/servers/squid/default.nix b/pkgs/servers/squid/default.nix new file mode 100644 index 00000000000..2831423d123 --- /dev/null +++ b/pkgs/servers/squid/default.nix @@ -0,0 +1,24 @@ +{ fetchurl, stdenv, perl, lib, openldap, pam, db, cyrus_sasl, libcap, +expat, libxml2, libtool, openssl}: +stdenv.mkDerivation rec { + name = "squid-3.5.15"; + src = fetchurl { + url = "http://www.squid-cache.org/Versions/v3/3.5/${name}.tar.bz2"; + sha256 = "1cgy6ffyarqd35plqmqi3mrsp0941c6n55pr3zavp07ksj46wgzm"; + }; + buildInputs = [perl openldap pam db cyrus_sasl libcap expat libxml2 + libtool openssl]; + configureFlags = [ + "--enable-ipv6" + "--disable-strict-error-checking" + "--disable-arch-native" + "--with-openssl" + "--enable-ssl-crtd" + ]; + + meta = { + description = "a caching proxy for the Web supporting HTTP, HTTPS, FTP, and more"; + homepage = "http://www.squid-cache.org"; + license = stdenv.lib.licenses.gpl2; + }; +} diff --git a/pkgs/servers/squid/squids.nix b/pkgs/servers/squid/squids.nix deleted file mode 100644 index 35aea7aa130..00000000000 --- a/pkgs/servers/squid/squids.nix +++ /dev/null @@ -1,67 +0,0 @@ -args @ { fetchurl, stdenv, perl, lib, composableDerivation -, openldap, pam, db, cyrus_sasl, kerberos, libcap, expat, libxml2, libtool -, openssl, ... }: with args; -let edf = composableDerivation.edf; in -rec { - squid30 = composableDerivation.composableDerivation {} { - name = "squid-3.0-stable26"; - - buildInputs = [perl]; - - src = args.fetchurl { - url = http://www.squid-cache.org/Versions/v3/3.0/squid-3.0.STABLE26.tar.bz2; - sha256 = "3e54ae3ad09870203862f0856c7d0cca16a85f62d5012085009003ee3d5467b4"; - }; - - configureFlags = ["--enable-ipv6" "--disable-strict-error-checking" "--disable-arch-native"]; - - meta = { - description = "http-proxy"; - homepage = "http://www.squid-cache.org"; - license = stdenv.lib.licenses.gpl2; - }; - - }; - - squid31 = squid30.merge { - name = "squid-3.1.23"; - src = args.fetchurl { - url = http://www.squid-cache.org/Versions/v3/3.1/squid-3.1.23.tar.bz2; - sha256 = "13g4y0gg48xnlzrvpymb08gh25xi50y383faapkxws7i7v94305s"; - }; - }; - - squid32 = squid30.merge rec { - name = "squid-3.2.13"; - src = args.fetchurl { - url = "http://www.squid-cache.org/Versions/v3/3.2/${name}.tar.bz2"; - sha256 = "0dafqv00dr3nyrm9k47d6r7gv2r3f9hjd1ykl3kkvjca11r4n54j"; - }; - buildInputs = [openldap pam db cyrus_sasl libcap expat libxml2 - libtool openssl]; - }; - - squid34 = squid30.merge rec { - name = "squid-3.4.11"; - src = args.fetchurl { - url = "http://www.squid-cache.org/Versions/v3/3.4/${name}.tar.bz2"; - sha256 = "0p9dbsz541cpcc88albwpgq15jgpczv12j9b9g5xw6d3i977qm1h"; - }; - buildInputs = [openldap pam db cyrus_sasl libcap expat libxml2 - libtool openssl]; - configureFlags = ["--enable-ssl" "--enable-ssl-crtd"]; - }; - - squid35 = squid30.merge rec { - name = "squid-3.5.1"; - src = args.fetchurl { - url = "http://www.squid-cache.org/Versions/v3/3.5/${name}.tar.bz2"; - sha256 = "0rfv1v5vkk7l08v4j16l0lz2grrzd8qf2n25i73qd7c8rgwd6a3x"; - }; - buildInputs = [openldap pam db cyrus_sasl libcap expat libxml2 - libtool openssl]; - configureFlags = ["--with-openssl" "--enable-ssl-crtd"]; - }; - - latest = squid35; -} diff --git a/pkgs/servers/unifi/default.nix b/pkgs/servers/unifi/default.nix index 5e647f90de1..e683c7f5f0c 100644 --- a/pkgs/servers/unifi/default.nix +++ b/pkgs/servers/unifi/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "unifi-controller-${version}"; - version = "4.7.6"; + version = "4.8.14"; src = fetchurl { - url = "https://www.ubnt.com/downloads/unifi/${version}/UniFi.unix.zip"; - sha256 = "0xinrxcbd5gb2jgcvrx3jcslad0f19qrbjzkiir9zjq59sn68gfn"; + url = "https://dl.ubnt.com/unifi/${version}/UniFi.unix.zip"; + sha256 = "2498d898399c4ce636ea62e5e4bb1afdd6146e45d721084fe28a44bfd3dffb11"; }; buildInputs = [ unzip ]; diff --git a/pkgs/shells/bash-completion/default.nix b/pkgs/shells/bash-completion/default.nix index 39f7073fcbb..6c7051c9c7a 100644 --- a/pkgs/shells/bash-completion/default.nix +++ b/pkgs/shells/bash-completion/default.nix @@ -12,6 +12,11 @@ stdenv.mkDerivation rec { doCheck = true; + # nmcli is included in the network-manager package + postInstall = '' + rm $out/share/bash-completion/completions/nmcli + ''; + meta = { homepage = "http://bash-completion.alioth.debian.org/"; description = "Programmable completion for the bash shell"; diff --git a/pkgs/shells/mksh/default.nix b/pkgs/shells/mksh/default.nix index dc5f437977c..696777c7f1f 100644 --- a/pkgs/shells/mksh/default.nix +++ b/pkgs/shells/mksh/default.nix @@ -2,14 +2,14 @@ stdenv.mkDerivation rec { name = "mksh-${version}"; - version = "52"; + version = "52c"; src = fetchurl { urls = [ "http://www.mirbsd.org/MirOS/dist/mir/mksh/mksh-R${version}.tgz" "http://pub.allbsd.org/MirOS/dist/mir/mksh/mksh-R${version}.tgz" ]; - sha256 = "13vnncwfx4zq3yi7llw3p6miw0px1bm5rrps3y1nlfn6sb6zbhj5"; + sha256 = "19ivsic15903hv3ipzk0kvkaxardw7b99s8l5iw3y415lz71ld66"; }; buildInputs = [ groff ]; diff --git a/pkgs/shells/oh-my-zsh/default.nix b/pkgs/shells/oh-my-zsh/default.nix new file mode 100644 index 00000000000..a7e57b145d6 --- /dev/null +++ b/pkgs/shells/oh-my-zsh/default.nix @@ -0,0 +1,74 @@ +# This script was inspired by the ArchLinux User Repository package: +# +# https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=oh-my-zsh-git + + +{ stdenv, fetchgit }: + +stdenv.mkDerivation rec { + name = "oh-my-zsh-git-${version}"; + version = "2016-03-24"; + + src = fetchgit { + url = "https://github.com/robbyrussell/oh-my-zsh"; + rev = "9280f2c874b1126ee9399c353d1e0184fd39b4e4"; + sha256 = "1rldqfs5vkqxp3r7nn5q1837a363gml0d5pji0zkl7ia49f7bdnk"; + }; + + phases = "installPhase"; + + installPhase = '' + outdir=$out/share/oh-my-zsh + template=templates/zshrc.zsh-template + + mkdir -p $outdir + cp -r $src/* $outdir + cd $outdir + + rm MIT-LICENSE.txt + rm -rf .git* + + chmod -R +w templates + + # Change the path to oh-my-zsh dir and disable auto-updating. + sed -i -e "2c\\ZSH=$outdir/" \ + -e 's/\# \(DISABLE_AUTO_UPDATE="true"\)/\1/' \ + $template + + # Look for .zsh_variables, .zsh_aliases, and .zsh_funcs, and source + # them, if found. + cat >> $template <<- EOF + + # Load the variables. + if [ -f ~/.zsh_variables ]; then + . ~/.zsh_variables + fi + + # Load the functions. + if [ -f ~/.zsh_funcs ]; then + . ~/.zsh_funcs + fi + + # Load the aliases. + if [ -f ~/.zsh_aliases ]; then + . ~/.zsh_aliases + fi + EOF + ''; + + meta = with stdenv.lib; { + description = "A framework for managing your zsh configuration"; + longDescription = '' + Oh My Zsh is a framework for managing your zsh configuration. + + To copy the Oh My Zsh configuration file to your home directory, run + the following command: + + $ cp -v $(nix-env -q --out-path oh-my-zsh-git | cut -d' ' -f3)/share/oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc + ''; + homepage = "http://ohmyz.sh/"; + license = licenses.mit; + platforms = platforms.all; + maintainers = with maintainers; [ scolobb nequissimus ]; + }; +} diff --git a/pkgs/shells/zsh/default.nix b/pkgs/shells/zsh/default.nix index 5ce686cb8fc..d65b7dc80a8 100644 --- a/pkgs/shells/zsh/default.nix +++ b/pkgs/shells/zsh/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, ncurses, coreutils, pcre }: +{ stdenv, fetchurl, ncurses, pcre }: let @@ -19,7 +19,7 @@ stdenv.mkDerivation { sha256 = "0dsr450v8nydvpk8ry276fvbznlrjgddgp7zvhcw4cv69i9lr4ps"; }; - buildInputs = [ ncurses coreutils pcre ]; + buildInputs = [ ncurses pcre ]; configureFlags = [ "--enable-maildir-support" @@ -37,8 +37,10 @@ stdenv.mkDerivation { # XXX: think/discuss about this, also with respect to nixos vs nix-on-X postInstall = '' - mkdir -p $out/share/ + mkdir -p $out/share/info tar xf ${documentation} -C $out/share + ln -s $out/share/zsh-*/Doc/zsh.info* $out/share/info/ + mkdir -p $out/etc/ cat > $out/etc/zprofile < { - url = "http://vicerveza.homeunix.net/~viric/tmp/nix/busybox"; - sha256 = "1vfadk3d2v0bsvmbaz1pvpn4g1vm7p751hkdxya1lkn5n1a9px5m"; + url = http://nixos-arm.dezgeg.me/bootstrap/armv5tel/busybox; + sha256 = "1jdwznkgbkmz0zy58idgrm6prpw8x8wis14dxkxwzbzk7g1l3a2x"; executable = true; }; bootstrapTools = import { - url = "http://vicerveza.homeunix.net/~viric/tmp/nix/bootstrap-tools.tar.xz"; - sha256 = "39df65053bab50bc2975060c4da177266e263f30c2afba231a97d23f4c471eb8"; + url = http://nixos-arm.dezgeg.me/bootstrap/armv5tel/bootstrap-tools.tar.xz; + sha256 = "10rjp7mv6cfh9n2wfifdlaak8wqcmcpmylhn8jn0430ap37qqhb0"; }; } diff --git a/pkgs/stdenv/linux/bootstrap/armv6l.nix b/pkgs/stdenv/linux/bootstrap/armv6l.nix index 34429413e73..619f38cb761 100644 --- a/pkgs/stdenv/linux/bootstrap/armv6l.nix +++ b/pkgs/stdenv/linux/bootstrap/armv6l.nix @@ -1,12 +1,12 @@ { busybox = import { - url = https://dl.dropboxusercontent.com/s/4705ffxjrxxqnh2/busybox?dl=0; - sha256 = "032maafy4akcdgccpxdxrza29pkcpm81g8kh1hv8bj2rvssly3z2"; + url = http://nixos-arm.dezgeg.me/bootstrap/armv6l/busybox; + sha256 = "12hij075qapim3jaqc8rb2rvjdradc4937i9mkfa27b6ly1injs0"; executable = true; }; bootstrapTools = import { - url = https://dl.dropboxusercontent.com/s/pen8ieymeqqdvqn/bootstrap-tools.tar.xz?dl=0; - sha256 = "0kjpjwi6qw82ca02ppsih3bnhc3y150q23k9d56xzscs0xf5d0dv"; + url = http://nixos-arm.dezgeg.me/bootstrap/armv6l/bootstrap-tools.tar.xz; + sha256 = "14irgvw2wl2ljqbmdislhw3nakmx6wmlm1xki26rk20q2ciic2il"; }; } diff --git a/pkgs/stdenv/linux/bootstrap/armv7l.nix b/pkgs/stdenv/linux/bootstrap/armv7l.nix index a6225f455de..c336dcf82bd 100644 --- a/pkgs/stdenv/linux/bootstrap/armv7l.nix +++ b/pkgs/stdenv/linux/bootstrap/armv7l.nix @@ -1,12 +1,12 @@ { busybox = import { - url = https://dl.dropboxusercontent.com/s/rowzme529tc5svq/busybox?dl=0; - sha256 = "18793riwv9r1bgz6zv03c84cd0v26gxsm8wd2c7gjrwwyfg46ls4"; + url = http://nixos-arm.dezgeg.me/bootstrap/armv7l/busybox; + sha256 = "1279nlh3x93fqpcxi98zycmn3jhly40pab63fwq41ygkna14vw6b"; executable = true; }; bootstrapTools = import { - url = https://dl.dropboxusercontent.com/s/3jr4s5449t7zjlj/bootstrap-tools.tar.xz?dl=0; - sha256 = "1qyp871dajz5mi3yaw9sndwh4yrh1jj184wjjwaf6dpr3jir4kyd"; + url = http://nixos-arm.dezgeg.me/bootstrap/armv7l/bootstrap-tools.tar.xz; + sha256 = "15sdnsk5dc3qz27p7c4iainziz8f3r7xpg69dpfwfdaq1drw6678"; }; } diff --git a/pkgs/stdenv/linux/default.nix b/pkgs/stdenv/linux/default.nix index 24d8ccec61a..f0b6ce7c9f3 100644 --- a/pkgs/stdenv/linux/default.nix +++ b/pkgs/stdenv/linux/default.nix @@ -6,7 +6,7 @@ # The function defaults are for easy testing. { system ? builtins.currentSystem -, allPackages ? import ../../top-level/all-packages.nix +, allPackages ? import ../../.. , platform ? null, config ? {}, lib ? (import ../../../lib) , bootstrapFiles ? if system == "i686-linux" then import ./bootstrap/i686.nix diff --git a/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix b/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix index bf060329be6..3adb00693f7 100644 --- a/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix +++ b/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix @@ -3,7 +3,7 @@ let buildFor = toolsArch: ( let - pkgsFun = import ../../top-level/all-packages.nix; + pkgsFun = import ../../..; pkgsNoParams = pkgsFun {}; sheevaplugCrossSystem = { diff --git a/pkgs/stdenv/linux/make-bootstrap-tools.nix b/pkgs/stdenv/linux/make-bootstrap-tools.nix index 4a7f057cb6c..68456942d40 100644 --- a/pkgs/stdenv/linux/make-bootstrap-tools.nix +++ b/pkgs/stdenv/linux/make-bootstrap-tools.nix @@ -1,6 +1,6 @@ { system ? builtins.currentSystem }: -with import ../../top-level/all-packages.nix {inherit system;}; +with import ../../.. {inherit system;}; rec { diff --git a/pkgs/test/mkOption/keep.nix b/pkgs/test/mkOption/keep.nix index c26064d89f7..26fb8c28dd5 100644 --- a/pkgs/test/mkOption/keep.nix +++ b/pkgs/test/mkOption/keep.nix @@ -1,5 +1,5 @@ let - pkgs = import ../../top-level/all-packages.nix {}; + pkgs = import ../../.. {}; config = import ./declare.nix; in with (pkgs.lib); diff --git a/pkgs/test/mkOption/merge.nix b/pkgs/test/mkOption/merge.nix index 0d4b3c1acd1..bbf68218aa0 100644 --- a/pkgs/test/mkOption/merge.nix +++ b/pkgs/test/mkOption/merge.nix @@ -1,5 +1,5 @@ let - pkgs = import ../../top-level/all-packages.nix {}; + pkgs = import ../../.. {}; config = import ./declare.nix; # Define the handler of unbound options. diff --git a/pkgs/tools/X11/xdg-utils/default.nix b/pkgs/tools/X11/xdg-utils/default.nix index 23b406c2d43..e7233d0f714 100644 --- a/pkgs/tools/X11/xdg-utils/default.nix +++ b/pkgs/tools/X11/xdg-utils/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchzip, fetchFromGitHub, file, libxslt, docbook_xml_dtd_412, docbook_xsl, xmlto +{ stdenv, fetchurl, fetchFromGitHub +, file, libxslt, docbook_xml_dtd_412, docbook_xsl, xmlto , w3m, which, gnugrep, gnused, coreutils , mimiSupport ? false, gawk ? null }: @@ -15,12 +16,12 @@ let in stdenv.mkDerivation rec { - name = "xdg-utils-1.1.0-rc3p46"; + name = "xdg-utils-${version}"; + version = "1.1.1"; - src = fetchzip { - name = "${name}.tar.gz"; - url = "http://cgit.freedesktop.org/xdg/xdg-utils/snapshot/03577f987730.tar.gz"; - sha256 = "1fs0kxalmpqv6x0rv4xg65w8r26sk464xisrbwp4p6a033y5x34l"; + src = fetchurl { + url = "https://portland.freedesktop.org/download/${name}.tar.gz"; + sha256 = "09a1pk3ifsndc5qz2kcd1557i137gpgnv3d739pv22vfayi67pdh"; }; # just needed when built from git @@ -28,18 +29,23 @@ stdenv.mkDerivation rec { postInstall = stdenv.lib.optionalString mimiSupport '' cp ${mimisrc}/xdg-open $out/bin/xdg-open - substituteInPlace $out/bin/xdg-open --replace "awk " "${gawk}/bin/awk " - substituteInPlace $out/bin/xdg-open --replace "sort " "${coreutils}/bin/sort " - substituteInPlace $out/bin/xdg-open --replace "(file " "(${file}/bin/file " - '' + '' - for item in $out/bin/*; do - substituteInPlace $item --replace "cut " "${coreutils}/bin/cut " - substituteInPlace $item --replace "sed " "${gnused}/bin/sed " - substituteInPlace $item --replace "egrep " "${gnugrep}/bin/egrep " - sed -i $item -re "s#([^e])grep #\1${gnugrep}/bin/grep #g" # Don't replace 'egrep' - substituteInPlace $item --replace "which " "type -P " - substituteInPlace $item --replace "/usr/bin/file" "${file}/bin/file" + '' + + '' + for tool in "${coreutils}/bin/cut" "${gnused}/bin/sed" \ + "${gnugrep}"/bin/{e,}grep "${file}/bin/file" \ + ${stdenv.lib.optionalString mimiSupport + '' "${gawk}/bin/awk" "${coreutils}/bin/sort" ''} ; + do + sed "s# $(basename "$tool") # $tool #g" -i "$out"/bin/* done + + substituteInPlace $out/bin/xdg-open \ + --replace "/usr/bin/printf" "${coreutils}/bin/printf" + + substituteInPlace $out/bin/xdg-mime \ + --replace "/usr/bin/file" "${file}/bin/file" + + sed 's# which # type -P #g' -i "$out"/bin/* ''; meta = with stdenv.lib; { diff --git a/pkgs/tools/X11/xpra/default.nix b/pkgs/tools/X11/xpra/default.nix index e0e12051bff..b0c79342d42 100644 --- a/pkgs/tools/X11/xpra/default.nix +++ b/pkgs/tools/X11/xpra/default.nix @@ -6,12 +6,11 @@ , libfakeXinerama }: buildPythonApplication rec { - name = "xpra-0.15.3"; + name = "xpra-0.16.2"; namePrefix = ""; - src = fetchurl { - url = "https://www.xpra.org/src/${name}.tar.xz"; - sha256 = "1671r4ah2h0i3qbp27csck506n5y1zr9fv0869cv09knspa358i4"; + url = "http://xpra.org/src/${name}.tar.xz"; + sha256 = "0h55rv46byzv2g8g77bm0a0py8jpz3gbr5fhr5jy9sisyr0vk6ff"; }; buildInputs = [ @@ -36,7 +35,7 @@ buildPythonApplication rec { preBuild = '' export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags gtk+-2.0) $(pkg-config --cflags pygtk-2.0) $(pkg-config --cflags xtst)" ''; - setupPyBuildFlags = ["--with-Xdummy"]; + setupPyBuildFlags = ["--with-Xdummy" "--without-strict"]; preInstall = '' # see https://bitbucket.org/pypa/setuptools/issue/130/install_data-doesnt-respect-prefix @@ -52,6 +51,8 @@ buildPythonApplication rec { --prefix PATH : ${getopt}/bin:${xorgserver}/bin:${xauth}/bin:${which}/bin:${utillinux}/bin ''; + preCheck = "exit 0"; + #TODO: replace postInstall with postFixup to avoid double wrapping of xpra; needs more work though #postFixup = '' # sed -i '2iexport XKB_BINDIR="${xkbcomp}/bin"' $out/bin/xpra diff --git a/pkgs/tools/X11/xpra/gtk3.nix b/pkgs/tools/X11/xpra/gtk3.nix index 5b81ec0a7ed..7fd24a510d5 100644 --- a/pkgs/tools/X11/xpra/gtk3.nix +++ b/pkgs/tools/X11/xpra/gtk3.nix @@ -6,14 +6,19 @@ , libfakeXinerama }: buildPythonApplication rec { - name = "xpra-0.14.19"; + name = "xpra-0.16.2"; namePrefix = ""; src = fetchurl { - url = "https://www.xpra.org/src/${name}.tar.xz"; - sha256 = "0jifaysz4br1v0zibnzgd0k02rgybbsysvwrgbar1452sjb3db5m"; + url = "http://xpra.org/src/${name}.tar.xz"; + sha256 = "0h55rv46byzv2g8g77bm0a0py8jpz3gbr5fhr5jy9sisyr0vk6ff"; }; + patchPhase = '' + substituteInPlace setup.py --replace 'pycairo' 'py3cairo' + substituteInPlace xpra/client/gtk3/cairo_workaround.pyx --replace 'pycairo/pycairo.h' 'py3cairo.h' + ''; + buildInputs = [ pkgconfig @@ -36,8 +41,7 @@ buildPythonApplication rec { preBuild = '' export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags gtk+-3.0) $(pkg-config --cflags xtst)" ''; - setupPyBuildFlags = [ "--with-gtk3" "--without-gtk2" "--with-Xdummy" ]; - + setupPyBuildFlags = [ "--without-strict" "--with-gtk3" "--without-gtk2" "--with-Xdummy" ]; preInstall = '' # see https://bitbucket.org/pypa/setuptools/issue/130/install_data-doesnt-respect-prefix @@ -53,6 +57,9 @@ buildPythonApplication rec { --prefix PATH : ${getopt}/bin:${xorgserver}/bin:${xauth}/bin:${which}/bin:${utillinux}/bin ''; + preCheck = "exit 0"; + doInstallCheck = false; + #TODO: replace postInstall with postFixup to avoid double wrapping of xpra; needs more work though #postFixup = '' # sed -i '2iexport XKB_BINDIR="${xkbcomp}/bin"' $out/bin/xpra diff --git a/pkgs/tools/admin/simp_le/default.nix b/pkgs/tools/admin/simp_le/default.nix index d27c0a2da81..78ae1953ad7 100644 --- a/pkgs/tools/admin/simp_le/default.nix +++ b/pkgs/tools/admin/simp_le/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchFromGitHub, pythonPackages }: pythonPackages.buildPythonApplication rec { - name = "simp_le-2016-01-09"; + name = "simp_le-2016-02-06"; src = fetchFromGitHub { owner = "kuba"; repo = "simp_le"; - rev = "b9d95e862536d1242e1ca6d7dac5691f32f11373"; - sha256 = "0l4qs0y4cbih76zrpbkn77xj17iwsm5fi83zc3p048x4hj163805"; + rev = "8f258bc098a84b7a20c2732536d0740244d814f7"; + sha256 = "1r2c31bhj91n3cjyf01spx52vkqxi5475zzkc9s1aliy3fs3lc4r"; }; propagatedBuildInputs = with pythonPackages; [ acme_0_1 ]; diff --git a/pkgs/tools/archivers/innoextract/default.nix b/pkgs/tools/archivers/innoextract/default.nix index 6b442e7bf66..1f27730b19a 100644 --- a/pkgs/tools/archivers/innoextract/default.nix +++ b/pkgs/tools/archivers/innoextract/default.nix @@ -1,11 +1,11 @@ {stdenv, fetchurl, cmake, python, doxygen, lzma, boost}: stdenv.mkDerivation rec { - name = "innoextract-1.5"; + name = "innoextract-1.6"; src = fetchurl { url = "http://constexpr.org/innoextract/files/${name}.tar.gz"; - sha256 = "1ks8z8glak63xvqlv7dnmlzkjrwsn81lhybmai2mja6g5jclwngj"; + sha256 = "0gh3q643l8qlwla030cmf3qdcdr85ixjygkb7j4dbm7zbwa3yik6"; }; buildInputs = [ python doxygen lzma boost ]; diff --git a/pkgs/tools/archivers/unrar/default.nix b/pkgs/tools/archivers/unrar/default.nix index cbfced7aa6b..768c7afd7eb 100644 --- a/pkgs/tools/archivers/unrar/default.nix +++ b/pkgs/tools/archivers/unrar/default.nix @@ -9,6 +9,10 @@ stdenv.mkDerivation rec { sha256 = "0qw77gvr57azjbn76cjlm4sv1hf2hh90g7n7n33gfvlpnbs7mf3p"; }; + postPatch = '' + sed 's/^CXX=g++/#CXX/' -i makefile + ''; + buildPhase = '' make unrar make clean diff --git a/pkgs/tools/archivers/zpaq/default.nix b/pkgs/tools/archivers/zpaq/default.nix index 2b761df3863..011793248cd 100644 --- a/pkgs/tools/archivers/zpaq/default.nix +++ b/pkgs/tools/archivers/zpaq/default.nix @@ -1,23 +1,14 @@ -{ stdenv, fetchurl, unzip }: +{ stdenv, fetchurl, perl, unzip }: let s = # Generated upstream information rec { baseName="zpaq"; - version="705"; + version="707"; name="${baseName}-${version}"; - hash="0d1knq4f6693nvbwjx4wznb45hm4zyn4k88xvhynyk0dcbiy7ayq"; - url="http://mattmahoney.net/dc/zpaq705.zip"; - sha256="0d1knq4f6693nvbwjx4wznb45hm4zyn4k88xvhynyk0dcbiy7ayq"; + hash="0xbisphv318a33px47vriirdp2jhf99y6hx6gcbfhbhkaqpggjg3"; + url="http://mattmahoney.net/dc/zpaq707.zip"; + sha256="0xbisphv318a33px47vriirdp2jhf99y6hx6gcbfhbhkaqpggjg3"; }; - isUnix = with stdenv; isLinux || isGNU || isDarwin || isFreeBSD || isOpenBSD; - isx86 = stdenv.isi686 || stdenv.isx86_64; - compileFlags = with stdenv; "" - + (lib.optionalString (isUnix) " -Dunix -pthread") - + (lib.optionalString (isi686) " -march=i686") - + (lib.optionalString (isx86_64) " -march=nocona") - + (lib.optionalString (!isx86) " -DNOJIT") - + " -O3 -mtune=generic -DNDEBUG" - ; in stdenv.mkDerivation { inherit (s) name version; @@ -28,20 +19,24 @@ stdenv.mkDerivation { sourceRoot = "."; + nativeBuildInputs = [ perl /* for pod2man */ ]; buildInputs = [ unzip ]; - buildPhase = '' - g++ ${compileFlags} -fPIC --shared libzpaq.cpp -o libzpaq.so - g++ ${compileFlags} -L. -L"$out/lib" -lzpaq zpaq.cpp -o zpaq + preBuild = let + CPPFLAGS = with stdenv; "" + + (lib.optionalString (!isi686 && !isx86_64) "-DNOJIT ") + + "-Dunix"; + CXXFLAGS = with stdenv; "" + + (lib.optionalString (isi686) "-march=i686 ") + + (lib.optionalString (isx86_64) "-march=nocona ") + + "-O3 -mtune=generic -DNDEBUG"; + in '' + buildFlagsArray=( "CPPFLAGS=${CPPFLAGS}" "CXXFLAGS=${CXXFLAGS}" ) ''; - installPhase = '' - mkdir -p "$out"/{bin,include,lib,share/doc/zpaq} - cp libzpaq.so "$out/lib" - cp zpaq "$out/bin" - cp libzpaq.h "$out/include" - cp readme.txt "$out/share/doc/zpaq" - ''; + enableParallelBuilding = true; + + installFlags = [ "PREFIX=$(out)" ]; meta = with stdenv.lib; { inherit (s) version; diff --git a/pkgs/tools/audio/acoustid-fingerprinter/default.nix b/pkgs/tools/audio/acoustid-fingerprinter/default.nix index f5d4322ec93..07319fe4c39 100644 --- a/pkgs/tools/audio/acoustid-fingerprinter/default.nix +++ b/pkgs/tools/audio/acoustid-fingerprinter/default.nix @@ -12,9 +12,12 @@ stdenv.mkDerivation rec { buildInputs = [ cmake pkgconfig qt4 taglib chromaprint ffmpeg ]; - meta = { + cmakeFlags = [ "-DTAGLIB_MIN_VERSION=${(builtins.parseDrvName taglib.name).version}" ]; + + meta = with stdenv.lib; { homepage = "http://acoustid.org/fingerprinter"; description = "Audio fingerprinting tool using chromaprint"; license = stdenv.lib.licenses.gpl2Plus; + maintainers = with maintainers; [ ehmry ]; }; } diff --git a/pkgs/tools/audio/liquidsoap/full.nix b/pkgs/tools/audio/liquidsoap/full.nix index eeebea5d747..318bb2859e5 100644 --- a/pkgs/tools/audio/liquidsoap/full.nix +++ b/pkgs/tools/audio/liquidsoap/full.nix @@ -40,6 +40,6 @@ stdenv.mkDerivation { homepage = http://liquidsoap.fm/; maintainers = with maintainers; [ ehmry ]; license = licenses.gpl2; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/tools/backup/b2/default.nix b/pkgs/tools/backup/b2/default.nix deleted file mode 100644 index 15a48b76579..00000000000 --- a/pkgs/tools/backup/b2/default.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ fetchFromGitHub, pythonPackages, stdenv }: - -stdenv.mkDerivation rec { - name = "b2-${version}"; - version = "git-26.01.2016"; - - src = fetchFromGitHub { - owner = "Backblaze"; - repo = "B2_Command_Line_Tool"; - rev = "b3f06fd53eb1c9a07740b962284753cba413a7b8"; - sha256 = "0kn2lkh8hp6g8q88glyz03z1r8a47pqm91dc5w083i334swqkjp2"; - }; - - buildInputs = [ pythonPackages.wrapPython ]; - - installPhase = '' - mkdir -p $out/bin - cp b2 $out/bin - ''; - - postInstall = "wrapPythonPrograms"; - - meta = with stdenv.lib; { - homepage = https://github.com/Backblaze/B2_Command_Line_Tool; - description = "CLI for accessing Backblaze's B2 Cloud Storage"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ hrdinka ]; - }; -} diff --git a/pkgs/tools/backup/bareos/default.nix b/pkgs/tools/backup/bareos/default.nix index b34c6251405..5a7c35e460f 100644 --- a/pkgs/tools/backup/bareos/default.nix +++ b/pkgs/tools/backup/bareos/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitHub, pkgconfig, nettools, gettext, libtool, flex -, readline ? null, openssl ? null, python ? null, ncurses ? null +, readline ? null, openssl ? null, python ? null, ncurses ? null, rocksdb , sqlite ? null, postgresql ? null, libmysql ? null, zlib ? null, lzo ? null , jansson ? null, acl ? null, glusterfs ? null, libceph ? null, libcap ? null }: @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig ]; buildInputs = [ nettools gettext readline openssl python flex ncurses sqlite postgresql - libmysql zlib lzo jansson acl glusterfs libceph libcap + libmysql zlib lzo jansson acl glusterfs libceph libcap rocksdb ]; postPatch = '' diff --git a/pkgs/tools/backup/btrbk/btrbk-Prefix-PATH-instead-of-resetting-it.patch b/pkgs/tools/backup/btrbk/btrbk-Prefix-PATH-instead-of-resetting-it.patch new file mode 100644 index 00000000000..1ebb34ded9e --- /dev/null +++ b/pkgs/tools/backup/btrbk/btrbk-Prefix-PATH-instead-of-resetting-it.patch @@ -0,0 +1,39 @@ +From d5978c207f2b266165140dd21e9746ace5792daf Mon Sep 17 00:00:00 2001 +From: Moritz Ulrich +Date: Fri, 18 Mar 2016 14:01:22 +0100 +Subject: [PATCH] btrbk: Prefix PATH instead of resetting it. + +Some distros don't even install use /usr/bin, /sbin, etc. (notably +NixOS). Instead, they use PATH to specify which programs are available +to a given executable. + +This patch changes the behavior or `btrbk` so it extends PATH with its +own search paths instead of resetting it. This allows users and distros +to specify their own custom location for `btrfs` via `PATH`. +--- + btrbk | 9 +++++---- + 1 file changed, 5 insertions(+), 4 deletions(-) + +diff --git a/btrbk b/btrbk +index ab15858..0b91cbe 100755 +--- a/btrbk ++++ b/btrbk +@@ -2464,10 +2464,11 @@ sub exit_status + + MAIN: + { +- # set PATH instead of using absolute "/sbin/btrfs" (for now), as +- # different distros (and even different versions of btrfs-progs) +- # install the "btrfs" executable to different locations. +- $ENV{PATH} = '/sbin:/bin:/usr/sbin:/usr/bin'; ++ # Prefix PATH with /sbin etc. instead of using absolute ++ # "/sbin/btrfs" (for now), as different distros (and even different ++ # versions of btrfs-progs) install the "btrfs" executable to ++ # different locations. ++ $ENV{PATH} .= '/sbin:/bin:/usr/sbin:/usr/bin'; + + Getopt::Long::Configure qw(gnu_getopt); + $Data::Dumper::Sortkeys = 1; +-- +2.7.3 + diff --git a/pkgs/tools/backup/btrbk/btrbk-mail-Use-btrbk-instead-of-unbound-variable-btr.patch b/pkgs/tools/backup/btrbk/btrbk-mail-Use-btrbk-instead-of-unbound-variable-btr.patch new file mode 100644 index 00000000000..050f1a6c430 --- /dev/null +++ b/pkgs/tools/backup/btrbk/btrbk-mail-Use-btrbk-instead-of-unbound-variable-btr.patch @@ -0,0 +1,25 @@ +From 8abe8a915aa2d0c79c4dbe00dc7d255c32b7b85d Mon Sep 17 00:00:00 2001 +From: Moritz Ulrich +Date: Fri, 18 Mar 2016 13:20:48 +0100 +Subject: [PATCH] btrbk-mail: Use `btrbk` instead of unbound variable `$btrbk` + +--- + contrib/cron/btrbk-mail | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/contrib/cron/btrbk-mail b/contrib/cron/btrbk-mail +index f7e4f12..9143f2d 100755 +--- a/contrib/cron/btrbk-mail ++++ b/contrib/cron/btrbk-mail +@@ -113,7 +113,7 @@ case $exitcode in + ;; + 10) status="ERROR: At least one backup task aborted!" + ;; +- *) status="ERROR: $btrbk failed with error code $exitcode" ++ *) status="ERROR: btrbk failed with error code $exitcode" + ;; + esac + +-- +2.7.3 + diff --git a/pkgs/tools/backup/btrbk/default.nix b/pkgs/tools/backup/btrbk/default.nix new file mode 100644 index 00000000000..d4e058d143f --- /dev/null +++ b/pkgs/tools/backup/btrbk/default.nix @@ -0,0 +1,52 @@ +{ stdenv, fetchurl, coreutils, bash, btrfs-progs, perl, perlPackages, makeWrapper }: + +stdenv.mkDerivation rec { + name = "btrbk-${version}"; + version = "0.22.2"; + + src = fetchurl { + url = "http://digint.ch/download/btrbk/releases/${name}.tar.xz"; + sha256 = "1gbgi0dp62wlw7y72pgxjs6byxkrk73g35kqxzw0gjf32r5i4sb8"; + }; + + patches = [ + # https://github.com/digint/btrbk/pull/74 + ./btrbk-Prefix-PATH-instead-of-resetting-it.patch + # https://github.com/digint/btrbk/pull/73 + ./btrbk-mail-Use-btrbk-instead-of-unbound-variable-btr.patch + ]; + + buildInputs = with perlPackages; [ makeWrapper perl DateCalc ]; + + preInstall = '' + substituteInPlace Makefile \ + --replace "/usr" "$out" \ + --replace "/etc" "$out/etc" + + # Tainted Mode disables PERL5LIB + substituteInPlace btrbk --replace "perl -T" "perl" + + # Fix btrbk-mail + substituteInPlace contrib/cron/btrbk-mail \ + --replace "/bin/date" "${coreutils}/bin/date" \ + --replace "/bin/echo" "${coreutils}/bin/echo" \ + --replace '$btrbk' 'btrbk' + ''; + + fixupPhase = '' + patchShebangs $out/ + + wrapProgram $out/sbin/btrbk \ + --set PERL5LIB $PERL5LIB \ + --prefix PATH ':' "${btrfs-progs}/bin:${bash}/bin/" + ''; + + meta = with stdenv.lib; { + description = "A backup tool for btrfs subvolumes"; + homepage = http://digint.ch/btrbk; + license = licenses.gpl3; + platforms = platforms.unix; + maintainers = with maintainers; [ the-kenny ]; + inherit version; + }; +} diff --git a/pkgs/tools/backup/s3ql/default.nix b/pkgs/tools/backup/s3ql/default.nix index e94af89a7c6..9b2adc1d39f 100644 --- a/pkgs/tools/backup/s3ql/default.nix +++ b/pkgs/tools/backup/s3ql/default.nix @@ -3,21 +3,21 @@ python3Packages.buildPythonApplication rec { name = "${pname}-${version}"; pname = "s3ql"; - version = "2.13"; + version = "2.17.1"; src = fetchurl { url = "https://bitbucket.org/nikratio/${pname}/downloads/${name}.tar.bz2"; - sha256 = "0bxps1iq0rv7bg2b8mys6zyjp912knm6zmafhid1jhsv3xyby4my"; + sha256 = "049vpvvkyia7v4v97rg2l01n43shrdxc1ik38bmjb2q4fvsh1pgx"; }; propagatedBuildInputs = with python3Packages; - [ sqlite apsw pycrypto requests defusedxml dugong llfuse ]; + [ sqlite apsw pycrypto requests2 defusedxml dugong llfuse ]; meta = with stdenv.lib; { description = "A full-featured file system for online data storage"; homepage = "https://bitbucket.org/nikratio/s3ql"; license = licenses.gpl3; maintainers = with maintainers; [ rushmorem ]; - platforms = platforms.unix; + platforms = platforms.linux; }; } diff --git a/pkgs/tools/backup/tarsnap/default.nix b/pkgs/tools/backup/tarsnap/default.nix index f2ae4e83ad1..95823bedad6 100644 --- a/pkgs/tools/backup/tarsnap/default.nix +++ b/pkgs/tools/backup/tarsnap/default.nix @@ -8,11 +8,11 @@ let in stdenv.mkDerivation rec { name = "tarsnap-${version}"; - version = "1.0.36.1"; + version = "1.0.37"; src = fetchurl { url = "https://www.tarsnap.com/download/tarsnap-autoconf-${version}.tgz"; - sha256 = "1446l8g39bi5xxk4x1ijc1qjrj824729887gcffig0zrw80rx452"; + sha256 = "1ynv323qi6775lzjb6hvifl8ajkv2bizy43sajadjfqvcl9r96gs"; }; preConfigure = '' diff --git a/pkgs/tools/backup/znapzend/default.nix b/pkgs/tools/backup/znapzend/default.nix new file mode 100644 index 00000000000..1534a0bab0a --- /dev/null +++ b/pkgs/tools/backup/znapzend/default.nix @@ -0,0 +1,72 @@ +{ stdenv, fetchFromGitHub, zfs, mbuffer, perl, perlPackages, wget, autoconf, automake }: + +let + version = "0.15.3"; + checksum = "1xk0lgb23kv1cl0wc2rav75hjrjigd0cp3hjw9gxab835vsvnkq0"; +in +stdenv.mkDerivation rec { + name = "znapzend-${version}"; + + src = fetchFromGitHub{ + owner = "oetiker"; + repo = "znapzend"; + rev = "v${version}"; + sha256 = checksum; + }; + + buildInputs = [ perl perlPackages.TestHarness perlPackages.Mojolicious + perlPackages.TAPParserSourceHandlerpgTAP perlPackages.MojoIOLoopForkCall + perlPackages.IOPipely wget ]; + + nativeBuildInputs = [ autoconf automake ]; + + preConfigure = '' + sed -i 's/^SUBDIRS =.*$/SUBDIRS = lib/' Makefile.am + + grep -v thirdparty/Makefile configure.ac > configure.ac.tmp + mv configure.ac.tmp configure.ac + + autoconf + ''; + + preBuild = '' + aclocal + automake + ''; + + postInstall = '' + substituteInPlace $out/bin/znapzend --replace "${perl}/bin/perl" \ + "${perl}/bin/perl \ + -I${perlPackages.TestHarness}/${perl.libPrefix} \ + -I${perlPackages.Mojolicious}/${perl.libPrefix} \ + -I${perlPackages.TAPParserSourceHandlerpgTAP}/${perl.libPrefix} \ + -I${perlPackages.MojoIOLoopForkCall}/${perl.libPrefix} \ + -I${perlPackages.IOPipely}/${perl.libPrefix} \ + " + substituteInPlace $out/bin/znapzendzetup --replace "${perl}/bin/perl" \ + "${perl}/bin/perl \ + -I${perlPackages.TestHarness}/${perl.libPrefix} \ + -I${perlPackages.Mojolicious}/${perl.libPrefix} \ + -I${perlPackages.TAPParserSourceHandlerpgTAP}/${perl.libPrefix} \ + -I${perlPackages.MojoIOLoopForkCall}/${perl.libPrefix} \ + -I${perlPackages.IOPipely}/${perl.libPrefix} \ + " + substituteInPlace $out/bin/znapzendztatz --replace "${perl}/bin/perl" \ + "${perl}/bin/perl \ + -I${perlPackages.TestHarness}/${perl.libPrefix} \ + -I${perlPackages.Mojolicious}/${perl.libPrefix} \ + -I${perlPackages.TAPParserSourceHandlerpgTAP}/${perl.libPrefix} \ + -I${perlPackages.MojoIOLoopForkCall}/${perl.libPrefix} \ + -I${perlPackages.IOPipely}/${perl.libPrefix} \ + " + ''; + + + meta = with stdenv.lib; { + description = "High performance open source ZFS backup with mbuffer and ssh support"; + homepage = http://www.znapzend.org; + license = licenses.gpl3; + maintainers = with maintainers; [ otwieracz ]; + platforms = platforms.all; + }; +} diff --git a/pkgs/tools/compression/brotli/unstable.nix b/pkgs/tools/compression/brotli/unstable.nix new file mode 100644 index 00000000000..59eb1e1d469 --- /dev/null +++ b/pkgs/tools/compression/brotli/unstable.nix @@ -0,0 +1,46 @@ +{ stdenv, fetchFromGitHub }: + +# ?TODO: there's also python lib in there + +stdenv.mkDerivation rec { + name = "brotli-20160112"; + version = "bed93862"; + + src = fetchFromGitHub { + owner = "google"; + repo = "brotli"; + rev = "bed93862608d4d232ebe6d229f04e48399775e8b"; + sha256 = "0g94kqh984qkbqbj4fpkkyji9wnbrb9cs32r9d6niw1sqfnfkd6f"; + }; + + preConfigure = "cd tools"; + + # Debian installs "brotli" instead of "bro" but let's keep upstream choice for now. + installPhase = '' + mkdir -p "$out/bin" + mv ./bro "$out/bin/" + ''; + + meta = with stdenv.lib; { + inherit (src.meta) homepage; + + description = "A generic-purpose lossless compression algorithm and tool"; + + longDescription = + '' Brotli is a generic-purpose lossless compression algorithm that + compresses data using a combination of a modern variant of the LZ77 + algorithm, Huffman coding and 2nd order context modeling, with a + compression ratio comparable to the best currently available + general-purpose compression methods. It is similar in speed with + deflate but offers more dense compression. + + The specification of the Brotli Compressed Data Format is defined + in the following internet draft: + http://www.ietf.org/id/draft-alakuijala-brotli + ''; + + license = licenses.mit; + maintainers = []; + platforms = platforms.all; + }; +} diff --git a/pkgs/tools/compression/zopfli/default.nix b/pkgs/tools/compression/zopfli/default.nix index 8aeeb3b9e51..07e2eb19469 100644 --- a/pkgs/tools/compression/zopfli/default.nix +++ b/pkgs/tools/compression/zopfli/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { }) ]; - enableParallelBuilding = true; + enableParallelBuilding = false; # problems, easily reproducible buildFlags = [ "zopfli" "libzopfli" diff --git a/pkgs/tools/filesystems/btrfs-progs/4.4.1.nix b/pkgs/tools/filesystems/btrfs-progs/4.4.1.nix new file mode 100644 index 00000000000..afafa4ec174 --- /dev/null +++ b/pkgs/tools/filesystems/btrfs-progs/4.4.1.nix @@ -0,0 +1,31 @@ +{ stdenv, fetchurl, pkgconfig, attr, acl, zlib, libuuid, e2fsprogs, lzo +, asciidoc, xmlto, docbook_xml_dtd_45, docbook_xsl, libxslt +}: + +let version = "4.4.1"; in + +stdenv.mkDerivation rec { + name = "btrfs-progs-${version}"; + + src = fetchurl { + url = "mirror://kernel/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v${version}.tar.xz"; + sha256 = "1z5882zx9jx02vyg067siws0irsl8pg37myx17hr4imn9ypf6r4r"; + }; + + buildInputs = [ + pkgconfig attr acl zlib libuuid e2fsprogs lzo + asciidoc xmlto docbook_xml_dtd_45 docbook_xsl libxslt + ]; + + # gcc bug with -O1 on ARM with gcc 4.8 + # This should be fine on all platforms so apply universally + patchPhase = "sed -i s/-O1/-O2/ configure"; + + meta = with stdenv.lib; { + description = "Utilities for the btrfs filesystem"; + homepage = https://btrfs.wiki.kernel.org/; + license = licenses.gpl2; + maintainers = with maintainers; [ nckx raskin wkennington ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/tools/filesystems/btrfs-progs/default.nix b/pkgs/tools/filesystems/btrfs-progs/default.nix index 3435a8c1432..59935af0a5d 100644 --- a/pkgs/tools/filesystems/btrfs-progs/default.nix +++ b/pkgs/tools/filesystems/btrfs-progs/default.nix @@ -2,14 +2,14 @@ , asciidoc, xmlto, docbook_xml_dtd_45, docbook_xsl, libxslt }: -let version = "4.4.1"; in +let version = "4.5"; in stdenv.mkDerivation rec { name = "btrfs-progs-${version}"; src = fetchurl { url = "mirror://kernel/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v${version}.tar.xz"; - sha256 = "1z5882zx9jx02vyg067siws0irsl8pg37myx17hr4imn9ypf6r4r"; + sha256 = "04d8w1wqaij6kxhxcirwvy1bkvc7aikkyw981ciwlznblzc16y7f"; }; buildInputs = [ @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { description = "Utilities for the btrfs filesystem"; homepage = https://btrfs.wiki.kernel.org/; license = licenses.gpl2; - maintainers = with maintainers; [ raskin wkennington ]; + maintainers = with maintainers; [ nckx raskin wkennington ]; platforms = platforms.linux; }; } diff --git a/pkgs/tools/filesystems/genromfs/default.nix b/pkgs/tools/filesystems/genromfs/default.nix new file mode 100644 index 00000000000..db1968fccdc --- /dev/null +++ b/pkgs/tools/filesystems/genromfs/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + version = "0.5.2"; + name = "genromfs-${version}"; + + src = fetchurl { + url = "mirror://sourceforge/romfs/genromfs/${version}/${name}.tar.gz"; + sha256 = "0q6rpq7cmclmb4ayfyknvzbqysxs4fy8aiahlax1sb2p6k3pzwrh"; + }; + + postPatch = '' + substituteInPlace Makefile --replace "prefix = /usr" "prefix = $out" + ''; + + meta = with stdenv.lib; { + homepage = "http://romfs.sourceforge.net/"; + description = "Tool for creating romfs file system images"; + license = licenses.gpl2; + maintainers = with maintainers; [ pxc ]; + platforms = platforms.all; + }; +} diff --git a/pkgs/tools/filesystems/nixpart/0.4/pyblock.nix b/pkgs/tools/filesystems/nixpart/0.4/pyblock.nix index 2ce126d7169..3ed145c82f2 100644 --- a/pkgs/tools/filesystems/nixpart/0.4/pyblock.nix +++ b/pkgs/tools/filesystems/nixpart/0.4/pyblock.nix @@ -3,11 +3,12 @@ stdenv.mkDerivation rec { name = "pyblock-${version}"; version = "0.53"; + md5_path = "f6d33a8362dee358517d0a9e2ebdd044"; src = fetchurl rec { url = "http://pkgs.fedoraproject.org/repo/pkgs/python-pyblock/" - + "${name}.tar.bz2/${md5}/${name}.tar.bz2"; - md5 = "f6d33a8362dee358517d0a9e2ebdd044"; + + "${name}.tar.bz2/${md5_path}/${name}.tar.bz2"; + sha256 = "f6cef88969300a6564498557eeea1d8da58acceae238077852ff261a2cb1d815"; }; postPatch = '' diff --git a/pkgs/tools/filesystems/nixpart/0.4/pykickstart.nix b/pkgs/tools/filesystems/nixpart/0.4/pykickstart.nix index 86479126d39..f13ad14aded 100644 --- a/pkgs/tools/filesystems/nixpart/0.4/pykickstart.nix +++ b/pkgs/tools/filesystems/nixpart/0.4/pykickstart.nix @@ -3,11 +3,12 @@ buildPythonApplication rec { name = "pykickstart-${version}"; version = "1.99.39"; + md5_path = "d249f60aa89b1b4facd63f776925116d"; src = fetchurl rec { url = "http://pkgs.fedoraproject.org/repo/pkgs/pykickstart/" - + "${name}.tar.gz/${md5}/${name}.tar.gz"; - md5 = "d249f60aa89b1b4facd63f776925116d"; + + "${name}.tar.gz/${md5_path}/${name}.tar.gz"; + sha256 = "e0d0f98ac4c5607e6a48d5c1fba2d50cc804de1081043f9da68cbfc69cad957a"; }; postPatch = '' diff --git a/pkgs/tools/filesystems/sshfs-fuse/default.nix b/pkgs/tools/filesystems/sshfs-fuse/default.nix index a5b01db4cd2..3a460241daa 100644 --- a/pkgs/tools/filesystems/sshfs-fuse/default.nix +++ b/pkgs/tools/filesystems/sshfs-fuse/default.nix @@ -1,14 +1,18 @@ -{ stdenv, fetchurl, pkgconfig, glib, fuse }: +{ stdenv, fetchFromGitHub, pkgconfig, glib, fuse, autoreconfHook }: stdenv.mkDerivation rec { - name = "sshfs-fuse-2.5"; + version = "2.7"; + name = "sshfs-fuse-${version}"; - src = fetchurl { - url = "mirror://sourceforge/fuse/${name}.tar.gz"; - sha256 = "0gp6qr33l2p0964j0kds0dfmvyyf5lpgsn11daf0n5fhwm9185z9"; + src = fetchFromGitHub { + repo = "sshfs"; + owner = "libfuse"; + rev = "sshfs-${version}"; + sha256 = "17l9b89zy5qzfcknw3krk74rfrqaa8q1r8jwdsahaqajsy09h4x4"; }; - buildInputs = [ pkgconfig glib fuse ]; + buildInputs = [ pkgconfig glib fuse autoreconfHook ]; + postInstall = '' mkdir -p $out/sbin ln -sf $out/bin/sshfs $out/sbin/mount.sshfs diff --git a/pkgs/tools/filesystems/tmsu/default.nix b/pkgs/tools/filesystems/tmsu/default.nix index 218a2fe0e05..5ebd567b8ba 100644 --- a/pkgs/tools/filesystems/tmsu/default.nix +++ b/pkgs/tools/filesystems/tmsu/default.nix @@ -2,7 +2,7 @@ stdenv.mkDerivation rec { name = "tmsu-${version}"; - version = "0.6.0"; + version = "0.6.1"; go-sqlite3 = fetchgit { url = "git://github.com/mattn/go-sqlite3"; @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { owner = "oniony"; repo = "tmsu"; rev = "v${version}"; - sha256 = "1fqq8cj1awwhb076s88l489kj664ndc343gqi8c21yp9wj6fzpnq"; + sha256 = "08mz08pw59zaljp7dcndklnfdbn36ld27capivq3ifbq96nnqdf3"; }; buildInputs = [ go fuse ]; diff --git a/pkgs/tools/graphics/argyllcms/default.nix b/pkgs/tools/graphics/argyllcms/default.nix index fce383dcc9c..3c7af45f81d 100644 --- a/pkgs/tools/graphics/argyllcms/default.nix +++ b/pkgs/tools/graphics/argyllcms/default.nix @@ -2,7 +2,7 @@ , libXrender, libXext, libtiff, libjpeg, libpng, libXScrnSaver, writeText , libXdmcp, libXau, lib, openssl, zlib }: let - version = "1.8.2"; + version = "1.8.3"; in stdenv.mkDerivation rec { name = "argyllcms-${version}"; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { # Kind of flacky URL, it was reaturning 406 and inconsistent binaries for a # while on me. It might be good to find a mirror url = "http://www.argyllcms.com/Argyll_V${version}_src.zip"; - sha256 = "0hnsciwak5chy4a421l8fz7amxzg8kbmy57a07dn460gdg6r63cy"; + sha256 = "00ggh47qzb3xyl8rnppwxa6j113lr38aiwvsfyxwgs51aqmvq7bd"; # The argyllcms web server doesn't like curl ... curlOpts = "--user-agent 'Mozilla/5.0'"; diff --git a/pkgs/tools/graphics/enblend-enfuse/default.nix b/pkgs/tools/graphics/enblend-enfuse/default.nix index c967b73001c..f1f5ac878ba 100644 --- a/pkgs/tools/graphics/enblend-enfuse/default.nix +++ b/pkgs/tools/graphics/enblend-enfuse/default.nix @@ -2,13 +2,13 @@ , boost, freeglut, glew, gsl, lcms2, libpng, libtiff, libxmi, mesa, vigra , help2man, pkgconfig, perl }: -let version = "4.1.4"; in +let version = "4.1.5"; in stdenv.mkDerivation rec { name = "enblend-enfuse-${version}"; src = fetchurl { url = "mirror://sourceforge/enblend/${name}.tar.gz"; - sha256 = "0208x01i129hqylmy6jh3krwdac47mx6fi8xccjm9h35c18c7xl5"; + sha256 = "08dz73jgrwfhz0kh57kz048qy1c6a35ckqn9xs5rajm449vnw0pg"; }; buildInputs = [ boost freeglut glew gsl lcms2 libpng libtiff libxmi mesa vigra ]; diff --git a/pkgs/tools/graphics/jbig2enc/53ce5fe7e73d7ed95c9e12b52dd4984723f865fa.patch b/pkgs/tools/graphics/jbig2enc/53ce5fe7e73d7ed95c9e12b52dd4984723f865fa.patch new file mode 100644 index 00000000000..13e18fd0447 --- /dev/null +++ b/pkgs/tools/graphics/jbig2enc/53ce5fe7e73d7ed95c9e12b52dd4984723f865fa.patch @@ -0,0 +1,47 @@ +From 53ce5fe7e73d7ed95c9e12b52dd4984723f865fa Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Zdenko=20Podobn=C3=BD?= +Date: Sun, 6 Apr 2014 21:25:27 +0200 +Subject: [PATCH] fix build with leptonica 1.70 + +--- + configure.ac | 1 + + src/jbig2.cc | 13 +++++++++---- + 2 files changed, 10 insertions(+), 4 deletions(-) + +diff --git a/configure.ac b/configure.ac +index fe37c22..753a607 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -55,6 +55,7 @@ AC_CHECK_LIB([lept], [findFileFormatStream], [], [ + echo "Error! Leptonica not detected." + exit -1 + ]) ++AC_CHECK_FUNCS(expandBinaryPower2Low,,) + # test for function - it should detect leptonica dependecies + + # Check for possible dependancies of leptonica. +diff --git a/src/jbig2.cc b/src/jbig2.cc +index e10f042..515c1ef 100644 +--- a/src/jbig2.cc ++++ b/src/jbig2.cc +@@ -130,11 +130,16 @@ segment_image(PIX *pixb, PIX *piximg) { + // input color image, so we have to do it this way... + // is there a better way? + // PIX *pixd = pixExpandBinary(pixd4, 4); +- PIX *pixd = pixCreate(piximg->w, piximg->h, 1); +- pixCopyResolution(pixd, piximg); +- if (verbose) pixInfo(pixd, "mask image: "); +- expandBinaryPower2Low(pixd->data, pixd->w, pixd->h, pixd->wpl, ++ PIX *pixd; ++#ifdef HAVE_EXPANDBINARYPOWER2LOW ++ pixd = pixCreate(piximg->w, piximg->h, 1); ++ pixCopyResolution(pixd, piximg); ++ expandBinaryPower2Low(pixd->data, pixd->w, pixd->h, pixd->wpl, + pixd4->data, pixd4->w, pixd4->h, pixd4->wpl, 4); ++#else ++ pixd = pixExpandBinaryPower2(pixd4, 4); ++#endif ++ if (verbose) pixInfo(pixd, "mask image: "); + + pixDestroy(&pixd4); + pixDestroy(&pixsf4); diff --git a/pkgs/tools/graphics/jbig2enc/default.nix b/pkgs/tools/graphics/jbig2enc/default.nix index 71f0789286a..8d0b7d2d9f4 100644 --- a/pkgs/tools/graphics/jbig2enc/default.nix +++ b/pkgs/tools/graphics/jbig2enc/default.nix @@ -8,6 +8,11 @@ propagatedBuildInputs = [ leptonica zlib libwebp giflib libjpeg libpng libtiff ]; + patches = [ + # https://github.com/agl/jbig2enc/commit/53ce5fe7e73d7ed95c9e12b52dd4984723f865fa + ./53ce5fe7e73d7ed95c9e12b52dd4984723f865fa.patch + ]; + # This is necessary, because the resulting library has # /tmp/nix-build-jbig2enc/src/.libs before /nix/store/jbig2enc/lib # in its rpath, which means that patchelf --shrink-rpath removes diff --git a/pkgs/tools/graphics/pngquant/default.nix b/pkgs/tools/graphics/pngquant/default.nix index 77cc898ef2a..985b8a1c59d 100644 --- a/pkgs/tools/graphics/pngquant/default.nix +++ b/pkgs/tools/graphics/pngquant/default.nix @@ -1,16 +1,19 @@ -{ stdenv, fetchgit, libpng }: +{ stdenv, fetchFromGitHub, pkgconfig, libpng, zlib, lcms2 }: stdenv.mkDerivation rec { name = "pngquant-${version}"; - version = "2.0.1"; + version = "2.6.0"; - src = fetchgit { - url = https://github.com/pornel/pngquant.git; - rev = "refs/tags/${version}"; - sha256 = "00mrv9wgxbwy517l8i4n7n3jpzirjdgi0zass3wj29i7xyipwlhf"; + src = fetchFromGitHub { + owner = "pornel"; + repo = "pngquant"; + rev = version; + sha256 = "0sdh9cz330rhj6xvqk3sdhy0393qwyl349klk9r55g88rjp774s5"; }; - buildInputs = [ libpng ]; + preConfigure = "patchShebangs ."; + + buildInputs = [ pkgconfig libpng zlib lcms2 ]; preInstall = '' mkdir -p $out/bin @@ -18,10 +21,9 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - homepage = https://github.com/pornel/pngquant; - description = "pngquant converts 24/32-bit RGBA PNGs to 8-bit palette with alpha channel preserved"; - platforms = platforms.all; + homepage = https://pngquant.org/; + description = "A tool to convert 24/32-bit RGBA PNGs to 8-bit palette with alpha channel preserved"; + platforms = platforms.linux; license = licenses.bsd2; # Not exactly bsd2, but alike - broken = true; }; } diff --git a/pkgs/tools/inputmethods/anthy/default.nix b/pkgs/tools/inputmethods/anthy/default.nix index 34ffa1568b9..4fbd0965c78 100644 --- a/pkgs/tools/inputmethods/anthy/default.nix +++ b/pkgs/tools/inputmethods/anthy/default.nix @@ -7,8 +7,8 @@ stdenv.mkDerivation { description = "Hiragana text to Kana Kanji mixed text Japanese input method"; homepace = http://sourceforge.jp/projects/anthy/; license = licenses.gpl2Plus; + maintainers = with maintainers; [ ericsagnes ]; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/tools/inputmethods/fcitx-engines/fcitx-anthy/default.nix b/pkgs/tools/inputmethods/fcitx-engines/fcitx-anthy/default.nix index 88ba436207c..9d8427e533c 100644 --- a/pkgs/tools/inputmethods/fcitx-engines/fcitx-anthy/default.nix +++ b/pkgs/tools/inputmethods/fcitx-engines/fcitx-anthy/default.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { description = "Fcitx Wrapper for anthy"; license = licenses.gpl2Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ericsagnes ]; + maintainers = with maintainers; [ ericsagnes ]; }; } diff --git a/pkgs/tools/inputmethods/fcitx/default.nix b/pkgs/tools/inputmethods/fcitx/default.nix index 8cdcabf3693..d2e46f704c8 100644 --- a/pkgs/tools/inputmethods/fcitx/default.nix +++ b/pkgs/tools/inputmethods/fcitx/default.nix @@ -39,6 +39,6 @@ stdenv.mkDerivation rec { description = "A Flexible Input Method Framework"; license = stdenv.lib.licenses.gpl2; platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [iyzsong ericsagnes]; + maintainers = with stdenv.lib.maintainers; [ ericsagnes ]; }; } diff --git a/pkgs/tools/misc/abduco/default.nix b/pkgs/tools/misc/abduco/default.nix index d8f53a032af..cdfb57fc5f0 100644 --- a/pkgs/tools/misc/abduco/default.nix +++ b/pkgs/tools/misc/abduco/default.nix @@ -3,7 +3,7 @@ with stdenv.lib; stdenv.mkDerivation rec { - name = "abduco-0.5"; + name = "abduco-0.6"; meta = { homepage = http://brain-dump.org/projects/abduco; @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://www.brain-dump.org/projects/abduco/${name}.tar.gz"; - sha256 = "11phry5wnvwm9ckij5gxbrjfgdz3x38vpnm505q5ldc88im248mz"; + sha256 = "1x1m58ckwsprljgmdy93mvgjyg9x3cqrzdf3mysp0mx97zhhj2f9"; }; configFile = optionalString (conf!=null) (writeText "config.def.h" conf); diff --git a/pkgs/tools/misc/calamares/default.nix b/pkgs/tools/misc/calamares/default.nix index ab00d52c777..f9f9f06eb51 100644 --- a/pkgs/tools/misc/calamares/default.nix +++ b/pkgs/tools/misc/calamares/default.nix @@ -51,5 +51,6 @@ stdenv.mkDerivation rec { license = licenses.gpl3; maintainers = with stdenv.lib.maintainers; [ tstrobel ]; platforms = platforms.linux; + broken = true; }; } diff --git a/pkgs/tools/misc/colord-kde/0.5.nix b/pkgs/tools/misc/colord-kde/0.5.nix new file mode 100644 index 00000000000..9df8ace38f6 --- /dev/null +++ b/pkgs/tools/misc/colord-kde/0.5.nix @@ -0,0 +1,29 @@ +{ stdenv, lib, fetchgit +, extra-cmake-modules, ki18n +, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons, kiconthemes, kcmutils +, kio, knotifications, plasma-framework, kwidgetsaddons, kwindowsystem +, kitemviews, lcms2, libXrandr, qtx11extras +}: + +stdenv.mkDerivation { + name = "colord-kde-0.5.0.20160224"; + src = fetchgit { + url = "git://anongit.kde.org/colord-kde"; + rev = "3729d1348c57902b74283bc8280ffb5561b221db"; + sha256 = "03ww8nskgxl38dwkbb39by18gxvrcm6w2zg9s7q05i76rpl6kkkw"; + }; + + nativeBuildInputs = [ extra-cmake-modules ki18n ]; + + buildInputs = [ + kconfig kconfigwidgets kcoreaddons kdbusaddons kiconthemes + kcmutils kio knotifications plasma-framework kwidgetsaddons + kwindowsystem kitemviews lcms2 libXrandr qtx11extras + ]; + + meta = with lib; { + homepage = "https://projects.kde.org/projects/playground/graphics/colord-kde"; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ ttuegel ]; + }; +} diff --git a/pkgs/tools/misc/colord-kde/default.nix b/pkgs/tools/misc/colord-kde/default.nix index 606595f4605..52e1845b300 100644 --- a/pkgs/tools/misc/colord-kde/default.nix +++ b/pkgs/tools/misc/colord-kde/default.nix @@ -14,6 +14,9 @@ stdenv.mkDerivation { buildInputs = [ colord libX11 libXrandr lcms2 kdelibs ]; + patches = [ ./fix_check_include_files.patch ]; + patchFlags = [ "-p0" ]; + enableParallelBuilding = true; meta = { diff --git a/pkgs/tools/misc/colord-kde/fix_check_include_files.patch b/pkgs/tools/misc/colord-kde/fix_check_include_files.patch new file mode 100644 index 00000000000..16d14a6a647 --- /dev/null +++ b/pkgs/tools/misc/colord-kde/fix_check_include_files.patch @@ -0,0 +1,9 @@ +--- CMakeLists.txt.orig 2013-05-01 05:04:34.000000000 +1000 ++++ CMakeLists.txt 2015-12-10 20:43:51.351800988 +1100 +@@ -9,6 +9,7 @@ + include(FindPkgConfig) + include(KDE4Defaults) ++include(CheckIncludeFiles) + include(ConfigureChecks.cmake) + + message(STATUS "X randr is required, found: " ${XRANDR_1_3_FOUND}) \ No newline at end of file diff --git a/pkgs/tools/misc/colord/default.nix b/pkgs/tools/misc/colord/default.nix index 3ba5a138e5a..7e6c3f30784 100644 --- a/pkgs/tools/misc/colord/default.nix +++ b/pkgs/tools/misc/colord/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchzip, fetchgit, bashCompletion , glib, polkit, pkgconfig, intltool, gusb, libusb1, lcms2, sqlite, systemd, dbus , automake, autoconf, libtool, gtk_doc, which, gobjectIntrospection, argyllcms -, libgudev }: +, libgudev, sane-backends }: stdenv.mkDerivation rec { name = "colord-1.2.12"; @@ -14,7 +14,8 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; configureFlags = [ - "--with-udevrulesdir=$out/lib/udev/rules.d" + "--enable-sane" + "--with-udevrulesdir=$(out)/lib/udev/rules.d" "--with-systemdsystemunitdir=$(out)/etc/systemd/system" "--localstatedir=/var" "--disable-bash-completion" @@ -27,7 +28,7 @@ stdenv.mkDerivation rec { ''; buildInputs = [ glib polkit pkgconfig intltool gusb libusb1 lcms2 sqlite systemd dbus gobjectIntrospection - bashCompletion argyllcms automake autoconf libgudev ]; + bashCompletion argyllcms automake autoconf libgudev sane-backends ]; postInstall = '' mkdir -p $out/etc/bash_completion.d diff --git a/pkgs/tools/misc/cpuminer/default.nix b/pkgs/tools/misc/cpuminer/default.nix index 67249161e84..64657d7cd3b 100644 --- a/pkgs/tools/misc/cpuminer/default.nix +++ b/pkgs/tools/misc/cpuminer/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "cpuminer-${version}"; - version = "2.4.3"; + version = "2.4.4"; src = fetchurl { url = "mirror://sourceforge/cpuminer/pooler-${name}.tar.gz"; - sha256 = "1p66v96pz3vk1khwlmc26fg2d06c001755rrkcdv5wh8zyg6wv99"; + sha256 = "0xdgz5qlx1yr3mw2h4bwlbj94y6v2ygjy334cnc87xgzxf1wgann"; }; buildInputs = [ curl jansson ]; diff --git a/pkgs/tools/misc/datamash/default.nix b/pkgs/tools/misc/datamash/default.nix index dabf843fc83..e65cec54218 100644 --- a/pkgs/tools/misc/datamash/default.nix +++ b/pkgs/tools/misc/datamash/default.nix @@ -1,18 +1,20 @@ -{stdenv, fetchurl}: +{ stdenv, fetchurl }: stdenv.mkDerivation rec { name = "datamash-${version}"; - version = "1.0.6"; + version = "1.0.7"; src = fetchurl { url = "http://ftp.gnu.org/gnu/datamash/${name}.tar.gz"; - sha256 = "0154c25c45b5506b6d618ca8e18d0ef093dac47946ac0df464fb21e77b504118"; + sha256 = "0y49zaadzirghy4xfajvsv1f5x805cjp61z212ggipx5243302qs"; }; - meta = { - description = "GNU datamash"; + meta = with stdenv.lib; { + description = "A command-line program which performs basic numeric,textual and statistical operations on input textual data files"; homepage = http://www.gnu.org/software/datamash/; - platforms = stdenv.lib.platforms.all; + license = licenses.gpl3Plus; + platforms = platforms.all; + maintainers = with maintainers; [ pSub ]; }; } diff --git a/pkgs/tools/misc/debian-devscripts/default.nix b/pkgs/tools/misc/debian-devscripts/default.nix index 9430b1349a1..51b9a1e847e 100644 --- a/pkgs/tools/misc/debian-devscripts/default.nix +++ b/pkgs/tools/misc/debian-devscripts/default.nix @@ -5,12 +5,12 @@ }: stdenv.mkDerivation rec { - version = "2.16.1"; + version = "2.16.2"; name = "debian-devscripts-${version}"; src = fetchurl { url = "mirror://debian/pool/main/d/devscripts/devscripts_${version}.tar.xz"; - sha256 = "096f26b0z6kwv47qy99gak40wcc8mp24n0nvqwgifcicr18qv4rz"; + sha256 = "0qlzciiyfhq11j5wf0x6jsa18bmmf2z7f2x5psq2wkkccfi0fxc4"; }; buildInputs = [ perl CryptSSLeay LWP unzip xz dpkg TimeDate DBFile diff --git a/pkgs/tools/misc/direnv/default.nix b/pkgs/tools/misc/direnv/default.nix index e05889fdb4b..72a8f61bf3f 100644 --- a/pkgs/tools/misc/direnv/default.nix +++ b/pkgs/tools/misc/direnv/default.nix @@ -1,14 +1,13 @@ { fetchurl, stdenv, go }: -let - version = "2.7.0"; -in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "direnv-${version}"; + version = "2.8.0"; + src = fetchurl { url = "http://github.com/zimbatm/direnv/archive/v${version}.tar.gz"; name = "direnv-${version}.tar.gz"; - sha256 = "3cfa8f41e740c0dc09d854f3833058caec0ea0d67d19e950f97eee61106b0daf"; + sha256 = "1l1kvjgpak7cc9s37qipfw6lybb4650zwd8kcdagm409gs89mil6"; }; buildInputs = [ go ]; diff --git a/pkgs/tools/misc/dvtm/default.nix b/pkgs/tools/misc/dvtm/default.nix index 5969c956236..f973f3d2264 100644 --- a/pkgs/tools/misc/dvtm/default.nix +++ b/pkgs/tools/misc/dvtm/default.nix @@ -8,7 +8,6 @@ stdenv.mkDerivation rec { homepage = http://www.brain-dump.org/projects/dvtm; license = stdenv.lib.licenses.mit; platfroms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/tools/misc/dynamic-colors/default.nix b/pkgs/tools/misc/dynamic-colors/default.nix index b587afb645c..b32f8f43146 100644 --- a/pkgs/tools/misc/dynamic-colors/default.nix +++ b/pkgs/tools/misc/dynamic-colors/default.nix @@ -1,37 +1,40 @@ -{ stdenv, fetchFromGitHub, makeWrapper, tmux, vim }: +{ stdenv, fetchFromGitHub }: stdenv.mkDerivation rec { - name = "dynamic-colors-git-${version}"; - version = "2013-12-28"; + name = "dynamic-colors-${version}"; + version = "0.2.1"; src = fetchFromGitHub { - owner = "sos4nt"; + owner = "peterhoeg"; repo = "dynamic-colors"; - rev = "35325f43620c5ee11a56db776b8f828bc5ae1ddd"; - sha256 = "1xsjanqyvjlcj1fb8x4qafskxp7aa9b43ba9gyjgzr7yz8hkl4iz"; + rev = "v${version}"; + sha256 = "061lh4qjk4671hwzmj55n3gy5hsi4p3hb30hj5bg3s6glcsbjpr5"; }; - buildInputs = [ makeWrapper ]; - - patches = [ ./separate-config-and-dynamic-root-path.patch ]; + dontBuild = true; + dontStrip = true; installPhase = '' - mkdir -p $out/bin $out/etc/bash_completion.d $out/share/dynamic-colors - cp bin/dynamic-colors $out/bin/ - cp completions/dynamic-colors.bash $out/etc/bash_completion.d/ - cp -r colorschemes $out/share/dynamic-colors/ + mkdir -p \ + $out/bin \ + $out/share/colorschemes \ + $out/share/bash-completion/completions \ + $out/share/zsh/site-packages - sed -e 's|\|${tmux}/bin/tmux|g' \ - -e 's|/usr/bin/vim|${vim}/bin/vim|g' \ - -i "$out/bin/dynamic-colors" + install -m755 bin/dynamic-colors $out/bin/ + install -m644 completions/dynamic-colors.bash $out/share/bash-completion/completions/dynamic-colors + install -m644 completions/dynamic-colors.zsh $out/share/zsh/site-packages/_dynamic-colors + install -m644 colorschemes/* -t $out/share/colorschemes - wrapProgram $out/bin/dynamic-colors --set DYNAMIC_COLORS_ROOT "$out/share/dynamic-colors" + sed -e "s|/usr/share/dynamic-colors|$out/share|g" \ + -i $out/bin/dynamic-colors ''; meta = { - homepage = https://github.com/sos4nt/dynamic-colors; + homepage = https://github.com/peterhoeg/dynamic-colors; license = stdenv.lib.licenses.mit; description = "Change terminal colors on the fly"; platforms = stdenv.lib.platforms.unix; + maintainers = [ stdenv.lib.maintainers.peterhoeg ]; }; } diff --git a/pkgs/tools/misc/dynamic-colors/separate-config-and-dynamic-root-path.patch b/pkgs/tools/misc/dynamic-colors/separate-config-and-dynamic-root-path.patch deleted file mode 100644 index 7462ed0e3af..00000000000 --- a/pkgs/tools/misc/dynamic-colors/separate-config-and-dynamic-root-path.patch +++ /dev/null @@ -1,58 +0,0 @@ -From ee44b859003972275d8e469ab41b9900420295e0 Mon Sep 17 00:00:00 2001 -From: Malte Rohde -Date: Fri, 9 Jan 2015 13:10:41 +0100 -Subject: [PATCH] Store user configuration in appropriate config location. - -So that the dynamic-colors source can live somewhere else -(e.g., /usr/local/dynamic-colors) and multiple users -can use the same script. ---- - bin/dynamic-colors | 21 ++++++++++++++++----- - 1 file changed, 16 insertions(+), 5 deletions(-) - -diff --git a/bin/dynamic-colors b/bin/dynamic-colors -index a669221..5d6bce7 100755 ---- a/bin/dynamic-colors -+++ b/bin/dynamic-colors -@@ -84,16 +84,27 @@ else - fi - COLORSCHEMES="${DYNAMIC_COLORS_ROOT}/colorschemes" - -+if [ -z "${DYNAMIC_COLORS_HOME}" ]; then -+ if [ -d "${HOME}/.dynamic-colors" ] || [ -z "${XDG_CONFIG_HOME}" ]; then -+ DYNAMIC_COLORS_HOME="${HOME}/.dynamic-colors" -+ else -+ DYNAMIC_COLORS_HOME="${XDG_CONFIG_HOME}/dynamic-colors" -+ fi -+else -+ DYNAMIC_COLORS_HOME="${DYNAMIC_COLORS_HOME%/}" -+fi -+ - write_colorscheme_name () { -- echo "$1" > "${DYNAMIC_COLORS_ROOT}/colorscheme" -+ [ ! -d "${DYNAMIC_COLORS_HOME}" ] && mkdir -p "${DYNAMIC_COLORS_HOME}" -+ echo "$1" > "${DYNAMIC_COLORS_HOME}/colorscheme" - } - - load_colorscheme_name () { -- head -1 "${DYNAMIC_COLORS_ROOT}/colorscheme" -+ head -1 "${DYNAMIC_COLORS_HOME}/colorscheme" - } - - init () { -- [ ! -f "${DYNAMIC_COLORS_ROOT}/colorscheme" ] && return -+ [ ! -f "${DYNAMIC_COLORS_HOME}/colorscheme" ] && return - colorscheme_name=$(load_colorscheme_name) - load_colorscheme "$colorscheme_name" - set_colors -@@ -142,8 +153,8 @@ audit () { - } - - cycle() { -- if [ -f "${DYNAMIC_COLORS_ROOT}/colorscheme" ]; then -- current=`head -1 "${DYNAMIC_COLORS_ROOT}/colorscheme"` -+ if [ -f "${DYNAMIC_COLORS_HOME}/colorscheme" ]; then -+ current=$(load_colorscheme_name) - found=false - cd "$COLORSCHEMES" - for file in *.sh; do diff --git a/pkgs/tools/misc/entr/default.nix b/pkgs/tools/misc/entr/default.nix index 7097ecfae74..e18b115df87 100644 --- a/pkgs/tools/misc/entr/default.nix +++ b/pkgs/tools/misc/entr/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "entr-${version}"; - version = "3.2"; + version = "3.4"; src = fetchurl { url = "http://entrproject.org/code/${name}.tar.gz"; - sha256 = "0ikigpfzyjmr8j6snwlvxzqamrjbhlv78m8w1h0h7kzczc5f1vmi"; + sha256 = "02h1drxn2lid2fwzwjpkp9p04l0g5a56v6jyj3gi3dzjsq7h0zff"; }; postPatch = '' @@ -21,12 +21,11 @@ stdenv.mkDerivation rec { checkTarget = "test"; installFlags = [ "PREFIX=$(out)" ]; - meta = { + meta = with stdenv.lib; { homepage = http://entrproject.org/; description = "Run arbitrary commands when files change"; - - license = stdenv.lib.licenses.isc; - - platforms = stdenv.lib.platforms.all; + license = licenses.isc; + platforms = platforms.all; + maintainers = with maintainers; [ pSub ]; }; } diff --git a/pkgs/tools/misc/exa/default.nix b/pkgs/tools/misc/exa/default.nix index 8518a7331b9..af6f70e2f5c 100644 --- a/pkgs/tools/misc/exa/default.nix +++ b/pkgs/tools/misc/exa/default.nix @@ -4,15 +4,15 @@ with rustPlatform; buildRustPackage rec { name = "exa-${version}"; - version = "2016-02-15"; + version = "2016-03-22"; - depsSha256 = "1925nhpfph82wn755zf2nmad24f1hzbxq60gpva9sic6rnap4c1x"; + depsSha256 = "18anwh235kzziq6z7md8f3rl2xl4l9d4ivsqw9grkb7yivd5j0jk"; src = fetchFromGitHub { owner = "ogham"; repo = "exa"; - rev = "252eba484476369bb966fb1af7f739732b968fc0"; - sha256 = "1smyy32z44zgmhyhlbjaxcgfnlbcwz7am9225yppqfdsiqqgdybf"; + rev = "8805ce9e3bcd4b56f8811a686dd56c47202cdbab"; + sha256 = "0dkvk0rsf068as6zcd01p7959rdjzm26mlkpid6z0j168gp4kh4q"; }; nativeBuildInputs = [ cmake ]; diff --git a/pkgs/tools/misc/hddtemp/default.nix b/pkgs/tools/misc/hddtemp/default.nix index 925ea13780a..13b69dad971 100644 --- a/pkgs/tools/misc/hddtemp/default.nix +++ b/pkgs/tools/misc/hddtemp/default.nix @@ -23,10 +23,10 @@ stdenv.mkDerivation { ./configure --prefix=$out --with-db-path=$out/nix-support/hddtemp.db ''; - meta = { + meta = with stdenv.lib; { description = "Tool for displaying hard disk temperature"; homepage = https://savannah.nongnu.org/projects/hddtemp/; - license = stdenv.lib.licenses.gpl2; - platforms = stdenv.lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/tools/misc/mimeo/default.nix b/pkgs/tools/misc/mimeo/default.nix new file mode 100644 index 00000000000..66e91ed1424 --- /dev/null +++ b/pkgs/tools/misc/mimeo/default.nix @@ -0,0 +1,33 @@ +{ stdenv, fetchurl, desktop_file_utils, file, python3Packages }: + +python3Packages.buildPythonApplication rec { + name = "mimeo-${version}"; + version = "2016.2"; + + src = fetchurl { + url = "http://xyne.archlinux.ca/projects/mimeo/src/${name}.tar.xz"; + sha256 = "1y3a60983ind2cakjwxq3cgc76xhcdqz5lcpnyii34s6wviybkn1"; + }; + + buildInputs = [ file desktop_file_utils ]; + + propagatedBuildInputs = [ python3Packages.pyxdg ]; + + preConfigure = '' + substituteInPlace Mimeo.py \ + --replace "EXE_UPDATE_DESKTOP_DATABASE = 'update-desktop-database'" \ + "EXE_UPDATE_DESKTOP_DATABASE = '${desktop_file_utils}/bin/update-desktop-database'" \ + --replace "EXE_FILE = 'file'" \ + "EXE_FILE = '${file}/bin/file'" + ''; + + installPhase = "install -Dm755 Mimeo.py $out/bin/mimeo"; + + meta = with stdenv.lib; { + description = "Open files by MIME-type or file name using regular expressions"; + homepage = http://xyne.archlinux.ca/projects/mimeo/; + license = [ licenses.gpl2 ]; + maintainers = [ maintainers.rycee ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/tools/misc/moreutils/default.nix b/pkgs/tools/misc/moreutils/default.nix index feb5710282f..759847b897a 100644 --- a/pkgs/tools/misc/moreutils/default.nix +++ b/pkgs/tools/misc/moreutils/default.nix @@ -3,11 +3,11 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "moreutils-${version}"; - version = "0.57"; + version = "0.58"; src = fetchurl { url = "http://ftp.de.debian.org/debian/pool/main/m/moreutils/moreutils_${version}.orig.tar.gz"; - sha256 = "078dpkwwwrv8hxnylbc901kib2d1rr3hsja37j6dlpjfcfq58z9s"; + sha256 = "02n00vqp6jxbxr5v3rdjxmzp6kxxjdkjgcclam6wrw8qamsbljww"; }; preBuild = '' diff --git a/pkgs/tools/misc/ostree/default.nix b/pkgs/tools/misc/ostree/default.nix index f7d8d1d4e69..ff64b65a89b 100644 --- a/pkgs/tools/misc/ostree/default.nix +++ b/pkgs/tools/misc/ostree/default.nix @@ -10,7 +10,6 @@ stdenv.mkDerivation { homepage = "http://live.gnome.org/OSTree/"; license = licenses.lgpl2Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchFromGitHub { diff --git a/pkgs/tools/misc/parallel/default.nix b/pkgs/tools/misc/parallel/default.nix index d4c920f4acc..b4e793976c7 100644 --- a/pkgs/tools/misc/parallel/default.nix +++ b/pkgs/tools/misc/parallel/default.nix @@ -1,11 +1,11 @@ { fetchurl, stdenv, perl, makeWrapper, procps }: stdenv.mkDerivation rec { - name = "parallel-20160222"; + name = "parallel-20160322"; src = fetchurl { url = "mirror://gnu/parallel/${name}.tar.bz2"; - sha256 = "1sjmvinwr9j2a0jdk9y9nf2x4hhzcbl529slkwpz0vva0cwybywd"; + sha256 = "020vfcwapla6b4c9pr5ik7kg47fswszdds2mr52kc907xi4zcc34"; }; nativeBuildInputs = [ makeWrapper ]; diff --git a/pkgs/tools/misc/parcellite/default.nix b/pkgs/tools/misc/parcellite/default.nix index 0f85a47b9e1..9cd8c28c7f0 100644 --- a/pkgs/tools/misc/parcellite/default.nix +++ b/pkgs/tools/misc/parcellite/default.nix @@ -15,6 +15,5 @@ stdenv.mkDerivation rec { homepage = "http://parcellite.sourceforge.net"; license = stdenv.lib.licenses.gpl3Plus; platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ iyzsong ]; }; } diff --git a/pkgs/tools/misc/plantuml/default.nix b/pkgs/tools/misc/plantuml/default.nix index 6de3474d2d7..c71f2e86e11 100644 --- a/pkgs/tools/misc/plantuml/default.nix +++ b/pkgs/tools/misc/plantuml/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, jre, graphviz }: stdenv.mkDerivation rec { - version = "8012"; + version = "8037"; name = "plantuml-${version}"; src = fetchurl { url = "mirror://sourceforge/project/plantuml/plantuml.${version}.jar"; - sha256 = "12l2kmp6jaz6lmcj16ljhrpb1bm7zzz5qgvihhymvk66rfjd3ybz"; + sha256 = "1mlwcaph6n2akl639x64vpyjjipv6x0mwqxv6lvy3ml58pbgl58y"; }; # It's only a .jar file and a shell wrapper diff --git a/pkgs/tools/misc/scanmem/default.nix b/pkgs/tools/misc/scanmem/default.nix index e21da0deca2..654ba4c1795 100644 --- a/pkgs/tools/misc/scanmem/default.nix +++ b/pkgs/tools/misc/scanmem/default.nix @@ -1,13 +1,13 @@ { stdenv, autoconf, automake, intltool, libtool, fetchFromGitHub, readline }: stdenv.mkDerivation rec { - version = "0.15.2"; + version = "0.15.6"; name = "scanmem-${version}"; src = fetchFromGitHub { owner = "scanmem"; repo = "scanmem"; rev = "v${version}"; - sha256 = "0f93ac5rycf46q60flab5nl7ksadjls13axijg5j5wy1yif0k094"; + sha256 = "16cw76ji3mp0sj8q0sz5wndavk10n0si1sm6kr5zpiws4sw047ii"; }; buildInputs = [ autoconf automake intltool libtool readline ]; preConfigure = '' @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { homepage = "https://github.com/scanmem/scanmem"; description = "Memory scanner for finding and poking addresses in executing processes"; maintainers = [ stdenv.lib.maintainers.chattered ]; - platforms = stdenv.lib.platforms.linux; + platforms = with stdenv.lib.platforms; linux ++ darwin; license = stdenv.lib.licenses.gpl3; }; } diff --git a/pkgs/tools/misc/togglesg-download/default.nix b/pkgs/tools/misc/togglesg-download/default.nix new file mode 100644 index 00000000000..30b632f525d --- /dev/null +++ b/pkgs/tools/misc/togglesg-download/default.nix @@ -0,0 +1,41 @@ +{ stdenv, fetchFromGitHub, buildPythonApplication, makeWrapper, ffmpeg }: + +buildPythonApplication rec { + + name = "togglesg-download-git-${version}"; + version = "2016-02-08"; + + src = fetchFromGitHub { + owner = "0x776b7364"; + repo = "toggle.sg-download"; + rev = "5cac3ec039d67ad29240b2fa850a8db595264e3d"; + sha256 = "0pqw73aa5b18d5ws4zj6gcmzap6ag526jrylqq80m0yyh9yxw5hs"; + }; + + nativeBuildInputs = [ makeWrapper ]; + + doCheck = false; + dontBuild = true; + dontStrip = true; + + installPhase = '' + mkdir -p $out/bin + install -m755 download_toggle_video2.py $out/bin/download_toggle_video2.py + ''; + + postInstall = stdenv.lib.optionalString (ffmpeg != null) + ''wrapProgram $out/bin/download_toggle_video2.py --prefix PATH : "${ffmpeg}/bin"''; + + meta = with stdenv.lib; { + homepage = "https://github.com/0x776b7364/toggle.sg-download"; + description = "Command-line tool to download videos from toggle.sg written in Python"; + longDescription = '' + toggle.sg requires SilverLight in order to view videos. This tool will + allow you to download the video files for viewing in your media player and + on your OS of choice. + ''; + license = licenses.mit; + platforms = platforms.all; + maintainers = [ maintainers.peterhoeg ]; + }; +} diff --git a/pkgs/tools/misc/vdirsyncer/default.nix b/pkgs/tools/misc/vdirsyncer/default.nix index d6789bf52bc..fedfaa48aa3 100644 --- a/pkgs/tools/misc/vdirsyncer/default.nix +++ b/pkgs/tools/misc/vdirsyncer/default.nix @@ -1,32 +1,35 @@ -{ stdenv, fetchurl, pythonPackages }: +{ stdenv, fetchurl, pythonPackages, glibcLocales }: +# Packaging documentation at: +# https://github.com/untitaker/vdirsyncer/blob/master/docs/packaging.rst pythonPackages.buildPythonApplication rec { - version = "0.9.0"; + version = "0.9.3"; name = "vdirsyncer-${version}"; namePrefix = ""; src = fetchurl { url = "https://pypi.python.org/packages/source/v/vdirsyncer/${name}.tar.gz"; - sha256 = "0s9awjr9v60rr80xcpwmdhkf4v1yqnydahjmxwvxmh64565is465"; + sha256 = "1wjhzjfcvwz68j6wc5cmjsw69ggwcpfy7jp7z7q6fnwwp4dr98lc"; }; propagatedBuildInputs = with pythonPackages; [ click click-log click-threading lxml - setuptools - setuptools_scm requests_toolbelt requests2 atomicwrites ]; - # Unfortunately, checking this package seems a bit too complex - # https://github.com/NixOS/nixpkgs/pull/13098#issuecomment-185914025 - # https://github.com/untitaker/vdirsyncer/issues/334#issuecomment-185872854 - doCheck = false; + buildInputs = with pythonPackages; [hypothesis pytest pytest-localserver pytest-subtesthack setuptools_scm ] ++ [ glibcLocales ]; + + LC_ALL = "en_US.utf8"; + + checkPhase = '' + make DETERMINISTIC_TESTS=true test + ''; meta = with stdenv.lib; { - homepage = https://github.com/untitaker/vdirsyncer; + homepage = https://github.com/pimutils/vdirsyncer; description = "Synchronize calendars and contacts"; maintainers = with maintainers; [ matthiasbeyer jgeerds ]; platforms = platforms.all; diff --git a/pkgs/tools/misc/xdo/default.nix b/pkgs/tools/misc/xdo/default.nix index e7a3d91967e..26a5b485bf6 100644 --- a/pkgs/tools/misc/xdo/default.nix +++ b/pkgs/tools/misc/xdo/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, libxcb, xcbutilwm }: stdenv.mkDerivation rec { - name = "xdo-0.3"; + name = "xdo-0.5"; src = fetchurl { - url = "https://github.com/baskerville/xdo/archive/0.3.tar.gz"; - sha256 = "128flaydag9ixsai87p85r84arg2pn1j9h3zgdjwlmbcpb8d4ia8"; + url = "https://github.com/baskerville/xdo/archive/0.5.tar.gz"; + sha256 = "0sjnjs12i0gp1dg1m5jid4a3bg9am4qkf0qafyp6yn176yzcz1i6"; }; prePatch = ''sed -i "s@/usr/local@$out@" Makefile''; diff --git a/pkgs/tools/misc/xiccd/default.nix b/pkgs/tools/misc/xiccd/default.nix new file mode 100644 index 00000000000..cdc2af19501 --- /dev/null +++ b/pkgs/tools/misc/xiccd/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libX11, libXrandr, glib, colord }: + +stdenv.mkDerivation rec { + name = "xiccd-${version}"; + version = "0.2.2"; + + src = fetchFromGitHub { + owner = "agalakhov"; + repo = "xiccd"; + rev = "v${version}"; + sha256 = "17p3vngmmjk52r5p8y41s19nwp7w25bgff68ffd50zdlicd33rsy"; + }; + + nativeBuildInputs = [ autoreconfHook pkgconfig ]; + buildInputs = [ libX11 libXrandr glib colord ]; + + meta = with stdenv.lib; { + description = "X color profile daemon"; + homepage = https://github.com/agalakhov/xiccd; + license = licenses.gpl3; + maintainers = with maintainers; [ abbradar ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/tools/misc/yubico-piv-tool/default.nix b/pkgs/tools/misc/yubico-piv-tool/default.nix index fee4d44ce66..20c1170a805 100644 --- a/pkgs/tools/misc/yubico-piv-tool/default.nix +++ b/pkgs/tools/misc/yubico-piv-tool/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pkgconfig, openssl, pcsclite }: stdenv.mkDerivation rec { - name = "yubico-piv-tool-1.0.2"; + name = "yubico-piv-tool-1.3.0"; src = fetchurl { url = "https://developers.yubico.com/yubico-piv-tool/Releases/${name}.tar.gz"; - sha256 = "1l12bkyqs38212rizda6s3mypfr4wdiap0yhqfwx86lqcp4h0yb9"; + sha256 = "0l9lkzwi2227y5y02i5g1d701bmlyaj8lffv72jks1w4mkh7q7qh"; }; buildInputs = [ pkgconfig openssl pcsclite ]; diff --git a/pkgs/tools/misc/yubikey-personalization-gui/default.nix b/pkgs/tools/misc/yubikey-personalization-gui/default.nix index 269219e1143..57952b80daf 100644 --- a/pkgs/tools/misc/yubikey-personalization-gui/default.nix +++ b/pkgs/tools/misc/yubikey-personalization-gui/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pkgconfig, yubikey-personalization, qt, libyubikey }: stdenv.mkDerivation rec { - name = "yubikey-personalization-gui-3.1.21"; + name = "yubikey-personalization-gui-3.1.24"; src = fetchurl { url = "https://developers.yubico.com/yubikey-personalization-gui/Releases/${name}.tar.gz"; - sha256 = "1b5mf6h3jj35f3xwzdbqsyzk171sn8rp9ym4vipmzzcg10jxyp0m"; + sha256 = "0aj8cvajswkwzig0py0mjnfw0m8xsilisdcnixpjx9xxsxz5yacq"; }; nativeBuildInputs = [ pkgconfig ]; diff --git a/pkgs/tools/misc/yubikey-personalization/default.nix b/pkgs/tools/misc/yubikey-personalization/default.nix index c109903e6ee..1562b9e69b8 100644 --- a/pkgs/tools/misc/yubikey-personalization/default.nix +++ b/pkgs/tools/misc/yubikey-personalization/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "yubikey-personalization-${version}"; - version = "1.17.2"; + version = "1.17.3"; src = fetchurl { url = "https://developers.yubico.com/yubikey-personalization/Releases/ykpers-${version}.tar.gz"; - sha256 = "1z6ybpdhl74phwzg2lhxhipqf7xnfhg52dykkzb3fbx21m0i4jkh"; + sha256 = "034wmwinxmngji1ly8nm9q4hg194iwk164y5rw0whnf69ycc6bs8"; }; nativeBuildInputs = [ pkgconfig ]; diff --git a/pkgs/tools/misc/zsh-navigation-tools/default.nix b/pkgs/tools/misc/zsh-navigation-tools/default.nix index ae4774c0e12..8074f78db50 100644 --- a/pkgs/tools/misc/zsh-navigation-tools/default.nix +++ b/pkgs/tools/misc/zsh-navigation-tools/default.nix @@ -16,6 +16,7 @@ stdenv.mkDerivation rec { installPhase = '' mkdir -p $out/share/zsh/site-functions/ cp n-* $out/share/zsh/site-functions/ + cp znt-* $out/share/zsh/site-functions/ ''; meta = with stdenv.lib; { diff --git a/pkgs/tools/networking/axel/default.nix b/pkgs/tools/networking/axel/default.nix index 3fb04c16ee7..53392857f2a 100644 --- a/pkgs/tools/networking/axel/default.nix +++ b/pkgs/tools/networking/axel/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "axel-${version}"; - version = "2.5"; + version = "2.6"; src = fetchurl { url = "mirror://debian/pool/main/a/axel/axel_${version}.orig.tar.gz"; - sha256 = "10qsmfq2aprrxsm8sshpvzjjpxhmyv89mrik4clw9rprwxknfdq2"; + sha256 = "17j6kp4askr1q5459ak71m1bm0qa3dyqbxvi5ifh2bjvjlp516mx"; }; buildInputs = [ gettext ]; diff --git a/pkgs/tools/networking/curl/default.nix b/pkgs/tools/networking/curl/default.nix index c75cceb46a5..c59ea619942 100644 --- a/pkgs/tools/networking/curl/default.nix +++ b/pkgs/tools/networking/curl/default.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { name = "curl-7.47.1"; src = fetchurl { - url = "http://ngcobalt13.uxnr.de/mirror/curl/${name}.tar.bz2"; + url = "http://curl.haxx.se/download/${name}.tar.bz2"; sha256 = "13z9gba3q2ybp50z0gdkzhwcx9m0i7qkvm278yz4pql2jfml7inx"; }; diff --git a/pkgs/tools/networking/dnscrypt-proxy/default.nix b/pkgs/tools/networking/dnscrypt-proxy/default.nix index b98570a7341..565a83047ef 100644 --- a/pkgs/tools/networking/dnscrypt-proxy/default.nix +++ b/pkgs/tools/networking/dnscrypt-proxy/default.nix @@ -1,25 +1,30 @@ { stdenv, fetchurl, libsodium, pkgconfig, systemd }: +with stdenv.lib; + stdenv.mkDerivation rec { name = "dnscrypt-proxy-${version}"; version = "1.6.1"; src = fetchurl { - url = "http://download.dnscrypt.org/dnscrypt-proxy/${name}.tar.bz2"; + url = "https://download.dnscrypt.org/dnscrypt-proxy/${name}.tar.bz2"; sha256 = "16lif3qhyfjpgg54vjlwpslxk90akmbhlpnn1szxm628bmpw6nl9"; }; configureFlags = '' - ${stdenv.lib.optionalString stdenv.isLinux "--with-systemd"} + ${optionalString stdenv.isLinux "--with-systemd"} ''; - buildInputs = [ pkgconfig libsodium ] ++ stdenv.lib.optional stdenv.isLinux systemd; + nativeBuildInputs = [ pkgconfig ]; + + buildInputs = [ libsodium ] ++ optional stdenv.isLinux systemd; meta = { description = "A tool for securing communications between a client and a DNS resolver"; - homepage = http://dnscrypt.org/; - license = stdenv.lib.licenses.isc; - maintainers = with stdenv.lib.maintainers; [ joachifm jgeerds ]; - platforms = stdenv.lib.platforms.all; + homepage = https://dnscrypt.org/; + license = licenses.isc; + maintainers = with maintainers; [ joachifm jgeerds ]; + # upstream claims OSX support, but Hydra fails + platforms = with platforms; allBut [ darwin ]; }; } diff --git a/pkgs/tools/networking/dnscrypt-wrapper/default.nix b/pkgs/tools/networking/dnscrypt-wrapper/default.nix index f443e545048..03204d6ccf3 100644 --- a/pkgs/tools/networking/dnscrypt-wrapper/default.nix +++ b/pkgs/tools/networking/dnscrypt-wrapper/default.nix @@ -1,21 +1,24 @@ -{ stdenv, fetchurl, libsodium, libevent, pkgconfig, autoreconfHook }: +{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libsodium, libevent }: stdenv.mkDerivation rec { name = "dnscrypt-wrapper-${version}"; version = "0.2"; - src = fetchurl { - url = "https://github.com/Cofyc/dnscrypt-wrapper/releases/download/v0.2/dnscrypt-wrapper-v0.2.tar.bz2"; - sha256 = "0kh52dc0v9lxwi39y88z0ab6bwa5bcw8b24psnz72fv555irsvyj"; + src = fetchFromGitHub { + owner = "Cofyc"; + repo = "dnscrypt-wrapper"; + rev = "v${version}"; + sha256 = "06m6p79y0p6f1knk40fbi7dnc5hnq066kafvrq74fxrl51nywjbg"; }; - buildInputs = [ pkgconfig autoreconfHook libsodium libevent ]; + nativeBuildInputs = [ pkgconfig autoreconfHook ]; + buildInputs = [ libsodium libevent ]; - meta = { + meta = with stdenv.lib; { description = "A tool for adding dnscrypt support to any name resolver"; - homepage = http://dnscrypt.org/; - license = stdenv.lib.licenses.gpl2; - maintainers = with stdenv.lib.maintainers; [ tstrobel ]; - platforms = stdenv.lib.platforms.linux; + homepage = https://dnscrypt.org/; + license = licenses.gpl2; + maintainers = with maintainers; [ tstrobel joachifm ]; + platforms = platforms.linux; }; } diff --git a/pkgs/tools/networking/dropbear/default.nix b/pkgs/tools/networking/dropbear/default.nix index c76c6d0dd7f..586ae6b544e 100644 --- a/pkgs/tools/networking/dropbear/default.nix +++ b/pkgs/tools/networking/dropbear/default.nix @@ -2,11 +2,11 @@ sftpPath ? "/var/run/current-system/sw/libexec/sftp-server" }: stdenv.mkDerivation rec { - name = "dropbear-2015.71"; + name = "dropbear-2016.73"; src = fetchurl { url = "http://matt.ucc.asn.au/dropbear/releases/${name}.tar.bz2"; - sha256 = "1bw3lzmisn6gs6zy9vcqbfnicl437ydskqcayklpw60fkhb18qip"; + sha256 = "1mzg18jss1bsmcnn88zv7kv5yj01hzimndnd5636hfq9kgva8qaw"; }; dontDisableStatic = enableStatic; diff --git a/pkgs/tools/networking/haproxy/default.nix b/pkgs/tools/networking/haproxy/default.nix index f6201b44b3e..2e04ea19492 100644 --- a/pkgs/tools/networking/haproxy/default.nix +++ b/pkgs/tools/networking/haproxy/default.nix @@ -1,13 +1,13 @@ { stdenv, pkgs, fetchurl, openssl, zlib }: stdenv.mkDerivation rec { - majorVersion = "1.5"; - version = "${majorVersion}.14"; + majorVersion = "1.6"; + version = "${majorVersion}.4"; name = "haproxy-${version}"; src = fetchurl { url = "http://haproxy.1wt.eu/download/${majorVersion}/src/${name}.tar.gz"; - sha256 = "16cg1jmy2d8mq2ypwifsvhbyp4pyrj0zm0r818sx0r4hchwdsrcm"; + sha256 = "0c6j1j30xw08zdlk149s9ghvwphhbiqadkacjyvfrs8z9xh3ryp5"; }; buildInputs = [ openssl zlib ]; diff --git a/pkgs/tools/networking/horst/default.nix b/pkgs/tools/networking/horst/default.nix index 0f18534d200..4a756711e8e 100644 --- a/pkgs/tools/networking/horst/default.nix +++ b/pkgs/tools/networking/horst/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "horst-${version}"; - version = "git-2015-07-22"; + version = "git-2016-03-15"; src = fetchFromGitHub { owner = "br101"; repo = "horst"; - rev = "b62fc20b98690061522a431cb278d989e21141d8"; - sha256 = "176yma8v2bsab2ypgmgzvjg0bsbnk9sga3xpwkx33mwm6q79kd6g"; + rev = "9d5c2f387607ac1c174b59497557b8985cdb788b"; + sha256 = "0a4ixc9xbc818hw7rai24i1y8nqq2aqxqd938ax89ik4pfd2w3l0"; }; nativeBuildInputs = [ pkgconfig ]; diff --git a/pkgs/tools/networking/i2pd/default.nix b/pkgs/tools/networking/i2pd/default.nix index 2d490b917a4..454d3b41818 100644 --- a/pkgs/tools/networking/i2pd/default.nix +++ b/pkgs/tools/networking/i2pd/default.nix @@ -4,13 +4,13 @@ stdenv.mkDerivation rec { name = pname + "-" + version; pname = "i2pd"; - version = "2.4.0"; + version = "2.5.1"; src = fetchFromGitHub { owner = "PurpleI2P"; repo = pname; rev = version; - sha256 = "1nkf3dplvyg2lgygd3jd4bqh5s4nm6ppyks3a05a1dcbwm8ws42y"; + sha256 = "17qf2pbxf05iw2gzyc5bc2zg3a4ns6zf1pm8q9j7nqhchh1rv4cm"; }; buildInputs = [ boost zlib openssl ]; diff --git a/pkgs/tools/networking/minissdpd/default.nix b/pkgs/tools/networking/minissdpd/default.nix index a414b6f092e..307b17a7a7c 100644 --- a/pkgs/tools/networking/minissdpd/default.nix +++ b/pkgs/tools/networking/minissdpd/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "minissdpd-${version}"; - version = "1.5.20160119"; + version = "1.5.20160301"; src = fetchurl { - sha256 = "0z0h2fqjlys9g08fbv0jg8l53h8cjlpdk45z4g71kwdk1m9ld8r2"; + sha256 = "053icnb25jg2vvjxirkznks3ipbbdjxac278y19rk2w9cirgi9lv"; url = "http://miniupnp.free.fr/files/download.php?file=${name}.tar.gz"; name = "${name}.tar.gz"; }; diff --git a/pkgs/tools/networking/netsniff-ng/default.nix b/pkgs/tools/networking/netsniff-ng/default.nix index b83b7927679..93b20704620 100644 --- a/pkgs/tools/networking/netsniff-ng/default.nix +++ b/pkgs/tools/networking/netsniff-ng/default.nix @@ -4,14 +4,14 @@ stdenv.mkDerivation rec { name = "netsniff-ng-${version}"; - version = "0.6.0"; + version = "0.6.1"; # Upstream recommends and supports git src = fetchFromGitHub rec { repo = "netsniff-ng"; owner = repo; rev = "v${version}"; - sha256 = "0vfs1vsrsbiqxp6nrdibxa60wivapjhj3sdpa4v90m3pfnqif46z"; + sha256 = "0nl0xq7dwhryrd8i5iav8fj4x9jrna0afhfim5nrx2kwp5yylnvi"; }; buildInputs = [ bison flex geoip geolite-legacy libcli libnet libnl diff --git a/pkgs/tools/networking/offlineimap/default.nix b/pkgs/tools/networking/offlineimap/default.nix index 00061b3aeff..9c305791bda 100644 --- a/pkgs/tools/networking/offlineimap/default.nix +++ b/pkgs/tools/networking/offlineimap/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchFromGitHub, buildPythonApplication, sqlite3 }: buildPythonApplication rec { - version = "6.6.1"; + version = "6.7.0"; name = "offlineimap-${version}"; namePrefix = ""; @@ -9,7 +9,7 @@ buildPythonApplication rec { owner = "OfflineIMAP"; repo = "offlineimap"; rev = "v${version}"; - sha256 = "0nn1qkxqy84h0a2acd1yx861wslh2fjfznkcq15856npbd34yqy5"; + sha256 = "127d7zy8h2h67bvrc4x98wcfskmkxislsv9qnvpgxlc56vnsrg54"; }; doCheck = false; diff --git a/pkgs/tools/networking/openssh/default.nix b/pkgs/tools/networking/openssh/default.nix index 4d3ffb1257f..957d5e715e7 100644 --- a/pkgs/tools/networking/openssh/default.nix +++ b/pkgs/tools/networking/openssh/default.nix @@ -2,11 +2,13 @@ , etcDir ? null , hpnSupport ? false , withKerberos ? false -, withGssapiPatches ? withKerberos +, withGssapiPatches ? false , kerberos +, linkOpenssl? true }: assert withKerberos -> kerberos != null; +assert withGssapiPatches -> withKerberos; let @@ -16,18 +18,20 @@ let }; gssapiSrc = fetchpatch { - url = "http://anonscm.debian.org/cgit/pkg-ssh/openssh.git/plain/debian/patches/gssapi.patch?h=debian/7.1p2-2"; - sha256 = "05nsch879nlpyyiwm240wlq9rasy71j9d03j1rfi8kp865zhjfbm"; + url = "https://anonscm.debian.org/cgit/pkg-ssh/openssh.git/plain/debian/patches/gssapi.patch?id=46961f5704f8e86cea3e99253faad55aef4d8f35"; + sha256 = "01mf2vx1gavypbdx06mcbmcrkm2smff0h3jfmr61k6h6j3xk88y5"; }; in with stdenv.lib; stdenv.mkDerivation rec { - name = "openssh-7.2p1"; + # Please ensure that openssh_with_kerberos still builds when + # bumping the version here! + name = "openssh-7.2p2"; src = fetchurl { url = "mirror://openbsd/OpenSSH/portable/${name}.tar.gz"; - sha256 = "1hsa1f3641pdj57a55gmnvcya3wwww2fc2cvb77y95rm5xxw6g4p"; + sha256 = "132lh9aanb0wkisji1d6cmsxi520m8nh7c7i9wi6m1s3l38q29x7"; }; prePatch = optionalString hpnSupport @@ -46,6 +50,7 @@ stdenv.mkDerivation rec { # I set --disable-strip because later we strip anyway. And it fails to strip # properly when cross building. configureFlags = [ + "--sbindir=\${out}/bin" "--localstatedir=/var" "--with-pid-dir=/run" "--with-mantype=man" @@ -54,7 +59,8 @@ stdenv.mkDerivation rec { (if pam != null then "--with-pam" else "--without-pam") ] ++ optional (etcDir != null) "--sysconfdir=${etcDir}" ++ optional withKerberos "--with-kerberos5=${kerberos}" - ++ optional stdenv.isDarwin "--disable-libutil"; + ++ optional stdenv.isDarwin "--disable-libutil" + ++ optional (!linkOpenssl) "--without-openssl"; preConfigure = '' configureFlagsArray+=("--with-privsep-path=$out/empty") @@ -76,7 +82,7 @@ stdenv.mkDerivation rec { ]; meta = { - homepage = "http://www.openssh.org/"; + homepage = "http://www.openssh.com/"; description = "An implementation of the SSH protocol"; license = stdenv.lib.licenses.bsd2; platforms = platforms.unix; diff --git a/pkgs/tools/networking/openvpn/default.nix b/pkgs/tools/networking/openvpn/default.nix index f90370edf51..4f27c89fa82 100644 --- a/pkgs/tools/networking/openvpn/default.nix +++ b/pkgs/tools/networking/openvpn/default.nix @@ -3,11 +3,11 @@ with stdenv.lib; stdenv.mkDerivation rec { - name = "openvpn-2.3.8"; + name = "openvpn-2.3.10"; src = fetchurl { url = "http://swupdate.openvpn.net/community/releases/${name}.tar.gz"; - sha256 = "0lbw22qv3m0axhs13razr6b4x1p7jcpvf9rzb15b850wyvpka92k"; + sha256 = "1xn8kv4v4h4v8mhd9k4s9rilb7k30jgb9rm7n4fwmfrm5swvbc7q"; }; patches = optional stdenv.isLinux ./systemd-notify.patch; diff --git a/pkgs/tools/networking/p2p/amule/default.nix b/pkgs/tools/networking/p2p/amule/default.nix index 45a73924758..d091af62446 100644 --- a/pkgs/tools/networking/p2p/amule/default.nix +++ b/pkgs/tools/networking/p2p/amule/default.nix @@ -3,9 +3,10 @@ , httpServer ? false # build web interface for the daemon , client ? false # build amule remote gui , fetchurl, stdenv, zlib, wxGTK, perl, cryptopp, libupnp, gettext, libpng ? null -, pkgconfig, makeWrapper }: +, pkgconfig, makeWrapper, libX11 ? null }: assert httpServer -> libpng != null; +assert client -> libX11 != null; with stdenv; let # Enable/Disable Feature @@ -21,7 +22,8 @@ mkDerivation rec { buildInputs = [ zlib wxGTK perl cryptopp libupnp gettext pkgconfig makeWrapper ] - ++ lib.optional httpServer libpng; + ++ lib.optional httpServer libpng + ++ lib.optional client libX11; patches = [ ./gcc47.patch ]; # from Gentoo diff --git a/pkgs/tools/networking/pptp/default.nix b/pkgs/tools/networking/pptp/default.nix index 5bfb6f58bea..e7f40ade77e 100644 --- a/pkgs/tools/networking/pptp/default.nix +++ b/pkgs/tools/networking/pptp/default.nix @@ -1,11 +1,11 @@ -{ stdenv, fetchurl, perl, ppp, iproute }: +{ stdenv, fetchurl, perl, ppp, iproute, which }: stdenv.mkDerivation rec { - name = "pptp-1.7.2"; + name = "pptp-1.8.0"; src = fetchurl { url = "mirror://sourceforge/pptpclient/${name}.tar.gz"; - sha256 = "1g4lfv9vhid4v7kx1mlfcrprj3h7ny6g4kv564qzlf9abl3f12p9"; + sha256 = "1nmvwj7wd9c1isfi9i0hdl38zv55y2khy2k0v1nqlai46gcl5773"; }; patchPhase = @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { MANDIR=$out/share/man/man8 PPPDIR=$out/etc/ppp ) ''; - nativeBuildInputs = [ perl ]; + nativeBuildInputs = [ perl which ]; meta = { description = "PPTP client for Linux"; diff --git a/pkgs/tools/networking/s3cmd/default.nix b/pkgs/tools/networking/s3cmd/default.nix index 0ff741ef7e2..ec464438553 100644 --- a/pkgs/tools/networking/s3cmd/default.nix +++ b/pkgs/tools/networking/s3cmd/default.nix @@ -1,11 +1,14 @@ -{ stdenv, fetchurl, pythonPackages }: +{ stdenv, fetchFromGitHub, pythonPackages }: pythonPackages.buildPythonApplication rec { - name = "s3cmd-1.5.2"; + name = "s3cmd-${version}"; + version = "1.6.1"; - src = fetchurl { - url = "mirror://sourceforge/s3tools/${name}.tar.gz"; - sha256 = "0bdl2wvh4nri4n6hpaa8s9lk98xy4a1b0l9ym54fvmxxx1j6g2pz"; + src = fetchFromGitHub { + owner = "s3tools"; + repo = "s3cmd"; + rev = "v${version}"; + sha256 = "0aan6v1qj0pdkddhhkbaky44d54irm1pa8mkn52i2j86nb2rkcf9"; }; propagatedBuildInputs = with pythonPackages; [ python_magic dateutil ]; diff --git a/pkgs/tools/networking/sipsak/default.nix b/pkgs/tools/networking/sipsak/default.nix index 941e1d809ba..7242417bf2b 100644 --- a/pkgs/tools/networking/sipsak/default.nix +++ b/pkgs/tools/networking/sipsak/default.nix @@ -19,6 +19,7 @@ stdenv.mkDerivation rec { homepage = https://github.com/sipwise/sipsak; description = "SIP Swiss army knife"; license = stdenv.lib.licenses.gpl2; + maintainers = with maintainers; [ sheenobu ]; }; } diff --git a/pkgs/tools/networking/speedtest-cli/default.nix b/pkgs/tools/networking/speedtest-cli/default.nix index 10b35298461..80bcb7ae987 100644 --- a/pkgs/tools/networking/speedtest-cli/default.nix +++ b/pkgs/tools/networking/speedtest-cli/default.nix @@ -2,12 +2,11 @@ pythonPackages.buildPythonApplication rec { name = "speedtest-cli-${version}"; - version = "0.3.1"; - namePrefix = ""; + version = "0.3.4"; src = fetchurl { url = "https://pypi.python.org/packages/source/s/speedtest-cli/speedtest-cli-${version}.tar.gz"; - sha256 = "0ln2grbskh39ph79lhcim2axm7hp4xhzbrag8xfqbfihq7jdm6ya"; + sha256 = "19i671cd815fcv0x7h2m0a493slzwkzn7r926g8myx1srkss0q6d"; }; meta = with stdenv.lib; { diff --git a/pkgs/tools/networking/uget/default.nix b/pkgs/tools/networking/uget/default.nix new file mode 100644 index 00000000000..28d3f2c1633 --- /dev/null +++ b/pkgs/tools/networking/uget/default.nix @@ -0,0 +1,45 @@ +{ stdenv, fetchurl, pkgconfig, intltool, openssl, curl, libnotify, gstreamer, + gst_plugins_base, gst_plugins_good, gnome3, makeWrapper, aria2 ? null }: + +stdenv.mkDerivation rec { + name = "uget-${version}"; + version = "2.0.5"; + + src = fetchurl { + url = "mirror://sourceforge/urlget/${name}.tar.gz"; + sha256 = "0cqz8cd8dyciam07w6ipgzj52zhf9q0zvg6ag6wz481sxkpdnfh3"; + }; + + nativeBuildInputs = [ pkgconfig intltool makeWrapper ]; + + buildInputs = [ + openssl curl libnotify gstreamer gst_plugins_base gst_plugins_good + gnome3.gtk gnome3.dconf + ] + ++ (stdenv.lib.optional (aria2 != null) aria2); + + enableParallelBuilding = true; + + preFixup = '' + wrapProgram $out/bin/uget-gtk \ + ${stdenv.lib.optionalString (aria2 != null) ''--suffix PATH : "${aria2}/bin"''} \ + --prefix XDG_DATA_DIRS : "$out/share:$GSETTINGS_SCHEMAS_PATH" \ + --prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH" \ + --prefix GIO_EXTRA_MODULES : "${gnome3.dconf}/lib/gio/modules" + ''; + + meta = with stdenv.lib; { + description = "Download manager using gtk+ and libcurl"; + longDescription = '' + uGet is a VERY Powerful download manager application with a large + inventory of features but is still very light-weight and low on + resources, so don't let the impressive list of features scare you into + thinking that it "might be too powerful" because remember power is good + and lightweight power is uGet! + ''; + license = licenses.lgpl21; + homepage = http://www.ugetdm.com; + maintainers = with maintainers; [ romildo ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/tools/networking/unbound/default.nix b/pkgs/tools/networking/unbound/default.nix index 4819c004c1b..edbf32bb775 100644 --- a/pkgs/tools/networking/unbound/default.nix +++ b/pkgs/tools/networking/unbound/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "unbound-${version}"; - version = "1.5.7"; + version = "1.5.8"; src = fetchurl { url = "http://unbound.net/downloads/${name}.tar.gz"; - sha256 = "1a0wfgp6wqpf7cxlcbprqhnjx6z9ywf0rhrpcf7x98l1mbjqh82b"; + sha256 = "33567a20f73e288f8daa4ec021fbb30fe1824b346b34f12677ad77899ecd09be"; }; buildInputs = [ openssl expat libevent ]; @@ -17,6 +17,7 @@ stdenv.mkDerivation rec { "--with-libevent=${libevent}" "--localstatedir=/var" "--sysconfdir=/etc" + "--sbindir=\${out}/bin" "--enable-pie" "--enable-relro-now" ]; diff --git a/pkgs/tools/networking/whois/default.nix b/pkgs/tools/networking/whois/default.nix index bab487f5fab..cf755b35491 100644 --- a/pkgs/tools/networking/whois/default.nix +++ b/pkgs/tools/networking/whois/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchFromGitHub, perl, gettext }: stdenv.mkDerivation rec { - version = "5.2.10"; + version = "5.2.11"; name = "whois-${version}"; src = fetchFromGitHub { owner = "rfc1036"; repo = "whois"; rev = "v${version}"; - sha256 = "0fqxbys3ssyplh70wjs83jsljqhmrnjic02ayaznw9m9l6fzhkkr"; + sha256 = "0yjzssy1nfj314hqbhfjljpb74c5aqvx5pbpsba5qsx7rrwy7n4z"; }; buildInputs = [ perl gettext ]; diff --git a/pkgs/tools/package-management/disnix/disnixos/default.nix b/pkgs/tools/package-management/disnix/disnixos/default.nix index 0dd6d5e09b6..bc147257675 100644 --- a/pkgs/tools/package-management/disnix/disnixos/default.nix +++ b/pkgs/tools/package-management/disnix/disnixos/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, disnix, socat, pkgconfig, getopt }: stdenv.mkDerivation { - name = "disnixos-0.4"; + name = "disnixos-0.4.1"; src = fetchurl { - url = http://hydra.nixos.org/build/31143419/download/3/disnixos-0.4.tar.gz; - sha256 = "0ff2k15j34b947b8pnw5xhsv9blk9kq350pcp3p3p2qclgf9ahfh"; + url = http://hydra.nixos.org/build/33130082/download/3/disnixos-0.4.1.tar.gz; + sha256 = "1r6b73qhz64z7xms6hkmm495yz0114pqa61b2qzlmzmlywhhy15b"; }; buildInputs = [ socat pkgconfig disnix getopt ]; diff --git a/pkgs/tools/package-management/disnix/dysnomia/default.nix b/pkgs/tools/package-management/disnix/dysnomia/default.nix index 720526d72a6..e9bb704c772 100644 --- a/pkgs/tools/package-management/disnix/dysnomia/default.nix +++ b/pkgs/tools/package-management/disnix/dysnomia/default.nix @@ -20,10 +20,10 @@ assert enableEjabberdDump -> ejabberd != null; assert enableMongoDatabase -> (mongodb != null && mongodb-tools != null); stdenv.mkDerivation { - name = "dysnomia-0.5"; + name = "dysnomia-0.5.1"; src = fetchurl { - url = http://hydra.nixos.org/build/31143399/download/1/dysnomia-0.5.tar.gz; - sha256 = "1dxilzcqnv60l418k1ihyh0gkai5xgzj13s9hcbbb0yp71mv7n9x"; + url = http://hydra.nixos.org/build/33508870/download/1/dysnomia-0.5.1.tar.gz; + sha256 = "0mrbg0wirixqzx0qw8lg6mklr8npr29ghbj7lq1mygjgzr1hyhzm"; }; preConfigure = if enableEjabberdDump then "export PATH=$PATH:${ejabberd}/sbin" else ""; diff --git a/pkgs/tools/package-management/dpkg/default.nix b/pkgs/tools/package-management/dpkg/default.nix index f65b25d119d..ad351914cb3 100644 --- a/pkgs/tools/package-management/dpkg/default.nix +++ b/pkgs/tools/package-management/dpkg/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { }; postPatch = '' - # dpkg tries to force some dependents like debian_devscripts to use + # dpkg tries to force some dependents like debian-devscripts to use # -fstack-protector-strong - not (yet?) a good idea. Disable for now: substituteInPlace scripts/Dpkg/Vendor/Debian.pm \ --replace "stackprotectorstrong => 1" "stackprotectorstrong => 0" diff --git a/pkgs/tools/package-management/fpm/Gemfile b/pkgs/tools/package-management/fpm/Gemfile new file mode 100644 index 00000000000..95916cf4322 --- /dev/null +++ b/pkgs/tools/package-management/fpm/Gemfile @@ -0,0 +1,2 @@ +source 'https://rubygems.org' +gem 'fpm' diff --git a/pkgs/tools/package-management/fpm/Gemfile.lock b/pkgs/tools/package-management/fpm/Gemfile.lock new file mode 100644 index 00000000000..a2a652c4056 --- /dev/null +++ b/pkgs/tools/package-management/fpm/Gemfile.lock @@ -0,0 +1,29 @@ +GEM + remote: https://rubygems.org/ + specs: + arr-pm (0.0.10) + cabin (> 0) + backports (3.6.8) + cabin (0.8.1) + childprocess (0.5.9) + ffi (~> 1.0, >= 1.0.11) + clamp (0.6.5) + ffi (1.9.10) + fpm (1.4.0) + arr-pm (~> 0.0.10) + backports (>= 2.6.2) + cabin (>= 0.6.0) + childprocess + clamp (~> 0.6) + ffi + json (>= 1.7.7) + json (1.8.3) + +PLATFORMS + ruby + +DEPENDENCIES + fpm + +BUNDLED WITH + 1.10.6 diff --git a/pkgs/tools/package-management/fpm/default.nix b/pkgs/tools/package-management/fpm/default.nix new file mode 100644 index 00000000000..ca2e44fcaf0 --- /dev/null +++ b/pkgs/tools/package-management/fpm/default.nix @@ -0,0 +1,18 @@ +{ lib, bundlerEnv, ruby }: + +bundlerEnv rec { + name = "fpm-${version}"; + + version = (import gemset).fpm.version; + inherit ruby; + gemfile = ./Gemfile; + lockfile = ./Gemfile.lock; + gemset = ./gemset.nix; + + meta = with lib; { + description = "Tool to build packages for multiple platforms with ease"; + homepage = https://github.com/jordansissel/fpm; + license = licenses.mit; + platforms = platforms.unix; + }; +} diff --git a/pkgs/tools/package-management/fpm/gemset.nix b/pkgs/tools/package-management/fpm/gemset.nix new file mode 100644 index 00000000000..0751fdc48bc --- /dev/null +++ b/pkgs/tools/package-management/fpm/gemset.nix @@ -0,0 +1,66 @@ +{ + arr-pm = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "07yx1g1nh4zdy38i2id1xyp42fvj4vl6i196jn7szvjfm0jx98hg"; + type = "gem"; + }; + version = "0.0.10"; + }; + backports = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1zcgqw7m7jb8n7b2jwla5cq0nw9wsgddxfmn0a9v89ihzd4i1a5k"; + type = "gem"; + }; + version = "3.6.8"; + }; + cabin = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "06b5ri2629ad9xjc419xswz17zli90v8x640k2sd6v2yb90zkr1b"; + type = "gem"; + }; + version = "0.8.1"; + }; + childprocess = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1is253wm9k2s325nfryjnzdqv9flq8bm4y2076mhdrncxamrh7r2"; + type = "gem"; + }; + version = "0.5.9"; + }; + clamp = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1gpz9jvg1gpr8xmfqd35gvyzsvmjvlvwm2sq3pyhml3i84a6qjrq"; + type = "gem"; + }; + version = "0.6.5"; + }; + ffi = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1m5mprppw0xcrv2mkim5zsk70v089ajzqiq5hpyb0xg96fcyzyxj"; + type = "gem"; + }; + version = "1.9.10"; + }; + fpm = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1ljifrfzjirad5ql5yvs1prpbivsjnwdbhzlqb8r7sdidd9kwakz"; + type = "gem"; + }; + version = "1.4.0"; + }; + json = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1nsby6ry8l9xg3yw4adlhk2pnc7i0h0rznvcss4vk3v74qg0k8lc"; + type = "gem"; + }; + version = "1.8.3"; + }; +} \ No newline at end of file diff --git a/pkgs/tools/package-management/guix/default.nix b/pkgs/tools/package-management/guix/default.nix deleted file mode 100644 index 1d5d995a189..00000000000 --- a/pkgs/tools/package-management/guix/default.nix +++ /dev/null @@ -1,69 +0,0 @@ -{ fetchurl, stdenv, guile, libgcrypt, sqlite, bzip2, pkgconfig }: - -let - # Getting the bootstrap Guile binary. This is normally performed by Guix's build system. - base_url = arch: - "http://alpha.gnu.org/gnu/guix/bootstrap/${arch}-linux/20130105/guile-2.0.7.tar.xz"; - boot_guile = { - i686 = fetchurl { - url = base_url "i686"; - sha256 = "f9a7c6f4c556eaafa2a69bcf07d4ffbb6682ea831d4c9da9ba095aca3ccd217c"; - }; - x86_64 = fetchurl { - url = base_url "x86_64"; - sha256 = "bc43210dcd146d242bef4d354b0aeac12c4ef3118c07502d17ffa8d49e15aa2c"; - }; - }; -in stdenv.mkDerivation rec { - name = "guix-0.3"; - - src = fetchurl { - url = "ftp://alpha.gnu.org/gnu/guix/${name}.tar.gz"; - sha256 = "0xpfdmlfkkpmgrb8lpaqs5wxx31m4jslajs6b9waz5wp91zk7fix"; - }; - - configureFlags = - [ "--localstatedir=/nix/var" - "--with-libgcrypt-prefix=${libgcrypt}" - ]; - - preBuild = - # Copy the bootstrap Guile tarballs like Guix's makefile normally does. - '' cp -v "${boot_guile.i686}" gnu/packages/bootstrap/i686-linux/guile-2.0.7.tar.xz - cp -v "${boot_guile.x86_64}" gnu/packages/bootstrap/x86_64-linux/guile-2.0.7.tar.xz - ''; - - nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ guile libgcrypt sqlite bzip2 ]; - - doCheck = true; - enableParallelBuilding = true; - - meta = { - description = "Functional package manager with a Scheme interface"; - - longDescription = '' - GNU Guix is a purely functional package manager for the GNU system, and a distribution thereof. - - In addition to standard package management features, Guix supports - transactional upgrades and roll-backs, unprivileged package management, - per-user profiles, and garbage collection. - - It provides Guile Scheme APIs, including high-level embedded - domain-specific languages (EDSLs), to describe how packages are built - and composed. - - A user-land free software distribution for GNU/Linux comes as part of - Guix. - - Guix is based on the Nix package manager. - ''; - - license = stdenv.lib.licenses.gpl3Plus; - - maintainers = [ ]; - platforms = stdenv.lib.platforms.linux; - - homepage = http://www.gnu.org/software/guix; - }; -} diff --git a/pkgs/tools/package-management/nix/default.nix b/pkgs/tools/package-management/nix/default.nix index 3b303bab3b7..608fb31df78 100644 --- a/pkgs/tools/package-management/nix/default.nix +++ b/pkgs/tools/package-management/nix/default.nix @@ -96,15 +96,12 @@ in rec { }; }; - nixUnstable = nixStable; - /* nixUnstable = lib.lowPrio (common rec { - name = "nix-1.11pre4379_786046c"; + name = "nix-1.12pre4523_3b81b26"; src = fetchurl { - url = "http://hydra.nixos.org/build/30375557/download/4/${name}.tar.xz"; - sha256 = "ff42c70697fce7ca6eade622a31e5fbe45aed0edf1204fb491b40df207a807d5"; + url = "http://hydra.nixos.org/build/33598573/download/4/${name}.tar.xz"; + sha256 = "0469zv09m85824w4vqj2ag0nciq51xvrvsys7bd5v4nrxihk9991"; }; }); - */ } diff --git a/pkgs/tools/security/ecryptfs/default.nix b/pkgs/tools/security/ecryptfs/default.nix index 0ea5bc62fd4..08fee5c8c14 100644 --- a/pkgs/tools/security/ecryptfs/default.nix +++ b/pkgs/tools/security/ecryptfs/default.nix @@ -3,20 +3,22 @@ stdenv.mkDerivation rec { name = "ecryptfs-${version}"; - version = "108"; + version = "110"; src = fetchurl { url = "http://launchpad.net/ecryptfs/trunk/${version}/+download/ecryptfs-utils_${version}.orig.tar.gz"; - sha256 = "1pfpzc907m4qi5h2rxmkqq072c6g22pik2rilj4bl4qishd8p0sj"; + sha256 = "1x03m9s409fmzjcnsa9f9ghzkpxcnj9irj05rx7jlwm5cach0lqs"; }; - #TODO: replace wrapperDir below with from config.security.wrapperDir; + # TODO: replace wrapperDir below with from config.security.wrapperDir; + wrapperDir = "/var/setuid-wrappers"; + postPatch = '' FILES="$(grep -r '/bin/sh' src/utils -l; find src -name \*.c)" for file in $FILES; do substituteInPlace "$file" \ - --replace /sbin/mount.ecryptfs_private /var/setuid-wrappers/mount.ecryptfs_private \ - --replace /sbin/umount.ecryptfs_private /var/setuid-wrappers/umount.ecryptfs_private \ + --replace /sbin/mount.ecryptfs_private ${wrapperDir}/mount.ecryptfs_private \ + --replace /sbin/umount.ecryptfs_private ${wrapperDir}/umount.ecryptfs_private \ --replace /sbin/mount.ecryptfs $out/sbin/mount.ecryptfs \ --replace /sbin/umount.ecryptfs $out/sbin/umount.ecryptfs \ --replace /usr/bin/ecryptfs-rewrite-file $out/bin/ecryptfs-rewrite-file \ @@ -26,7 +28,7 @@ stdenv.mkDerivation rec { --replace /sbin/dmsetup ${lvm2}/sbin/dmsetup \ --replace /bin/mount ${utillinux}/bin/mount \ --replace /bin/umount ${utillinux}/bin/umount \ - --replace /sbin/unix_chkpwd /var/setuid-wrappers/unix_chkpwd \ + --replace /sbin/unix_chkpwd ${wrapperDir}/unix_chkpwd \ --replace /bin/bash ${bash}/bin/bash done ''; @@ -50,8 +52,8 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Enterprise-class stacked cryptographic filesystem"; - license = licenses.gpl2Plus; + license = licenses.gpl2Plus; maintainers = [ maintainers.obadz ]; - platforms = platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/tools/security/fail2ban/default.nix b/pkgs/tools/security/fail2ban/default.nix index 9443eac01da..c886b10e220 100644 --- a/pkgs/tools/security/fail2ban/default.nix +++ b/pkgs/tools/security/fail2ban/default.nix @@ -1,19 +1,18 @@ -{ stdenv, fetchzip, python, pythonPackages, unzip, gamin }: +{ stdenv, fetchFromGitHub, python, pythonPackages, gamin }: -let version = "0.9.3"; in +let version = "0.9.4"; in pythonPackages.buildPythonApplication { name = "fail2ban-${version}"; namePrefix = ""; - src = fetchzip { - name = "fail2ban-${version}-src"; - url = "https://github.com/fail2ban/fail2ban/archive/${version}.tar.gz"; - sha256 = "1pwgr56i6l6wh2ap8b5vknxgsscfzjqy2nmd1c3vzdii5kf72j0f"; + src = fetchFromGitHub { + owner = "fail2ban"; + repo = "fail2ban"; + rev = version; + sha256 = "1m8gqj35kwrn30rqwd488sgakaisz22xa5v9llvz6gwf4f7ps0a9"; }; - buildInputs = [ unzip ]; - propagatedBuildInputs = [ python.modules.sqlite3 gamin ] ++ (stdenv.lib.optional stdenv.isLinux pythonPackages.systemd); @@ -48,7 +47,7 @@ pythonPackages.buildPythonApplication { homepage = http://www.fail2ban.org/; description = "A program that scans log files for repeated failing login attempts and bans IP addresses"; license = licenses.gpl2Plus; - maintainers = with maintainers; [ eelco lovek323 ]; + maintainers = with maintainers; [ eelco lovek323 fpletz ]; platforms = platforms.linux ++ platforms.darwin; }; } diff --git a/pkgs/tools/security/gnupg/1compat.nix b/pkgs/tools/security/gnupg/1compat.nix index 9bd71467f0e..d875413cc79 100644 --- a/pkgs/tools/security/gnupg/1compat.nix +++ b/pkgs/tools/security/gnupg/1compat.nix @@ -6,12 +6,12 @@ stdenv.mkDerivation { builder = writeScript "gnupg1compat-builder" '' # First symlink all top-level dirs ${coreutils}/bin/mkdir -p $out - ${coreutils}/bin/ln -s ${gnupg}/* $out + ${coreutils}/bin/ln -s "${gnupg}/"* $out # Replace bin with directory and symlink it contents ${coreutils}/bin/rm $out/bin ${coreutils}/bin/mkdir -p $out/bin - ${coreutils}/bin/ln -s ${gnupg}/bin/* $out/bin + ${coreutils}/bin/ln -s "${gnupg}/bin/"* $out/bin # Add gpg->gpg2 and gpgv->gpgv2 symlinks ${coreutils}/bin/ln -s gpg2 $out/bin/gpg diff --git a/pkgs/tools/security/gnupg/21.nix b/pkgs/tools/security/gnupg/21.nix index dc86c6e420e..0af041e63df 100644 --- a/pkgs/tools/security/gnupg/21.nix +++ b/pkgs/tools/security/gnupg/21.nix @@ -1,5 +1,5 @@ { fetchurl, stdenv, pkgconfig, libgcrypt, libassuan, libksba, libiconv, npth -, autoreconfHook, gettext, texinfo, pcsclite +, gettext, texinfo, pcsclite # Each of the dependencies below are optional. # Gnupg can be built without them at the cost of reduced functionality. @@ -20,25 +20,24 @@ stdenv.mkDerivation rec { sha256 = "06mn2viiwsyq991arh5i5fhr9jyxq2bi0jkdj7ndfisxihngpc5p"; }; + buildInputs = [ + pkgconfig libgcrypt libassuan libksba libiconv npth gettext texinfo + readline libusb gnutls adns openldap zlib bzip2 + ]; + postPatch = stdenv.lib.optionalString stdenv.isLinux '' sed -i 's,"libpcsclite\.so[^"]*","${pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c ''; #" fix Emacs syntax highlighting :-( - postConfigure = "substituteAllInPlace tools/gpgkey2ssh.c"; - - buildInputs = [ - pkgconfig libgcrypt libassuan libksba libiconv npth - autoreconfHook gettext texinfo - readline libusb gnutls adns openldap zlib bzip2 - ]; - configureFlags = optional x11Support "--with-pinentry-pgm=${pinentry}/bin/pinentry"; + postConfigure = "substituteAllInPlace tools/gpgkey2ssh.c"; + meta = with stdenv.lib; { homepage = http://gnupg.org; description = "a complete and free implementation of the OpenPGP standard"; license = licenses.gpl3Plus; - maintainers = with maintainers; [ wkennington ]; + maintainers = with maintainers; [ wkennington simons ]; platforms = platforms.all; }; } diff --git a/pkgs/tools/security/gpgstats/default.nix b/pkgs/tools/security/gpgstats/default.nix index 480ef5bf3e7..e9929cb2e6f 100644 --- a/pkgs/tools/security/gpgstats/default.nix +++ b/pkgs/tools/security/gpgstats/default.nix @@ -16,6 +16,9 @@ stdenv.mkDerivation rec { cp gpgstats $out/bin ''; + NIX_CFLAGS_COMPILE = stdenv.lib.optionals (!stdenv.is64bit) + [ "-D_FILE_OFFSET_BITS=64" "-DLARGEFILE_SOURCE=1" ]; + meta = with stdenv.lib; { description = "Calculates statistics on the keys in your gpg key-ring"; longDescription = '' diff --git a/pkgs/tools/security/lastpass-cli/default.nix b/pkgs/tools/security/lastpass-cli/default.nix index 01495156810..bfd1343f5e5 100644 --- a/pkgs/tools/security/lastpass-cli/default.nix +++ b/pkgs/tools/security/lastpass-cli/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { name = "lastpass-cli-${version}"; - version = "0.7.0"; + version = "0.9.0"; src = fetchFromGitHub { owner = "lastpass"; repo = "lastpass-cli"; rev = "v${version}"; - sha256 = "18dn4sx173666w6aaqhwcya5x2z3q0fmhg8h76lgdmx8adrhzdzc"; + sha256 = "1iaz36bcyss2kahhlm92l7yh26rxvs12wnkkh1289yarl5wi0yld"; }; buildInputs = [ diff --git a/pkgs/tools/security/minisign/default.nix b/pkgs/tools/security/minisign/default.nix index 781ca6ca600..373ebc1e6ff 100644 --- a/pkgs/tools/security/minisign/default.nix +++ b/pkgs/tools/security/minisign/default.nix @@ -9,7 +9,8 @@ stdenv.mkDerivation rec { sha256 = "029g8ian72fy07k73nf451dw1yggav6crjjc2x6kv4nfpq3pl9pj"; }; - buildInputs = [ cmake libsodium ]; + nativeBuildInputs = [ cmake ]; + buildInputs = [ libsodium ]; meta = with stdenv.lib; { description = "A simple tool for signing files and verifying signatures"; diff --git a/pkgs/tools/security/sshuttle/default.nix b/pkgs/tools/security/sshuttle/default.nix index b78eb43782e..4a8d7518e9c 100644 --- a/pkgs/tools/security/sshuttle/default.nix +++ b/pkgs/tools/security/sshuttle/default.nix @@ -3,10 +3,10 @@ pythonPackages.buildPythonApplication rec { name = "sshuttle-${version}"; - version = "0.76"; + version = "0.77.2"; src = fetchurl { - sha256 = "1q0hr0vhdvv23cw5dqndsmf61283mvs6b14662ci00xj6zp5v48b"; + sha256 = "1fwlhr5r9pl3pns65nn4mxf5ivypmd2a12gv3vpyznfy5f097k10"; url = "https://pypi.python.org/packages/source/s/sshuttle/${name}.tar.gz"; }; diff --git a/pkgs/tools/security/tor/torbrowser.nix b/pkgs/tools/security/tor/torbrowser.nix index dfde2b57aa6..ef00a8538a9 100644 --- a/pkgs/tools/security/tor/torbrowser.nix +++ b/pkgs/tools/security/tor/torbrowser.nix @@ -16,13 +16,13 @@ let in stdenv.mkDerivation rec { name = "tor-browser-${version}"; - version = "5.5.2"; + version = "5.5.4"; src = fetchurl { url = "https://archive.torproject.org/tor-package-archive/torbrowser/${version}/tor-browser-linux${if stdenv.is64bit then "64" else "32"}-${version}_en-US.tar.xz"; sha256 = if stdenv.is64bit then - "1zb5fssy9c37cb0ab083f2jifw47wnck32nc6zpijmqm059yccxc" else - "1gjc6prx3n769nj4gzhfjrb2qpw3ypvsb3pp0a130db1ssgnzqqr"; + "0sjx2r7z7s3x1ygs9xak1phng13jcf4d5pcfyfrfsrd8kb1yn8xa" else + "0w9wk9hk57hyhhx7l4sr2x64ki9882fr6py2can1slr7kbb4mhpb"; }; desktopItem = makeDesktopItem { diff --git a/pkgs/tools/system/awstats/default.nix b/pkgs/tools/system/awstats/default.nix new file mode 100644 index 00000000000..f4a14155d68 --- /dev/null +++ b/pkgs/tools/system/awstats/default.nix @@ -0,0 +1,58 @@ +{ stdenv, fetchurl, perlPackages, jdk }: + +perlPackages.buildPerlPackage rec { + name = "awstats-${version}"; + version = "7.4"; + + src = fetchurl { + url = "mirror://sourceforge/awstats/${name}.tar.gz"; + sha256 = "0mdbilsl8g9a84qgyws4pakhqr3mfhs5g5dqbgsn9gn285rzxas3"; + }; + + postPatch = '' + substituteInPlace wwwroot/cgi-bin/awstats.pl \ + --replace /usr/share/awstats/ "$out/wwwroot/cgi-bin/" + ''; + + outputs = [ "out" "bin" "doc" ]; + + buildInputs = with perlPackages; [ ]; # plugins will need some + + preConfigure = '' + touch Makefile.PL + patchShebangs . + ''; + + # build our own JAR + preBuild = '' + ( + cd wwwroot/classes/src + rm ../*.jar + PATH="${jdk}/bin" "$(type -P perl)" Makefile.pl + test -f ../*.jar + ) + ''; + + doCheck = false; + + installPhase = '' + mkdir "$out" + mv wwwroot "$out/wwwroot" + rm -r "$out/wwwroot/classes/src/" + + mkdir -p "$bin/bin" + ln -s "$out/wwwroot/cgi-bin/awstats.pl" "$bin/bin/awstats" + + mkdir -p "$doc/share/" + mv README.md docs/ + mv docs "$doc/share/awstats" + ''; + + meta = with stdenv.lib; { + description = "Real-time logfile analyzer to get advanced statistics"; + homepage = http://awstats.org; + license = licenses.gpl3Plus; + platforms = platforms.linux; + }; +} + diff --git a/pkgs/tools/system/collectd/default.nix b/pkgs/tools/system/collectd/default.nix index a1d676d708d..5f42e39871a 100644 --- a/pkgs/tools/system/collectd/default.nix +++ b/pkgs/tools/system/collectd/default.nix @@ -30,9 +30,9 @@ , varnish ? null , yajl ? null }: - stdenv.mkDerivation rec { - name = "collectd-5.5.0"; + version = "5.5.0"; + name = "collectd-${version}"; src = fetchurl { url = "http://collectd.org/files/${name}.tar.bz2"; diff --git a/pkgs/tools/system/foreman/Gemfile b/pkgs/tools/system/foreman/Gemfile new file mode 100644 index 00000000000..e25e6d790fc --- /dev/null +++ b/pkgs/tools/system/foreman/Gemfile @@ -0,0 +1,3 @@ +source "https://rubygems.org" + +gem "foreman" diff --git a/pkgs/tools/system/foreman/Gemfile.lock b/pkgs/tools/system/foreman/Gemfile.lock new file mode 100644 index 00000000000..8fa9a213ab2 --- /dev/null +++ b/pkgs/tools/system/foreman/Gemfile.lock @@ -0,0 +1,15 @@ +GEM + remote: https://rubygems.org/ + specs: + foreman (0.78.0) + thor (~> 0.19.1) + thor (0.19.1) + +PLATFORMS + ruby + +DEPENDENCIES + foreman + +BUNDLED WITH + 1.11.2 diff --git a/pkgs/tools/system/foreman/default.nix b/pkgs/tools/system/foreman/default.nix new file mode 100644 index 00000000000..594947c265a --- /dev/null +++ b/pkgs/tools/system/foreman/default.nix @@ -0,0 +1,30 @@ +{ stdenv, lib, ruby, bundlerEnv, makeWrapper }: + +stdenv.mkDerivation rec { + name = "foreman-${env.gems.foreman.version}"; + + env = bundlerEnv { + inherit ruby; + name = "${name}-gems"; + gemfile = ./Gemfile; + lockfile = ./Gemfile.lock; + gemset = ./gemset.nix; + }; + + phases = ["installPhase"]; + + nativeBuildInputs = [ makeWrapper ]; + + installPhase = '' + mkdir -p $out/bin + makeWrapper ${env}/bin/foreman $out/bin/foreman + ''; + + meta = with lib; { + description = "Process manager for applications with multiple components"; + homepage = https://github.com/ddollar/foreman; + license = licenses.mit; + maintainers = with maintainers; [ zimbatm ]; + platforms = ruby.meta.platforms; + }; +} diff --git a/pkgs/tools/system/foreman/gemset.nix b/pkgs/tools/system/foreman/gemset.nix new file mode 100644 index 00000000000..b35bd15c974 --- /dev/null +++ b/pkgs/tools/system/foreman/gemset.nix @@ -0,0 +1,18 @@ +{ + thor = { + version = "0.19.1"; + source = { + type = "gem"; + remotes = ["https://rubygems.org"]; + sha256 = "08p5gx18yrbnwc6xc0mxvsfaxzgy2y9i78xq7ds0qmdm67q39y4z"; + }; + }; + foreman = { + version = "0.78.0"; + source = { + type = "gem"; + remotes = ["https://rubygems.org"]; + sha256 = "1caz8mi7gq1hs4l1flcyyw1iw1bdvdbhppsvy12akr01k3s17xaq"; + }; + }; +} \ No newline at end of file diff --git a/pkgs/tools/system/htop/default.nix b/pkgs/tools/system/htop/default.nix new file mode 100644 index 00000000000..9301107d2db --- /dev/null +++ b/pkgs/tools/system/htop/default.nix @@ -0,0 +1,24 @@ +{ lib, fetchurl, stdenv, ncurses, +IOKit }: + +stdenv.mkDerivation rec { + name = "htop-${version}"; + version = "2.0.1"; + + src = fetchurl { + sha256 = "0rjn9ybqx5sav7z4gn18f1q6k23nmqyb6yydfgghzdznz9nn447l"; + url = "http://hisham.hm/htop/releases/${version}/${name}.tar.gz"; + }; + + buildInputs = + [ ncurses ] ++ + lib.optionals stdenv.isDarwin [ IOKit ]; + + meta = with stdenv.lib; { + description = "An interactive process viewer for Linux"; + homepage = https://hisham.hm/htop/; + license = licenses.gpl2Plus; + platforms = with platforms; linux ++ freebsd ++ openbsd ++ darwin; + maintainers = with maintainers; [ rob simons relrod nckx ]; + }; +} diff --git a/pkgs/tools/system/rowhammer-test/default.nix b/pkgs/tools/system/rowhammer-test/default.nix new file mode 100644 index 00000000000..728b15bb298 --- /dev/null +++ b/pkgs/tools/system/rowhammer-test/default.nix @@ -0,0 +1,27 @@ +{ stdenv, fetchFromGitHub }: + +stdenv.mkDerivation { + name = "rowhammer-test-20150811"; + + src = fetchFromGitHub { + owner = "google"; + repo = "rowhammer-test"; + rev = "c1d2bd9f629281402c10bb10e52bc1f1faf59cc4"; # 2015-08-11 + sha256 = "1fbfcnm5gjish47wdvikcsgzlb5vnlfqlzzm6mwiw2j5qkq0914i"; + }; + + buildPhase = "sh -e make.sh"; + + installPhase = '' + mkdir -p $out/bin + cp rowhammer_test double_sided_rowhammer $out/bin + ''; + + meta = with stdenv.lib; { + description = "Test DRAM for bit flips caused by the rowhammer problem"; + homepage = https://github.com/google/rowhammer-test; + license = licenses.asl20; + maintainers = [ maintainers.viric ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/tools/system/ts/default.nix b/pkgs/tools/system/ts/default.nix index ff2fdfefb05..8e65eda8f54 100644 --- a/pkgs/tools/system/ts/default.nix +++ b/pkgs/tools/system/ts/default.nix @@ -3,7 +3,7 @@ sendmailPath ? "/var/setuid-wrappers/sendmail" }: stdenv.mkDerivation rec { - name = "ts-0.7.4"; + name = "ts-0.7.6"; installPhase=''make install "PREFIX=$out"''; @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://viric.name/~viric/soft/ts/${name}.tar.gz"; - sha256 = "042r9a09300v4fdrw4r60g5xi25v5m6g12kvvr6pcsm9qnfqyqqs"; + sha256 = "07b61sx3hqpdxlg5a1xrz9sxww9yqdix3bmr0sm917r3rzk87lwk"; }; meta = with stdenv.lib; { diff --git a/pkgs/tools/system/yeshup/default.nix b/pkgs/tools/system/yeshup/default.nix new file mode 100644 index 00000000000..806d6cc5b94 --- /dev/null +++ b/pkgs/tools/system/yeshup/default.nix @@ -0,0 +1,25 @@ +{ stdenv, fetchFromGitHub }: + +stdenv.mkDerivation rec { + name = "yeshup-${builtins.substring 0 7 rev}"; + rev = "5461a8f957c686ccd0240be3f0fd8124d7381b08"; + + src = fetchFromGitHub { + owner = "RhysU"; + repo = "yeshup"; + inherit rev; + sha256 = "1wwbc158y46jsmdi1lp0m3dlbr9kvzvwxfvzj6646cpy9d6h21v9"; + }; + + installPhase = '' + mkdir -p $out/bin + cp -v yeshup $out/bin + ''; + + meta = with stdenv.lib; { + homepage = https://github.com/RhysU/yeshup; + platforms = platforms.all; + license = licenses.cc-by-sa-30; # From Stackoverflow answer + maintainers = with maintainers; [ obadz ]; + }; +} diff --git a/pkgs/tools/text/ansifilter/default.nix b/pkgs/tools/text/ansifilter/default.nix new file mode 100644 index 00000000000..e47369f4755 --- /dev/null +++ b/pkgs/tools/text/ansifilter/default.nix @@ -0,0 +1,27 @@ +{ fetchurl, stdenv, pkgconfig, boost, lua }: +let version = "1.15"; + pkgsha = "65dc20cc1a03d4feba990f830186404c90462d599e5f4b37610d4d822d67aec4"; +in stdenv.mkDerivation { + name = "ansifilter-${version}"; + buildInputs = [ + pkgconfig boost lua + ]; + src = fetchurl { + url = "http://www.andre-simon.de/zip/ansifilter-${version}.tar.bz2"; + sha256 = pkgsha; + }; + meta = { + description = "Tool to convert ANSI to other formats"; + longDescription = '' + Tool to remove ANSI or convert them to another format + (HTML, TeX, LaTeX, RTF, Pango or BBCode) + ''; + + license = stdenv.lib.licenses.gpl1; + maintainers = [ stdenv.lib.maintainers.Adjective-Object ]; + }; + + makeFlags="PREFIX=$(out) conf_dir=$(out)/etc/ansifilter/"; + +} + diff --git a/pkgs/tools/text/diction/default.nix b/pkgs/tools/text/diction/default.nix new file mode 100644 index 00000000000..51366c36bc6 --- /dev/null +++ b/pkgs/tools/text/diction/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "diction-1.11"; + + src = fetchurl { + url = "mirror://gnu/diction/${name}.tar.gz"; + sha256 = "1xi4l1x1vvzmzmbhpx0ghmfnwwrhabjwizrpyylmy3fzinzz3him"; + }; + + meta = { + description = "GNU style and diction utilities"; + longDescription = '' + Diction and style are two old standard Unix commands. Diction identifies + wordy and commonly misused phrases. Style analyses surface + characteristics of a document, including sentence length and other + readability measures. + ''; + license = stdenv.lib.licenses.gpl3Plus; + }; +} diff --git a/pkgs/tools/text/icdiff/default.nix b/pkgs/tools/text/icdiff/default.nix new file mode 100644 index 00000000000..8469a151aa0 --- /dev/null +++ b/pkgs/tools/text/icdiff/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchFromGitHub, buildPythonApplication }: + +buildPythonApplication rec { + name = "icdiff-${version}"; + version = "1.7.3"; + + src = fetchFromGitHub { + owner = "jeffkaufman"; + repo = "icdiff"; + rev = "release-${version}"; + sha256 = "1k7dlf2i40flsrvkma1k1vii9hsjwdmwryx65q0n0yj4frv7ky6k"; + }; + + meta = with stdenv.lib; { + homepage = https://www.jefftk.com/icdiff; + description = "Side-by-side highlighted command line diffs"; + maintainers = with maintainers; [ aneeshusa ]; + license = licenses.psfl; + }; +} diff --git a/pkgs/tools/text/kakasi/default.nix b/pkgs/tools/text/kakasi/default.nix index b73654da405..b6b647b4398 100644 --- a/pkgs/tools/text/kakasi/default.nix +++ b/pkgs/tools/text/kakasi/default.nix @@ -13,7 +13,6 @@ stdenv.mkDerivation rec { homepage = "http://kakasi.namazu.org/"; license = licenses.gpl2Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/tools/text/unrtf/default.nix b/pkgs/tools/text/unrtf/default.nix index 6b177b8b37b..c2b845064d9 100644 --- a/pkgs/tools/text/unrtf/default.nix +++ b/pkgs/tools/text/unrtf/default.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { sha256 = "1pcdzf2h1prn393dkvg93v80vh38q0v817xnbwrlwxbdz4k7i8r2"; }; - buildInputs = [ autoconf automake ]; + nativeBuildInputs = [ autoconf automake ]; preConfigure = "./bootstrap"; diff --git a/pkgs/tools/typesetting/pygmentex/default.nix b/pkgs/tools/typesetting/pygmentex/default.nix new file mode 100644 index 00000000000..da029639c3d --- /dev/null +++ b/pkgs/tools/typesetting/pygmentex/default.nix @@ -0,0 +1,45 @@ +{ stdenv, fetchzip, python2Packages }: + +python2Packages.buildPythonApplication rec { + name = "pygmentex-${version}"; + version = "0.8"; + + src = fetchzip { + url = "http://mirrors.ctan.org/macros/latex/contrib/pygmentex.zip"; + sha256 = "1nm19pvhlv51mv2sdankndhw64ys9r7ch6szzd6i4jz8zr86kn9v"; + }; + + pythonPath = [ python2Packages.pygments python2Packages.chardet ]; + + buildPhase = ":"; + + doCheck = false; + + installPhase = '' + + mkdir -p $out/bin + cp -a pygmentex.py $out/bin + ''; + + meta = with stdenv.lib; { + homepage = https://www.ctan.org/pkg/pygmentex; + description = "Auxiliary tool for typesetting code listings in LaTeX documents using Pygments"; + longDescription = '' + PygmenTeX is a Python-based LaTeX package that can be used for + typesetting code listings in a LaTeX document using Pygments. + + Pygments is a generic syntax highlighter for general use in all kinds of + software such as forum systems, wikis or other applications that need to + prettify source code. + + This package installs just the script needed to process code listings + snippets extracted from the a LaTeX document by the pygmentex LaTeX + package. In order to use it effectivelly the texlive package pygmentex + also has to be installed. This can be done by adding pygmentex to + texlive.combine. + ''; + license = licenses.lppl13c; + maintainers = with maintainers; [ romildo ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/tools/typesetting/tex/nix/default.nix b/pkgs/tools/typesetting/tex/nix/default.nix index 5cd5515400d..ce5c025475a 100644 --- a/pkgs/tools/typesetting/tex/nix/default.nix +++ b/pkgs/tools/typesetting/tex/nix/default.nix @@ -17,7 +17,9 @@ rec { assert generatePDF -> !generatePS; let - tex = pkgs.texlive.combine texPackages; + tex = pkgs.texlive.combine + # always include basic stuff you need for LaTeX + ({inherit (pkgs.texlive) scheme-basic;} // texPackages); in pkgs.stdenv.mkDerivation { diff --git a/pkgs/tools/typesetting/tex/texlive-new/default.nix b/pkgs/tools/typesetting/tex/texlive-new/default.nix index 5fe52ba07ba..fbf4adde2ae 100644 --- a/pkgs/tools/typesetting/tex/texlive-new/default.nix +++ b/pkgs/tools/typesetting/tex/texlive-new/default.nix @@ -1,29 +1,7 @@ -/* (new) TeX Live user docs - - Basic usage: just pull texlive.combined.scheme-basic - for an environment with basic LaTeX support. - There are all the schemes as defined upstream (with tiny differences, perhaps). - - You can compose your own collection like this: - texlive.combine { - inherit (texlive) scheme-small collection-langkorean algorithms cm-super; - } - - By default you only get executables and files needed during runtime, - and a little documentation for the core packages. - To change that, you need to add `pkgFilter` function to `combine`. - texlive.combine { - # inherit (texlive) whatever-you-want; - pkgFilter = pkg: - pkg.tlType == "run" || pkg.tlType == "bin" || pkg.pname == "cm-super"; - # elem tlType [ "run" "bin" "doc" "source" ] - # there are also other attributes: version, name - } - - Known bugs: - * some tools are still missing, e.g. luajittex - * some apps aren't packaged/tested yet (xdvi, asymptote, biber, etc.) - * feature/bug: when a package is rejected by pkgFilter, - its dependencies are still propagated - * in case of any bugs or feature requests, file a github issue and /cc @vcunat +/* TeX Live user docs + - source: ../../../../../doc/languages-frameworks/texlive.xml + - current html: http://nixos.org/nixpkgs/manual/#sec-language-texlive */ - { stdenv, lib, fetchurl, runCommand, writeText, buildEnv , callPackage, ghostscriptX, harfbuzz, poppler_min , makeWrapper, perl, python, ruby diff --git a/pkgs/tools/video/flvtool2/default.nix b/pkgs/tools/video/flvtool2/default.nix index dbda4e11770..65bc240af00 100644 --- a/pkgs/tools/video/flvtool2/default.nix +++ b/pkgs/tools/video/flvtool2/default.nix @@ -1,28 +1,15 @@ -{ stdenv, fetchurl, ruby }: +{ buildRubyGem, lib, ruby_2_2 }: -stdenv.mkDerivation rec { - name = "flvtool2-1.0.6"; - - src = fetchurl { - url = "http://rubyforge.org/frs/download.php/17497/${name}.tgz"; - sha256 = "1pbsf0fvqrs6xzfkqal020bplb68dfiz6c5sfcz36k255v7c5w9a"; - }; - - buildInputs = [ ruby ]; - - configurePhase = - '' - substituteInPlace bin/flvtool2 --replace "/usr/bin/env ruby" "ruby -I$out/lib/ruby/site_ruby/1.8" - ruby setup.rb config --prefix=$out --siterubyver=$out/lib/ruby/site_ruby/1.8 - ''; - - installPhase = - '' - ruby setup.rb install - ''; +buildRubyGem rec { + ruby = ruby_2_2; + name = "${gemName}-${version}"; + gemName = "flvtool2"; + version = "1.0.6"; + sha256 = "0xsla1061pi4ryh3jbvwsbs8qchprchbqjy7652g2g64v37i74qj"; meta = { - homepage = http://www.inlet-media.de/flvtool2/; + homepage = https://github.com/unnu/flvtool2; description = "A tool to manipulate Macromedia Flash Video files"; + platforms = ruby.meta.platforms; }; } diff --git a/pkgs/tools/video/yamdi/default.nix b/pkgs/tools/video/yamdi/default.nix new file mode 100644 index 00000000000..e995f9e3a4f --- /dev/null +++ b/pkgs/tools/video/yamdi/default.nix @@ -0,0 +1,31 @@ +{ + stdenv, + fetchurl, +}: + +stdenv.mkDerivation rec { + name = "yamdi-${version}"; + version = "1.9"; + + # Source repo is also available here: + # https://github.com/ioppermann/yamdi + src = fetchurl { + url = "mirror://sourceforge/yamdi/yamdi-${version}.tar.gz"; + sha256 = "4a6630f27f6c22bcd95982bf3357747d19f40bd98297a569e9c77468b756f715"; + }; + + buildFlags = "CC=cc"; + + installPhase = '' + install -D {,$out/bin/}yamdi + install -D {,$out/share/man/}man1/yamdi.1 + ''; + + meta = with stdenv.lib; { + description = "Yet Another MetaData Injector for FLV"; + homepage = http://yamdi.sourceforge.net/; + license = licenses.bsd3; + platforms = platforms.all; + maintainers = [ maintainers.ryanartecona ]; + }; +} diff --git a/pkgs/tools/virtualization/azure-cli/node-packages.nix b/pkgs/tools/virtualization/azure-cli/node-packages.nix index 2cf7380caee..84379ae4c4a 100644 --- a/pkgs/tools/virtualization/azure-cli/node-packages.nix +++ b/pkgs/tools/virtualization/azure-cli/node-packages.nix @@ -14,7 +14,7 @@ }; deps = { "date-utils-1.2.18" = self.by-version."date-utils"."1.2.18"; - "jws-3.1.1" = self.by-version."jws"."3.1.1"; + "jws-3.1.3" = self.by-version."jws"."3.1.3"; "node-uuid-1.4.1" = self.by-version."node-uuid"."1.4.1"; "request-2.69.0" = self.by-version."request"."2.69.0"; "underscore-1.8.3" = self.by-version."underscore"."1.8.3"; @@ -41,7 +41,7 @@ }; deps = { "date-utils-1.2.18" = self.by-version."date-utils"."1.2.18"; - "jws-3.1.1" = self.by-version."jws"."3.1.1"; + "jws-3.1.3" = self.by-version."jws"."3.1.3"; "node-uuid-1.4.1" = self.by-version."node-uuid"."1.4.1"; "request-2.69.0" = self.by-version."request"."2.69.0"; "underscore-1.8.3" = self.by-version."underscore"."1.8.3"; @@ -94,17 +94,18 @@ cpu = [ ]; }; by-spec."ansi-styles"."^2.1.0" = - self.by-version."ansi-styles"."2.1.0"; - by-version."ansi-styles"."2.1.0" = self.buildNodePackage { - name = "ansi-styles-2.1.0"; - version = "2.1.0"; + self.by-version."ansi-styles"."2.2.0"; + by-version."ansi-styles"."2.2.0" = self.buildNodePackage { + name = "ansi-styles-2.2.0"; + version = "2.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ansi-styles/-/ansi-styles-2.1.0.tgz"; - name = "ansi-styles-2.1.0.tgz"; - sha1 = "990f747146927b559a932bf92959163d60c0d0e2"; + url = "http://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.0.tgz"; + name = "ansi-styles-2.2.0.tgz"; + sha1 = "c59191936e6ed1c1315a4b6b6b97f3acfbfa68b0"; }; deps = { + "color-convert-1.0.0" = self.by-version."color-convert"."1.0.0"; }; optionalDependencies = { }; @@ -190,6 +191,25 @@ }; by-spec."assert-plus"."^0.2.0" = self.by-version."assert-plus"."0.2.0"; + by-spec."assert-plus"."^1.0.0" = + self.by-version."assert-plus"."1.0.0"; + by-version."assert-plus"."1.0.0" = self.buildNodePackage { + name = "assert-plus-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"; + name = "assert-plus-1.0.0.tgz"; + sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."async"."0.1.x" = self.by-version."async"."0.1.22"; by-version."async"."0.1.22" = self.buildNodePackage { @@ -326,40 +346,18 @@ cpu = [ ]; }; by-spec."aws4"."^1.2.1" = - self.by-version."aws4"."1.2.1"; - by-version."aws4"."1.2.1" = self.buildNodePackage { - name = "aws4-1.2.1"; - version = "1.2.1"; + self.by-version."aws4"."1.3.2"; + by-version."aws4"."1.3.2" = self.buildNodePackage { + name = "aws4-1.3.2"; + version = "1.3.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/aws4/-/aws4-1.2.1.tgz"; - name = "aws4-1.2.1.tgz"; - sha1 = "52b5659a4d32583d405f65e1124ac436d07fe5ac"; + url = "http://registry.npmjs.org/aws4/-/aws4-1.3.2.tgz"; + name = "aws4-1.3.2.tgz"; + sha1 = "d39e0bee412ced0e8ed94a23e314f313a95b9fd1"; }; deps = { - "lru-cache-2.7.3" = self.by-version."lru-cache"."2.7.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."azure-arm-apiapp"."0.1.3" = - self.by-version."azure-arm-apiapp"."0.1.3"; - by-version."azure-arm-apiapp"."0.1.3" = self.buildNodePackage { - name = "azure-arm-apiapp-0.1.3"; - version = "0.1.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/azure-arm-apiapp/-/azure-arm-apiapp-0.1.3.tgz"; - name = "azure-arm-apiapp-0.1.3.tgz"; - sha1 = "5fcc896027965655e27b63bfba7c5592db44ee91"; - }; - deps = { - "azure-common-0.9.16" = self.by-version."azure-common"."0.9.16"; - "underscore-1.4.4" = self.by-version."underscore"."1.4.4"; - "moment-2.6.0" = self.by-version."moment"."2.6.0"; + "lru-cache-4.0.0" = self.by-version."lru-cache"."4.0.0"; }; optionalDependencies = { }; @@ -408,20 +406,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."azure-arm-compute"."0.14.0" = - self.by-version."azure-arm-compute"."0.14.0"; - by-version."azure-arm-compute"."0.14.0" = self.buildNodePackage { - name = "azure-arm-compute-0.14.0"; - version = "0.14.0"; + by-spec."azure-arm-compute"."0.15.0" = + self.by-version."azure-arm-compute"."0.15.0"; + by-version."azure-arm-compute"."0.15.0" = self.buildNodePackage { + name = "azure-arm-compute-0.15.0"; + version = "0.15.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/azure-arm-compute/-/azure-arm-compute-0.14.0.tgz"; - name = "azure-arm-compute-0.14.0.tgz"; - sha1 = "5c2d2b981541b703335294a60718bd96a19cd285"; + url = "http://registry.npmjs.org/azure-arm-compute/-/azure-arm-compute-0.15.0.tgz"; + name = "azure-arm-compute-0.15.0.tgz"; + sha1 = "a057ba240bd5ee9972c8813066d925204af09e27"; }; deps = { - "ms-rest-1.9.0" = self.by-version."ms-rest"."1.9.0"; - "ms-rest-azure-1.9.0" = self.by-version."ms-rest-azure"."1.9.0"; + "ms-rest-1.10.0" = self.by-version."ms-rest"."1.10.0"; + "ms-rest-azure-1.10.0" = self.by-version."ms-rest-azure"."1.10.0"; }; optionalDependencies = { }; @@ -442,7 +440,7 @@ }; deps = { "azure-common-0.9.16" = self.by-version."azure-common"."0.9.16"; - "moment-2.11.2" = self.by-version."moment"."2.11.2"; + "moment-2.12.0" = self.by-version."moment"."2.12.0"; "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; "underscore-1.4.4" = self.by-version."underscore"."1.4.4"; }; @@ -557,20 +555,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."azure-arm-network"."0.12.0" = - self.by-version."azure-arm-network"."0.12.0"; - by-version."azure-arm-network"."0.12.0" = self.buildNodePackage { - name = "azure-arm-network-0.12.0"; - version = "0.12.0"; + by-spec."azure-arm-network"."0.12.1" = + self.by-version."azure-arm-network"."0.12.1"; + by-version."azure-arm-network"."0.12.1" = self.buildNodePackage { + name = "azure-arm-network-0.12.1"; + version = "0.12.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/azure-arm-network/-/azure-arm-network-0.12.0.tgz"; - name = "azure-arm-network-0.12.0.tgz"; - sha1 = "676f042f643c49d2af0071dd809789b53a70162b"; + url = "http://registry.npmjs.org/azure-arm-network/-/azure-arm-network-0.12.1.tgz"; + name = "azure-arm-network-0.12.1.tgz"; + sha1 = "57c659e9d25f35e2ac0b79a0f78f7d025ceb20b8"; }; deps = { - "ms-rest-1.9.0" = self.by-version."ms-rest"."1.9.0"; - "ms-rest-azure-1.9.0" = self.by-version."ms-rest-azure"."1.9.0"; + "ms-rest-1.10.0" = self.by-version."ms-rest"."1.10.0"; + "ms-rest-azure-1.10.0" = self.by-version."ms-rest-azure"."1.10.0"; }; optionalDependencies = { }; @@ -578,20 +576,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."azure-arm-rediscache"."0.2.0" = - self.by-version."azure-arm-rediscache"."0.2.0"; - by-version."azure-arm-rediscache"."0.2.0" = self.buildNodePackage { - name = "azure-arm-rediscache-0.2.0"; - version = "0.2.0"; + by-spec."azure-arm-rediscache"."0.2.1" = + self.by-version."azure-arm-rediscache"."0.2.1"; + by-version."azure-arm-rediscache"."0.2.1" = self.buildNodePackage { + name = "azure-arm-rediscache-0.2.1"; + version = "0.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/azure-arm-rediscache/-/azure-arm-rediscache-0.2.0.tgz"; - name = "azure-arm-rediscache-0.2.0.tgz"; - sha1 = "cd9a25e4a2e0e58accdba5064811ddaa62eafeef"; + url = "http://registry.npmjs.org/azure-arm-rediscache/-/azure-arm-rediscache-0.2.1.tgz"; + name = "azure-arm-rediscache-0.2.1.tgz"; + sha1 = "22e516e7519dd12583e174cca4eeb3b20c993d02"; }; deps = { - "ms-rest-1.9.0" = self.by-version."ms-rest"."1.9.0"; - "ms-rest-azure-1.9.0" = self.by-version."ms-rest-azure"."1.9.0"; + "ms-rest-1.10.0" = self.by-version."ms-rest"."1.10.0"; + "ms-rest-azure-1.10.0" = self.by-version."ms-rest-azure"."1.10.0"; }; optionalDependencies = { }; @@ -599,20 +597,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."azure-arm-resource"."0.10.7" = - self.by-version."azure-arm-resource"."0.10.7"; - by-version."azure-arm-resource"."0.10.7" = self.buildNodePackage { - name = "azure-arm-resource-0.10.7"; - version = "0.10.7"; + by-spec."azure-arm-resource"."1.0.0-preview" = + self.by-version."azure-arm-resource"."1.0.0-preview"; + by-version."azure-arm-resource"."1.0.0-preview" = self.buildNodePackage { + name = "azure-arm-resource-1.0.0-preview"; + version = "1.0.0-preview"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/azure-arm-resource/-/azure-arm-resource-0.10.7.tgz"; - name = "azure-arm-resource-0.10.7.tgz"; - sha1 = "f637acc4c1f1ea17fc52a31164c75f6b4f7c70be"; + url = "http://registry.npmjs.org/azure-arm-resource/-/azure-arm-resource-1.0.0-preview.tgz"; + name = "azure-arm-resource-1.0.0-preview.tgz"; + sha1 = "c664d4d0f3c4394680106f34359340e3c6a0cac2"; }; deps = { - "azure-common-0.9.16" = self.by-version."azure-common"."0.9.16"; - "underscore-1.4.4" = self.by-version."underscore"."1.4.4"; + "ms-rest-1.10.0" = self.by-version."ms-rest"."1.10.0"; + "ms-rest-azure-1.10.0" = self.by-version."ms-rest-azure"."1.10.0"; }; optionalDependencies = { }; @@ -620,20 +618,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."azure-arm-storage"."0.12.1-preview" = - self.by-version."azure-arm-storage"."0.12.1-preview"; - by-version."azure-arm-storage"."0.12.1-preview" = self.buildNodePackage { - name = "azure-arm-storage-0.12.1-preview"; - version = "0.12.1-preview"; + by-spec."azure-arm-storage"."0.12.2-preview" = + self.by-version."azure-arm-storage"."0.12.2-preview"; + by-version."azure-arm-storage"."0.12.2-preview" = self.buildNodePackage { + name = "azure-arm-storage-0.12.2-preview"; + version = "0.12.2-preview"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/azure-arm-storage/-/azure-arm-storage-0.12.1-preview.tgz"; - name = "azure-arm-storage-0.12.1-preview.tgz"; - sha1 = "e793fe390348d809763623bbdc7ab5a7d1dd0d27"; + url = "http://registry.npmjs.org/azure-arm-storage/-/azure-arm-storage-0.12.2-preview.tgz"; + name = "azure-arm-storage-0.12.2-preview.tgz"; + sha1 = "ecdfe608b58fe7e136f47cd2f4139ee010a724e6"; }; deps = { - "ms-rest-1.9.0" = self.by-version."ms-rest"."1.9.0"; - "ms-rest-azure-1.9.0" = self.by-version."ms-rest-azure"."1.9.0"; + "ms-rest-1.10.0" = self.by-version."ms-rest"."1.10.0"; + "ms-rest-azure-1.10.0" = self.by-version."ms-rest-azure"."1.10.0"; }; optionalDependencies = { }; @@ -683,16 +681,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."azure-asm-compute"."0.11.0" = - self.by-version."azure-asm-compute"."0.11.0"; - by-version."azure-asm-compute"."0.11.0" = self.buildNodePackage { - name = "azure-asm-compute-0.11.0"; - version = "0.11.0"; + by-spec."azure-asm-compute"."0.13.0" = + self.by-version."azure-asm-compute"."0.13.0"; + by-version."azure-asm-compute"."0.13.0" = self.buildNodePackage { + name = "azure-asm-compute-0.13.0"; + version = "0.13.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/azure-asm-compute/-/azure-asm-compute-0.11.0.tgz"; - name = "azure-asm-compute-0.11.0.tgz"; - sha1 = "348ffae392ac0ce4aade50be99b8c89fd89701a0"; + url = "http://registry.npmjs.org/azure-asm-compute/-/azure-asm-compute-0.13.0.tgz"; + name = "azure-asm-compute-0.13.0.tgz"; + sha1 = "321999c92fcabb7da852a251cd97f461a0758065"; }; deps = { "azure-common-0.9.16" = self.by-version."azure-common"."0.9.16"; @@ -891,45 +889,44 @@ cpu = [ ]; }; by-spec."azure-cli"."*" = - self.by-version."azure-cli"."0.9.15"; - by-version."azure-cli"."0.9.15" = self.buildNodePackage { - name = "azure-cli-0.9.15"; - version = "0.9.15"; + self.by-version."azure-cli"."0.9.17"; + by-version."azure-cli"."0.9.17" = self.buildNodePackage { + name = "azure-cli-0.9.17"; + version = "0.9.17"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/azure-cli/-/azure-cli-0.9.15.tgz"; - name = "azure-cli-0.9.15.tgz"; - sha1 = "c629199efd96c217c8b4341c5b8489c119fdbe4a"; + url = "http://registry.npmjs.org/azure-cli/-/azure-cli-0.9.17.tgz"; + name = "azure-cli-0.9.17.tgz"; + sha1 = "1f1cd28719c5fb8e201c01bf2a257a0880e743eb"; }; deps = { "adal-node-0.1.17" = self.by-version."adal-node"."0.1.17"; "async-1.4.2" = self.by-version."async"."1.4.2"; "azure-common-0.9.16" = self.by-version."azure-common"."0.9.16"; - "azure-arm-apiapp-0.1.3" = self.by-version."azure-arm-apiapp"."0.1.3"; "azure-arm-authorization-2.0.0" = self.by-version."azure-arm-authorization"."2.0.0"; "azure-arm-commerce-0.1.1" = self.by-version."azure-arm-commerce"."0.1.1"; - "azure-arm-compute-0.14.0" = self.by-version."azure-arm-compute"."0.14.0"; + "azure-arm-compute-0.15.0" = self.by-version."azure-arm-compute"."0.15.0"; "azure-arm-hdinsight-0.1.0" = self.by-version."azure-arm-hdinsight"."0.1.0"; "azure-arm-hdinsight-jobs-0.1.0" = self.by-version."azure-arm-hdinsight-jobs"."0.1.0"; "azure-arm-insights-0.10.2" = self.by-version."azure-arm-insights"."0.10.2"; - "azure-arm-network-0.12.0" = self.by-version."azure-arm-network"."0.12.0"; + "azure-arm-network-0.12.1" = self.by-version."azure-arm-network"."0.12.1"; "azure-arm-trafficmanager-0.10.5" = self.by-version."azure-arm-trafficmanager"."0.10.5"; "azure-arm-dns-0.10.1" = self.by-version."azure-arm-dns"."0.10.1"; "azure-arm-website-0.10.0" = self.by-version."azure-arm-website"."0.10.0"; - "azure-arm-rediscache-0.2.0" = self.by-version."azure-arm-rediscache"."0.2.0"; + "azure-arm-rediscache-0.2.1" = self.by-version."azure-arm-rediscache"."0.2.1"; "azure-arm-datalake-analytics-0.1.2" = self.by-version."azure-arm-datalake-analytics"."0.1.2"; "azure-arm-datalake-store-0.1.2" = self.by-version."azure-arm-datalake-store"."0.1.2"; "azure-extra-0.2.12" = self.by-version."azure-extra"."0.2.12"; "azure-gallery-2.0.0-pre.18" = self.by-version."azure-gallery"."2.0.0-pre.18"; "azure-keyvault-0.10.1" = self.by-version."azure-keyvault"."0.10.1"; - "azure-asm-compute-0.11.0" = self.by-version."azure-asm-compute"."0.11.0"; + "azure-asm-compute-0.13.0" = self.by-version."azure-asm-compute"."0.13.0"; "azure-asm-hdinsight-0.10.2" = self.by-version."azure-asm-hdinsight"."0.10.2"; "azure-asm-trafficmanager-0.10.3" = self.by-version."azure-asm-trafficmanager"."0.10.3"; "azure-asm-mgmt-0.10.1" = self.by-version."azure-asm-mgmt"."0.10.1"; "azure-monitoring-0.10.2" = self.by-version."azure-monitoring"."0.10.2"; "azure-asm-network-0.10.2" = self.by-version."azure-asm-network"."0.10.2"; - "azure-arm-resource-0.10.7" = self.by-version."azure-arm-resource"."0.10.7"; - "azure-arm-storage-0.12.1-preview" = self.by-version."azure-arm-storage"."0.12.1-preview"; + "azure-arm-resource-1.0.0-preview" = self.by-version."azure-arm-resource"."1.0.0-preview"; + "azure-arm-storage-0.12.2-preview" = self.by-version."azure-arm-storage"."0.12.2-preview"; "azure-asm-sb-0.10.1" = self.by-version."azure-asm-sb"."0.10.1"; "azure-asm-sql-0.10.1" = self.by-version."azure-asm-sql"."0.10.1"; "azure-asm-storage-0.10.1" = self.by-version."azure-asm-storage"."0.10.1"; @@ -943,14 +940,11 @@ "event-stream-3.1.5" = self.by-version."event-stream"."3.1.5"; "eyes-0.1.8" = self.by-version."eyes"."0.1.8"; "github-0.1.6" = self.by-version."github"."0.1.6"; - "image-size-0.3.5" = self.by-version."image-size"."0.3.5"; "js2xmlparser-1.0.0" = self.by-version."js2xmlparser"."1.0.0"; "jsrsasign-4.8.2" = self.by-version."jsrsasign"."4.8.2"; - "jszip-2.5.0" = self.by-version."jszip"."2.5.0"; "kuduscript-1.0.6" = self.by-version."kuduscript"."1.0.6"; - "mime-1.2.11" = self.by-version."mime"."1.2.11"; "moment-2.6.0" = self.by-version."moment"."2.6.0"; - "ms-rest-azure-1.9.0" = self.by-version."ms-rest-azure"."1.9.0"; + "ms-rest-azure-1.10.0" = self.by-version."ms-rest-azure"."1.10.0"; "node-forge-0.6.23" = self.by-version."node-forge"."0.6.23"; "node-uuid-1.2.0" = self.by-version."node-uuid"."1.2.0"; "number-is-nan-1.0.0" = self.by-version."number-is-nan"."1.0.0"; @@ -961,14 +955,10 @@ "ssh-key-to-pem-0.11.0" = self.by-version."ssh-key-to-pem"."0.11.0"; "streamline-0.10.17" = self.by-version."streamline"."0.10.17"; "streamline-streams-0.1.5" = self.by-version."streamline-streams"."0.1.5"; - "swagger-schema-official-2.0.0-a33091a" = self.by-version."swagger-schema-official"."2.0.0-a33091a"; "through-2.3.4" = self.by-version."through"."2.3.4"; - "tmp-0.0.25" = self.by-version."tmp"."0.0.25"; "tunnel-0.0.2" = self.by-version."tunnel"."0.0.2"; - "tv4-1.2.7" = self.by-version."tv4"."1.2.7"; "underscore-1.4.4" = self.by-version."underscore"."1.4.4"; "validator-3.1.0" = self.by-version."validator"."3.1.0"; - "walk-2.3.9" = self.by-version."walk"."2.3.9"; "winston-0.6.2" = self.by-version."winston"."0.6.2"; "wordwrap-0.0.2" = self.by-version."wordwrap"."0.0.2"; "xml2js-0.1.14" = self.by-version."xml2js"."0.1.14"; @@ -980,7 +970,7 @@ os = [ ]; cpu = [ ]; }; - "azure-cli" = self.by-version."azure-cli"."0.9.15"; + "azure-cli" = self.by-version."azure-cli"."0.9.17"; by-spec."azure-common"."0.9.12" = self.by-version."azure-common"."0.9.12"; by-version."azure-common"."0.9.12" = self.buildNodePackage { @@ -1176,35 +1166,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."base64url"."~0.0.4" = - self.by-version."base64url"."0.0.6"; - by-version."base64url"."0.0.6" = self.buildNodePackage { - name = "base64url-0.0.6"; - version = "0.0.6"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/base64url/-/base64url-0.0.6.tgz"; - name = "base64url-0.0.6.tgz"; - sha1 = "9597b36b330db1c42477322ea87ea8027499b82b"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."base64url"."~1.0.4" = - self.by-version."base64url"."1.0.5"; - by-version."base64url"."1.0.5" = self.buildNodePackage { - name = "base64url-1.0.5"; - version = "1.0.5"; + self.by-version."base64url"."1.0.6"; + by-version."base64url"."1.0.6" = self.buildNodePackage { + name = "base64url-1.0.6"; + version = "1.0.6"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/base64url/-/base64url-1.0.5.tgz"; - name = "base64url-1.0.5.tgz"; - sha1 = "c54bcb4f9a2b7da422bca549e71c1640b533b825"; + url = "http://registry.npmjs.org/base64url/-/base64url-1.0.6.tgz"; + name = "base64url-1.0.6.tgz"; + sha1 = "d64d375d68a7c640d912e2358d170dca5bb54681"; }; deps = { "concat-stream-1.4.10" = self.by-version."concat-stream"."1.4.10"; @@ -1237,15 +1208,15 @@ cpu = [ ]; }; by-spec."bl"."~1.0.0" = - self.by-version."bl"."1.0.2"; - by-version."bl"."1.0.2" = self.buildNodePackage { - name = "bl-1.0.2"; - version = "1.0.2"; + self.by-version."bl"."1.0.3"; + by-version."bl"."1.0.3" = self.buildNodePackage { + name = "bl-1.0.3"; + version = "1.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bl/-/bl-1.0.2.tgz"; - name = "bl-1.0.2.tgz"; - sha1 = "8c66490d825ba84d560de1f62196a29555b3a0c4"; + url = "http://registry.npmjs.org/bl/-/bl-1.0.3.tgz"; + name = "bl-1.0.3.tgz"; + sha1 = "fc5421a28fd4226036c3b3891a66a25bc64d226e"; }; deps = { "readable-stream-2.0.5" = self.by-version."readable-stream"."2.0.5"; @@ -1501,10 +1472,10 @@ sha1 = "509afb67066e7499f7eb3535c77445772ae2d019"; }; deps = { - "ansi-styles-2.1.0" = self.by-version."ansi-styles"."2.1.0"; - "escape-string-regexp-1.0.4" = self.by-version."escape-string-regexp"."1.0.4"; + "ansi-styles-2.2.0" = self.by-version."ansi-styles"."2.2.0"; + "escape-string-regexp-1.0.5" = self.by-version."escape-string-regexp"."1.0.5"; "has-ansi-2.0.0" = self.by-version."has-ansi"."2.0.0"; - "strip-ansi-3.0.0" = self.by-version."strip-ansi"."3.0.0"; + "strip-ansi-3.0.1" = self.by-version."strip-ansi"."3.0.1"; "supports-color-2.0.0" = self.by-version."supports-color"."2.0.0"; }; optionalDependencies = { @@ -1515,6 +1486,25 @@ }; by-spec."chalk"."^1.1.1" = self.by-version."chalk"."1.1.1"; + by-spec."color-convert"."^1.0.0" = + self.by-version."color-convert"."1.0.0"; + by-version."color-convert"."1.0.0" = self.buildNodePackage { + name = "color-convert-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/color-convert/-/color-convert-1.0.0.tgz"; + name = "color-convert-1.0.0.tgz"; + sha1 = "3c26fcd885d272d45beacf6e41baba75c89a8579"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."colors"."0.x.x" = self.by-version."colors"."0.6.2"; by-version."colors"."0.6.2" = self.buildNodePackage { @@ -1781,18 +1771,18 @@ cpu = [ ]; }; by-spec."dashdash".">=1.10.1 <2.0.0" = - self.by-version."dashdash"."1.12.2"; - by-version."dashdash"."1.12.2" = self.buildNodePackage { - name = "dashdash-1.12.2"; - version = "1.12.2"; + self.by-version."dashdash"."1.13.0"; + by-version."dashdash"."1.13.0" = self.buildNodePackage { + name = "dashdash-1.13.0"; + version = "1.13.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/dashdash/-/dashdash-1.12.2.tgz"; - name = "dashdash-1.12.2.tgz"; - sha1 = "1c6f70588498d047b8cd5777b32ba85a5e25be36"; + url = "http://registry.npmjs.org/dashdash/-/dashdash-1.13.0.tgz"; + name = "dashdash-1.13.0.tgz"; + sha1 = "a5aae6fd9d8e156624eb0dd9259eb12ba245385a"; }; deps = { - "assert-plus-0.2.0" = self.by-version."assert-plus"."0.2.0"; + "assert-plus-1.0.0" = self.by-version."assert-plus"."1.0.0"; }; optionalDependencies = { }; @@ -1993,15 +1983,15 @@ cpu = [ ]; }; by-spec."escape-string-regexp"."^1.0.2" = - self.by-version."escape-string-regexp"."1.0.4"; - by-version."escape-string-regexp"."1.0.4" = self.buildNodePackage { - name = "escape-string-regexp-1.0.4"; - version = "1.0.4"; + self.by-version."escape-string-regexp"."1.0.5"; + by-version."escape-string-regexp"."1.0.5" = self.buildNodePackage { + name = "escape-string-regexp-1.0.5"; + version = "1.0.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.4.tgz"; - name = "escape-string-regexp-1.0.4.tgz"; - sha1 = "b85e679b46f72d03fbbe8a3bf7259d535c21b62f"; + url = "http://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; + name = "escape-string-regexp-1.0.5.tgz"; + sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; }; deps = { }; @@ -2116,34 +2106,15 @@ by-spec."eyes"."0.x.x" = self.by-version."eyes"."0.1.8"; by-spec."fibers"."^1.0.1" = - self.by-version."fibers"."1.0.8"; - by-version."fibers"."1.0.8" = self.buildNodePackage { - name = "fibers-1.0.8"; - version = "1.0.8"; + self.by-version."fibers"."1.0.10"; + by-version."fibers"."1.0.10" = self.buildNodePackage { + name = "fibers-1.0.10"; + version = "1.0.10"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fibers/-/fibers-1.0.8.tgz"; - name = "fibers-1.0.8.tgz"; - sha1 = "cbffda427c4e588a6f8601c2a07d134b092077f2"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."foreachasync"."^3.0.0" = - self.by-version."foreachasync"."3.0.0"; - by-version."foreachasync"."3.0.0" = self.buildNodePackage { - name = "foreachasync-3.0.0"; - version = "3.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/foreachasync/-/foreachasync-3.0.0.tgz"; - name = "foreachasync-3.0.0.tgz"; - sha1 = "5502987dc8714be3392097f32e0071c9dee07cf6"; + url = "http://registry.npmjs.org/fibers/-/fibers-1.0.10.tgz"; + name = "fibers-1.0.10.tgz"; + sha1 = "0ccea7287e5dafd2626c2c9d3f15113a1b5829cd"; }; deps = { }; @@ -2251,7 +2222,7 @@ deps = { "async-1.5.2" = self.by-version."async"."1.5.2"; "combined-stream-1.0.5" = self.by-version."combined-stream"."1.0.5"; - "mime-types-2.1.9" = self.by-version."mime-types"."2.1.9"; + "mime-types-2.1.10" = self.by-version."mime-types"."2.1.10"; }; optionalDependencies = { }; @@ -2408,7 +2379,7 @@ "bluebird-2.10.2" = self.by-version."bluebird"."2.10.2"; "chalk-1.1.1" = self.by-version."chalk"."1.1.1"; "commander-2.9.0" = self.by-version."commander"."2.9.0"; - "is-my-json-valid-2.12.4" = self.by-version."is-my-json-valid"."2.12.4"; + "is-my-json-valid-2.13.1" = self.by-version."is-my-json-valid"."2.13.1"; }; optionalDependencies = { }; @@ -2430,7 +2401,7 @@ deps = { "chalk-1.1.1" = self.by-version."chalk"."1.1.1"; "commander-2.9.0" = self.by-version."commander"."2.9.0"; - "is-my-json-valid-2.12.4" = self.by-version."is-my-json-valid"."2.12.4"; + "is-my-json-valid-2.13.1" = self.by-version."is-my-json-valid"."2.13.1"; "pinkie-promise-2.0.0" = self.by-version."pinkie-promise"."2.0.0"; }; optionalDependencies = { @@ -2624,26 +2595,7 @@ deps = { "assert-plus-0.2.0" = self.by-version."assert-plus"."0.2.0"; "jsprim-1.2.2" = self.by-version."jsprim"."1.2.2"; - "sshpk-1.7.3" = self.by-version."sshpk"."1.7.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."image-size"."^0.3.5" = - self.by-version."image-size"."0.3.5"; - by-version."image-size"."0.3.5" = self.buildNodePackage { - name = "image-size-0.3.5"; - version = "0.3.5"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/image-size/-/image-size-0.3.5.tgz"; - name = "image-size-0.3.5.tgz"; - sha1 = "83240eab2fb5b00b04aab8c74b0471e9cba7ad8c"; - }; - deps = { + "sshpk-1.7.4" = self.by-version."sshpk"."1.7.4"; }; optionalDependencies = { }; @@ -2713,15 +2665,15 @@ cpu = [ ]; }; by-spec."is-my-json-valid"."^2.12.0" = - self.by-version."is-my-json-valid"."2.12.4"; - by-version."is-my-json-valid"."2.12.4" = self.buildNodePackage { - name = "is-my-json-valid-2.12.4"; - version = "2.12.4"; + self.by-version."is-my-json-valid"."2.13.1"; + by-version."is-my-json-valid"."2.13.1" = self.buildNodePackage { + name = "is-my-json-valid-2.13.1"; + version = "2.13.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.12.4.tgz"; - name = "is-my-json-valid-2.12.4.tgz"; - sha1 = "d4ed2bc1d7f88daf8d0f763b3e3e39a69bd37880"; + url = "http://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.13.1.tgz"; + name = "is-my-json-valid-2.13.1.tgz"; + sha1 = "d55778a82feb6b0963ff4be111d5d1684e890707"; }; deps = { "generate-function-2.0.0" = self.by-version."generate-function"."2.0.0"; @@ -2736,7 +2688,7 @@ cpu = [ ]; }; by-spec."is-my-json-valid"."^2.12.4" = - self.by-version."is-my-json-valid"."2.12.4"; + self.by-version."is-my-json-valid"."2.13.1"; by-spec."is-property"."^1.0.0" = self.by-version."is-property"."1.0.2"; by-version."is-property"."1.0.2" = self.buildNodePackage { @@ -2975,39 +2927,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."jszip"."^2.5.0" = - self.by-version."jszip"."2.5.0"; - by-version."jszip"."2.5.0" = self.buildNodePackage { - name = "jszip-2.5.0"; - version = "2.5.0"; + by-spec."jwa"."^1.1.2" = + self.by-version."jwa"."1.1.3"; + by-version."jwa"."1.1.3" = self.buildNodePackage { + name = "jwa-1.1.3"; + version = "1.1.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/jszip/-/jszip-2.5.0.tgz"; - name = "jszip-2.5.0.tgz"; - sha1 = "7444fd8551ddf3e5da7198fea0c91bc8308cc274"; + url = "http://registry.npmjs.org/jwa/-/jwa-1.1.3.tgz"; + name = "jwa-1.1.3.tgz"; + sha1 = "fa9f2f005ff0c630e7c41526a31f37f79733cd6d"; }; deps = { - "pako-0.2.8" = self.by-version."pako"."0.2.8"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."jwa"."^1.1.0" = - self.by-version."jwa"."1.1.1"; - by-version."jwa"."1.1.1" = self.buildNodePackage { - name = "jwa-1.1.1"; - version = "1.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/jwa/-/jwa-1.1.1.tgz"; - name = "jwa-1.1.1.tgz"; - sha1 = "b83c05279f0707f55ca5387b7b3f23da9f80195f"; - }; - deps = { - "base64url-0.0.6" = self.by-version."base64url"."0.0.6"; + "base64url-1.0.6" = self.by-version."base64url"."1.0.6"; "buffer-equal-constant-time-1.0.1" = self.by-version."buffer-equal-constant-time"."1.0.1"; "ecdsa-sig-formatter-1.0.5" = self.by-version."ecdsa-sig-formatter"."1.0.5"; }; @@ -3018,19 +2950,19 @@ cpu = [ ]; }; by-spec."jws"."3.x.x" = - self.by-version."jws"."3.1.1"; - by-version."jws"."3.1.1" = self.buildNodePackage { - name = "jws-3.1.1"; - version = "3.1.1"; + self.by-version."jws"."3.1.3"; + by-version."jws"."3.1.3" = self.buildNodePackage { + name = "jws-3.1.3"; + version = "3.1.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/jws/-/jws-3.1.1.tgz"; - name = "jws-3.1.1.tgz"; - sha1 = "34f5a424e628af4551121e860ba279f55cfa6629"; + url = "http://registry.npmjs.org/jws/-/jws-3.1.3.tgz"; + name = "jws-3.1.3.tgz"; + sha1 = "b88f1b4581a2c5ee8813c06b3fdf90ea9b5c7e6c"; }; deps = { - "base64url-1.0.5" = self.by-version."base64url"."1.0.5"; - "jwa-1.1.1" = self.by-version."jwa"."1.1.1"; + "base64url-1.0.6" = self.by-version."base64url"."1.0.6"; + "jwa-1.1.3" = self.by-version."jwa"."1.1.3"; }; optionalDependencies = { }; @@ -3078,18 +3010,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."lru-cache"."^2.6.5" = - self.by-version."lru-cache"."2.7.3"; - by-version."lru-cache"."2.7.3" = self.buildNodePackage { - name = "lru-cache-2.7.3"; - version = "2.7.3"; + by-spec."lru-cache"."^4.0.0" = + self.by-version."lru-cache"."4.0.0"; + by-version."lru-cache"."4.0.0" = self.buildNodePackage { + name = "lru-cache-4.0.0"; + version = "4.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz"; - name = "lru-cache-2.7.3.tgz"; - sha1 = "6d4524e8b955f95d4f5b58851ce21dd72fb4e952"; + url = "http://registry.npmjs.org/lru-cache/-/lru-cache-4.0.0.tgz"; + name = "lru-cache-4.0.0.tgz"; + sha1 = "b5cbf01556c16966febe54ceec0fb4dc90df6c28"; }; deps = { + "pseudomap-1.0.2" = self.by-version."pseudomap"."1.0.2"; + "yallist-2.0.0" = self.by-version."yallist"."2.0.0"; }; optionalDependencies = { }; @@ -3177,8 +3111,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."mime"."~1.2.4" = - self.by-version."mime"."1.2.11"; by-spec."mime-db"."~1.12.0" = self.by-version."mime-db"."1.12.0"; by-version."mime-db"."1.12.0" = self.buildNodePackage { @@ -3198,16 +3130,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."mime-db"."~1.21.0" = - self.by-version."mime-db"."1.21.0"; - by-version."mime-db"."1.21.0" = self.buildNodePackage { - name = "mime-db-1.21.0"; - version = "1.21.0"; + by-spec."mime-db"."~1.22.0" = + self.by-version."mime-db"."1.22.0"; + by-version."mime-db"."1.22.0" = self.buildNodePackage { + name = "mime-db-1.22.0"; + version = "1.22.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mime-db/-/mime-db-1.21.0.tgz"; - name = "mime-db-1.21.0.tgz"; - sha1 = "9b5239e3353cf6eb015a00d890261027c36d4bac"; + url = "http://registry.npmjs.org/mime-db/-/mime-db-1.22.0.tgz"; + name = "mime-db-1.22.0.tgz"; + sha1 = "ab23a6372dc9d86d3dc9121bd0ebd38105a1904a"; }; deps = { }; @@ -3218,18 +3150,18 @@ cpu = [ ]; }; by-spec."mime-types"."^2.1.3" = - self.by-version."mime-types"."2.1.9"; - by-version."mime-types"."2.1.9" = self.buildNodePackage { - name = "mime-types-2.1.9"; - version = "2.1.9"; + self.by-version."mime-types"."2.1.10"; + by-version."mime-types"."2.1.10" = self.buildNodePackage { + name = "mime-types-2.1.10"; + version = "2.1.10"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mime-types/-/mime-types-2.1.9.tgz"; - name = "mime-types-2.1.9.tgz"; - sha1 = "dfb396764b5fdf75be34b1f4104bc3687fb635f8"; + url = "http://registry.npmjs.org/mime-types/-/mime-types-2.1.10.tgz"; + name = "mime-types-2.1.10.tgz"; + sha1 = "b93c7cb4362e16d41072a7e54538fb4d43070837"; }; deps = { - "mime-db-1.21.0" = self.by-version."mime-db"."1.21.0"; + "mime-db-1.22.0" = self.by-version."mime-db"."1.22.0"; }; optionalDependencies = { }; @@ -3279,7 +3211,7 @@ by-spec."mime-types"."~2.0.3" = self.by-version."mime-types"."2.0.14"; by-spec."mime-types"."~2.1.7" = - self.by-version."mime-types"."2.1.9"; + self.by-version."mime-types"."2.1.10"; by-spec."minimist"."^1.1.0" = self.by-version."minimist"."1.2.0"; by-version."minimist"."1.2.0" = self.buildNodePackage { @@ -3319,15 +3251,15 @@ cpu = [ ]; }; by-spec."moment"."^2.6.0" = - self.by-version."moment"."2.11.2"; - by-version."moment"."2.11.2" = self.buildNodePackage { - name = "moment-2.11.2"; - version = "2.11.2"; + self.by-version."moment"."2.12.0"; + by-version."moment"."2.12.0" = self.buildNodePackage { + name = "moment-2.12.0"; + version = "2.12.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/moment/-/moment-2.11.2.tgz"; - name = "moment-2.11.2.tgz"; - sha1 = "87968e5f95ac038c2e42ac959c75819cd3f52901"; + url = "http://registry.npmjs.org/moment/-/moment-2.12.0.tgz"; + name = "moment-2.12.0.tgz"; + sha1 = "dc2560d19838d6c0731b1a6afa04675264d360d6"; }; deps = { }; @@ -3337,53 +3269,51 @@ os = [ ]; cpu = [ ]; }; + by-spec."ms-rest"."^1.10.0" = + self.by-version."ms-rest"."1.10.0"; + by-version."ms-rest"."1.10.0" = self.buildNodePackage { + name = "ms-rest-1.10.0"; + version = "1.10.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/ms-rest/-/ms-rest-1.10.0.tgz"; + name = "ms-rest-1.10.0.tgz"; + sha1 = "d1d9a93f3c7f7189500475ac680875ed1da56d99"; + }; + deps = { + "underscore-1.8.3" = self.by-version."underscore"."1.8.3"; + "tunnel-0.0.4" = self.by-version."tunnel"."0.0.4"; + "request-2.69.0" = self.by-version."request"."2.69.0"; + "duplexer-0.1.1" = self.by-version."duplexer"."0.1.1"; + "through-2.3.8" = self.by-version."through"."2.3.8"; + "moment-2.12.0" = self.by-version."moment"."2.12.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."ms-rest"."^1.8.0" = - self.by-version."ms-rest"."1.9.0"; - by-version."ms-rest"."1.9.0" = self.buildNodePackage { - name = "ms-rest-1.9.0"; - version = "1.9.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/ms-rest/-/ms-rest-1.9.0.tgz"; - name = "ms-rest-1.9.0.tgz"; - sha1 = "12b20c5477874c1ec09133b5fa77ea4bb67824ce"; - }; - deps = { - "underscore-1.8.3" = self.by-version."underscore"."1.8.3"; - "tunnel-0.0.4" = self.by-version."tunnel"."0.0.4"; - "request-2.52.0" = self.by-version."request"."2.52.0"; - "validator-3.1.0" = self.by-version."validator"."3.1.0"; - "duplexer-0.1.1" = self.by-version."duplexer"."0.1.1"; - "through-2.3.8" = self.by-version."through"."2.3.8"; - "tough-cookie-2.2.1" = self.by-version."tough-cookie"."2.2.1"; - "moment-2.11.2" = self.by-version."moment"."2.11.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."ms-rest"."^1.9.0" = - self.by-version."ms-rest"."1.9.0"; + self.by-version."ms-rest"."1.10.0"; by-spec."ms-rest-azure"."^1.8.0" = - self.by-version."ms-rest-azure"."1.9.0"; - by-version."ms-rest-azure"."1.9.0" = self.buildNodePackage { - name = "ms-rest-azure-1.9.0"; - version = "1.9.0"; + self.by-version."ms-rest-azure"."1.10.0"; + by-version."ms-rest-azure"."1.10.0" = self.buildNodePackage { + name = "ms-rest-azure-1.10.0"; + version = "1.10.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ms-rest-azure/-/ms-rest-azure-1.9.0.tgz"; - name = "ms-rest-azure-1.9.0.tgz"; - sha1 = "b172ac72f890ac31511e9c68899f4aa4d50c5bd1"; + url = "http://registry.npmjs.org/ms-rest-azure/-/ms-rest-azure-1.10.0.tgz"; + name = "ms-rest-azure-1.10.0.tgz"; + sha1 = "467f481de7f3f10b5d020de393d0de71ada6278a"; }; deps = { "async-0.2.7" = self.by-version."async"."0.2.7"; "uuid-2.0.1" = self.by-version."uuid"."2.0.1"; "adal-node-0.1.16" = self.by-version."adal-node"."0.1.16"; - "ms-rest-1.9.0" = self.by-version."ms-rest"."1.9.0"; + "ms-rest-1.10.0" = self.by-version."ms-rest"."1.10.0"; "underscore-1.8.3" = self.by-version."underscore"."1.8.3"; - "moment-2.11.2" = self.by-version."moment"."2.11.2"; + "moment-2.12.0" = self.by-version."moment"."2.12.0"; }; optionalDependencies = { }; @@ -3610,25 +3540,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."pako"."~0.2.5" = - self.by-version."pako"."0.2.8"; - by-version."pako"."0.2.8" = self.buildNodePackage { - name = "pako-0.2.8"; - version = "0.2.8"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/pako/-/pako-0.2.8.tgz"; - name = "pako-0.2.8.tgz"; - sha1 = "15ad772915362913f20de4a8a164b4aacc6165d6"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."pause-stream"."0.0.11" = self.by-version."pause-stream"."0.0.11"; by-version."pause-stream"."0.0.11" = self.buildNodePackage { @@ -3726,6 +3637,25 @@ os = [ ]; cpu = [ ]; }; + by-spec."pseudomap"."^1.0.1" = + self.by-version."pseudomap"."1.0.2"; + by-version."pseudomap"."1.0.2" = self.buildNodePackage { + name = "pseudomap-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz"; + name = "pseudomap-1.0.2.tgz"; + sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."q"."~0.9.3" = self.by-version."q"."0.9.7"; by-version."q"."0.9.7" = self.buildNodePackage { @@ -3939,7 +3869,7 @@ "form-data-0.1.4" = self.by-version."form-data"."0.1.4"; }; optionalDependencies = { - "tough-cookie-2.2.1" = self.by-version."tough-cookie"."2.2.1"; + "tough-cookie-2.2.2" = self.by-version."tough-cookie"."2.2.2"; "http-signature-0.10.1" = self.by-version."http-signature"."0.10.1"; "oauth-sign-0.4.0" = self.by-version."oauth-sign"."0.4.0"; "hawk-1.1.1" = self.by-version."hawk"."1.1.1"; @@ -3971,7 +3901,7 @@ "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; "qs-2.3.3" = self.by-version."qs"."2.3.3"; "tunnel-agent-0.4.2" = self.by-version."tunnel-agent"."0.4.2"; - "tough-cookie-2.2.1" = self.by-version."tough-cookie"."2.2.1"; + "tough-cookie-2.2.2" = self.by-version."tough-cookie"."2.2.2"; "http-signature-0.10.1" = self.by-version."http-signature"."0.10.1"; "oauth-sign-0.6.0" = self.by-version."oauth-sign"."0.6.0"; "hawk-2.3.1" = self.by-version."hawk"."2.3.1"; @@ -3986,6 +3916,46 @@ os = [ ]; cpu = [ ]; }; + by-spec."request"."2.69.0" = + self.by-version."request"."2.69.0"; + by-version."request"."2.69.0" = self.buildNodePackage { + name = "request-2.69.0"; + version = "2.69.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/request/-/request-2.69.0.tgz"; + name = "request-2.69.0.tgz"; + sha1 = "cf91d2e000752b1217155c005241911991a2346a"; + }; + deps = { + "aws-sign2-0.6.0" = self.by-version."aws-sign2"."0.6.0"; + "aws4-1.3.2" = self.by-version."aws4"."1.3.2"; + "bl-1.0.3" = self.by-version."bl"."1.0.3"; + "caseless-0.11.0" = self.by-version."caseless"."0.11.0"; + "combined-stream-1.0.5" = self.by-version."combined-stream"."1.0.5"; + "extend-3.0.0" = self.by-version."extend"."3.0.0"; + "forever-agent-0.6.1" = self.by-version."forever-agent"."0.6.1"; + "form-data-1.0.0-rc3" = self.by-version."form-data"."1.0.0-rc3"; + "har-validator-2.0.6" = self.by-version."har-validator"."2.0.6"; + "hawk-3.1.3" = self.by-version."hawk"."3.1.3"; + "http-signature-1.1.1" = self.by-version."http-signature"."1.1.1"; + "is-typedarray-1.0.0" = self.by-version."is-typedarray"."1.0.0"; + "isstream-0.1.2" = self.by-version."isstream"."0.1.2"; + "json-stringify-safe-5.0.1" = self.by-version."json-stringify-safe"."5.0.1"; + "mime-types-2.1.10" = self.by-version."mime-types"."2.1.10"; + "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; + "oauth-sign-0.8.1" = self.by-version."oauth-sign"."0.8.1"; + "qs-6.0.2" = self.by-version."qs"."6.0.2"; + "stringstream-0.0.5" = self.by-version."stringstream"."0.0.5"; + "tough-cookie-2.2.2" = self.by-version."tough-cookie"."2.2.2"; + "tunnel-agent-0.4.2" = self.by-version."tunnel-agent"."0.4.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."request"."2.9.x" = self.by-version."request"."2.9.203"; by-version."request"."2.9.203" = self.buildNodePackage { @@ -4007,44 +3977,6 @@ }; by-spec."request".">= 2.52.0" = self.by-version."request"."2.69.0"; - by-version."request"."2.69.0" = self.buildNodePackage { - name = "request-2.69.0"; - version = "2.69.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/request/-/request-2.69.0.tgz"; - name = "request-2.69.0.tgz"; - sha1 = "cf91d2e000752b1217155c005241911991a2346a"; - }; - deps = { - "aws-sign2-0.6.0" = self.by-version."aws-sign2"."0.6.0"; - "aws4-1.2.1" = self.by-version."aws4"."1.2.1"; - "bl-1.0.2" = self.by-version."bl"."1.0.2"; - "caseless-0.11.0" = self.by-version."caseless"."0.11.0"; - "combined-stream-1.0.5" = self.by-version."combined-stream"."1.0.5"; - "extend-3.0.0" = self.by-version."extend"."3.0.0"; - "forever-agent-0.6.1" = self.by-version."forever-agent"."0.6.1"; - "form-data-1.0.0-rc3" = self.by-version."form-data"."1.0.0-rc3"; - "har-validator-2.0.6" = self.by-version."har-validator"."2.0.6"; - "hawk-3.1.3" = self.by-version."hawk"."3.1.3"; - "http-signature-1.1.1" = self.by-version."http-signature"."1.1.1"; - "is-typedarray-1.0.0" = self.by-version."is-typedarray"."1.0.0"; - "isstream-0.1.2" = self.by-version."isstream"."0.1.2"; - "json-stringify-safe-5.0.1" = self.by-version."json-stringify-safe"."5.0.1"; - "mime-types-2.1.9" = self.by-version."mime-types"."2.1.9"; - "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; - "oauth-sign-0.8.1" = self.by-version."oauth-sign"."0.8.1"; - "qs-6.0.2" = self.by-version."qs"."6.0.2"; - "stringstream-0.0.5" = self.by-version."stringstream"."0.0.5"; - "tough-cookie-2.2.1" = self.by-version."tough-cookie"."2.2.1"; - "tunnel-agent-0.4.2" = self.by-version."tunnel-agent"."0.4.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."request".">= 2.9.203" = self.by-version."request"."2.69.0"; by-spec."request"."~2.57.0" = @@ -4068,7 +4000,7 @@ "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; "qs-3.1.0" = self.by-version."qs"."3.1.0"; "tunnel-agent-0.4.2" = self.by-version."tunnel-agent"."0.4.2"; - "tough-cookie-2.2.1" = self.by-version."tough-cookie"."2.2.1"; + "tough-cookie-2.2.2" = self.by-version."tough-cookie"."2.2.2"; "http-signature-0.11.0" = self.by-version."http-signature"."0.11.0"; "oauth-sign-0.8.1" = self.by-version."oauth-sign"."0.8.1"; "hawk-2.3.1" = self.by-version."hawk"."2.3.1"; @@ -4104,15 +4036,15 @@ cpu = [ ]; }; by-spec."sax".">=0.1.1" = - self.by-version."sax"."1.1.5"; - by-version."sax"."1.1.5" = self.buildNodePackage { - name = "sax-1.1.5"; - version = "1.1.5"; + self.by-version."sax"."1.1.6"; + by-version."sax"."1.1.6" = self.buildNodePackage { + name = "sax-1.1.6"; + version = "1.1.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/sax/-/sax-1.1.5.tgz"; - name = "sax-1.1.5.tgz"; - sha1 = "1da50a8d00cdecd59405659f5ff85349fe773743"; + url = "http://registry.npmjs.org/sax/-/sax-1.1.6.tgz"; + name = "sax-1.1.6.tgz"; + sha1 = "5d616be8a5e607d54e114afae55b7eaf2fcc3240"; }; deps = { }; @@ -4224,24 +4156,24 @@ cpu = [ ]; }; by-spec."sshpk"."^1.7.0" = - self.by-version."sshpk"."1.7.3"; - by-version."sshpk"."1.7.3" = self.buildNodePackage { - name = "sshpk-1.7.3"; - version = "1.7.3"; + self.by-version."sshpk"."1.7.4"; + by-version."sshpk"."1.7.4" = self.buildNodePackage { + name = "sshpk-1.7.4"; + version = "1.7.4"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/sshpk/-/sshpk-1.7.3.tgz"; - name = "sshpk-1.7.3.tgz"; - sha1 = "caa8ef95e30765d856698b7025f9f211ab65962f"; + url = "http://registry.npmjs.org/sshpk/-/sshpk-1.7.4.tgz"; + name = "sshpk-1.7.4.tgz"; + sha1 = "ad7b47defca61c8415d964243b62b0ce60fbca38"; }; deps = { "asn1-0.2.3" = self.by-version."asn1"."0.2.3"; "assert-plus-0.2.0" = self.by-version."assert-plus"."0.2.0"; - "dashdash-1.12.2" = self.by-version."dashdash"."1.12.2"; + "dashdash-1.13.0" = self.by-version."dashdash"."1.13.0"; }; optionalDependencies = { "jsbn-0.1.0" = self.by-version."jsbn"."0.1.0"; - "tweetnacl-0.13.3" = self.by-version."tweetnacl"."0.13.3"; + "tweetnacl-0.14.1" = self.by-version."tweetnacl"."0.14.1"; "jodid25519-1.0.2" = self.by-version."jodid25519"."1.0.2"; "ecc-jsbn-0.1.1" = self.by-version."ecc-jsbn"."0.1.1"; }; @@ -4305,7 +4237,7 @@ "source-map-0.1.43" = self.by-version."source-map"."0.1.43"; }; optionalDependencies = { - "fibers-1.0.8" = self.by-version."fibers"."1.0.8"; + "fibers-1.0.10" = self.by-version."fibers"."1.0.10"; "galaxy-0.1.12" = self.by-version."galaxy"."0.1.12"; }; peerDependencies = []; @@ -4389,15 +4321,15 @@ cpu = [ ]; }; by-spec."strip-ansi"."^3.0.0" = - self.by-version."strip-ansi"."3.0.0"; - by-version."strip-ansi"."3.0.0" = self.buildNodePackage { - name = "strip-ansi-3.0.0"; - version = "3.0.0"; + self.by-version."strip-ansi"."3.0.1"; + by-version."strip-ansi"."3.0.1" = self.buildNodePackage { + name = "strip-ansi-3.0.1"; + version = "3.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.0.tgz"; - name = "strip-ansi-3.0.0.tgz"; - sha1 = "7510b665567ca914ccb5d7e072763ac968be3724"; + url = "http://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"; + name = "strip-ansi-3.0.1.tgz"; + sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"; }; deps = { "ansi-regex-2.0.0" = self.by-version."ansi-regex"."2.0.0"; @@ -4427,25 +4359,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."swagger-schema-official"."2.0.0-a33091a" = - self.by-version."swagger-schema-official"."2.0.0-a33091a"; - by-version."swagger-schema-official"."2.0.0-a33091a" = self.buildNodePackage { - name = "swagger-schema-official-2.0.0-a33091a"; - version = "2.0.0-a33091a"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/swagger-schema-official/-/swagger-schema-official-2.0.0-a33091a.tgz"; - name = "swagger-schema-official-2.0.0-a33091a.tgz"; - sha1 = "54cd2c83aac5b2203572fcd70e6e092d17b763fd"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."through"."2" = self.by-version."through"."2.3.8"; by-version."through"."2.3.8" = self.buildNodePackage { @@ -4490,48 +4403,27 @@ self.by-version."through"."2.3.8"; by-spec."through"."~2.3.4" = self.by-version."through"."2.3.8"; - by-spec."tmp"."0.0.25" = - self.by-version."tmp"."0.0.25"; - by-version."tmp"."0.0.25" = self.buildNodePackage { - name = "tmp-0.0.25"; - version = "0.0.25"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tmp/-/tmp-0.0.25.tgz"; - name = "tmp-0.0.25.tgz"; - sha1 = "b29629768c55f38df0bff33f6dfde052443da27d"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tough-cookie"."*" = - self.by-version."tough-cookie"."2.2.1"; - by-version."tough-cookie"."2.2.1" = self.buildNodePackage { - name = "tough-cookie-2.2.1"; - version = "2.2.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tough-cookie/-/tough-cookie-2.2.1.tgz"; - name = "tough-cookie-2.2.1.tgz"; - sha1 = "3b0516b799e70e8164436a1446e7e5877fda118e"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."tough-cookie".">=0.12.0" = - self.by-version."tough-cookie"."2.2.1"; + self.by-version."tough-cookie"."2.2.2"; + by-version."tough-cookie"."2.2.2" = self.buildNodePackage { + name = "tough-cookie-2.2.2"; + version = "2.2.2"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/tough-cookie/-/tough-cookie-2.2.2.tgz"; + name = "tough-cookie-2.2.2.tgz"; + sha1 = "c83a1830f4e5ef0b93ef2a3488e724f8de016ac7"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."tough-cookie"."~2.2.0" = - self.by-version."tough-cookie"."2.2.1"; + self.by-version."tough-cookie"."2.2.2"; by-spec."tunnel"."0.0.2" = self.by-version."tunnel"."0.0.2"; by-version."tunnel"."0.0.2" = self.buildNodePackage { @@ -4591,35 +4483,16 @@ }; by-spec."tunnel-agent"."~0.4.1" = self.by-version."tunnel-agent"."0.4.2"; - by-spec."tv4"."^1.1.9" = - self.by-version."tv4"."1.2.7"; - by-version."tv4"."1.2.7" = self.buildNodePackage { - name = "tv4-1.2.7"; - version = "1.2.7"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tv4/-/tv4-1.2.7.tgz"; - name = "tv4-1.2.7.tgz"; - sha1 = "bd29389afc73ade49ae5f48142b5d544bf68d120"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."tweetnacl".">=0.13.0 <1.0.0" = - self.by-version."tweetnacl"."0.13.3"; - by-version."tweetnacl"."0.13.3" = self.buildNodePackage { - name = "tweetnacl-0.13.3"; - version = "0.13.3"; + self.by-version."tweetnacl"."0.14.1"; + by-version."tweetnacl"."0.14.1" = self.buildNodePackage { + name = "tweetnacl-0.14.1"; + version = "0.14.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/tweetnacl/-/tweetnacl-0.13.3.tgz"; - name = "tweetnacl-0.13.3.tgz"; - sha1 = "d628b56f3bcc3d5ae74ba9d4c1a704def5ab4b56"; + url = "http://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.1.tgz"; + name = "tweetnacl-0.14.1.tgz"; + sha1 = "37c6a1fb5cd4b63b7acee450d8419d9c0024cc03"; }; deps = { }; @@ -4786,26 +4659,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."walk"."^2.3.9" = - self.by-version."walk"."2.3.9"; - by-version."walk"."2.3.9" = self.buildNodePackage { - name = "walk-2.3.9"; - version = "2.3.9"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/walk/-/walk-2.3.9.tgz"; - name = "walk-2.3.9.tgz"; - sha1 = "31b4db6678f2ae01c39ea9fb8725a9031e558a7b"; - }; - deps = { - "foreachasync-3.0.0" = self.by-version."foreachasync"."3.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."winston"."0.6.x" = self.by-version."winston"."0.6.2"; by-version."winston"."0.6.2" = self.buildNodePackage { @@ -4863,7 +4716,7 @@ sha1 = "5274e67f5a64c5f92974cd85139e0332adc6b90c"; }; deps = { - "sax-1.1.5" = self.by-version."sax"."1.1.5"; + "sax-1.1.6" = self.by-version."sax"."1.1.6"; }; optionalDependencies = { }; @@ -4969,4 +4822,23 @@ os = [ ]; cpu = [ ]; }; + by-spec."yallist"."^2.0.0" = + self.by-version."yallist"."2.0.0"; + by-version."yallist"."2.0.0" = self.buildNodePackage { + name = "yallist-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/yallist/-/yallist-2.0.0.tgz"; + name = "yallist-2.0.0.tgz"; + sha1 = "306c543835f09ee1a4cb23b7bce9ab341c91cdd4"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; } diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix new file mode 100644 index 00000000000..9d278b19342 --- /dev/null +++ b/pkgs/top-level/aliases.nix @@ -0,0 +1,103 @@ +self: + +with self; + +let + # Removing recurseForDerivation prevents derivations of aliased attribute + # set to appear while listing all the packages available. + removeRecurseForDerivations = _n: alias: with lib; + if alias.recurseForDerivations or false then + removeAttrs alias ["recurseForDerivations"] + else alias; + + doNotDisplayTwice = aliases: + lib.mapAttrs removeRecurseForDerivations aliases; +in + + ### Deprecated aliases - for backward compatibility + +doNotDisplayTwice rec { + accounts-qt = qt5.accounts-qt; # added 2015-12-19 + adobeReader = adobe-reader; + aircrackng = aircrack-ng; # added 2016-01-14 + arduino_core = arduino-core; # added 2015-02-04 + asciidocFull = asciidoc-full; # added 2014-06-22 + bar = lemonbar; # added 2015-01-16 + bar-xft = lemonbar-xft; # added 2015-01-16 + bridge_utils = bridge-utils; # added 2015-02-20 + btrfsProgs = btrfs-progs; # added 2016-01-03 + buildbotSlave = buildbot-slave; # added 2014-12-09 + bundler_HEAD = bundler; # added 2015-11-15 + cheetahTemplate = pythonPackages.cheetah; # 2015-06-15 + clangAnalyzer = clang-analyzer; # added 2015-02-20 + conkerorWrapper = conkeror; # added 2015-01 + cool-old-term = cool-retro-term; # added 2015-01-31 + cupsBjnp = cups-bjnp; # added 2016-01-02 + cv = progress; # added 2015-09-06 + debian_devscripts = debian-devscripts; # added 2016-03-23 + dwarf_fortress = dwarf-fortress; # added 2016-01-23 + dwbWrapper = dwb; # added 2015-01 + enblendenfuse = enblend-enfuse; # 2015-09-30 + exfat-utils = exfat; # 2015-09-11 + firefox-esr-wrapper = firefox-esr; # 2016-01 + firefox-wrapper = firefox; # 2016-01 + firefoxWrapper = firefox; # 2015-09 + fuse_exfat = exfat; # 2015-09-11 + gettextWithExpat = gettext; # 2016-02-19 + grantlee5 = qt5.grantlee; # added 2015-12-19 + gupnptools = gupnp-tools; # added 2015-12-19 + htmlTidy = html-tidy; # added 2014-12-06 + inherit (haskell.compiler) jhc uhc; # 2015-05-15 + inotifyTools = inotify-tools; + joseki = apache-jena-fuseki; # added 2016-02-28 + jquery_ui = jquery-ui; # added 2014-09-07 + libdbusmenu_qt5 = qt5.libdbusmenu; # added 2015-12-19 + libtidy = html-tidy; # added 2014-12-21 + links = links2; # added 2016-01-31 + lttngTools = lttng-tools; # added 2014-07-31 + lttngUst = lttng-ust; # added 2014-07-31 + manpages = man-pages; # added 2015-12-06 + midoriWrapper = midori; # added 2015-01 + mlt-qt5 = qt5.mlt; # added 2015-12-19 + mssys = ms-sys; # added 2015-12-13 + multipath_tools = multipath-tools; # added 2016-01-21 + mupen64plus1_5 = mupen64plus; # added 2016-02-12 + nfsUtils = nfs-utils; # added 2014-12-06 + phonon_qt5 = qt5.phonon; # added 2015-12-19 + phonon_qt5_backend_gstreamer = qt5.phonon-backend-gstreamer; # added 2015-12-19 + pidginlatexSF = pidginlatex; # added 2014-11-02 + poppler_qt5 = qt5.poppler; # added 2015-12-19 + qca-qt5 = qt5.qca-qt5; # added 2015-12-19 + qtcreator = qt5.qtcreator; # added 2015-12-19 + quake3game = ioquake3; # added 2016-01-14 + quassel_kf5 = kde5.quassel; # added 2015-09-30 + quassel_qt5 = kde5.quassel_qt5; # added 2015-09-30 + quasselClient_kf5 = kde5.quasselClient; # added 2015-09-30 + quasselClient_qt5 = kde5.quasselClient_qt5; # added 2015-09-30 + quasselDaemon_qt5 = kde5.quasselDaemon; # added 2015-09-30 + qwt6 = qt5.qwt; # added 2015-12-19 + rdiff_backup = rdiff-backup; # added 2014-11-23 + rekonqWrapper = rekonq; # added 2015-01 + rssglx = rss-glx; #added 2015-03-25 + rubygems = throw "deprecated 2016-03-02: rubygems is now bundled with ruby"; + rxvt_unicode_with-plugins = rxvt_unicode-with-plugins; # added 2015-04-02 + samsungUnifiedLinuxDriver = samsung-unified-linux-driver; # added 2016-01-25 + saneBackends = sane-backends; # added 2016-01-02 + saneBackendsGit = sane-backends-git; # added 2016-01-02 + saneFrontends = sane-frontends; # added 2016-01-02 + scim = sc-im; # added 2016-01-22 + signon = qt5.signon; # added 2015-12-19 + speedtest_cli = speedtest-cli; # added 2015-02-17 + sqliteInteractive = sqlite-interactive; # added 2014-12-06 + system_config_printer = system-config-printer; # added 2016-01-03 + telepathy_qt5 = qt5.telepathy; # added 2015-12-19 + tftp_hpa = tftp-hpa; # added 2015-04-03 + vimbWrapper = vimb; # added 2015-01 + vimprobable2Wrapper = vimprobable2; # added 2015-01 + virtviewer = virt-viewer; # added 2015-12-24 + vorbisTools = vorbis-tools; # added 2016-01-26 + x11 = xlibsWrapper; # added 2015-09 + xf86_video_nouveau = xorg.xf86videonouveau; # added 2015-09 + xlibs = xorg; # added 2015-09 + youtubeDL = youtube-dl; # added 2014-10-26 +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 133325e6209..e726acd2da6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1,133 +1,16 @@ -/* This file composes the Nix Packages collection. That is, it - imports the functions that build the various packages, and calls - them with appropriate arguments. The result is a set of all the - packages in the Nix Packages collection for some particular - platform. */ +{ system, bootStdenv, noSysDirs, gccWithCC, gccWithProfiling +, config, crossSystem, platform, lib +, pkgsWithOverrides +, ... }: +self: pkgs: - -{ # The system (e.g., `i686-linux') for which to build the packages. - system ? builtins.currentSystem - -, # The standard environment to use. Only used for bootstrapping. If - # null, the default standard environment is used. - bootStdenv ? null - -, # Non-GNU/Linux OSes are currently "impure" platforms, with their libc - # outside of the store. Thus, GCC, GFortran, & co. must always look for - # files in standard system directories (/usr/include, etc.) - noSysDirs ? (system != "x86_64-freebsd" && system != "i686-freebsd" - && system != "x86_64-solaris" - && system != "x86_64-kfreebsd-gnu") - - # More flags for the bootstrapping of stdenv. -, gccWithCC ? true -, gccWithProfiling ? true - -, # Allow a configuration attribute set to be passed in as an - # argument. Otherwise, it's read from $NIXPKGS_CONFIG or - # ~/.nixpkgs/config.nix. - config ? null - -, crossSystem ? null -, platform ? null -}: - - -let config_ = config; platform_ = platform; in # rename the function arguments +with pkgs; let + defaultScope = pkgs // pkgs.xorg; +in - lib = import ../../lib; - - # The contents of the configuration file found at $NIXPKGS_CONFIG or - # $HOME/.nixpkgs/config.nix. - # for NIXOS (nixos-rebuild): use nixpkgs.config option - config = - let - toPath = builtins.toPath; - getEnv = x: if builtins ? getEnv then builtins.getEnv x else ""; - pathExists = name: - builtins ? pathExists && builtins.pathExists (toPath name); - - configFile = getEnv "NIXPKGS_CONFIG"; - homeDir = getEnv "HOME"; - configFile2 = homeDir + "/.nixpkgs/config.nix"; - - configExpr = - if config_ != null then config_ - else if configFile != "" && pathExists configFile then import (toPath configFile) - else if homeDir != "" && pathExists configFile2 then import (toPath configFile2) - else {}; - - in - # allow both: - # { /* the config */ } and - # { pkgs, ... } : { /* the config */ } - if builtins.isFunction configExpr - then configExpr { inherit pkgs; } - else configExpr; - - # Allow setting the platform in the config file. Otherwise, let's use a reasonable default (pc) - - platformAuto = let - platforms = (import ./platforms.nix); - in - if system == "armv6l-linux" then platforms.raspberrypi - else if system == "armv7l-linux" then platforms.armv7l-hf-multiplatform - else if system == "armv5tel-linux" then platforms.sheevaplug - else if system == "mips64el-linux" then platforms.fuloong2f_n32 - else if system == "x86_64-linux" then platforms.pc64 - else if system == "i686-linux" then platforms.pc32 - else platforms.pcBase; - - platform = if platform_ != null then platform_ - else config.platform or platformAuto; - - # Helper functions that are exported through `pkgs'. - helperFunctions = - stdenvAdapters // - (import ../build-support/trivial-builders.nix { inherit lib; inherit (pkgs) stdenv; inherit (pkgs.xorg) lndir; }); - - stdenvAdapters = - import ../stdenv/adapters.nix pkgs; - - - # Allow packages to be overriden globally via the `packageOverrides' - # configuration option, which must be a function that takes `pkgs' - # as an argument and returns a set of new or overriden packages. - # The `packageOverrides' function is called with the *original* - # (un-overriden) set of packages, allowing packageOverrides - # attributes to refer to the original attributes (e.g. "foo = - # ... pkgs.foo ..."). - pkgs = applyGlobalOverrides (config.packageOverrides or (pkgs: {})); - - mkOverrides = pkgsOrig: overrides: overrides // - (lib.optionalAttrs (pkgsOrig.stdenv ? overrides && crossSystem == null) (pkgsOrig.stdenv.overrides pkgsOrig)); - - # Return the complete set of packages, after applying the overrides - # returned by the `overrider' function (see above). Warning: this - # function is very expensive! - applyGlobalOverrides = overrider: - let - # Call the overrider function. We don't want stdenv overrides - # in the case of cross-building, or otherwise the basic - # overrided packages will not be built with the crossStdenv - # adapter. - overrides = mkOverrides pkgsOrig (overrider pkgsOrig); - - # The un-overriden packages, passed to `overrider'. - pkgsOrig = pkgsFun pkgs {}; - - # The overriden, final packages. - pkgs = pkgsFun pkgs overrides; - in pkgs; - - - # The package compositions. Yes, this isn't properly indented. - pkgsFun = pkgs: overrides: - with helperFunctions; - let defaultScope = pkgs // pkgs.xorg; self = self_ // overrides; - self_ = with self; helperFunctions // { +{ # Make some arguments passed to all-packages.nix available inherit system platform; @@ -157,33 +40,41 @@ let # # The result is `pkgs' where all the derivations depending on `foo' # will use the new version. - overridePackages = f: - let - newpkgs = pkgsFun newpkgs overrides; - overrides = mkOverrides pkgs (f newpkgs pkgs); - in newpkgs; + overridePackages = f: pkgsWithOverrides f; # Override system. This is useful to build i686 packages on x86_64-linux. - forceSystem = system: kernel: (import ./all-packages.nix) { + forceSystem = system: kernel: (import ./../..) { inherit system; platform = platform // { kernelArch = kernel; }; inherit bootStdenv noSysDirs gccWithCC gccWithProfiling config crossSystem; }; - # Used by wine, firefox with debugging version of Flash, ... pkgsi686Linux = forceSystem "i686-linux" "i386"; callPackage_i686 = lib.callPackageWith (pkgsi686Linux // pkgsi686Linux.xorg); + forceNativeDrv = drv : if crossSystem == null then drv else + (drv // { crossDrv = drv.nativeDrv; }); + + stdenvCross = lowPrio (makeStdenvCross defaultStdenv crossSystem binutilsCross gccCrossStageFinal); + + # A stdenv capable of building 32-bit binaries. On x86_64-linux, + # it uses GCC compiled with multilib support; on i686-linux, it's + # just the plain stdenv. + stdenv_32bit = lowPrio ( + if system == "x86_64-linux" then + overrideCC stdenv gcc_multi + else + stdenv); # For convenience, allow callers to get the path to Nixpkgs. path = ../..; ### Helper functions. - inherit lib config stdenvAdapters; + inherit lib config; inherit (lib) lowPrio hiPrio appendToName makeOverridable; inherit (misc) versionedDerivation; @@ -206,49 +97,6 @@ let nixpkgs-lint = callPackage ../../maintainers/scripts/nixpkgs-lint.nix { }; - ### STANDARD ENVIRONMENT - - - allStdenvs = import ../stdenv { - inherit system platform config lib; - allPackages = args: import ./all-packages.nix ({ inherit config system; } // args); - }; - - defaultStdenv = allStdenvs.stdenv // { inherit platform; }; - - stdenvCross = lowPrio (makeStdenvCross defaultStdenv crossSystem binutilsCross gccCrossStageFinal); - - stdenv = - if bootStdenv != null then (bootStdenv // {inherit platform;}) else - if crossSystem != null then - stdenvCross - else - let - changer = config.replaceStdenv or null; - in if changer != null then - changer { - # We import again all-packages to avoid recursivities. - pkgs = import ./all-packages.nix { - # We remove packageOverrides to avoid recursivities - config = removeAttrs config [ "replaceStdenv" ]; - }; - } - else - defaultStdenv; - - forceNativeDrv = drv : if crossSystem == null then drv else - (drv // { crossDrv = drv.nativeDrv; }); - - # A stdenv capable of building 32-bit binaries. On x86_64-linux, - # it uses GCC compiled with multilib support; on i686-linux, it's - # just the plain stdenv. - stdenv_32bit = lowPrio ( - if system == "x86_64-linux" then - overrideCC stdenv gcc_multi - else - stdenv); - - ### BUILD SUPPORT attrSetToDir = arg: callPackage ../build-support/upstream-updater/attrset-to-dir.nix { @@ -303,9 +151,7 @@ let dotnetfx = dotnetfx40; }; - dotnetbuildhelpers = callPackage ../build-support/dotnetbuildhelpers { - inherit helperFunctions; - }; + dotnetbuildhelpers = callPackage ../build-support/dotnetbuildhelpers { }; dispad = callPackage ../tools/X11/dispad { }; @@ -540,6 +386,8 @@ let analog = callPackage ../tools/admin/analog {}; + ansifilter = callPackage ../tools/text/ansifilter {}; + apktool = callPackage ../development/tools/apktool { buildTools = androidenv.buildTools; }; @@ -631,8 +479,6 @@ let lastpass-cli = callPackage ../tools/security/lastpass-cli { }; - otool = callPackage ../os-specific/darwin/otool { }; - pass = callPackage ../tools/security/pass { }; oracle-instantclient = callPackage ../development/libraries/oracle-instantclient { }; @@ -678,6 +524,8 @@ let aws_mturk_clt = callPackage ../tools/misc/aws-mturk-clt { }; + awstats = callPackage ../tools/system/awstats { }; + axel = callPackage ../tools/networking/axel { }; azureus = callPackage ../tools/networking/p2p/azureus { }; @@ -768,6 +616,9 @@ let bsod = callPackage ../misc/emulators/bsod { }; btrfs-progs = callPackage ../tools/filesystems/btrfs-progs { }; + btrfs-progs_4_4_1 = callPackage ../tools/filesystems/btrfs-progs/4.4.1.nix { }; + + btrbk = callPackage ../tools/backup/btrbk { }; bwm_ng = callPackage ../tools/networking/bwm-ng { }; @@ -872,6 +723,8 @@ let dlx = callPackage ../misc/emulators/dlx { }; + dosage = pythonPackages.dosage; + dpic = callPackage ../tools/graphics/dpic { }; dragon-drop = callPackage ../tools/X11/dragon-drop { @@ -906,6 +759,8 @@ let gencfsm = callPackage ../tools/security/gencfsm { }; + genromfs = callPackage ../tools/filesystems/genromfs { }; + gist = callPackage ../tools/text/gist { }; gmic = callPackage ../tools/graphics/gmic { }; @@ -1009,8 +864,6 @@ let asynk = callPackage ../tools/networking/asynk { }; - b2 = callPackage ../tools/backup/b2 { }; - bacula = callPackage ../tools/backup/bacula { }; bareos = callPackage ../tools/backup/bareos { }; @@ -1066,6 +919,10 @@ let burp = callPackage ../tools/backup/burp { }; + buku = callPackage ../applications/misc/buku { + pythonPackages = python3Packages; + }; + byzanz = callPackage ../applications/video/byzanz {}; ori = callPackage ../tools/backup/ori { }; @@ -1099,7 +956,7 @@ let cdrkit = callPackage ../tools/cd-dvd/cdrkit { }; libceph = ceph.lib; - ceph = callPackage ../tools/filesystems/ceph { }; + ceph = callPackage ../tools/filesystems/ceph { boost = boost159; }; ceph-dev = ceph; #ceph-dev = lowPrio (callPackage ../tools/filesystems/ceph/dev.nix { }); @@ -1192,7 +1049,7 @@ let ibus-qt = callPackage ../tools/inputmethods/ibus/ibus-qt.nix { }; - ibus-engines = { + ibus-engines = recurseIntoAttrs { anthy = callPackage ../tools/inputmethods/ibus-engines/ibus-anthy { inherit (python3Packages) pygobject3; @@ -1228,6 +1085,10 @@ let brotli = callPackage ../tools/compression/brotli { }; + brotliUnstable = callPackage ../tools/compression/brotli/unstable.nix { }; + + libbrotli = callPackage ../development/libraries/libbrotli { }; + biosdevname = callPackage ../tools/networking/biosdevname { }; checkbashism = callPackage ../development/tools/misc/checkbashisms { }; @@ -1334,7 +1195,7 @@ let dcfldd = callPackage ../tools/system/dcfldd { }; - debian_devscripts = callPackage ../tools/misc/debian-devscripts { + debian-devscripts = callPackage ../tools/misc/debian-devscripts { inherit (perlPackages) CryptSSLeay LWP TimeDate DBFile FileDesktopEntry; }; @@ -1386,6 +1247,8 @@ let di = callPackage ../tools/system/di { }; + diction = callPackage ../tools/text/diction { }; + diffoscope = callPackage ../tools/misc/diffoscope { jdk = jdk7; pythonPackages = python3Packages; @@ -1549,7 +1412,7 @@ let fcitx = callPackage ../tools/inputmethods/fcitx { }; - fcitx-engines = { + fcitx-engines = recurseIntoAttrs { anthy = callPackage ../tools/inputmethods/fcitx-engines/fcitx-anthy { }; @@ -1650,6 +1513,8 @@ let fping = callPackage ../tools/networking/fping {}; + fpm = callPackage ../tools/package-management/fpm { }; + fprot = callPackage ../tools/security/fprot { }; fprintd = callPackage ../tools/security/fprintd { }; @@ -1776,17 +1641,11 @@ let gnupatch = callPackage ../tools/text/gnupatch { }; gnupg1orig = callPackage ../tools/security/gnupg/1.nix { }; - gnupg1compat = callPackage ../tools/security/gnupg/1compat.nix { }; - - # use config.packageOverrides if you prefer original gnupg1 - gnupg1 = gnupg1compat; - + gnupg1 = gnupg1compat; # use config.packageOverrides if you prefer original gnupg1 gnupg20 = callPackage ../tools/security/gnupg/20.nix { }; - - gnupg21 = lowPrio (callPackage ../tools/security/gnupg/21.nix { }); - - gnupg = gnupg20; + gnupg21 = callPackage ../tools/security/gnupg/21.nix { }; + gnupg = gnupg21; gnuplot = callPackage ../tools/graphics/gnuplot { qt = qt4; }; @@ -1807,6 +1666,10 @@ let go-pup = goPackages.pup.bin // { outputs = [ "bin" ]; }; + go-sct = goPackages.go-sct.bin // { outputs = [ "bin" ]; }; + + go-upower-notify = goPackages.upower-notify.bin // { outputs = [ "bin" ]; }; + googleAuthenticator = callPackage ../os-specific/linux/google-authenticator { }; google-cloud-sdk = callPackage ../tools/admin/google-cloud-sdk { }; @@ -2031,6 +1894,8 @@ let darkice = callPackage ../tools/audio/darkice { }; + deco = callPackage ../applications/misc/deco { }; + icoutils = callPackage ../tools/graphics/icoutils { }; idutils = callPackage ../tools/misc/idutils { }; @@ -2130,7 +1995,9 @@ let jpegoptim = callPackage ../applications/graphics/jpegoptim { }; - jq = callPackage ../development/tools/jq {}; + jq = callPackage ../development/tools/jq { }; + + jo = callPackage ../development/tools/jo { }; jscoverage = callPackage ../development/tools/misc/jscoverage { }; @@ -2414,6 +2281,8 @@ let mednafen-server = callPackage ../misc/emulators/mednafen/server.nix { }; + mednaffe = callPackage ../misc/emulators/mednaffe/default.nix { }; + megacli = callPackage ../tools/misc/megacli { }; megatools = callPackage ../tools/networking/megatools { }; @@ -2424,6 +2293,8 @@ let mgba = qt5.callPackage ../misc/emulators/mgba { }; + mimeo = callPackage ../tools/misc/mimeo { }; + minissdpd = callPackage ../tools/networking/minissdpd { }; miniupnpc = callPackage ../tools/networking/miniupnpc { }; @@ -2521,6 +2392,8 @@ let netcdfcxx4 = callPackage ../development/libraries/netcdf-cxx4 { }; + netcdffortran = callPackage ../development/libraries/netcdf-fortran { }; + nco = callPackage ../development/libraries/nco { }; nc6 = callPackage ../tools/networking/nc6 { }; @@ -2627,6 +2500,8 @@ let # ntfsprogs are merged into ntfs-3g ntfsprogs = pkgs.ntfs3g; + ntfy = pythonPackages.ntfy; + ntopng = callPackage ../tools/networking/ntopng { }; ntp = callPackage ../tools/networking/ntp { @@ -2673,6 +2548,8 @@ let inherit (pythonPackages) sqlite3; }; + oh-my-zsh = callPackage ../shells/oh-my-zsh { }; + opencryptoki = callPackage ../tools/security/opencryptoki { }; opendbx = callPackage ../development/libraries/opendbx { }; @@ -2755,7 +2632,8 @@ let owncloud70 owncloud80 owncloud81 - owncloud82; + owncloud82 + owncloud90; owncloudclient = callPackage ../applications/networking/owncloud-client { }; @@ -2993,6 +2871,8 @@ let pydb = callPackage ../development/tools/pydb { }; + pygmentex = callPackage ../tools/typesetting/pygmentex { }; + pystringtemplate = callPackage ../development/python-modules/stringtemplate { }; pythonDBus = dbus_python; @@ -3131,6 +3011,8 @@ let rosegarden = callPackage ../applications/audio/rosegarden { }; + rowhammer-test = callPackage ../tools/system/rowhammer-test { }; + rpPPPoE = callPackage ../tools/networking/rp-pppoe { }; rpm = callPackage ../tools/package-management/rpm { }; @@ -3157,6 +3039,8 @@ let s3cmd = callPackage ../tools/networking/s3cmd { }; + s3gof3r = goPackages.s3gof3r.bin // { outputs = [ "bin" ]; }; + s6Dns = callPackage ../tools/networking/s6-dns { }; s6LinuxUtils = callPackage ../os-specific/linux/s6-linux-utils { }; @@ -3284,10 +3168,6 @@ let sqliteman = callPackage ../applications/misc/sqliteman { }; - stardict = callPackage ../applications/misc/stardict/stardict.nix { - inherit (gnome) libgnomeui scrollkeeper; - }; - stdman = callPackage ../data/documentation/stdman { }; storebrowse = callPackage ../tools/system/storebrowse { }; @@ -3404,6 +3284,8 @@ let talkfilters = callPackage ../misc/talkfilters {}; + znapzend = callPackage ../tools/backup/znapzend { }; + tarsnap = callPackage ../tools/backup/tarsnap { }; tcpcrypt = callPackage ../tools/security/tcpcrypt { }; @@ -3535,6 +3417,8 @@ let ufraw = callPackage ../applications/graphics/ufraw { }; + uget = callPackage ../tools/networking/uget { }; + umlet = callPackage ../tools/misc/umlet { }; unetbootin = callPackage ../tools/cd-dvd/unetbootin { }; @@ -3633,6 +3517,8 @@ let python = python2; }; + xautoclick = callPackage ../applications/misc/xautoclick {}; + xl2tpd = callPackage ../tools/networking/xl2tpd { }; xe = callPackage ../tools/system/xe { }; @@ -3818,7 +3704,7 @@ let # load into the Ben Nanonote gccCross = let - pkgsCross = (import ./all-packages.nix) { + pkgsCross = (import ./../..) { inherit system; inherit bootStdenv noSysDirs gccWithCC gccWithProfiling config; # Ben Nanonote system @@ -3871,6 +3757,8 @@ let xmpppy = pythonPackages.xmpppy; + xiccd = callPackage ../tools/misc/xiccd { }; + xorriso = callPackage ../tools/cd-dvd/xorriso { }; xpf = callPackage ../tools/text/xml/xpf { @@ -3893,6 +3781,8 @@ let yaml-merge = callPackage ../tools/text/yaml-merge { }; + yeshup = callPackage ../tools/system/yeshup { }; + # To expose more packages for Yi, override the extraPackages arg. yi = callPackage ../applications/editors/yi/wrapper.nix { }; @@ -4009,6 +3899,10 @@ let stdenv = overrideCC stdenv gcc49; }; + boo = callPackage ../development/compilers/boo { + inherit (gnome) gtksourceview; + }; + colm = callPackage ../development/compilers/colm { }; fetchegg = callPackage ../build-support/fetchegg { }; @@ -4027,6 +3921,7 @@ let clang = llvmPackages.clang; + clang_38 = llvmPackages_38.clang; clang_37 = llvmPackages_37.clang; clang_36 = llvmPackages_36.clang; clang_35 = wrapCC llvmPackages_35.clang; @@ -4505,6 +4400,7 @@ let julia = callPackage ../development/compilers/julia { gmp = gmp6; openblas = openblasCompat; + inherit (darwin.apple_sdk.frameworks) CoreServices ApplicationServices; }; julia-git = lowPrio (callPackage ../development/compilers/julia/git.nix { @@ -4523,6 +4419,7 @@ let llvm = llvmPackages.llvm; + llvm_38 = llvmPackages_38.llvm; llvm_37 = llvmPackages_37.llvm; llvm_36 = llvmPackages_36.llvm; llvm_35 = llvmPackages_35.llvm; @@ -4550,6 +4447,10 @@ let inherit (stdenvAdapters) overrideCC; }; + llvmPackages_38 = callPackage ../development/compilers/llvm/3.8 { + inherit (stdenvAdapters) overrideCC; + }; + manticore = callPackage ../development/compilers/manticore { }; mentorToolchains = recurseIntoAttrs ( @@ -5093,6 +4994,8 @@ let ocaml = ocaml_3_08_0; }; + rgbds = callPackage ../development/compilers/rgbds { }; + rtags = callPackage ../development/tools/rtags/default.nix {}; rustcMaster = callPackage ../development/compilers/rustc/head.nix {}; @@ -5140,7 +5043,7 @@ let scala_2_11 = callPackage ../development/compilers/scala { }; scala = scala_2_11; - sdcc = callPackage ../development/compilers/sdcc { }; + sdcc = callPackage ../development/compilers/sdcc { boost = boost159; }; smlnjBootstrap = callPackage ../development/compilers/smlnj/bootstrap.nix { }; smlnj = if stdenv.isDarwin @@ -5211,6 +5114,8 @@ let win32hello = callPackage ../development/compilers/visual-c++/test { }; + wla-dx = callPackage ../development/compilers/wla-dx { }; + wrapCCWith = ccWrapper: libc: extraBuildCommands: baseCC: ccWrapper { nativeTools = stdenv.cc.nativeTools or false; nativeLibc = stdenv.cc.nativeLibc or false; @@ -5276,7 +5181,6 @@ let clooj = callPackage ../development/interpreters/clojure/clooj.nix { }; erlangR14 = callPackage ../development/interpreters/erlang/R14.nix { }; - erlangR15 = callPackage ../development/interpreters/erlang/R15.nix { }; erlangR16 = callPackage ../development/interpreters/erlang/R16.nix { }; erlangR16_odbc = callPackage ../development/interpreters/erlang/R16.nix { odbcSupport = true; }; erlangR17 = callPackage ../development/interpreters/erlang/R17.nix { }; @@ -5310,6 +5214,7 @@ let fetchHex = callPackage ../development/tools/build-managers/rebar3/fetch-hex.nix { }; erlangPackages = callPackage ../development/erlang-modules { }; + cuter = erlangPackages.callPackage ../development/tools/erlang/cuter { }; hex2nix = erlangPackages.callPackage ../development/tools/erlang/hex2nix { }; elixir = callPackage ../development/interpreters/elixir { }; @@ -5403,9 +5308,9 @@ let mujs = callPackage ../development/interpreters/mujs { }; nix-exec = callPackage ../development/interpreters/nix-exec { - git = gitMinimal; - nix = nixUnstable; + + git = gitMinimal; }; octave = callPackage ../development/interpreters/octave { @@ -5540,14 +5445,11 @@ let pixie = callPackage ../development/interpreters/pixie { }; dust = callPackage ../development/interpreters/pixie/dust.nix { }; - bundix = callPackage ../development/interpreters/ruby/bundix { - ruby = ruby_2_1; - }; - bundler = callPackage ../development/interpreters/ruby/bundler.nix { }; - bundler_HEAD = bundler; - defaultGemConfig = callPackage ../development/interpreters/ruby/gemconfig/default.nix { }; - buildRubyGem = callPackage ../development/interpreters/ruby/build-ruby-gem { }; - bundlerEnv = callPackage ../development/interpreters/ruby/bundler-env { }; + buildRubyGem = callPackage ../development/ruby-modules/gem { }; + defaultGemConfig = callPackage ../development/ruby-modules/gem-config { }; + bundix = callPackage ../development/ruby-modules/bundix { }; + bundler = callPackage ../development/ruby-modules/bundler { }; + bundlerEnv = callPackage ../development/ruby-modules/bundler-env { }; inherit (callPackage ../development/interpreters/ruby {}) ruby_1_9_3 @@ -5564,10 +5466,6 @@ let ruby_2_2 = ruby_2_2_3; ruby_2_3 = ruby_2_3_0; - rubygems = hiPrio (callPackage ../development/interpreters/ruby/rubygems.nix {}); - - rq = callPackage ../applications/networking/cluster/rq { }; - scsh = callPackage ../development/interpreters/scsh { }; scheme48 = callPackage ../development/interpreters/scheme48 { }; @@ -5960,6 +5858,8 @@ let findbugs = callPackage ../development/tools/analysis/findbugs { }; + foreman = callPackage ../tools/system/foreman { }; + flow = callPackage ../development/tools/analysis/flow { inherit (darwin.apple_sdk.frameworks) CoreServices; inherit (darwin) cf-private; @@ -6267,6 +6167,8 @@ let strace = callPackage ../development/tools/misc/strace { }; + swarm = callPackage ../development/tools/analysis/swarm { }; + swig1 = callPackage ../development/tools/misc/swig { }; swig2 = callPackage ../development/tools/misc/swig/2.x.nix { }; swig3 = callPackage ../development/tools/misc/swig/3.x.nix { }; @@ -6292,9 +6194,9 @@ let texi2html = callPackage ../development/tools/misc/texi2html { }; - uhd = callPackage ../development/tools/misc/uhd { - boost = boost155; - }; + tweak = callPackage ../applications/editors/tweak { }; + + uhd = callPackage ../development/tools/misc/uhd { }; uisp = callPackage ../development/tools/misc/uisp { }; @@ -6320,6 +6222,14 @@ let valkyrie = callPackage ../development/tools/analysis/valkyrie { }; + verasco = callPackage ../development/tools/analysis/verasco (( + if system == "x86_64-linux" + then { tools = pkgsi686Linux.stdenv.cc; } + else {} + ) // { + ocamlPackages = ocamlPackages_4_02; + }); + xc3sprog = callPackage ../development/tools/misc/xc3sprog { }; xmlindent = callPackage ../development/web/xmlindent {}; @@ -6429,7 +6339,8 @@ let boost155 = callPackage ../development/libraries/boost/1.55.nix { }; boost159 = callPackage ../development/libraries/boost/1.59.nix { }; - boost = boost159; + boost160 = callPackage ../development/libraries/boost/1.60.nix { }; + boost = boost160; boost_process = callPackage ../development/libraries/boost-process { }; @@ -6586,6 +6497,12 @@ let dbus_java = callPackage ../development/libraries/java/dbus-java { }; dbus_python = pythonPackages.dbus; + dbus-sharp-1_0 = callPackage ../development/libraries/dbus-sharp/dbus-sharp-1.0.nix { }; + dbus-sharp-2_0 = callPackage ../development/libraries/dbus-sharp { }; + + dbus-sharp-glib-1_0 = callPackage ../development/libraries/dbus-sharp-glib/dbus-sharp-glib-1.0.nix { }; + dbus-sharp-glib-2_0 = callPackage ../development/libraries/dbus-sharp-glib { }; + # Should we deprecate these? Currently there are many references. dbus_tools = pkgs.dbus.tools; dbus_libs = pkgs.dbus.libs; @@ -6799,7 +6716,13 @@ let giblib = callPackage ../development/libraries/giblib { }; - libgit2 = callPackage ../development/libraries/git2 { }; + gio-sharp = callPackage ../development/libraries/gio-sharp { }; + + libgit2 = callPackage ../development/libraries/git2 ( + stdenv.lib.optionalAttrs stdenv.isDarwin { + inherit (darwin) libiconv; + } + ); libgit2_0_21 = callPackage ../development/libraries/git2/0.21.nix { }; @@ -6874,6 +6797,7 @@ let gobjectIntrospection = callPackage ../development/libraries/gobject-introspection { nixStoreDir = config.nix.storeDir or builtins.storeDir; + inherit (darwin) cctools; }; goocanvas = callPackage ../development/libraries/goocanvas { }; @@ -7009,6 +6933,8 @@ let pangox_compat = callPackage ../development/libraries/pangox-compat { }; + gdata-sharp = callPackage ../development/libraries/gdata-sharp { }; + gdk_pixbuf = callPackage ../development/libraries/gdk-pixbuf { }; gnome-sharp = callPackage ../development/libraries/gnome-sharp {}; @@ -7030,12 +6956,22 @@ let gtksharp = gtk-sharp; }; - gtk-sharp = callPackage ../development/libraries/gtk-sharp-2 { + gtk-sharp-2_0 = callPackage ../development/libraries/gtk-sharp/2.0.nix { inherit (gnome) libglade libgtkhtml gtkhtml libgnomecanvas libgnomeui libgnomeprint libgnomeprintui GConf gnomepanel; }; + gtk-sharp-3_0 = callPackage ../development/libraries/gtk-sharp/3.0.nix { + inherit (gnome) libglade libgtkhtml gtkhtml + libgnomecanvas libgnomeui libgnomeprint + libgnomeprintui GConf gnomepanel; + }; + + gtk-sharp = gtk-sharp-2_0; + + gtk-sharp-beans = callPackage ../development/libraries/gtk-sharp-beans { }; + gtkspell = callPackage ../development/libraries/gtkspell { }; gtkspell3 = callPackage ../development/libraries/gtkspell/3.nix { }; @@ -7264,7 +7200,7 @@ let libav = libav_11; # branch 11 is API-compatible with branch 10 libav_all = callPackage ../development/libraries/libav { }; - inherit (libav_all) libav_0_8 libav_9 libav_11; + inherit (libav_all) libav_0_8 libav_11; libavc1394 = callPackage ../development/libraries/libavc1394 { }; @@ -7336,6 +7272,8 @@ let libcangjie = callPackage ../development/libraries/libcangjie { }; + libcollectdclient = callPackage ../development/libraries/libcollectdclient { }; + libcredis = callPackage ../development/libraries/libcredis { }; libctemplate = callPackage ../development/libraries/libctemplate { }; @@ -7530,6 +7468,7 @@ let libgpod = callPackage ../development/libraries/libgpod { inherit (pkgs.pythonPackages) mutagen; + monoSupport = false; }; libgsystem = callPackage ../development/libraries/libgsystem { }; @@ -7692,6 +7631,8 @@ let libmatchbox = callPackage ../development/libraries/libmatchbox { }; + libmatheval = callPackage ../development/libraries/libmatheval { }; + libmatthew_java = callPackage ../development/libraries/java/libmatthew-java { }; libmatroska = callPackage ../development/libraries/libmatroska { }; @@ -7792,8 +7733,6 @@ let libotr = callPackage ../development/libraries/libotr { }; - libotr_3_2 = callPackage ../development/libraries/libotr/3.2.nix { }; - libp11 = callPackage ../development/libraries/libp11 { }; libpar2 = callPackage ../development/libraries/libpar2 { }; @@ -8140,15 +8079,16 @@ let mkvtoolnix-cli = mkvtoolnix.override { withGUI = false; - qt5 = null; - legacyGUI = false; - wxGTK = null; }; mlt-qt4 = callPackage ../development/libraries/mlt { qt = qt4; }; + mono-addins = callPackage ../development/libraries/mono-addins { }; + + mono-zeroconf = callPackage ../development/libraries/mono-zeroconf { }; + movit = callPackage ../development/libraries/movit { }; mosquitto = callPackage ../servers/mqtt/mosquitto { }; @@ -8191,6 +8131,8 @@ let nanomsg = callPackage ../development/libraries/nanomsg { }; + notify-sharp = callPackage ../development/libraries/notify-sharp { }; + ncurses = callPackage ../development/libraries/ncurses { }; neardal = callPackage ../development/libraries/neardal { }; @@ -8335,7 +8277,9 @@ let }; }; - opensubdiv = callPackage ../development/libraries/opensubdiv { }; + opensubdiv = callPackage ../development/libraries/opensubdiv { + cudatoolkit = cudatoolkit75; + }; openwsman = callPackage ../development/libraries/openwsman {}; @@ -8798,6 +8742,8 @@ let taglib_extras = callPackage ../development/libraries/taglib-extras { }; + taglib-sharp = callPackage ../development/libraries/taglib-sharp { }; + talloc = callPackage ../development/libraries/talloc { python = python2; }; @@ -9429,7 +9375,8 @@ let }; apacheHttpd_2_4 = lowPrio (callPackage ../servers/http/apache-httpd/2.4.nix { - sslSupport = true; + # 1.0.2+ for ALPN support + openssl = openssl_1_0_2; }); apacheHttpdPackagesFor = apacheHttpd: self: let callPackage = newScope self; in { @@ -9513,16 +9460,8 @@ let dnschain = callPackage ../servers/dnschain { }; - dovecot = dovecot22; - - dovecot21 = callPackage ../servers/mail/dovecot { }; - - dovecot22 = callPackage ../servers/mail/dovecot/2.2.x.nix { }; - - dovecot_pigeonhole = callPackage ../servers/mail/dovecot/plugins/pigeonhole { - dovecot = dovecot22; - }; - + dovecot = callPackage ../servers/mail/dovecot { }; + dovecot_pigeonhole = callPackage ../servers/mail/dovecot/plugins/pigeonhole { }; dovecot_antispam = callPackage ../servers/mail/dovecot/plugins/antispam { }; dspam = callPackage ../servers/mail/dspam { @@ -9561,8 +9500,12 @@ let fleet = callPackage ../servers/fleet { }; + foswiki = callPackage ../servers/foswiki { }; + freepops = callPackage ../servers/mail/freepops { }; + freeradius = callPackage ../servers/freeradius { }; + freeswitch = callPackage ../servers/sip/freeswitch { }; gatling = callPackage ../servers/http/gatling { }; @@ -9677,10 +9620,7 @@ let popa3d = callPackage ../servers/mail/popa3d { }; - postfix28 = callPackage ../servers/mail/postfix { }; - postfix211 = callPackage ../servers/mail/postfix/2.11.nix { }; - postfix30 = callPackage ../servers/mail/postfix/3.0.nix { }; - postfix = postfix30; + postfix = callPackage ../servers/mail/postfix { }; postsrsd = callPackage ../servers/mail/postsrsd { }; @@ -9722,14 +9662,14 @@ let mariadb = callPackage ../servers/sql/mariadb { inherit (darwin) cctools; inherit (pkgs.darwin.apple_sdk.frameworks) CoreServices; + boost = boost159; }; mongodb = callPackage ../servers/nosql/mongodb { sasl = cyrus_sasl; }; - riak = callPackage ../servers/nosql/riak/1.3.1.nix { }; - riak2 = callPackage ../servers/nosql/riak/2.1.1.nix { }; + riak = callPackage ../servers/nosql/riak/2.1.1.nix { }; influxdb = (callPackage ../servers/nosql/influxdb { }).bin // { outputs = [ "bin" ]; }; @@ -9739,7 +9679,10 @@ let ps = procps; /* !!! Linux only */ }; - mysql55 = callPackage ../servers/sql/mysql/5.5.x.nix { }; + mysql55 = callPackage ../servers/sql/mysql/5.5.x.nix { + inherit (darwin) cctools; + inherit (darwin.apple_sdk.frameworks) CoreServices; + }; mysql = mariadb; libmysql = mysql.lib; @@ -9912,8 +9855,7 @@ let spawn_fcgi = callPackage ../servers/http/spawn-fcgi { }; - squids = recurseIntoAttrs (callPackages ../servers/squid/squids.nix {}); - squid = squids.squid31; # has ipv6 support + squid = callPackage ../servers/squid { }; sslh = callPackage ../servers/sslh { }; @@ -10205,9 +10147,13 @@ let firejail = callPackage ../os-specific/linux/firejail {}; - freefall = callPackage ../os-specific/linux/freefall { }; + freefall = callPackage ../os-specific/linux/freefall { + inherit (linuxPackages) kernel; + }; - fuse = callPackage ../os-specific/linux/fuse { }; + fuse = callPackage ../os-specific/linux/fuse { + utillinux = utillinuxMinimal; + }; fusionio-util = callPackage ../os-specific/linux/fusionio/util.nix { }; @@ -10231,14 +10177,9 @@ let hostapd = callPackage ../os-specific/linux/hostapd { }; - htop = - if stdenv.isLinux then - callPackage ../os-specific/linux/htop { } - else if stdenv.isDarwin then - callPackage ../os-specific/darwin/htop { - inherit (darwin.apple_sdk.frameworks) IOKit; - } - else null; + htop = callPackage ../tools/system/htop { + inherit (darwin) IOKit; + }; # GNU/Hurd core packages. gnu = recurseIntoAttrs (callPackage ../os-specific/gnu { @@ -10402,6 +10343,15 @@ let ]; }; + linux_4_5 = callPackage ../os-specific/linux/kernel/linux-4.5.nix { + kernelPatches = [ kernelPatches.bridge_stp_helper ] + ++ lib.optionals ((platform.kernelArch or null) == "mips") + [ kernelPatches.mips_fpureg_emu + kernelPatches.mips_fpu_sigill + kernelPatches.mips_ext3_n32 + ]; + }; + linux_testing = callPackage ../os-specific/linux/kernel/linux-testing.nix { kernelPatches = [ kernelPatches.bridge_stp_helper ] ++ lib.optionals ((platform.kernelArch or null) == "mips") @@ -10441,30 +10391,72 @@ let to EC2, where Xen is the Hypervisor. */ + # Base kernels to apply the grsecurity patch onto + + grsecurity_base_linux_3_14 = callPackage ../os-specific/linux/kernel/linux-grsecurity-3.14.nix { + kernelPatches = [ kernelPatches.bridge_stp_helper ] + ++ lib.optionals ((platform.kernelArch or null) == "mips") + [ kernelPatches.mips_fpureg_emu + kernelPatches.mips_fpu_sigill + kernelPatches.mips_ext3_n32 + ]; + }; + + grsecurity_base_linux_4_1 = callPackage ../os-specific/linux/kernel/linux-grsecurity-4.1.nix { + kernelPatches = [ kernelPatches.bridge_stp_helper ] + ++ lib.optionals ((platform.kernelArch or null) == "mips") + [ kernelPatches.mips_fpureg_emu + kernelPatches.mips_fpu_sigill + kernelPatches.mips_ext3_n32 + ]; + }; + + grsecurity_base_linux_4_4 = callPackage ../os-specific/linux/kernel/linux-grsecurity-4.4.nix { + kernelPatches = [ kernelPatches.bridge_stp_helper ] + ++ lib.optionals ((platform.kernelArch or null) == "mips") + [ kernelPatches.mips_fpureg_emu + kernelPatches.mips_fpu_sigill + kernelPatches.mips_ext3_n32 + ]; + }; + grFlavors = import ../build-support/grsecurity/flavors.nix; - mkGrsecurity = opts: + mkGrsecurity = patch: opts: (callPackage ../build-support/grsecurity { - grsecOptions = opts; + grsecOptions = { kernelPatch = patch; } // opts; }); - grKernel = opts: (mkGrsecurity opts).grsecKernel; - grPackage = opts: recurseIntoAttrs (mkGrsecurity opts).grsecPackage; + grKernel = patch: opts: (mkGrsecurity patch opts).grsecKernel; + grPackage = patch: opts: recurseIntoAttrs (mkGrsecurity patch opts).grsecPackage; - # Stable kernels - # This is no longer supported. Please see the official announcement on the - # grsecurity page. https://grsecurity.net/announce.php - linux_grsec_stable_desktop = throw "No longer supported due to https://grsecurity.net/announce.php. " - + "Please use linux_grsec_testing_desktop."; - linux_grsec_stable_server = throw "No longer supported due to https://grsecurity.net/announce.php. " - + "Please use linux_grsec_testing_server."; - linux_grsec_stable_server_xen = throw "No longer supporteddue to https://grsecurity.net/announce.php. " - + "Please use linux_grsec_testing_server_xen."; + # grsecurity kernels (see also linuxPackages_grsec_*) - # Testing kernels - linux_grsec_testing_desktop = grKernel grFlavors.linux_grsec_testing_desktop; - linux_grsec_testing_server = grKernel grFlavors.linux_grsec_testing_server; - linux_grsec_testing_server_xen = grKernel grFlavors.linux_grsec_testing_server_xen; + linux_grsec_desktop_3_14 = grKernel kernelPatches.grsecurity_3_14 grFlavors.desktop; + linux_grsec_server_3_14 = grKernel kernelPatches.grsecurity_3_14 grFlavors.server; + linux_grsec_server_xen_3_14 = grKernel kernelPatches.grsecurity_3_14 grFlavors.server_xen; + + linux_grsec_desktop_4_1 = grKernel kernelPatches.grsecurity_4_1 grFlavors.desktop; + linux_grsec_server_4_1 = grKernel kernelPatches.grsecurity_4_1 grFlavors.server; + linux_grsec_server_xen_4_1 = grKernel kernelPatches.grsecurity_4_1 grFlavors.server_xen; + + linux_grsec_desktop_4_4 = grKernel kernelPatches.grsecurity_4_4 grFlavors.desktop; + linux_grsec_server_4_4 = grKernel kernelPatches.grsecurity_4_4 grFlavors.server; + linux_grsec_server_xen_4_4 = grKernel kernelPatches.grsecurity_4_4 grFlavors.server_xen; + + linux_grsec_desktop_latest = grKernel kernelPatches.grsecurity_latest grFlavors.desktop; + linux_grsec_server_latest = grKernel kernelPatches.grsecurity_latest grFlavors.server; + linux_grsec_server_xen_latest = grKernel kernelPatches.grsecurity_latest grFlavors.server_xen; + + # grsecurity: old names + + linux_grsec_testing_desktop = linux_grsec_desktop_latest; + linux_grsec_testing_server = linux_grsec_server_latest; + linux_grsec_testing_server_xen = linux_grsec_server_xen_latest; + + linux_grsec_stable_desktop = linux_grsec_desktop_3_14; + linux_grsec_stable_server = linux_grsec_server_3_14; + linux_grsec_stable_server_xen = linux_grsec_server_xen_3_14; /* Linux kernel modules are inherently tied to a specific kernel. So rather than provide specific instances of those packages for a @@ -10508,9 +10500,12 @@ let nvidia_x11_legacy173 = callPackage ../os-specific/linux/nvidia-x11/legacy173.nix { }; nvidia_x11_legacy304 = callPackage ../os-specific/linux/nvidia-x11/legacy304.nix { }; nvidia_x11_legacy340 = callPackage ../os-specific/linux/nvidia-x11/legacy340.nix { }; - nvidia_x11_beta = callPackage ../os-specific/linux/nvidia-x11/beta.nix { }; + nvidia_x11_beta = nvidia_x11; # latest beta is lower version ATM + # callPackage ../os-specific/linux/nvidia-x11/beta.nix { }; nvidia_x11 = callPackage ../os-specific/linux/nvidia-x11 { }; + rtl8723bs = callPackage ../os-specific/linux/rtl8723bs { }; + rtl8812au = callPackage ../os-specific/linux/rtl8812au { }; openafsClient = callPackage ../servers/openafs-client { }; @@ -10525,6 +10520,10 @@ let jool = callPackage ../os-specific/linux/jool { }; + mba6x_bl = callPackage ../os-specific/linux/mba6x_bl { }; + + mxu11x0 = callPackage ../os-specific/linux/mxu11x0 { }; + /* compiles but has to be integrated into the kernel somehow Let's have it uncommented and finish it.. */ @@ -10581,7 +10580,7 @@ let linux = linuxPackages.kernel; # Update this when adding the newest kernel major version! - linuxPackages_latest = pkgs.linuxPackages_4_4; + linuxPackages_latest = pkgs.linuxPackages_4_5; linux_latest = linuxPackages_latest.kernel; # Build the kernel modules for the some of the kernels. @@ -10595,6 +10594,7 @@ let linuxPackages_4_1 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_1 linuxPackages_4_1); linuxPackages_4_3 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_3 linuxPackages_4_3); linuxPackages_4_4 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_4 linuxPackages_4_4); + linuxPackages_4_5 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_5 linuxPackages_4_5); linuxPackages_testing = recurseIntoAttrs (linuxPackagesFor pkgs.linux_testing linuxPackages_testing); linuxPackages_custom = {version, src, configfile}: let linuxPackages_self = (linuxPackagesFor (pkgs.linuxManualConfig {inherit version src configfile; @@ -10605,16 +10605,33 @@ let # Build a kernel for Xen dom0 linuxPackages_latest_xen_dom0 = recurseIntoAttrs (linuxPackagesFor (pkgs.linux_latest.override { features.xen_dom0=true; }) linuxPackages_latest); - # grsecurity flavors - # Stable kernels - linuxPackages_grsec_stable_desktop = grPackage grFlavors.linux_grsec_stable_desktop; - linuxPackages_grsec_stable_server = grPackage grFlavors.linux_grsec_stable_server; - linuxPackages_grsec_stable_server_xen = grPackage grFlavors.linux_grsec_stable_server_xen; + # grsecurity packages - # Testing kernels - linuxPackages_grsec_testing_desktop = grPackage grFlavors.linux_grsec_testing_desktop; - linuxPackages_grsec_testing_server = grPackage grFlavors.linux_grsec_testing_server; - linuxPackages_grsec_testing_server_xen = grPackage grFlavors.linux_grsec_testing_server_xen; + linuxPackages_grsec_desktop_3_14 = grPackage kernelPatches.grsecurity_3_14 grFlavors.desktop; + linuxPackages_grsec_server_3_14 = grPackage kernelPatches.grsecurity_3_14 grFlavors.server; + linuxPackages_grsec_server_xen_3_14 = grPackage kernelPatches.grsecurity_3_14 grFlavors.server_xen; + + linuxPackages_grsec_desktop_4_1 = grPackage kernelPatches.grsecurity_4_1 grFlavors.desktop; + linuxPackages_grsec_server_4_1 = grPackage kernelPatches.grsecurity_4_1 grFlavors.server; + linuxPackages_grsec_server_xen_4_1 = grPackage kernelPatches.grsecurity_4_1 grFlavors.server_xen; + + linuxPackages_grsec_desktop_4_4 = grPackage kernelPatches.grsecurity_4_4 grFlavors.desktop; + linuxPackages_grsec_server_4_4 = grPackage kernelPatches.grsecurity_4_4 grFlavors.server; + linuxPackages_grsec_server_xen_4_4 = grPackage kernelPatches.grsecurity_4_4 grFlavors.server_xen; + + linuxPackages_grsec_desktop_latest = grPackage kernelPatches.grsecurity_latest grFlavors.desktop; + linuxPackages_grsec_server_latest = grPackage kernelPatches.grsecurity_latest grFlavors.server; + linuxPackages_grsec_server_xen_latest = grPackage kernelPatches.grsecurity_latest grFlavors.server_xen; + + # grsecurity: old names + + linuxPackages_grsec_testing_desktop = linuxPackages_grsec_desktop_latest; + linuxPackages_grsec_testing_server = linuxPackages_grsec_server_latest; + linuxPackages_grsec_testing_server_xen = linuxPackages_grsec_server_xen_latest; + + linuxPackages_grsec_stable_desktop = linuxPackages_grsec_desktop_3_14; + linuxPackages_grsec_stable_server = linuxPackages_grsec_server_3_14; + linuxPackages_grsec_stable_server_xen = linuxPackages_grsec_server_xen_3_14; # ChromiumOS kernels linuxPackages_chromiumos_3_14 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_chromiumos_3_14 linuxPackages_chromiumos_3_14); @@ -11210,6 +11227,8 @@ let mobile_broadband_provider_info = callPackage ../data/misc/mobile-broadband-provider-info { }; + montserrat = callPackage ../data/fonts/montserrat { }; + mph_2b_damase = callPackage ../data/fonts/mph-2b-damase { }; mplus-outline-fonts = callPackage ../data/fonts/mplus-outline-fonts { }; @@ -11394,6 +11413,8 @@ let stdenv = overrideCC stdenv gcc49; }; + ahoviewer = callPackage ../applications/graphics/ahoviewer { }; + alchemy = callPackage ../applications/graphics/alchemy { }; alock = callPackage ../misc/screensavers/alock { }; @@ -11503,6 +11524,11 @@ let ffmpeg = ffmpeg_1; }; + banshee = callPackage ../applications/audio/banshee { + gconf = pkgs.gnome.GConf; + libgpod = pkgs.libgpod.override { monoSupport = true; }; + }; + batik = callPackage ../applications/graphics/batik { }; batti = callPackage ../applications/misc/batti { }; @@ -11535,8 +11561,8 @@ let bleachbit = callPackage ../applications/misc/bleachbit { }; blender = callPackage ../applications/misc/blender { - cudatoolkit = cudatoolkit7; - python = python34; + cudatoolkit = cudatoolkit75; + python = python35; }; bluefish = callPackage ../applications/editors/bluefish { @@ -11580,6 +11606,10 @@ let carddav-util = callPackage ../tools/networking/carddav-util { }; + catfish = callPackage ../applications/search/catfish { + pythonPackages = python3Packages; + }; + cava = callPackage ../applications/audio/cava { }; cb2bib = callPackage ../applications/office/cb2bib { @@ -11655,7 +11685,7 @@ let pulseaudioSupport = config.pulseaudio or false; }; - communi = callPackage ../applications/networking/irc/communi { }; + communi = qt5.callPackage ../applications/networking/irc/communi { }; CompBus = callPackage ../applications/audio/CompBus { }; @@ -11780,7 +11810,10 @@ let dmtx-utils = callPackage (callPackage ../tools/graphics/dmtx-utils) { }; - docker = callPackage ../applications/virtualization/docker { go = go_1_4; }; + docker = callPackage ../applications/virtualization/docker { + btrfs-progs = btrfs-progs_4_4_1; + go = go_1_4; + }; docker-gc = callPackage ../applications/virtualization/docker/gc.nix { }; @@ -11796,6 +11829,8 @@ let dvdauthor = callPackage ../applications/video/dvdauthor { }; + dvdbackup = callPackage ../applications/video/dvdbackup { }; + dvd-slideshow = callPackage ../applications/video/dvd-slideshow { }; dwb-unwrapped = callPackage ../applications/networking/browsers/dwb { dconf = gnome3.dconf; }; @@ -11991,6 +12026,10 @@ let texinfo = texinfo4 ; texLive = texlive.combine { inherit (texlive) scheme-basic cm-super ec; }; }; + proofgeneral_HEAD = callPackage ../applications/editors/emacs-modes/proofgeneral/HEAD.nix { + texinfo = texinfo4 ; + texLive = texlive.combine { inherit (texlive) scheme-basic cm-super ec; }; + }; proofgeneral = self.proofgeneral_4_2; quack = callPackage ../applications/editors/emacs-modes/quack { }; @@ -12103,7 +12142,9 @@ let fldigi = callPackage ../applications/audio/fldigi { }; - fluidsynth = callPackage ../applications/audio/fluidsynth { }; + fluidsynth = callPackage ../applications/audio/fluidsynth { + inherit (darwin.apple_sdk.frameworks) CoreServices CoreAudio AudioUnit; + }; fmit = qt5.callPackage ../applications/audio/fmit { }; @@ -12157,6 +12198,8 @@ let grass = callPackage ../applications/gis/grass { }; + grepm = callPackage ../applications/search/grepm { }; + grip = callPackage ../applications/misc/grip { inherit (gnome) libgnome libgnomeui vte; }; @@ -12290,7 +12333,7 @@ let gitAndTools = recurseIntoAttrs (callPackage ../applications/version-management/git-and-tools {}); - inherit (gitAndTools) git gitFull gitSVN git-cola svn2git git-radar transcrypt; + inherit (gitAndTools) git gitFull gitSVN git-cola svn2git git-radar transcrypt git-crypt; gitMinimal = git.override { withManual = false; @@ -12508,6 +12551,8 @@ let hydrogen = callPackage ../applications/audio/hydrogen { }; + slack = callPackage ../applications/networking/instant-messengers/slack { }; + spectrwm = callPackage ../applications/window-managers/spectrwm { }; wlc = callPackage ../development/libraries/wlc { }; @@ -13264,6 +13309,8 @@ let purple-vk-plugin = callPackage ../applications/networking/instant-messengers/pidgin-plugins/purple-vk-plugin { }; + telegram-purple = callPackage ../applications/networking/instant-messengers/pidgin-plugins/telegram-purple { }; + toxprpl = callPackage ../applications/networking/instant-messengers/pidgin-plugins/tox-prpl { }; pidgin-opensteamworks = callPackage ../applications/networking/instant-messengers/pidgin-plugins/pidgin-opensteamworks { }; @@ -13334,7 +13381,10 @@ let eiskaltdcpp = callPackage ../applications/networking/p2p/eiskaltdcpp { lua5 = lua5_1; }; - qemu = callPackage ../applications/virtualization/qemu { }; + qemu = callPackage ../applications/virtualization/qemu { + inherit (darwin.apple_sdk.frameworks) CoreServices Cocoa; + inherit (darwin.stubs) rez setfile; + }; qjackctl = callPackage ../applications/audio/qjackctl { }; @@ -13389,7 +13439,7 @@ let demo = false; }; - rapcad = qt5.callPackage ../applications/graphics/rapcad {}; + rapcad = qt5.callPackage ../applications/graphics/rapcad { boost = boost159; }; rapidsvn = callPackage ../applications/version-management/rapidsvn { }; @@ -13506,7 +13556,11 @@ let siproxd = callPackage ../applications/networking/siproxd { }; - skype = callPackage_i686 ../applications/networking/instant-messengers/skype { }; + skype = callPackage_i686 ../applications/networking/instant-messengers/skype { + qt4 = pkgsi686Linux.qt4.override { + stdenv = clangStdenv; + }; + }; skype4pidgin = callPackage ../applications/networking/instant-messengers/pidgin-plugins/skype4pidgin { }; @@ -13609,7 +13663,9 @@ let smartdeblur = callPackage ../applications/graphics/smartdeblur { }; - snapper = callPackage ../tools/misc/snapper { }; + snapper = callPackage ../tools/misc/snapper { + btrfs-progs = btrfs-progs_4_4_1; + }; snd = callPackage ../applications/audio/snd { }; @@ -14068,6 +14124,7 @@ let ++ optional (cfg.enableGenesisPlusGX or false) genesis-plus-gx ++ optional (cfg.enableMAME or false) mame ++ optional (cfg.enableMednafenPCEFast or false) mednafen-pce-fast + ++ optional (cfg.enableMednafenPSX or false) mednafen-psx ++ optional (cfg.enableMupen64Plus or false) mupen64plus ++ optional (cfg.enableNestopia or false) nestopia ++ optional (cfg.enablePicodrive or false) picodrive @@ -14093,10 +14150,12 @@ let ([] ++ optional (config.kodi.enableAdvancedLauncher or false) advanced-launcher ++ optional (config.kodi.enableGenesis or false) genesis + ++ optionals (config.kodi.enableHyperLauncher or false) + (with hyper-launcher; [ plugin service pdfreader ]) + ++ optionals (config.kodi.enableSALTS or false) [salts urlresolver t0mm0-common] ++ optional (config.kodi.enableSVTPlay or false) svtplay ++ optional (config.kodi.enableSteamLauncher or false) steam-launcher ++ optional (config.kodi.enablePVRHTS or false) pvr-hts - ++ optionals (config.kodi.enableSALTS or false) [salts urlresolver t0mm0-common] ); }; @@ -14175,9 +14234,9 @@ let xdotool = callPackage ../tools/X11/xdotool { }; - xen_4_5_0 = callPackage ../applications/virtualization/xen/4.5.0.nix { }; - xen_4_5_2 = callPackage ../applications/virtualization/xen/4.5.2.nix { }; - xen_xenServer = callPackage ../applications/virtualization/xen/4.5.0.nix { xenserverPatched = true; }; + xen_4_5_0 = callPackage ../applications/virtualization/xen/4.5.0.nix { stdenv = overrideCC stdenv gcc49; }; + xen_4_5_2 = callPackage ../applications/virtualization/xen/4.5.2.nix { stdenv = overrideCC stdenv gcc49; }; + xen_xenServer = callPackage ../applications/virtualization/xen/4.5.0.nix { xenserverPatched = true; stdenv = overrideCC stdenv gcc49; }; xen = xen_4_5_2; win-spice = callPackage ../applications/virtualization/driver/win-spice { }; @@ -14307,6 +14366,8 @@ let qgis = callPackage ../applications/gis/qgis {}; + qgroundcontrol = qt55.callPackage ../applications/science/robotics/qgroundcontrol { }; + qtbitcointrader = callPackage ../applications/misc/qtbitcointrader { qt = qt4; }; @@ -14377,7 +14438,9 @@ let andyetitmoves = if stdenv.isLinux then callPackage ../games/andyetitmoves {} else null; - anki = callPackage ../games/anki { }; + anki = callPackage ../games/anki { + inherit (pythonPackages) wrapPython pysqlite sqlalchemy pyaudio beautifulsoup httplib2 matplotlib; + }; armagetronad = callPackage ../games/armagetronad { }; @@ -14460,7 +14523,7 @@ let duckmarines = callPackage ../games/duckmarines { love = love_0_9; }; - dwarf-fortress-packages = callPackage ../games/dwarf-fortress { }; + dwarf-fortress-packages = recurseIntoAttrs (callPackage ../games/dwarf-fortress { }); dwarf-fortress = dwarf-fortress-packages.dwarf-fortress.override { }; @@ -14681,6 +14744,8 @@ let rili = callPackage ../games/rili { }; + rimshot = callPackage ../games/rimshot { love = love_0_7; }; + rogue = callPackage ../games/rogue { }; saga = callPackage ../applications/gis/saga { }; @@ -14902,10 +14967,8 @@ let clearlooks-phenix = callPackage ../misc/themes/gtk3/clearlooks-phenix { }; - enlightenment = callPackage ../desktops/enlightenment { }; - - e19 = recurseIntoAttrs (callPackage ../desktops/e19 { - callPackage = newScope pkgs.e19; + enlightenment = recurseIntoAttrs (callPackage ../desktops/enlightenment { + callPackage = newScope pkgs.enlightenment; }); gnome2 = callPackage ../desktops/gnome-2 { @@ -15169,6 +15232,8 @@ let libyamlcpp = callPackage ../development/libraries/libyaml-cpp { makePIC=true; boost=boost; }; }; + colord-kde = callPackage ../tools/misc/colord-kde/0.5.nix {}; + dfilemanager = callPackage ../applications/misc/dfilemanager { }; fcitx-qt5 = callPackage ../tools/inputmethods/fcitx/fcitx-qt5.nix { }; @@ -15667,6 +15732,8 @@ let withX = true; }; + scotch = callPackage ../applications/science/math/scotch { }; + msieve = callPackage ../applications/science/math/msieve { }; weka = callPackage ../applications/science/math/weka { }; @@ -15754,6 +15821,10 @@ let beep = callPackage ../misc/beep { }; + brgenml1lpr = callPackage ../misc/cups/drivers/brgenml1lpr {}; + + brgenml1cupswrapper = callPackage ../misc/cups/drivers/brgenml1cupswrapper {}; + cups = callPackage ../misc/cups { libusb = libusb1; }; @@ -15766,6 +15837,8 @@ let epson-escpr = callPackage ../misc/drivers/epson-escpr { }; + epson_201207w = callPackage ../misc/drivers/epson_201207w { }; + gutenprint = callPackage ../misc/drivers/gutenprint { }; gutenprintBin = callPackage ../misc/drivers/gutenprint/bin.nix { }; @@ -15804,7 +15877,9 @@ let faust1 = callPackage ../applications/audio/faust/faust1.nix { }; - faust2 = callPackage ../applications/audio/faust/faust2.nix { }; + faust2 = callPackage ../applications/audio/faust/faust2.nix { + llvm = llvm_37; + }; faust2alqt = callPackage ../applications/audio/faust/faust2alqt.nix { }; @@ -15851,10 +15926,6 @@ let gnuk-unstable = callPackage ../misc/gnuk/unstable.nix { }; gnuk-git = callPackage ../misc/gnuk/git.nix { }; - guix = callPackage ../tools/package-management/guix { - libgcrypt = libgcrypt_1_5; - }; - gxemul = callPackage ../misc/emulators/gxemul { }; hatari = callPackage ../misc/emulators/hatari { }; @@ -16060,6 +16131,8 @@ let sqsh = callPackage ../development/tools/sqsh { }; + terraform = go16Packages.terraform.bin // { outputs = [ "bin" ]; }; + tetex = callPackage ../tools/typesetting/tex/tetex { libpng = libpng12; }; tewi-font = callPackage ../data/fonts/tewi {}; @@ -16217,6 +16290,8 @@ let yafc = callPackage ../applications/networking/yafc { }; + yamdi = callPackage ../tools/video/yamdi { }; + yandex-disk = callPackage ../tools/filesystems/yandex-disk { }; yara = callPackage ../tools/security/yara { }; @@ -16278,98 +16353,7 @@ let mg = callPackage ../applications/editors/mg { }; -}; # self_ = + togglesg-download = callPackage ../tools/misc/togglesg-download { }; +} - ### Deprecated aliases - for backward compatibility - -aliases = with self; rec { - accounts-qt = qt5.accounts-qt; # added 2015-12-19 - adobeReader = adobe-reader; - aircrackng = aircrack-ng; # added 2016-01-14 - arduino_core = arduino-core; # added 2015-02-04 - asciidocFull = asciidoc-full; # added 2014-06-22 - bar = lemonbar; # added 2015-01-16 - bar-xft = lemonbar-xft; # added 2015-01-16 - bridge_utils = bridge-utils; # added 2015-02-20 - btrfsProgs = btrfs-progs; # added 2016-01-03 - buildbotSlave = buildbot-slave; # added 2014-12-09 - cheetahTemplate = pythonPackages.cheetah; # 2015-06-15 - clangAnalyzer = clang-analyzer; # added 2015-02-20 - conkerorWrapper = conkeror; # added 2015-01 - cool-old-term = cool-retro-term; # added 2015-01-31 - cupsBjnp = cups-bjnp; # added 2016-01-02 - cv = progress; # added 2015-09-06 - dwarf_fortress = dwarf-fortress; # added 2016-01-23 - dwbWrapper = dwb; # added 2015-01 - enblendenfuse = enblend-enfuse; # 2015-09-30 - exfat-utils = exfat; # 2015-09-11 - firefox-esr-wrapper = firefox-esr; # 2016-01 - firefox-wrapper = firefox; # 2016-01 - firefoxWrapper = firefox; # 2015-09 - fuse_exfat = exfat; # 2015-09-11 - gettextWithExpat = gettext; # 2016-02-19 - grantlee5 = qt5.grantlee; # added 2015-12-19 - gupnptools = gupnp-tools; # added 2015-12-19 - htmlTidy = html-tidy; # added 2014-12-06 - inherit (haskell.compiler) jhc uhc; # 2015-05-15 - inotifyTools = inotify-tools; - joseki = apache-jena-fuseki; # added 2016-02-28 - jquery_ui = jquery-ui; # added 2014-09-07 - libdbusmenu_qt5 = qt5.libdbusmenu; # added 2015-12-19 - libtidy = html-tidy; # added 2014-12-21 - links = links2; # added 2016-01-31 - lttngTools = lttng-tools; # added 2014-07-31 - lttngUst = lttng-ust; # added 2014-07-31 - manpages = man-pages; # added 2015-12-06 - midoriWrapper = midori; # added 2015-01 - mlt-qt5 = qt5.mlt; # added 2015-12-19 - mssys = ms-sys; # added 2015-12-13 - multipath_tools = multipath-tools; # added 2016-01-21 - mupen64plus1_5 = mupen64plus; # added 2016-02-12 - ncat = nmap; # added 2016-01-26 - nfsUtils = nfs-utils; # added 2014-12-06 - phonon_qt5 = qt5.phonon; # added 2015-12-19 - phonon_qt5_backend_gstreamer = qt5.phonon-backend-gstreamer; # added 2015-12-19 - pidginlatexSF = pidginlatex; # added 2014-11-02 - poppler_qt5 = qt5.poppler; # added 2015-12-19 - qca-qt5 = qt5.qca-qt5; # added 2015-12-19 - qtcreator = qt5.qtcreator; # added 2015-12-19 - quake3game = ioquake3; # added 2016-01-14 - quassel_kf5 = kde5.quassel; # added 2015-09-30 - quassel_qt5 = kde5.quassel_qt5; # added 2015-09-30 - quasselClient_kf5 = kde5.quasselClient; # added 2015-09-30 - quasselClient_qt5 = kde5.quasselClient_qt5; # added 2015-09-30 - quasselDaemon_qt5 = kde5.quasselDaemon; # added 2015-09-30 - qwt6 = qt5.qwt; # added 2015-12-19 - rdiff_backup = rdiff-backup; # added 2014-11-23 - rekonqWrapper = rekonq; # added 2015-01 - rssglx = rss-glx; #added 2015-03-25 - rxvt_unicode_with-plugins = rxvt_unicode-with-plugins; # added 2015-04-02 - samsungUnifiedLinuxDriver = samsung-unified-linux-driver; # added 2016-01-25 - saneBackends = sane-backends; # added 2016-01-02 - saneBackendsGit = sane-backends-git; # added 2016-01-02 - saneFrontends = sane-frontends; # added 2016-01-02 - scim = sc-im; # added 2016-01-22 - signon = qt5.signon; # added 2015-12-19 - speedtest_cli = speedtest-cli; # added 2015-02-17 - sqliteInteractive = sqlite-interactive; # added 2014-12-06 - system_config_printer = system-config-printer; # added 2016-01-03 - telepathy_qt5 = qt5.telepathy; # added 2015-12-19 - tftp_hpa = tftp-hpa; # added 2015-04-03 - vimbWrapper = vimb; # added 2015-01 - vimprobable2Wrapper = vimprobable2; # added 2015-01 - virtviewer = virt-viewer; # added 2015-12-24 - vorbisTools = vorbis-tools; # added 2016-01-26 - x11 = xlibsWrapper; # added 2015-09 - xf86_video_nouveau = xorg.xf86videonouveau; # added 2015-09 - xlibs = xorg; # added 2015-09 - youtubeDL = youtube-dl; # added 2014-10-26 -}; - -tweakAlias = _n: alias: with lib; - if alias.recurseForDerivations or false then - removeAttrs alias ["recurseForDerivations"] - else alias; - -in lib.mapAttrs tweakAlias aliases // self; in pkgs diff --git a/pkgs/top-level/default.nix b/pkgs/top-level/default.nix new file mode 100644 index 00000000000..4de75c2ed57 --- /dev/null +++ b/pkgs/top-level/default.nix @@ -0,0 +1,148 @@ +/* This file composes the Nix Packages collection. That is, it + imports the functions that build the various packages, and calls + them with appropriate arguments. The result is a set of all the + packages in the Nix Packages collection for some particular + platform. */ + + +{ # The system (e.g., `i686-linux') for which to build the packages. + system ? builtins.currentSystem + +, # The standard environment to use. Only used for bootstrapping. If + # null, the default standard environment is used. + bootStdenv ? null + +, # Non-GNU/Linux OSes are currently "impure" platforms, with their libc + # outside of the store. Thus, GCC, GFortran, & co. must always look for + # files in standard system directories (/usr/include, etc.) + noSysDirs ? (system != "x86_64-freebsd" && system != "i686-freebsd" + && system != "x86_64-solaris" + && system != "x86_64-kfreebsd-gnu") + + # More flags for the bootstrapping of stdenv. +, gccWithCC ? true +, gccWithProfiling ? true + +, # Allow a configuration attribute set to be passed in as an + # argument. Otherwise, it's read from $NIXPKGS_CONFIG or + # ~/.nixpkgs/config.nix. + config ? null + +, crossSystem ? null +, platform ? null +}: + + +let config_ = config; platform_ = platform; in # rename the function arguments + +let + + lib = import ../../lib; + + # The contents of the configuration file found at $NIXPKGS_CONFIG or + # $HOME/.nixpkgs/config.nix. + # for NIXOS (nixos-rebuild): use nixpkgs.config option + config = + let + toPath = builtins.toPath; + getEnv = x: if builtins ? getEnv then builtins.getEnv x else ""; + pathExists = name: + builtins ? pathExists && builtins.pathExists (toPath name); + + configFile = getEnv "NIXPKGS_CONFIG"; + homeDir = getEnv "HOME"; + configFile2 = homeDir + "/.nixpkgs/config.nix"; + + configExpr = + if config_ != null then config_ + else if configFile != "" && pathExists configFile then import (toPath configFile) + else if homeDir != "" && pathExists configFile2 then import (toPath configFile2) + else {}; + + in + # allow both: + # { /* the config */ } and + # { pkgs, ... } : { /* the config */ } + if builtins.isFunction configExpr + then configExpr { inherit pkgs; } + else configExpr; + + # Allow setting the platform in the config file. Otherwise, let's use a reasonable default (pc) + + platformAuto = let + platforms = (import ./platforms.nix); + in + if system == "armv6l-linux" then platforms.raspberrypi + else if system == "armv7l-linux" then platforms.armv7l-hf-multiplatform + else if system == "armv5tel-linux" then platforms.sheevaplug + else if system == "mips64el-linux" then platforms.fuloong2f_n32 + else if system == "x86_64-linux" then platforms.pc64 + else if system == "i686-linux" then platforms.pc32 + else platforms.pcBase; + + platform = if platform_ != null then platform_ + else config.platform or platformAuto; + + topLevelArguments = { + inherit system bootStdenv noSysDirs gccWithCC gccWithProfiling config + crossSystem platform lib; + }; + + # Allow packages to be overridden globally via the `packageOverrides' + # configuration option, which must be a function that takes `pkgs' + # as an argument and returns a set of new or overridden packages. + # The `packageOverrides' function is called with the *original* + # (un-overridden) set of packages, allowing packageOverrides + # attributes to refer to the original attributes (e.g. "foo = + # ... pkgs.foo ..."). + pkgs = pkgsWithOverrides (self: config.packageOverrides or (super: {})); + + # Return the complete set of packages, after applying the overrides + # returned by the `overrider' function (see above). Warning: this + # function is very expensive! + pkgsWithOverrides = overrider: + let + stdenvAdapters = self: super: + let res = import ../stdenv/adapters.nix self; in res // { + stdenvAdapters = res; + }; + + trivialBuilders = self: super: + (import ../build-support/trivial-builders.nix { + inherit lib; inherit (self) stdenv; inherit (self.xorg) lndir; + }); + + stdenvDefault = self: super: (import ./stdenv.nix topLevelArguments) {} pkgs; + + allPackagesArgs = topLevelArguments // { inherit pkgsWithOverrides; }; + allPackages = self: super: + let res = import ./all-packages.nix allPackagesArgs res self; + in res; + + aliases = self: super: import ./aliases.nix super; + + # stdenvOverrides is used to avoid circular dependencies for building + # the standard build environment. This mechanism uses the override + # mechanism to implement some staged compilation of the stdenv. + # + # We don't want stdenv overrides in the case of cross-building, or + # otherwise the basic overridden packages will not be built with the + # crossStdenv adapter. + stdenvOverrides = self: super: + lib.optionalAttrs (crossSystem == null && super.stdenv ? overrides) + (super.stdenv.overrides super); + + customOverrides = self: super: + lib.optionalAttrs (bootStdenv == null) (overrider self super); + in + lib.fix' ( + lib.extends customOverrides ( + lib.extends stdenvOverrides ( + lib.extends aliases ( + lib.extends allPackages ( + lib.extends stdenvDefault ( + lib.extends trivialBuilders ( + lib.extends stdenvAdapters ( + self: {})))))))); +in + pkgs diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index dd9a9dde7bb..5735aac8ad1 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -5,14 +5,16 @@ let isGo14 = go.meta.branch == "1.4"; + isGo15 = go.meta.branch == "1.5"; + isGo16 = go.meta.branch == "1.6"; self = _self // overrides; _self = with self; { inherit go buildGoPackage; - buildFromGitHub = { rev, date ? null, owner, repo, sha256, name ? repo, goPackagePath ? "github.com/${owner}/${repo}", ... }@args: buildGoPackage (args // { + buildFromGitHub = { rev, version ? null, owner, repo, sha256, name ? repo, goPackagePath ? "github.com/${owner}/${repo}", ... }@args: buildGoPackage (args // { inherit rev goPackagePath; - name = "${name}-${if date != null then date else if builtins.stringLength rev != 40 then rev else stdenv.lib.strings.substring 0 7 rev}"; + name = "${name}-${if version != null then version else if builtins.stringLength rev != 40 then rev else stdenv.lib.strings.substring 0 7 rev}"; src = fetchFromGitHub { inherit rev owner repo sha256; }; }); @@ -20,7 +22,7 @@ let crypto = buildFromGitHub { rev = "575fdbe86e5dd89229707ebec0575ce7d088a4a6"; - date = "2015-08-29"; + version = "2015-08-29"; owner = "golang"; repo = "crypto"; sha256 = "1kgv1mkw9y404pk3lcwbs0vgl133mwyp294i18jg9hp10s5d56xa"; @@ -33,7 +35,7 @@ let glog = buildFromGitHub { rev = "fca8c8854093a154ff1eb580aae10276ad6b1b5f"; - date = "2015-07-31"; + version = "2015-07-31"; owner = "golang"; repo = "glog"; sha256 = "1nr2q0vas0a2f395f4shjxqpas18mjsf8yhgndsav7svngpbbpg8"; @@ -41,7 +43,7 @@ let codesearch = buildFromGitHub { rev = "a45d81b686e85d01f2838439deaf72126ccd5a96"; - date = "2015-06-17"; + version = "2015-06-17"; owner = "google"; repo = "codesearch"; sha256 = "12bv3yz0l3bmsxbasfgv7scm9j719ch6pmlspv4bd4ix7wjpyhny"; @@ -49,7 +51,7 @@ let image = buildFromGitHub { rev = "8ab1ac6834edd43d91cbe24272897a87ce7e835e"; - date = "2015-08-23"; + version = "2015-08-23"; owner = "golang"; repo = "image"; sha256 = "1ckr7yh5dx2kbvp9mis7i090ss9qcz46sazrj9f2hw4jj5g3y7dr"; @@ -59,7 +61,7 @@ let net_go15 = buildFromGitHub { rev = "62ac18b461605b4be188bbc7300e9aa2bc836cd4"; - date = "2015-11-04"; + version = "2015-11-04"; owner = "golang"; repo = "net"; sha256 = "0lwwvbbwbf3yshxkfhn6z20gd45dkvnmw2ms36diiy34krgy402p"; @@ -75,7 +77,7 @@ let net_go14 = buildFromGitHub { rev = "ea47fc708ee3e20177f3ca3716217c4ab75942cb"; - date = "2015-08-29"; + version = "2015-08-29"; owner = "golang"; repo = "net"; sha256 = "0x1pmg97n7l62vak9qnjdjrrfl98jydhv6j0w3jkk4dycdlzn30d"; @@ -93,7 +95,7 @@ let oauth2 = buildFromGitHub { rev = "397fe7649477ff2e8ced8fc0b2696f781e53745a"; - date = "2015-06-23"; + version = "2015-06-23"; owner = "golang"; repo = "oauth2"; sha256 = "0fza0l7iwh6llkq2yzqn7dxi138vab0da64lnghfj1p71fprjzn8"; @@ -105,7 +107,7 @@ let protobuf = buildFromGitHub { rev = "59b73b37c1e45995477aae817e4a653c89a858db"; - date = "2015-08-23"; + version = "2015-08-23"; owner = "golang"; repo = "protobuf"; sha256 = "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa"; @@ -115,7 +117,7 @@ let snappy = buildFromGitHub { rev = "723cc1e459b8eea2dea4583200fd60757d40097a"; - date = "2015-07-21"; + version = "2015-07-21"; owner = "golang"; repo = "snappy"; sha256 = "0bprq0qb46f5511b5scrdqqzskqqi2z8b4yh3216rv0n1crx536h"; @@ -124,7 +126,7 @@ let sys = buildFromGitHub { rev = "d9157a9621b69ad1d8d77a1933590c416593f24f"; - date = "2015-02-01"; + version = "2015-02-01"; owner = "golang"; repo = "sys"; sha256 = "1asdbp7rj1j1m1aar1a022wpcwbml6zih6cpbxaw7b2m8v8is931"; @@ -136,7 +138,7 @@ let text = buildFromGitHub { rev = "5eb8d4684c4796dd36c74f6452f2c0fa6c79597e"; - date = "2015-08-27"; + version = "2015-08-27"; owner = "golang"; repo = "text"; sha256 = "1cjwm2pv42dbfqc6ylr7jmma902zg4gng5aarqrbjf1k2nf2vs14"; @@ -146,7 +148,7 @@ let tools = buildFromGitHub { rev = "b48dc8da98ae78c3d11f220e7d327304c84e623a"; - date = "2015-08-24"; + version = "2015-08-24"; owner = "golang"; repo = "tools"; sha256 = "187p3jjxrw2qjnzqwwrq7f9w10zh6vcnwnfl3q7ms8rbiffpjy5c"; @@ -195,7 +197,7 @@ let adapted = buildFromGitHub { rev = "eaea06aaff855227a71b1c58b18bc6de822e3e77"; - date = "2015-06-03"; + version = "2015-06-03"; owner = "michaelmacinnis"; repo = "adapted"; sha256 = "0f28sn5mj48087zhjdrph2sjcznff1i1lwnwplx32bc5ax8nx5xm"; @@ -238,6 +240,14 @@ let sha256 = "0k48k8815k433s25lh8my2swl89kczp0m2gbqzjlpy1xwmk06nxc"; }; + asmfmt = buildFromGitHub { + rev = "7971758b0c6584f67d745c62d006814ae7b44e9d"; + owner = "klauspost"; + repo = "asmfmt"; + sha256 = "07i3f8jzs4yvfpm16s2c2hd65r3q729m0agg8q1i3lwbs3fimyj5"; + buildInputs = [ tools goreturns ]; + }; + asn1-ber = buildGoPackage rec { rev = "f4b6f4a84f5cde443d1925b5ec185ee93c2bdc72"; name = "asn1-ber-${stdenv.lib.strings.substring 0 7 rev}"; @@ -270,6 +280,13 @@ let doCheck = false; }; + astrotime = buildFromGitHub { + rev = "9c7d514efdb561775030eaf8f1a9ae6bddb3a2ca"; + owner = "cpucycle"; + repo = "astrotime"; + sha256 = "024sc7g55v4s54irssm5wsn74sr2k2ynsm6z16w47q66cxhgvby1"; + }; + aws-sdk-go = buildFromGitHub { #rev = "a28ecdc9741b7905b5198059c94aed20868ffc08"; rev = "127313c1b41e534a0456a68b6b3a16712dacb35d"; @@ -290,6 +307,23 @@ let ''; }; + azure-sdk-for-go = buildFromGitHub { + rev = "v2.0.0-beta"; + owner = "Azure"; + repo = "azure-sdk-for-go"; + sha256 = "04bixwh4bzgysa79azis1p755rb6zxjjzhpskpvpmvkv49baharc"; + propagatedBuildInputs = [ go-autorest cli-go ]; + }; + + azure-vhd-tools-for-go = buildFromGitHub { + rev = "7db4795475aeab95590f8643969e06b633ead4ec"; + owner = "Microsoft"; + repo = "azure-vhd-utils-for-go"; + sha256 = "0xg6a1qw8jjxqhgvy9zlvq5b8xnnvfkjnkjz9f8g4y1kcw09lird"; + + propagatedBuildInputs = [ azure-sdk-for-go ]; + }; + hashicorp.aws-sdk-go = buildFromGitHub { rev = "e6ea0192eee4640f32ec73c0cbb71f63e4f2b65a"; owner = "hashicorp"; @@ -306,7 +340,7 @@ let bleve = buildFromGitHub { rev = "fc34a97875840b2ae24517e7d746b69bdae9be90"; - date = "2016-01-19"; + version = "2016-01-19"; owner = "blevesearch"; repo = "bleve"; sha256 = "0ny7nvilrxmmzcdvpivwyrjkynnhc22c5gdrxzs421jly35jw8jx"; @@ -324,7 +358,7 @@ let bitset = buildFromGitHub { rev = "bb0da3785c4fe9d26f6029c77c8fce2aa4d0b291"; - date = "2016-01-13"; + version = "2016-01-13"; owner = "willf"; repo = "bitset"; sha256 = "1d4z2hjjs9jk6aysi4mf50p8lbbzag4ir4y1f0z4sz8gkwagh7b7"; @@ -507,7 +541,7 @@ let consul-alerts = buildFromGitHub { rev = "6eb4bc556d5f926dbf15d86170664d35d504ae54"; - date = "2015-08-09"; + version = "2015-08-09"; owner = "AcalephStorage"; repo = "consul-alerts"; sha256 = "191bmxix3nl4pr26hcdfxa9qpv5dzggjvi86h2slajgyd2rzn23b"; @@ -528,7 +562,7 @@ let consul-migrate = buildFromGitHub { rev = "678fb10cdeae25ab309e99e655148f0bf65f9710"; - date = "2015-05-19"; + version = "2015-05-19"; owner = "hashicorp"; repo = "consul-migrate"; sha256 = "18zqyzbc3pny700fnh4hi45i5mlsramqykikcr7lgyx7id6alf16"; @@ -596,17 +630,20 @@ let sha256 = "09sdijfx5d05z4cd5k6lhl7k3kbpdf2amzlngv15h5v0fff9qw4s"; }; - dbus = buildGoPackage rec { - rev = "a5942dec6340eb0d57f43f2003c190ce06e43dea"; - name = "dbus-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/godbus/dbus"; + dbus-old-2015-05-19 = buildFromGitHub { + rev = "a5942dec6340eb0d57f43f2003c190ce06e43dea"; + version = "2015-05-19"; + owner = "godbus"; + repo = "dbus"; + sha256 = "1vk31wal7ncvjwvnb8q1myrkihv1np46f3q8dndi5k0csflbxxdf"; + }; - src = fetchFromGitHub { - inherit rev; - owner = "godbus"; - repo = "dbus"; - sha256 = "1vk31wal7ncvjwvnb8q1myrkihv1np46f3q8dndi5k0csflbxxdf"; - }; + dbus = buildFromGitHub { + rev = "230e4b23db2fd81c53eaa0073f76659d4849ce51"; + version = "2016-03-02"; + owner = "godbus"; + repo = "dbus"; + sha256 = "1wxv2cbihzcsz2z7iycyzl7f3arhhgagcc5kqln1k1mkm4l85z0q"; }; deis = buildFromGitHub { @@ -625,7 +662,7 @@ let dns = buildFromGitHub { rev = "e59f851c912767b1db587dcabee6e6652e495c75"; - date = "2015-07-22"; + version = "2015-07-22"; owner = "miekg"; repo = "dns"; sha256 = "1zcj4drmmskwvjy5ld54qd8a34ls9651ysl3q7c2bcambax5r0hp"; @@ -712,7 +749,7 @@ let du = buildFromGitHub { rev = "3c0690cca16228b97741327b1b6781397afbdb24"; - date = "2015-08-05"; + version = "2015-08-05"; owner = "calmh"; repo = "du"; sha256 = "1mv6mkbslfc8giv47kyl97ny0igb3l7jya5hc75sm54xi6g205wa"; @@ -729,6 +766,21 @@ let }; }; + errcheck = buildFromGitHub { + rev = "f76568f8d87e48ccbbd17a827c2eaf31805bf58c"; + owner = "kisielk"; + repo = "errcheck"; + sha256 = "1y1cqd0ibgr03zf96q6aagk65yhv6vcnq9xa8nqhjpnz7jhfndhs"; + postPatch = '' + for f in $(find -name "*.go"); do + substituteInPlace $f \ + --replace '"go/types"' '"golang.org/x/tools/go/types"' + done + ''; + excludedPackages = [ "testdata" ]; + buildInputs = [ gotool tools ]; + }; + errwrap = buildFromGitHub { rev = "7554cd9344cec97297fa6649b055a8c98c2a1e55"; owner = "hashicorp"; @@ -737,10 +789,11 @@ let }; etcd = buildFromGitHub { - rev = "v2.1.2"; + rev = "v2.3.0"; owner = "coreos"; repo = "etcd"; - sha256 = "1d3wl9rqbhkkdhfkjfrzjfcwz8hx315zbjbmij3pf62bc1p5nh60"; + sha256 = "1cchlhsdbbqal145cvdiq7rzqqi131iq7z0r2hmzwx414k04wyn7"; + buildInputs = [ pkgs.libpcap tablewriter ]; }; fsnotify.v0 = buildGoPackage rec { @@ -809,7 +862,7 @@ let gawp = buildFromGitHub { rev = "488705639109de54d38974cc31353d34cc2cd609"; - date = "2015-08-31"; + version = "2015-08-31"; owner = "martingallagher"; repo = "gawp"; sha256 = "0iqqd63nqdijdskdb9f0jwnm6akkh1p2jw4p2w7r1dbaqz1znyay"; @@ -849,6 +902,15 @@ let sha256 = "1iz4wjxc3zkj0xkfs88ig670gb08p1sd922l0ig2cxpjcfjp1y99"; }; + gosexy.gettext = buildFromGitHub { + rev = "4a979356fe964fec12e18326a32a89661f93dea7"; + version = "2016-02-20"; + owner = "gosexy"; + repo = "gettext"; + sha256 = "07f3dmq4qsdykbn3fkha3v1w61hic6xw82dvdmvzhf0m41jxsgy6"; + buildInputs = [ pkgs.gettext go-flags ]; + }; + ginkgo = buildGoPackage rec { rev = "5ed93e443a4b7dfe9f5e95ca87e6082e503021d2"; name = "ginkgo-${stdenv.lib.strings.substring 0 7 rev}"; @@ -878,7 +940,7 @@ let }; git-lfs = buildFromGitHub { - date = "1.1.1"; # "date" is effectively "version" + version = "1.1.1"; rev = "v1.1.1"; owner = "github"; repo = "git-lfs"; @@ -962,6 +1024,14 @@ let sha256 = "1nyg6sckwd0iafs9vcmgbga2k3hid2q0avhwj29qbdhj3l78xi47"; }; + gocapability = buildFromGitHub { + rev = "2c00daeb6c3b45114c80ac44119e7b8801fdd852"; + version = "2015-07-16"; + owner = "syndtr"; + repo = "gocapability"; + sha256 = "1x7jdcg2r5pakjf20q7bdiidfmv7vcjiyg682186rkp2wz0yws0l"; + }; + gocryptfs = buildFromGitHub { rev = "v0.5"; owner = "rfjakob"; @@ -991,7 +1061,7 @@ let gocode = buildFromGitHub { rev = "680a0fbae5119fb0dbea5dca1d89e02747a80de0"; - date = "2015-09-03"; + version = "2015-09-03"; owner = "nsf"; repo = "gocode"; sha256 = "1ay2xakz4bcn8r3ylicbj753gjljvv4cj9l4wfly55cj1vjybjpv"; @@ -1045,6 +1115,13 @@ let sha256 = "0yg1jpr7lcaqh6i8n9wbs9r128kk541qjv06r9a6fp9vj56rqr3m"; }; + gotool = buildFromGitHub { + rev = "58a7a198f2ec6ea7af221fd216e7f559d663ce02"; + owner = "kisielk"; + repo = "gotool"; + sha256 = "1l1w4mczqmah0c154vb1daw5l3cc7vn5gmy5s67p3ad1lnz5l79x"; + }; + gotty = buildFromGitHub { rev = "v0.0.10"; owner = "yudai"; @@ -1063,7 +1140,7 @@ let govers = buildFromGitHub { rev = "3b5f175f65d601d06f48d78fcbdb0add633565b9"; - date = "2015-01-09"; + version = "2015-01-09"; owner = "rogpeppe"; repo = "govers"; sha256 = "0din5a7nff6hpc4wg0yad2nwbgy4q1qaazxl8ni49lkkr4hyp8pc"; @@ -1086,7 +1163,7 @@ let golang_protobuf_extensions = buildFromGitHub { rev = "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a"; - date = "2015-04-06"; + version = "2015-04-06"; owner = "matttproud"; repo = "golang_protobuf_extensions"; sha256 = "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj"; @@ -1095,7 +1172,7 @@ let goleveldb = buildFromGitHub { rev = "1a9d62f03ea92815b46fcaab357cfd4df264b1a0"; - date = "2015-08-19"; + version = "2015-08-19"; owner = "syndtr"; repo = "goleveldb"; sha256 = "04ywbif36fiah4fw0x2abr5q3p4fdhi6q57d5icc2mz03q889vhb"; @@ -1123,9 +1200,17 @@ let sha256 = "1r8fpzwhakq8fsppc33n4iivq1pz47xhs0h6bv4x5qiip5mswwvg"; }; + gometalinter = buildFromGitHub { + rev = "be87b7414dc44dbea2fee33ccb8bd8a859ebcaf1"; + owner = "alecthomas"; + repo = "gometalinter"; + sha256 = "05n852kf11gq5k7b4h6kz85z99qfa46dy6b6fqkg9xfk2bmvdxms"; + buildInputs = [ shlex kingpin testify ]; + }; + google-api-go-client = buildFromGitHub { rev = "a5c3e2a4792aff40e59840d9ecdff0542a202a80"; - date = "2015-08-19"; + version = "2015-08-19"; owner = "google"; repo = "google-api-go-client"; sha256 = "1kigddnbyrl9ddpj5rs8njvf1ck54ipi4q1282k0d6b3am5qfbj8"; @@ -1134,6 +1219,15 @@ let buildInputs = [ net ]; }; + goreturns = buildFromGitHub { + rev = "b368f1f77f2950c753e05a6a29acfc487fa7a959"; + owner = "sqs"; + repo = "goreturns"; + sha256 = "0qllmcvg3xd43pymn24zrjn7vb39zj83ayq3sg7kzgxvba0ylb05"; + goPackagePath = "sourcegraph.com/sqs/goreturns"; + buildInputs = [ tools ]; + }; + odeke-em.google-api-go-client = buildGoPackage rec { rev = "30f4c144b02321ebbc712f35dc95c3e72a5a7fdc"; name = "odeke-em-google-api-go-client-${stdenv.lib.strings.substring 0 7 rev}"; @@ -1165,7 +1259,7 @@ let goproxy = buildFromGitHub { rev = "2624781dc373cecd1136cafdaaaeba6c9bb90e96"; - date = "2015-07-26"; + version = "2015-07-26"; owner = "elazarl"; repo = "goproxy"; sha256 = "1zz425y8byjaa9i7mslc9anz9w2jc093fjl0562rmm5hh4rc5x5f"; @@ -1174,7 +1268,7 @@ let goreq = buildFromGitHub { rev = "72c51a544272e007ab3da4f7d9ac959b7af7af03"; - date = "2015-08-18"; + version = "2015-08-18"; owner = "franela"; repo = "goreq"; sha256 = "0dnqbijdzp2dgsf6m934nadixqbv73q0zkqglaa956zzw0pyhcxp"; @@ -1182,7 +1276,7 @@ let gotags = buildFromGitHub { rev = "be986a34e20634775ac73e11a5b55916085c48e7"; - date = "2015-08-03"; + version = "2015-08-03"; owner = "jstemmer"; repo = "gotags"; sha256 = "071wyq90b06xlb3bb0l4qjz1gf4nnci4bcngiddfcxf2l41w1vja"; @@ -1210,7 +1304,7 @@ let gozim = buildFromGitHub { rev = "ea9b7c39cb1d13bd8bf19ba4dc4e2a16bab52f14"; - date = "2016-01-15"; + version = "2016-01-15"; owner = "akhenakh"; repo = "gozim"; sha256 = "1n50fdd56r3s1sgjbpa72nvdh50gfpf6fq55c077w2p3bxn6p8k6"; @@ -1237,6 +1331,14 @@ let propagatedBuildInputs = [ pretty ]; }; + go-autorest = buildFromGitHub { + rev = "v6.0.0"; + owner = "Azure"; + repo = "go-autorest"; + sha256 = "07zrbw8p3jc5xfjwn0qj1hrn1r7nbnryc5zmvk42qgximyxsls26"; + propagatedBuildInputs = [ jwt-go crypto ]; + }; + go-backblaze = buildFromGitHub { buildInputs = [ go-flags go-humanize uilive uiprogress ]; goPackagePath = "gopkg.in/kothar/go-backblaze.v0"; @@ -1286,8 +1388,7 @@ let owner = "elazarl"; repo = "go-bindata-assetfs"; sha256 = "636ce247ff6f85c14f38a421f46662fa77bdc29762692e1f72b3cd1f9d7a1d17"; - - date = "2015-08-13"; + version = "2015-08-13"; meta = with stdenv.lib; { description = "Serves embedded files from jteeuwen/go-bindata with net/http"; @@ -1323,7 +1424,7 @@ let go-charset = buildFromGitHub { rev = "61cdee49014dc952076b5852ce4707137eb36b64"; - date = "2014-07-13"; + version = "2014-07-13"; owner = "paulrosania"; repo = "go-charset"; sha256 = "0jp6rwxlgl66dipk6ssk8ly55jxncvsxs7jc3abgdrhr3rzccab8"; @@ -1379,7 +1480,7 @@ let go-fuse = buildFromGitHub rec { rev = "324ea173d0a4d90e0e97c464a6ad33f80c9587a8"; - date = "2015-07-27"; + version = "2015-07-27"; owner = "hanwen"; repo = "go-fuse"; sha256 = "0r5amgnpb4g7b6kpz42vnj01w515by4yhy64s5lqf3snzjygaycf"; @@ -1425,7 +1526,7 @@ let go-hostpool = buildFromGitHub { rev = "d0e59c22a56e8dadfed24f74f452cea5a52722d2"; - date = "2015-03-31"; + version = "2015-03-31"; owner = "bitly"; repo = "go-hostpool"; sha256 = "14ph12krn5zlg00vh9g6g08lkfjxnpw46nzadrfb718yl1hgyk3g"; @@ -1447,7 +1548,7 @@ let go-incremental = buildFromGitHub { rev = "92fd0ce4a694213e8b3dfd2d39b16e51d26d0fbf"; - date = "2015-02-20"; + version = "2015-02-20"; owner = "GeertJohan"; repo = "go.incremental"; sha256 = "160cspmq73bk6cvisa6kq1dwrrp1yqpkrpq8dl69wcnaf91cbnml"; @@ -1462,7 +1563,7 @@ let go-liblzma = buildFromGitHub { rev = "e74be71c3c60411922b5424e875d7692ea638b78"; - date = "2016-01-01"; + version = "2016-01-01"; owner = "remyoudompheng"; repo = "go-liblzma"; sha256 = "12lwjmdcv2l98097rhvjvd2yz8jl741hxcg29i1c18grwmwxa7nf"; @@ -1485,10 +1586,11 @@ let }; go-lxc = buildFromGitHub { - rev = "a0fa4019e64b385dfa2fb8abcabcdd2f66871639"; + rev = "d89df0ad9dc13a7ce491eedaa771b076cf32db16"; + version = "2016-02-12"; owner = "lxc"; repo = "go-lxc"; - sha256 = "0fkkmn7ynmzpr7j0ha1qsmh3k86ncxcbajmcb90hs0k0iaaiaahz"; + sha256 = "051kqvvclfcinqcbi4zch694llvnxa5vvbw6cbdxbkzhr5zxm36q"; goPackagePath = "gopkg.in/lxc/go-lxc.v2"; nativeBuildInputs = [ pkgs.pkgconfig ]; buildInputs = [ pkgs.lxc ]; @@ -1503,7 +1605,7 @@ let rcrowley.go-metrics = buildFromGitHub { rev = "1ce93efbc8f9c568886b2ef85ce305b2217b3de3"; - date = "2015-08-22"; + version = "2015-08-22"; owner = "rcrowley"; repo = "go-metrics"; sha256 = "06gg72krlmd0z3zdq6s716blrga95pyj8dc2f2psfbknbkyrkfqa"; @@ -1560,7 +1662,7 @@ let go-options = buildFromGitHub { rev = "7c174072188d0cfbe6f01bb457626abb22bdff52"; - date = "2014-12-20"; + version = "2014-12-20"; owner = "mreiferson"; repo = "go-options"; sha256 = "0ksyi2cb4k6r2fxamljg42qbz5hdcb9kv5i7y6cx4ajjy0xznwgm"; @@ -1568,7 +1670,7 @@ let go-porterstemmer = buildFromGitHub { rev = "23a2c8e5cf1f380f27722c6d2ae8896431dc7d0e"; - date = "2014-12-30"; + version = "2014-12-30"; owner = "blevesearch"; repo = "go-porterstemmer"; sha256 = "0rcfbrad79xd114h3dhy5d3zs3b5bcgqwm3h5ih1lk69zr9wi91d"; @@ -1600,6 +1702,14 @@ let }; }; + mattn.go-runewidth = buildFromGitHub { + rev = "d6bea18f789704b5f83375793155289da36a3c7f"; + version = "2016-03-15"; + owner = "mattn"; + repo = "go-runewidth"; + sha256 = "1hnigpn7rjbwd1ircxkyx9hvi0xmxr32b2jdy2jzw6b3jmcnz1fs"; + }; + go-shellwords = buildGoPackage rec { rev = "35d512af75e283aae4ca1fc3d44b159ed66189a4"; name = "go-shellwords-${rev}"; @@ -1621,7 +1731,7 @@ let go-repo-root = buildFromGitHub { rev = "90041e5c7dc634651549f96814a452f4e0e680f9"; - date = "2014-09-11"; + version = "2014-09-11"; owner = "cstrahan"; repo = "go-repo-root"; sha256 = "1rlzp8kjv0a3dnfhyqcggny0ad648j5csr2x0siq5prahlp48mg4"; @@ -1630,7 +1740,7 @@ let go-rice = buildFromGitHub { rev = "4f3c5af2322e393f305d9674845bc36cd1dea589"; - date = "2016-01-04"; + version = "2016-01-04"; owner = "GeertJohan"; repo = "go.rice"; sha256 = "01q2d5iwibwdl68gn8sg6dm7byc42hax3zmiqgmdw63ir1fsv4ag"; @@ -1645,9 +1755,24 @@ let sha256 = "00f2rfhsaqj2wjanh5qp73phx7x12a5pwd7lc0rjfv68l6sgpg2v"; }; + go-sct = buildFromGitHub { + rev = "b82c2f81727357c45a47a43965c50ed5da5a2e74"; + version = "2016-01-11"; + owner = "d4l3k"; + repo = "go-sct"; + sha256 = "13hgmpv2c8ll5ap8fn1n480bdv1j21n86jjwcssd36kh2i933anl"; + buildInputs = [ astrotime pkgs.xorg.libX11 pkgs.xorg.libXrandr ]; + meta = with stdenv.lib; { + description = "Color temperature setting library and CLI that operates in a similar way to f.lux and Redshift"; + license = licenses.mit; + maintainers = with maintainers; [ cstrahan ]; + platforms = platforms.unix; + }; + }; + go-simplejson = buildFromGitHub { rev = "18db6e68d8fd9cbf2e8ebe4c81a78b96fd9bf05a"; - date = "2015-03-31"; + version = "2015-03-31"; owner = "bitly"; repo = "go-simplejson"; sha256 = "0lj9cxyncchlw6p35j0yym5q5waiz0giw6ri41qdwm8y3dghwwiy"; @@ -1655,7 +1780,7 @@ let go-snappystream = buildFromGitHub { rev = "028eae7ab5c4c9e2d1cb4c4ca1e53259bbe7e504"; - date = "2015-04-16"; + version = "2015-04-16"; owner = "mreiferson"; repo = "go-snappystream"; sha256 = "0jdd5whp74nvg35d9hzydsi3shnb1vrnd7shi9qz4wxap7gcrid6"; @@ -1663,7 +1788,7 @@ let go-spew = buildFromGitHub { rev = "5215b55f46b2b919f50a1df0eaa5886afe4e3b3d"; - date = "2015-11-05"; + version = "2015-11-05"; owner = "davecgh"; repo = "go-spew"; sha256 = "15h9kl73rdbzlfmsdxp13jja5gs7sknvqkpq2qizq3qv3nr1x8dk"; @@ -1671,7 +1796,7 @@ let go-sqlite3 = buildFromGitHub { rev = "b4142c444a8941d0d92b0b7103a24df9cd815e42"; - date = "2015-07-29"; + version = "2015-07-29"; owner = "mattn"; repo = "go-sqlite3"; sha256 = "0xq2y4am8dz9w9aaq24s1npg1sn8pf2gn4nki73ylz2fpjwq9vla"; @@ -1684,27 +1809,13 @@ let sha256 = "1j53m2wjyczm9m55znfycdvm4c8vfniqgk93dvzwy8vpj5gm6sb3"; }; - go-systemd = buildGoPackage rec { - rev = "2688e91251d9d8e404e86dd8f096e23b2f086958"; - name = "go-systemd-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/coreos/go-systemd"; - - src = fetchFromGitHub { - inherit rev; - owner = "coreos"; - repo = "go-systemd"; - sha256 = "0c1k3y5msc1xplhx0ksa7g08yqjaavns8s5zrfg4ig8az30gwlpa"; - }; - - buildInputs = [ dbus ]; - }; - - lxd-go-systemd = buildFromGitHub { - rev = "a3dcd1d0480ee0ae9ec354f1632202bfba715e03"; - date = "2015-07-01"; - owner = "stgraber"; - repo = "lxd-go-systemd"; - sha256 = "006dhy3j8ld0kycm8hrjxvakd7xdn1b6z2dsjp1l4sqrxdmm188w"; + go-systemd = buildFromGitHub { + rev = "7b2428fec40033549c68f54e26e89e7ca9a9ce31"; + version = "2016-03-10"; + owner = "coreos"; + repo = "go-systemd"; + sha256 = "0kfbxvm9zsjgvgmiq2jl807y4s5z0rya65rm399llr5rr7vz1lxd"; + nativeBuildInputs = [ pkgs.pkgconfig pkgs.systemd ]; buildInputs = [ dbus ]; }; @@ -1719,7 +1830,7 @@ let go-uuid = buildFromGitHub { rev = "6b8e5b55d20d01ad47ecfe98e5171688397c61e9"; - date = "2015-07-22"; + version = "2015-07-22"; owner = "satori"; repo = "go.uuid"; sha256 = "0injxzds41v8nc0brvyrrjl66fk3hycz6im38s5r9ccbwlp68p44"; @@ -1734,7 +1845,7 @@ let go-zipexe = buildFromGitHub { rev = "a5fe2436ffcb3236e175e5149162b41cd28bd27d"; - date = "2015-03-29"; + version = "2015-03-29"; owner = "daaku"; repo = "go.zipexe"; sha256 = "0vi5pskhifb6zw78w2j97qbhs09zmrlk4b48mybgk5b3sswp6510"; @@ -1742,7 +1853,7 @@ let go-zookeeper = buildFromGitHub { rev = "5bb5cfc093ad18a28148c578f8632cfdb4d802e4"; - date = "2015-06-02"; + version = "2015-06-02"; owner = "samuel"; repo = "go-zookeeper"; sha256 = "1kpx1ymh7rds0b2km291idnyqi0zck74nd8hnk72crgz7wmpqv6z"; @@ -1750,7 +1861,7 @@ let lint = buildFromGitHub { rev = "7b7f4364ff76043e6c3610281525fabc0d90f0e4"; - date = "2015-06-23"; + version = "2015-06-23"; owner = "golang"; repo = "lint"; sha256 = "1bj7zv534hyh87bp2vsbhp94qijc5nixb06li1dzfz9n0wcmlqw9"; @@ -1783,7 +1894,7 @@ let grpc = buildFromGitHub { rev = "d455e65570c07e6ee7f23275063fbf34660ea616"; - date = "2015-08-29"; + version = "2015-08-29"; owner = "grpc"; repo = "grpc-go"; sha256 = "08vra95hc8ihnj353680zhiqrv3ssw5yywkrifzb1zwl0l3cs2hr"; @@ -1795,7 +1906,7 @@ let gtreap = buildFromGitHub { rev = "0abe01ef9be25c4aedc174758ec2d917314d6d70"; - date = "2015-08-07"; + version = "2015-08-07"; owner = "steveyen"; repo = "gtreap"; sha256 = "03z5j8myrpmd0jk834l318xnyfm0n4rg15yq0d35y7j1aqx26gvk"; @@ -1895,7 +2006,7 @@ let httprouter = buildFromGitHub { rev = "6aacfd5ab513e34f7e64ea9627ab9670371b34e7"; - date = "2015-07-08"; + version = "2015-07-08"; owner = "julienschmidt"; repo = "httprouter"; sha256 = "00rrjysmq898qcrf2hfwfh9s70vwvmjx2kp5w03nz1krxa4zhrkl"; @@ -1915,7 +2026,7 @@ let i3cat = buildFromGitHub { rev = "b9ba886a7c769994ccd8d4627978ef4b51fcf576"; - date = "2015-03-21"; + version = "2015-03-21"; owner = "vincent-petithory"; repo = "i3cat"; sha256 = "1xlm5c9ajdb71985nq7hcsaraq2z06przbl6r4ykvzi8w2lwgv72"; @@ -1977,7 +2088,7 @@ let ipfs = buildFromGitHub{ rev = "7070b4d878baad57dcc8da80080dd293aa46cabd"; - date = "2016-01-12"; + version = "2016-01-12"; owner = "ipfs"; repo = "go-ipfs"; sha256 = "1b7aimnbz287fy7p27v3qdxnz514r5142v3jihqxanbk9g384gcd"; @@ -2002,9 +2113,16 @@ let sha256 = "0m8867afsvka5gp2idrmlarpjg7kxx7qacpwrz1wl8y3zxyn3945"; }; + jwt-go = buildFromGitHub { + rev = "v2.4.0"; + owner = "dgrijalva"; + repo = "jwt-go"; + sha256 = "00rvv1d2f62svd6311dkr8j56ysx8wgk9yfkb9vqf2mp5ix37dc0"; + }; + kagome = buildFromGitHub { rev = "1bbdbdd590e13a8c2f4508c67a079113cd7b9f51"; - date = "2016-01-19"; + version = "2016-01-19"; owner = "ikawaha"; repo = "kagome"; sha256 = "1isnjdkn9hnrkp5g37p2k5bbsrx0ma32v3icwlmwwyc5mppa4blb"; @@ -2095,7 +2213,7 @@ let logger = buildFromGitHub { rev = "c96f6a1a8c7b6bf2f4860c667867d90174799eb2"; - date = "2015-05-23"; + version = "2015-05-23"; owner = "calmh"; repo = "logger"; sha256 = "1f67xbvvf210g5cqa84l12s00ynfbkjinhl8y6m88yrdb025v1vg"; @@ -2118,26 +2236,34 @@ let luhn = buildFromGitHub { rev = "0c8388ff95fa92d4094011e5a04fc99dea3d1632"; - date = "2015-01-13"; + version = "2015-01-13"; owner = "calmh"; repo = "luhn"; sha256 = "1hfj1lx7wdpifn16zqrl4xml6cj5gxbn6hfz1f46g2a6bdf0gcvs"; }; lxd = buildFromGitHub { - rev = "lxd-0.17"; + rev = "lxd-2.0.0.rc4"; owner = "lxc"; repo = "lxd"; - sha256 = "1yi3dr1bgdplc6nya10k5jsj3psbf3077vqad8x8cjza2z9i48fp"; + sha256 = "1rpyyj6d38d9kmb47dcmy1x41fiacj384yx01yslsrj2l6qxcdjn"; excludedPackages = "test"; # Don't build the binary called test which causes conflicts buildInputs = [ - gettext-go websocket crypto log15 go-lxc yaml-v2 tomb protobuf pongo2 - lxd-go-systemd go-uuid tablewriter golang-petname mux go-sqlite3 goproxy - pkgs.python3 + gosexy.gettext websocket crypto log15 go-lxc yaml-v2 tomb protobuf pongo2 + go-uuid tablewriter golang-petname mux go-sqlite3 goproxy + pkgs.python3 go-systemd uuid gocapability ]; postInstall = '' cp go/src/$goPackagePath/scripts/lxd-images $bin/bin ''; + + meta = with stdenv.lib; { + description = "Daemon based on liblxc offering a REST API to manage containers"; + homepage = https://github.com/lxc/lxd; + license = licenses.asl20; + maintainers = with maintainers; [ globin fpletz ]; + platforms = platforms.linux; + }; }; manners = buildFromGitHub { @@ -2278,6 +2404,14 @@ let ''; }; + motion = buildFromGitHub { + rev = "e09baac69ad86bff1de868e8d6c4327eb0a918d7"; + owner = "fatih"; + repo = "motion"; + sha256 = "0yay4a1b5l9f4zmwkcsmr5plnp7a9b66bczy1xz4nzhl20bal6sx"; + excludedPackages = [ "testdata" ]; + }; + mousetrap = buildFromGitHub { rev = "9dbb96d2c3a964935b0870b5abaea13c98b483aa"; owner = "inconshreveable"; @@ -2300,7 +2434,7 @@ let mtpfs = buildFromGitHub { rev = "3ef47f91c38cf1da3e965e37debfc81738e9cd94"; - date = "2015-08-01"; + version = "2015-08-01"; owner = "hanwen"; repo = "go-mtpfs"; sha256 = "1f7lcialkpkwk01f7yxw77qln291sqjkspb09mh0yacmrhl231g8"; @@ -2310,7 +2444,7 @@ let mux = buildFromGitHub { rev = "5a8a0400500543e28b2886a8c52d21a435815411"; - date = "2015-08-05"; + version = "2015-08-05"; owner = "gorilla"; repo = "mux"; sha256 = "15w1bw14vx157r6v98fhy831ilnbzdsm5xzvs23j8hw6gnknzaw1"; @@ -2458,11 +2592,11 @@ let }; oh = buildFromGitHub { - rev = "f3e482f664e76dcf98d5f94dd93c216da300b78e"; - date = "2016-02-23"; + rev = "f54be52450a07398a2f605222eb22e69bb34f565"; + version = "2016-03-02"; owner = "michaelmacinnis"; repo = "oh"; - sha256 = "1j5g37jjl1kxri44ihb1bsrzx4al07dvl4s5dglb2m7bjia6iqs2"; + sha256 = "0gczqi9aw6sv7vmjdandxmaz1m6pfzchmbkf12qmpmc6dmh2wy6b"; goPackageAliases = [ "github.com/michaelmacinnis/oh" ]; buildInputs = [ adapted liner ]; disabled = isGo14; @@ -2497,7 +2631,7 @@ let opsgenie-go-sdk = buildFromGitHub { rev = "c6e1235dfed2126eb9b562c4d776baf55ccd23e3"; - date = "2015-08-24"; + version = "2015-08-24"; owner = "opsgenie"; repo = "opsgenie-go-sdk"; sha256 = "1prvnjiqmhnp9cggp9f6882yckix2laqik35fcj32117ry26p4jm"; @@ -2553,7 +2687,7 @@ let }; perks = buildFromGitHub rec { - date = "2014-07-16"; + version = "2014-07-16"; owner = "bmizerany"; repo = "perks"; rev = "d9a9656a3a4b1c2864fdb44db2ef8619772d92aa"; @@ -2561,7 +2695,7 @@ let }; beorn7.perks = buildFromGitHub rec { - date = "2015-02-23"; + version = "2015-02-23"; owner = "beorn7"; repo = "perks"; rev = "b965b613227fddccbfffe13eae360ed3fa822f8d"; @@ -2569,9 +2703,9 @@ let }; pflag = buildGoPackage rec { - date = "20131112"; + version = "20131112"; rev = "94e98a55fb412fcbcfc302555cb990f5e1590627"; - name = "pflag-${date}-${stdenv.lib.strings.substring 0 7 rev}"; + name = "pflag-${version}-${stdenv.lib.strings.substring 0 7 rev}"; goPackagePath = "github.com/spf13/pflag"; src = fetchgit { inherit rev; @@ -2611,7 +2745,7 @@ let pongo2 = buildFromGitHub { rev = "5e81b817a0c48c1c57cdf1a9056cf76bdee02ca9"; - date = "2014-10-27"; + version = "2014-10-27"; owner = "flosch"; repo = "pongo2"; sha256 = "0fd7d79644zmcirsb1gvhmh0l5vb5nyxmkzkvqpmzzcg6yfczph8"; @@ -2728,7 +2862,7 @@ let prometheus.client_model = buildFromGitHub { rev = "fa8ad6fec33561be4280a8f0514318c79d7f6cb6"; - date = "2015-02-12"; + version = "2015-02-12"; owner = "prometheus"; repo = "client_model"; sha256 = "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9"; @@ -2767,7 +2901,7 @@ let prometheus.log = buildFromGitHub { rev = "439e5db48fbb50ebbaf2c816030473a62f505f55"; - date = "2015-05-29"; + version = "2015-05-29"; owner = "prometheus"; repo = "log"; sha256 = "1fl23gsw2hn3c1y91qckr661sybqcw2gqnd1gllxn3hp6p2w6hxv"; @@ -2806,7 +2940,7 @@ let prometheus.nginx-exporter = buildFromGitHub { rev = "2cf16441591f6b6e58a8c0439dcaf344057aea2b"; - date = "2015-06-01"; + version = "2015-06-01"; owner = "discordianfish"; repo = "nginx_exporter"; sha256 = "0p9j0bbr2lr734980x2p8d67lcify21glwc5k3i3j4ri4vadpxvc"; @@ -2848,7 +2982,7 @@ let prometheus.procfs = buildFromGitHub { rev = "c91d8eefde16bd047416409eb56353ea84a186e4"; - date = "2015-06-16"; + version = "2015-06-16"; owner = "prometheus"; repo = "procfs"; sha256 = "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r"; @@ -3075,7 +3209,7 @@ let ratelimit = buildFromGitHub { rev = "772f5c38e468398c4511514f4f6aa9a4185bc0a0"; - date = "2015-06-19"; + version = "2015-06-19"; owner = "juju"; repo = "ratelimit"; sha256 = "02rs61ay6sq499lxxszjsrxp33m6zklds1xrmnr5fk73vpqfa28p"; @@ -3090,7 +3224,7 @@ let raven-go = buildFromGitHub { rev = "74c334d7b8aaa4fd1b4fc6aa428c36fed1699e28"; - date = "2015-07-21"; + version = "2015-07-21"; owner = "getsentry"; repo = "raven-go"; sha256 = "1356a7h8zp1mcywnr0y83w0h4qdblp65rcf9slbx667n8x2rzda8"; @@ -3139,7 +3273,7 @@ let restic = buildFromGitHub { rev = "4d7e802c44369b40177cd52938bc5b0930bd2be1"; - date = "2016-01-17"; + version = "2016-01-17"; owner = "restic"; repo = "restic"; sha256 = "0lf40539dy2xa5l1xy1kyn1vk3w0fmapa1h65ciksrdhn89ilrxv"; @@ -3163,12 +3297,22 @@ let rsrc = buildFromGitHub { rev = "ba14da1f827188454a4591717fff29999010887f"; - date = "2015-11-03"; + version = "2015-11-03"; owner = "akavel"; repo = "rsrc"; sha256 = "0g9fj10xnxcv034c8hpcgbhswv6as0d8l176c5nfgh1lh6klmmzc"; }; + s3gof3r = buildFromGitHub rec { + owner = "rlmcpherson"; + repo = "s3gof3r"; + rev = "v${version}"; + version = "0.5.0"; + sha256 = "10banc8hnhxpsdmlkf9nc5fjkh1349bgpd9k7lggw3yih1rvmh7k"; + disabled = isGo14; + propagatedBuildInputs = [ go-flags ]; + }; + sandblast = buildGoPackage rec { rev = "694d24817b9b7b8bacb6d458b7989b30d7fe3555"; name = "sandblast-${stdenv.lib.strings.substring 0 7 rev}"; @@ -3210,7 +3354,7 @@ let seelog = buildFromGitHub { rev = "c510775bb50d98213cfafca75a4bc5e3fddc8d8f"; - date = "2015-05-26"; + version = "2015-05-26"; owner = "cihub"; repo = "seelog"; sha256 = "1f0rwgqlffv1a7b05736a4gf4l9dn80wsfyqcnz6qd2skhwnzv29"; @@ -3218,7 +3362,7 @@ let segment = buildFromGitHub { rev = "db70c57796cc8c310613541dfade3dce627d09c7"; - date = "2016-01-05"; + version = "2016-01-05"; owner = "blevesearch"; repo = "segment"; sha256 = "09xfdlcc6bsrr5grxp6fgnw9p4cf6jc0wwa9049fd1l0zmhj2m1g"; @@ -3226,7 +3370,7 @@ let semver = buildFromGitHub { rev = "31b736133b98f26d5e078ec9eb591666edfd091f"; - date = "2015-07-20"; + version = "2015-07-20"; owner = "blang"; repo = "semver"; sha256 = "19ifi0na4cj23q3h8xv89mx7p48y0ciymhmlrq9milm0xz80wk10"; @@ -3234,7 +3378,7 @@ let serf = buildFromGitHub { rev = "668982d8f90f5eff4a766583c1286393c1d27f68"; - date = "2015-05-15"; + version = "2015-05-15"; owner = "hashicorp"; repo = "serf"; sha256 = "1h05h5xhaj27r1mh5zshnykax29lqjhfc0bx4v9swiwb873c24qk"; @@ -3258,6 +3402,13 @@ let propagatedBuildInputs = [ slices ]; }; + shlex = buildFromGitHub { + rev = "6f45313302b9c56850fc17f99e40caebce98c716"; + owner = "google"; + repo = "shlex"; + sha256 = "0ybz1w3hndma8myq3pxan36533hy9f4w598hsv4hnj21l4br8jpx"; + }; + skydns = buildFromGitHub { rev = "2.5.2b"; owner = "skynetservices"; @@ -3326,7 +3477,7 @@ let structfield = buildFromGitHub { rev = "01a738558a47fbf16712994d1737fb31c77e7d11"; - date = "2014-08-01"; + version = "2014-08-01"; owner = "vincent-petithory"; repo = "structfield"; sha256 = "1kyx71z13mf6hc8ly0j0b9zblgvj5lzzvgnc3fqh61wgxrsw24dw"; @@ -3400,7 +3551,7 @@ let syncthing-protocol011 = buildFromGitHub { rev = "84365882de255d2204d0eeda8dee288082a27f98"; - date = "2015-08-28"; + version = "2015-08-28"; owner = "syncthing"; repo = "protocol"; sha256 = "07xjs43lpd51pc339f8x487yhs39riysj3ifbjxsx329kljbflwx"; @@ -3408,11 +3559,12 @@ let }; tablewriter = buildFromGitHub { - rev = "bc39950e081b457853031334b3c8b95cdfe428ba"; - date = "2015-06-03"; + rev = "cca8bbc0798408af109aaaa239cbd2634846b340"; + version = "2016-01-15"; owner = "olekukonko"; repo = "tablewriter"; - sha256 = "0n4gqjc2dqmnbpqgi9i8vrwdk4mkgyssc7l2n4r5bqx0n3nxpbps"; + sha256 = "0f9ph3z7lh6p6gihbl1461j9yq5qiaqxr9mzdkp512n18v89ml48"; + propagatedBuildInputs = [ mattn.go-runewidth ]; }; termbox-go = buildGoPackage rec { @@ -3429,6 +3581,16 @@ let subPackages = [ "./" ]; # prevent building _demos }; + terraform = buildFromGitHub { + rev = "v0.6.13"; + owner = "hashicorp"; + repo = "terraform"; + disabled = isGo14 || isGo15; + sha256 = "1f1xm5pyz1hxqm2k74psanirpydf71pmxixplyc2x2w68hgjzi2l"; + + buildInputs = [ ]; + }; + testify = buildGoPackage rec { rev = "089c7181b8c728499929ff09b62d3fdd8df8adff"; name = "testify-${stdenv.lib.strings.substring 0 7 rev}"; @@ -3459,7 +3621,7 @@ let timer_metrics = buildFromGitHub { rev = "afad1794bb13e2a094720aeb27c088aa64564895"; - date = "2015-02-02"; + version = "2015-02-02"; owner = "bitly"; repo = "timer_metrics"; sha256 = "1b717vkwj63qb5kan4b92kx4rg6253l5mdb3lxpxrspy56a6rl0c"; @@ -3476,7 +3638,7 @@ let toml = buildFromGitHub { rev = "056c9bc7be7190eaa7715723883caffa5f8fa3e4"; - date = "2015-05-01"; + version = "2015-05-01"; owner = "BurntSushi"; repo = "toml"; sha256 = "0gkgkw04ndr5y7hrdy0r4v2drs5srwfcw2bs1gyas066hwl84xyw"; @@ -3506,7 +3668,7 @@ let usb = buildFromGitHub rec { rev = "69aee4530ac705cec7c5344418d982aaf15cf0b1"; - date = "2014-12-17"; + version = "2014-12-17"; owner = "hanwen"; repo = "usb"; sha256 = "01k0c2g395j65vm1w37mmrfkg6nm900khjrrizzpmx8f8yf20dky"; @@ -3517,7 +3679,7 @@ let uuid = buildFromGitHub { rev = "cccd189d45f7ac3368a0d127efb7f4d08ae0b655"; - date = "2015-08-24"; + version = "2015-08-24"; owner = "pborman"; repo = "uuid"; sha256 = "0hswk9ihv3js5blp9pk2bpig64zkmyp5p1zhmgydfhb0dr2w8iad"; @@ -3587,7 +3749,7 @@ let xmpp-client = buildFromGitHub { rev = "525bd26cf5f56ec5aee99464714fd1d019c119ff"; - date = "2016-01-10"; + version = "2016-01-10"; owner = "agl"; repo = "xmpp-client"; sha256 = "0a1r08zs723ikcskmn6ylkdi3frcd0i0lkx30i9q39ilf734v253"; @@ -3616,7 +3778,7 @@ let yaml-v2 = buildFromGitHub { rev = "7ad95dd0798a40da1ccdff6dff35fd177b5edf40"; - date = "2015-06-24"; + version = "2015-06-24"; owner = "go-yaml"; repo = "yaml"; sha256 = "0d4jh46jq2yjg5dp00l7yl9ilhly7k4mfvi4harafd5ap5k9wnpb"; @@ -3632,7 +3794,7 @@ let xdr = buildFromGitHub { rev = "e467b5aeb65ca8516fb3925c84991bf1d7cc935e"; - date = "2015-04-08"; + version = "2015-04-08"; owner = "calmh"; repo = "xdr"; sha256 = "1bi4b2xkjzcr0vq1wxz14i9943k71sj092dam0gdmr9yvdrg0nra"; @@ -3647,7 +3809,7 @@ let ninefans = buildFromGitHub { rev = "65b8cf069318223b1e722b4b36e729e5e9bb9eab"; - date = "2015-10-24"; + version = "2015-10-24"; owner = "9fans"; repo = "go"; sha256 = "0kzyxhs2xf0339nlnbm9gc365b2svyyjxnr86rphx5m072r32ims"; @@ -3661,7 +3823,7 @@ let godef = buildFromGitHub { rev = "ea14e800fd7d16918be88dae9f0195f7bd688586"; - date = "2015-10-24"; + version = "2015-10-24"; owner = "rogpeppe"; repo = "godef"; sha256 = "1wkvsz8nqwyp36wbm8vcw4449sfs46894nskrfj9qbsrjijvamyc"; @@ -3672,7 +3834,7 @@ let godep = buildFromGitHub { rev = "5598a9815350896a2cdf9f4f1d0a3003ab9677fb"; - date = "2015-10-15"; + version = "2015-10-15"; owner = "tools"; repo = "godep"; sha256 = "0zc1ah5cvaqa3zw0ska89a40x445vwl1ixz8v42xi3zicx16ibwz"; @@ -3767,17 +3929,27 @@ let }; go2nix = buildFromGitHub rec { - rev = "dd513f1f1336a3cdceb9dd4be0f3c47a09929651"; + rev = "4c552dadd855e3694ed3499feb46dca9cd855f60"; owner = "kamilchm"; repo = "go2nix"; - sha256 = "1ad7zcab5vjbw7a8ns0aspkblqqz0z96b7ak3zdx409rq7rlqdsj"; - buildInputs = [ go-bindata.bin tools.bin vcs go-spew gls go-difflib assertions goconvey testify kingpin ]; + sha256 = "1pwnm1vrjxvgl17pk9n1k5chmhgwxkrwp2s1bzi64xf12anibj63"; + + buildInputs = [ pkgs.makeWrapper go-bindata.bin tools.bin vcs go-spew gls go-difflib assertions goconvey testify kingpin ]; + preBuild = ''go generate ./...''; + + postInstall = '' + wrapProgram $bin/bin/go2nix \ + --prefix PATH : ${pkgs.nix-prefetch-git}/bin \ + --prefix PATH : ${pkgs.git}/bin + ''; + + allowGoReference = true; }; godotenv = buildFromGitHub rec { rev = "4ed13390c0acd2ff4e371e64d8b97c8954138243"; - date = "2015-09-07"; + version = "2015-09-07"; owner = "joho"; repo = "godotenv"; sha256 = "1wzgws4dnlavi14aw3jzdl3mdr348skgqaq8xx4j8l68irfqyh0p"; @@ -3787,10 +3959,24 @@ let goreman = buildFromGitHub rec { version = "0.0.8-rc0"; rev = "d3e62509ccf23e47a390447886c51b1d89d0934b"; - date = "2016-01-30"; owner = "mattn"; repo = "goreman"; sha256 = "153hf4dq4jh1yv35pv30idmxhc917qzl590qy5394l48d4rapgb5"; buildInputs = [ go-colortext yaml-v2 godotenv ]; }; + + # To use upower-notify, the maintainer suggests adding something like this to your configuration.nix: + # + # service.xserver.displayManager.sessionCommands = '' + # ${pkgs.dunst}/bin/dunst -shrink -geometry 0x0-50-50 -key space & # ...if don't already have a dbus notification display app + # (sleep 3; exec ${pkgs.yeshup}/bin/yeshup ${pkgs.go-upower-notify}/bin/upower-notify) & + # ''; + upower-notify = buildFromGitHub rec { + rev = "14c581e683a7e90ec9fa6d409413c16599a5323c"; + version = "2016-03-10"; + owner = "omeid"; + repo = "upower-notify"; + sha256 = "16zlvn53p9m10ph8n9gps51fkkvl6sf4afdzni6azk05j0ng49jw"; + propagatedBuildInputs = [ dbus ]; + }; }; in self diff --git a/pkgs/top-level/guile-2-test.nix b/pkgs/top-level/guile-2-test.nix index 802277d474a..70f2de75ae9 100644 --- a/pkgs/top-level/guile-2-test.nix +++ b/pkgs/top-level/guile-2-test.nix @@ -4,7 +4,7 @@ -- ludo@gnu.org */ let - allPackages = import ./all-packages.nix; + allPackages = import ./../..; pkgsFun = { system ? builtins.currentSystem }: allPackages { diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 1bf97876d88..45b5fa31407 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -362,7 +362,19 @@ rec { lts-5_5 = packages.ghc7103.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.5.nix { }; }; - lts-5 = packages.lts-5_5; + lts-5_6 = packages.ghc7103.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.6.nix { }; + }; + lts-5_7 = packages.ghc7103.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.7.nix { }; + }; + lts-5_8 = packages.ghc7103.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.8.nix { }; + }; + lts-5_9 = packages.ghc7103.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.9.nix { }; + }; + lts-5 = packages.lts-5_9; lts = packages.lts-5; }; diff --git a/pkgs/top-level/make-tarball.nix b/pkgs/top-level/make-tarball.nix index ebf19af943f..ea7e7e89d37 100644 --- a/pkgs/top-level/make-tarball.nix +++ b/pkgs/top-level/make-tarball.nix @@ -48,8 +48,8 @@ releaseTools.sourceTarball rec { # Make sure that derivation paths do not depend on the Nixpkgs path. mkdir $TMPDIR/foo ln -s $(readlink -f .) $TMPDIR/foo/bar - p1=$(nix-instantiate pkgs/top-level/all-packages.nix --dry-run -A firefox --show-trace) - p2=$(nix-instantiate $TMPDIR/foo/bar/pkgs/top-level/all-packages.nix --dry-run -A firefox) + p1=$(nix-instantiate ./. --dry-run -A firefox --show-trace) + p2=$(nix-instantiate $TMPDIR/foo/bar --dry-run -A firefox) if [ "$p1" != "$p2" ]; then echo "Nixpkgs evaluation depends on Nixpkgs path ($p1 vs $p2)!" exit 1 diff --git a/pkgs/top-level/metrics.nix b/pkgs/top-level/metrics.nix new file mode 100644 index 00000000000..2a54566ef4a --- /dev/null +++ b/pkgs/top-level/metrics.nix @@ -0,0 +1,55 @@ +{ nixpkgs, pkgs }: + +with pkgs; + +runCommand "nixpkgs-metrics" + { buildInputs = [ nix time ]; + requiredSystemFeatures = [ "benchmark" ]; + } + '' + export NIX_DB_DIR=$TMPDIR + export NIX_STATE_DIR=$TMPDIR + nix-store --init + + mkdir -p $out/nix-support + touch $out/nix-support/hydra-build-products + + run() { + local name="$1" + shift + + echo "running $@" + NIX_SHOW_STATS=1 time "$@" > /dev/null 2> stats + + cat stats + + x=$(sed -e 's/.*time elapsed: \([0-9\.]\+\).*/\1/ ; t ; d' stats) + [[ -n $x ]] || exit 1 + echo "$name.time $x s" >> $out/nix-support/hydra-metrics + + x=$(sed -e 's/.* \([0-9]\+\)maxresident.*/\1/ ; t ; d' stats) + [[ -n $x ]] || exit 1 + echo "$name.maxresident $x KiB" >> $out/nix-support/hydra-metrics + + x=$(sed -e 's/.*total allocations: \([0-9]\+\) bytes.*/\1/ ; t ; d' stats) + [[ -n $x ]] || exit 1 + echo "$name.allocations $x B" >> $out/nix-support/hydra-metrics + + x=$(sed -e 's/.*values allocated: \([0-9]\+\) .*/\1/ ; t ; d' stats) + [[ -n $x ]] || exit 1 + echo "$name.values $x" >> $out/nix-support/hydra-metrics + } + + run nixos.smallContainer nix-instantiate --dry-run ${nixpkgs}/nixos/release.nix -A closures.smallContainer.x86_64-linux + run nixos.kde nix-instantiate --dry-run ${nixpkgs}/nixos/release.nix -A closures.kde.x86_64-linux + run nixos.lapp nix-instantiate --dry-run ${nixpkgs}/nixos/release.nix -A closures.lapp.x86_64-linux + run nix-env.qa nix-env -f ${nixpkgs} -qa + run nix-env.qaDrv nix-env -f ${nixpkgs} -qa --drv-path --meta --xml + + export GC_INITIAL_HEAP_SIZE=128k + run nix-env.qaAggressive nix-env -f ${nixpkgs} -qa + run nix-env.qaDrvAggressive nix-env -f ${nixpkgs} -qa --drv-path --meta --xml + + lines=$(find ${nixpkgs} -name "*.nix" -type f | xargs cat | wc -l) + echo "loc $lines" >> $out/nix-support/hydra-metrics + '' diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 455b99a6cf1..fbc237b5de4 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -113,7 +113,8 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/M/MD/MDOOTSON/${name}.tar.gz"; sha256 = "075m880klf66pbcfk0la2nl60vd37jljizqndrklh5y4zvzdy1nr"; }; - propagatedBuildInputs = [ pkgs.pkgconfig pkgs.gtk2 pkgs.wxGTK ModulePluggable ]; + propagatedBuildInputs = [ pkgs.pkgconfig pkgs.gtk2 pkgs.wxGTK + ModulePluggable ModuleBuild ]; }; AnyEvent = buildPerlPackage rec { @@ -166,13 +167,16 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ Mouse ]; }; - ApacheLogFormatCompiler = buildPerlModule { - name = "Apache-LogFormat-Compiler-0.13"; + ApacheLogFormatCompiler = buildPerlModule rec { + name = "Apache-LogFormat-Compiler-0.33"; src = fetchurl { - url = mirror://cpan/authors/id/K/KA/KAZEBURO/Apache-LogFormat-Compiler-0.13.tar.gz; - sha256 = "b4185125501e288efbc664da8b723ff86f0b69eb57d3c7c69c7d2069aab0efb0"; + url = "mirror://cpan/authors/id/K/KA/KAZEBURO/${name}.tar.gz"; + sha256 = "17blk3zhp05azgypn25ydxf3d7fyfgr9bxyiv7xkchhqma96vwqv"; }; - buildInputs = [ HTTPMessage TestRequires TryTiny URI ]; + buildInputs = [ HTTPMessage TestRequires TryTiny URI TestMockTime + POSIXstrftimeCompiler ]; + # We cannot change the timezone on the fly. + prePatch = "rm t/04_tz.t"; meta = { homepage = https://github.com/kazeburo/Apache-LogFormat-Compiler; description = "Compile a log format string to perl-code"; @@ -274,11 +278,11 @@ let self = _self // overrides; _self = with self; { }; AppSqitch = buildPerlModule rec { - version = "0.9993"; + version = "0.9994"; name = "App-Sqitch-${version}"; src = fetchurl { url = "mirror://cpan/authors/id/D/DW/DWHEELER/${name}.tar.gz"; - sha256 = "0pf7gvssldhify9dn3sxyi6av5gld4h27d3krdpcql3hbv886gcc"; + sha256 = "0in602z40s50fdlmws4g0a1pb8p7yn0wx8jgsacz26a4i1q7gpi4"; }; buildInputs = [ CaptureTiny PathClass TestDeep TestDir TestException @@ -370,6 +374,18 @@ let self = _self // overrides; _self = with self; { }; }; + ArchiveTar = buildPerlPackage { + name = "Archive-Tar-2.04"; + src = fetchurl { + url = mirror://cpan/authors/id/B/BI/BINGOS/Archive-Tar-2.04.tar.gz; + sha256 = "c3741bba06a468a5a4db6a79d772c55cf2f6673cf33241a6e6a758707a71d293"; + }; + meta = { + description = "Manipulates TAR archives"; + license = "perl"; + }; + }; + ArchiveZip = buildPerlPackage { name = "Archive-Zip-1.16"; src = fetchurl { @@ -396,6 +412,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/Z/ZE/ZEFRAM/${name}.tar.gz"; sha256 = "67f45fef6a23b7548f387b675cbf7881bf9da62d7d007cbf90d3a4b851b99eb7"; }; + buildInputs = [ ModuleBuild ]; propagatedBuildInputs = [ ScalarString DataInteger DigestCRC ]; }; @@ -414,6 +431,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/Z/ZE/ZEFRAM/${name}.tar.gz"; sha256 = "55db4520617d859d88c0ee54965da815b7226d792b8cdc8debf92073559e0463"; }; + buildInputs = [ ModuleBuild ]; propagatedBuildInputs = [ModuleRuntime ParamsClassify CryptPasswdMD5 CryptDES DataEntropy CryptUnixCryptXS CryptEksblowfish CryptMySQL DigestMD4 AuthenDecHpwd]; }; @@ -691,10 +709,10 @@ let self = _self // overrides; _self = with self; { }; CacheFastMmap = buildPerlPackage rec { - name = "Cache-FastMmap-1.40"; + name = "Cache-FastMmap-1.43"; src = fetchurl { url = "mirror://cpan/modules/by-module/Cache/${name}.tar.gz"; - sha256 = "0h3ckr04cdn6dvl40m4m97vl5ybf30v1lwhw3jvkr92kpksvq4hd"; + sha256 = "18k10bhi67iyy8igw8hwb339miwscgnsh9y2pbncw6gdr2b610vi"; }; }; @@ -875,14 +893,13 @@ let self = _self // overrides; _self = with self; { }; CatalystActionREST = buildPerlPackage rec { - name = "Catalyst-Action-REST-1.19"; + name = "Catalyst-Action-REST-1.20"; src = fetchurl { - url = "mirror://cpan/authors/id/F/FR/FREW/${name}.tar.gz"; - sha256 = "0qiw6b932a73prrg8vw9brpdvjqm37c6wmbliyxvmz0kij6pi2qd"; + url = mirror://cpan/authors/id/J/JJ/JJNAPIORK/Catalyst-Action-REST-1.20.tar.gz; + sha256 = "c0470541ec0016b837db3186ed77915813c8b856b941db89b86db8602e31ead6"; }; buildInputs = [ TestRequires ]; - propagatedBuildInputs = [ CatalystRuntime ClassInspector LWP MROCompat - ModulePluggable Moose ParamsValidate URIFind namespaceautoclean ]; + propagatedBuildInputs = [ CatalystRuntime ClassInspector JSONMaybeXS MROCompat ModulePluggable Moose ParamsValidate URIFind namespaceautoclean ]; meta = { description = "Automated REST Method Dispatching"; license = "perl"; @@ -1416,10 +1433,10 @@ let self = _self // overrides; _self = with self; { }; CGI = buildPerlPackage rec { - name = "CGI-4.26"; + name = "CGI-4.28"; src = fetchurl { url = "mirror://cpan/authors/id/L/LE/LEEJO/${name}.tar.gz"; - sha256 = "0k8rcmgl9ysk6h4racd5sximida5ypn8fdzi7q34rpq4l7xqcm2n"; + sha256 = "1297d3ed6616cacb4eb57860e3e743f3890111e7a63ca08849930f42f1360532"; }; buildInputs = [ TestDeep TestWarn ]; propagatedBuildInputs = [ HTMLParser ]; @@ -1488,6 +1505,8 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/N/NW/NWIGER/${name}.tgz"; sha256 = "0qx8kxj0iy55ss9kraqr8q2m4igi2ylajff7d6qvphqpfx90fjb5"; }; + + propagatedBuildInputs = [ CGI ]; }; CGIPSGI = buildPerlPackage { @@ -1509,6 +1528,7 @@ let self = _self // overrides; _self = with self; { sha256 = "1xsl2pz1jrh127pq0b01yffnj4mnp9nvkp88h5mndrscq9hn8xa6"; }; buildInputs = [ DBFile ]; + propagatedBuildInputs = [ CGI ]; }; CGISimple = buildPerlPackage rec { @@ -1797,6 +1817,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/Z/ZE/ZEFRAM/${name}.tar.gz"; sha256 = "054d0db62df90f22601f2a18fc84e9ca026d81601f5940b2fcc543e39d69b36b"; }; + buildInputs = [ ModuleBuild ]; propagatedBuildInputs = [ParamsClassify]; }; @@ -2401,6 +2422,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/Z/ZE/ZEFRAM/${name}.tar.gz"; sha256 = "3cc7126d5841107237a9be2dc5c7fbc167cf3c4b4ce34678a8448b850757014c"; }; + buildInputs = [ ModuleBuild ]; propagatedBuildInputs = [ClassMix]; }; @@ -2563,10 +2585,10 @@ let self = _self // overrides; _self = with self; { }; CSSDOM = buildPerlPackage rec { - name = "CSS-DOM-0.15"; + name = "CSS-DOM-0.16"; src = fetchurl { url = "mirror://cpan/authors/id/S/SP/SPROUT/${name}.tar.gz"; - sha256 = "12xb6xsd828r5pxavvamhqf3pilj9prvcnxmzs4fpjj07x1ikwy4"; + sha256 = "0s1gg6jvcxlj87sbbbcn9riw7rrh2n85hkbaim9civki8vj8vg9z"; }; buildInputs = [ Clone ]; @@ -2685,6 +2707,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/Z/ZE/ZEFRAM/${name}.tar.gz"; sha256 = "2611c4a1a3038594d79ea4ed14d9e15a9af8f77105f51667795fe4f8a53427e4"; }; + buildInputs = [ ModuleBuild ]; propagatedBuildInputs = [ParamsClassify DataFloat CryptRijndael HTTPLite]; }; @@ -2694,6 +2717,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/Z/ZE/ZEFRAM/${name}.tar.gz"; sha256 = "698ecb092a3284e260cd3c3208408feb791d7d0f06a02673f9125ab2d51cc2d8"; }; + buildInputs = [ ModuleBuild ]; }; DataGUID = buildPerlPackage { @@ -2710,6 +2734,18 @@ let self = _self // overrides; _self = with self; { }; }; + DataHexDump = buildPerlPackage { + name = "Data-HexDump-0.02"; + src = fetchurl { + url = mirror://cpan/authors/id/F/FT/FTASSIN/Data-HexDump-0.02.tar.gz; + sha256 = "1a9d843e7f667c1c6f77c67af5d77e7462ff23b41937cb17454d03535cd9be70"; + }; + meta = { + description = "Hexadecimal Dumper"; + maintainers = with stdenv.lib.maintainers; [ AndersonTorres ]; + }; + }; + DataHierarchy = buildPerlPackage { name = "Data-Hierarchy-0.34"; src = fetchurl { @@ -2739,6 +2775,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/Z/ZE/ZEFRAM/${name}.tar.gz"; sha256 = "1dk04jf78sv63lww1qzagxlywcc04cfd3cfvzz168d24db9cr5bz"; }; + buildInputs = [ ModuleBuild ]; }; DataOptList = buildPerlPackage { @@ -2792,6 +2829,7 @@ let self = _self // overrides; _self = with self; { url = mirror://cpan/authors/id/N/NE/NEELY/Data-Serializer-0.60.tar.gz; sha256 = "0ca4s811l7f2bqkx7vnyxbpp4f0qska89g2pvsfb3k0bhhbk0jdk"; }; + buildInputs = [ ModuleBuild ]; meta = { description = "Modules that serialize data structures"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; @@ -2976,6 +3014,7 @@ let self = _self // overrides; _self = with self; { url = mirror://cpan/authors/id/J/JH/JHOBLITT/DateTime-Format-DateParse-0.05.tar.gz; sha256 = "f6eca4c8be66ce9992ee150932f8fcf07809fd3d1664caf200b8a5fd3a7e5ebc"; }; + buildInputs = [ ModuleBuild ]; propagatedBuildInputs = [ DateTime DateTimeTimeZone TimeDate ]; meta = { description = "Parses Date::Parse compatible formats"; @@ -3181,6 +3220,7 @@ let self = _self // overrides; _self = with self; { }; buildInputs = [ TestMost ModuleBuild ]; propagatedBuildInputs = [ DateTime DateTimeFormatFlexible DateTimeFormatICal DateTimeFormatNatural TimeDate ]; + doCheck = false; meta = { description = "Parse a date/time string using the best method available"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; @@ -4698,6 +4738,18 @@ let self = _self // overrides; _self = with self; { buildInputs = [ ]; }; + FCGIProcManager = buildPerlPackage { + name = "FCGI-ProcManager-0.25"; + src = fetchurl { + url = mirror://cpan/authors/id/A/AR/ARODLAND/FCGI-ProcManager-0.25.tar.gz; + sha256 = "b9ae1146e2638f3aa477c9ab3ceb728f92c5e36e4cce8f0b5847efad601d024d"; + }; + meta = { + description = "A perl-based FastCGI process manager"; + license = "unknown"; + }; + }; + FennecLite = buildPerlModule { name = "Fennec-Lite-0.004"; src = fetchurl { @@ -4819,6 +4871,21 @@ let self = _self // overrides; _self = with self; { }; }; + FileHandleUnget = buildPerlPackage rec { + name = "FileHandle-Unget-0.1628"; + src = fetchurl { + url = "mirror://cpan/authors/id/D/DC/DCOPPIT/${name}.tar.gz"; + sha256 = "9ef4eb765ddfdc35b350905d8dd0a1e12139eabc586652811bfab41972100fdf"; + }; + buildInputs = [ FileSlurp URI ]; + meta = { + homepage = https://github.com/coppit/filehandle-unget/; + description = "FileHandle which supports multi-byte unget"; + license = stdenv.lib.licenses.gpl2; + maintainers = with maintainers; [ romildo ]; + }; + }; + FileHomeDir = buildPerlPackage { name = "File-HomeDir-1.00"; src = fetchurl { @@ -5321,6 +5388,22 @@ let self = _self // overrides; _self = with self; { }; }; + grepmail = buildPerlPackage rec { + name = "grepmail-5.3104"; + src = fetchurl { + url = "mirror://cpan/authors/id/D/DC/DCOPPIT/${name}.tar.gz"; + sha256 = "7969e569ec54b2f569a5af56ac4d884c630ad850974658219b0b6953e97b5d3d"; + }; + buildInputs = [ FileSlurp URI ]; + propagatedBuildInputs = [ DateManip DigestMD5 MailMboxMessageParser TimeDate ]; + meta = { + homepage = https://github.com/coppit/grepmail; + description = "Search mailboxes for mail matching a regular expression"; + license = stdenv.lib.licenses.gpl2; + maintainers = with maintainers; [ romildo ]; + }; + }; + GrowlGNTP = buildPerlModule rec { name = "Growl-GNTP-0.20"; src = fetchurl { @@ -5443,12 +5526,17 @@ let self = _self // overrides; _self = with self; { }; HookLexWrap = buildPerlPackage rec { - name = "Hook-LexWrap-0.24"; + name = "Hook-LexWrap-0.25"; src = fetchurl { - url = "mirror://cpan/authors/id/C/CH/CHORNY/${name}.tar.gz"; - sha256 = "0nyfirbdrgs2cknifqr1pf8xd5q9xnv91gy7jha4crp1hjqvihj4"; + url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz"; + sha256 = "08ab9af6bd9b4560702d9d994ad9d905af0c2fd24090d1480ff640f137c1430d"; + }; + buildInputs = [ ModuleBuildTiny pkgs.unzip ]; + meta = { + homepage = https://github.com/chorny/Hook-LexWrap; + description = "Lexically scoped subroutine wrappers"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; - buildInputs = [ pkgs.unzip ]; }; HTMLElementExtended = buildPerlPackage { @@ -5675,6 +5763,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/W/WO/WONKO/${name}.tar.gz"; sha256 = "07ahpfgidxsw2yb7y8i7bbr8s64aq6qgq832h9jswmksxbd0l43q"; }; + propagatedBuildInputs = [ CGI ]; }; HTMLTidy = buildPerlPackage rec { @@ -5820,6 +5909,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/N/NE/NEILB/${name}.tar.gz"; sha256 = "10svyy8r5ca86spz21r0k2mdy8g2slzssin4qbg101zc9kr5r65a"; }; + buildInputs = [ ModuleBuild ]; }; HTTPMessage = buildPerlPackage { @@ -5916,14 +6006,6 @@ let self = _self // overrides; _self = with self; { }; }; - I18NLangTags = buildPerlPackage { - name = "I18N-LangTags-0.35"; - src = fetchurl { - url = mirror://cpan/authors/id/S/SB/SBURKE/I18N-LangTags-0.35.tar.gz; - sha256 = "0idwfi7k8l44d9akpdj6ygdz3q8zxr690m18s7w23ms9d55bh3jy"; - }; - }; - "if" = null; # For backwards compatibility. @@ -6082,6 +6164,18 @@ let self = _self // overrides; _self = with self; { }; }; + IOSocketIP = buildPerlPackage { + name = "IO-Socket-IP-0.37"; + src = fetchurl { + url = mirror://cpan/authors/id/P/PE/PEVANS/IO-Socket-IP-0.37.tar.gz; + sha256 = "2adc5f0b641d41f662b4d99c0795780c62f9af9119884d053265fc8858ae6f7b"; + }; + meta = { + description = "Family-neutral IP socket supporting both IPv4 and IPv6"; + license = "perl"; + }; + }; + IOSocketInet6 = buildPerlPackage rec { name = "IO-Socket-INET6-2.72"; src = fetchurl { @@ -6285,19 +6379,20 @@ let self = _self // overrides; _self = with self; { }; InlineC = buildPerlPackage rec { - name = "Inline-C-0.62"; + name = "Inline-C-0.76"; src = fetchurl { - url = "mirror://cpan/authors/id/E/ET/ETJ/${name}.tar.gz"; - sha256 = "0clggdpj5mmi35vm2991f9jsgv2a3s8r4f1bd88xxk8akv5b8i3r"; + url = "mirror://cpan/authors/id/I/IN/INGY/${name}.tar.gz"; + sha256 = "0dcs39zjiglif3ss8p8yl0jyqk7qvc9g1ad9wi4kq79k9lxp3s92"; }; postPatch = '' # this test will fail with chroot builds rm -f t/08taint.t + rm -f t/28autowrap.t ''; - buildInputs = [ TestWarn FileCopyRecursive ]; + buildInputs = [ TestWarn FileCopyRecursive FileShareDirInstall IOAll Pegex YAMLLibYAML ]; propagatedBuildInputs = [ Inline ]; meta = { @@ -6699,7 +6794,6 @@ let self = _self // overrides; _self = with self; { url = mirror://cpan/authors/id/T/TO/TODDR/Locale-Maketext-1.23.tar.gz; sha256 = "1r1sq7djafvk5abzc4l068p39dz44hlpgdldj3igvn2bjz78cli1"; }; - propagatedBuildInputs = [I18NLangTags]; }; LocaleMaketextFuzzy = buildPerlPackage { @@ -6735,6 +6829,18 @@ let self = _self // overrides; _self = with self; { }; }; + LocaleMsgfmt = buildPerlPackage { + name = "Locale-Msgfmt-0.15"; + src = fetchurl { + url = mirror://cpan/authors/id/A/AZ/AZAWAWI/Locale-Msgfmt-0.15.tar.gz; + sha256 = "c3276831cbeecf58be02081bcc180bd348daa35da21a7737b7b038a59f643ab4"; + }; + meta = { + description = "Compile .po files to .mo files"; + license = "perl"; + }; + }; + LocalePO = buildPerlPackage { name = "Locale-PO-0.23"; src = fetchurl { @@ -6850,11 +6956,11 @@ let self = _self // overrides; _self = with self; { }; }; - Log4Perl = buildPerlPackage rec { - name = "Log-Log4perl-1.46"; + LogLog4perl = buildPerlPackage rec { + name = "Log-Log4perl-1.47"; src = fetchurl { url = "mirror://cpan/authors/id/M/MS/MSCHILLI/${name}.tar.gz"; - sha256 = "31011a17c04e78016e73eaa4865d0481d2ffc3dc22813c61065d90ad73c64e6f"; + sha256 = "9001dded011226538b9a50c7856815bb0dba72a1e6218fdcaba56f651356b96f"; }; meta = { homepage = https://mschilli.github.io/log4perl/; @@ -6864,6 +6970,9 @@ let self = _self // overrides; _self = with self; { }; }; + # For backwards compatibility. + Log4Perl = self.LogLog4perl; + LogDispatchArray = buildPerlPackage { name = "Log-Dispatch-Array-1.003"; src = fetchurl { @@ -7024,6 +7133,22 @@ let self = _self // overrides; _self = with self; { inherit fetchurl buildPerlPackage stdenv DBDmysql; }; + MailMboxMessageParser = buildPerlPackage rec { + name = "Mail-Mbox-MessageParser-1.5105"; + src = fetchurl { + url = "mirror://cpan/authors/id/D/DC/DCOPPIT/${name}.tar.gz"; + sha256 = "641edd8b7ab74de671ab4931311413c1bd037a1c3eaa0a0c97451cd7b104f2d8"; + }; + buildInputs = [ FileSlurp TextDiff URI ]; + propagatedBuildInputs = [ FileHandleUnget ]; + meta = { + homepage = https://github.com/coppit/mail-mbox-messageparser; + description = "A fast and simple mbox folder reader"; + license = stdenv.lib.licenses.gpl2; + maintainers = with maintainers; [ romildo ]; + }; + }; + MailDKIM = buildPerlPackage rec { name = "Mail-DKIM-0.40"; src = fetchurl { @@ -7681,25 +7806,51 @@ let self = _self // overrides; _self = with self; { description = "Embed a Perl interpreter in the Apache HTTP server"; }; }; - - Mojolicious = buildPerlPackage { - name = "Mojolicious-4.63"; + Mojolicious = buildPerlPackage rec { + name = "Mojolicious-6.56"; src = fetchurl { - url = mirror://cpan/authors/id/S/SR/SRI/Mojolicious-4.63.tar.gz; - sha256 = "f20f77e86fc560dac1c958e765ed64242dcf6343939ed605b45f2bbe2596d5e9"; + url = "mirror://cpan/authors/id/S/SR/SRI/${name}.tar.gz"; + sha256 = "82f73553836ac378edf825fd9f24be982653be9e0d78f8ba38b7841aabdafb02"; + }; + propagatedBuildInputs = [ JSONPP ]; + meta = { + homepage = http://mojolicious.org; + description = "Real-time web framework"; + license = with stdenv.lib.licenses; [ artistic2 ]; + }; + }; + + MojoIOLoopForkCall = buildPerlModule rec { + name = "Mojo-IOLoop-ForkCall-0.17"; + src = fetchurl { + url = "mirror://cpan/authors/id/J/JB/JBERGER/${name}.tar.gz"; + sha256 = "886de5c3b44194a86228471075fac4036073bda19093e776c702aa65c3ef1824"; + }; + propagatedBuildInputs = [ IOPipely Mojolicious ]; + meta = { + description = "Run blocking functions asynchronously by forking"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + }; + }; + + IOPipely = buildPerlPackage rec { + name = "IO-Pipely-0.005"; + src = fetchurl { + url = "mirror://cpan/authors/id/R/RC/RCAPUTO/${name}.tar.gz"; + sha256 = "e33b6cf5cb2b46ee308513f51e623987a50a89901e81bf19701dce35179f2e74"; }; meta = { - homepage = http://mojolicio.us; - description = "Real-time web framework"; - license = stdenv.lib.licenses.artistic2; + homepage = http://search.cpan.org/dist/IO-Pipely/; + description = "Portably create pipe() or pipe-like handles"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; }; Moo = buildPerlPackage rec { - name = "Moo-2.000002"; + name = "Moo-2.001001"; src = fetchurl { url = "mirror://cpan/authors/id/H/HA/HAARG/${name}.tar.gz"; - sha256 = "fb4bfa751f0dd06bd70f2e06e811f85a640501f263c228a8efafbf6b26691fd4"; + sha256 = "a68155b642f389cb1cc40139e2663d0c5d15eb71d9ecb0961623a73c10dd8ec0"; }; buildInputs = [ TestFatal ]; propagatedBuildInputs = [ ClassMethodModifiers DevelGlobalDestruction ModuleRuntime RoleTiny ]; @@ -8416,10 +8567,10 @@ let self = _self // overrides; _self = with self; { }; Mouse = buildPerlModule rec { - name = "Mouse-2.3.0"; + name = "Mouse-v2.4.5"; src = fetchurl { - url = "mirror://cpan/authors/id/G/GF/GFUJI/${name}.tar.gz"; - sha256 = "0ycl521mmc5989934502730rzsi9xqihdpnjihrkhflqmrzmaqwq"; + url = "mirror://cpan/authors/id/S/SY/SYOHEX/${name}.tar.gz"; + sha256 = "1f4dps68f2w1fwqjfpr4kllbcbwd744v3h1r9rkpwc2fhvq3q8hl"; }; buildInputs = [ ModuleBuildXSUtil TestException TestLeakTrace TestRequires TestOutput @@ -8819,10 +8970,10 @@ let self = _self // overrides; _self = with self; { }; NetSMTPSSL = buildPerlPackage { - name = "Net-SMTP-SSL-1.01"; + name = "Net-SMTP-SSL-1.03"; src = fetchurl { - url = mirror://cpan/authors/id/C/CW/CWEST/Net-SMTP-SSL-1.01.tar.gz; - sha256 = "12b2xvrd253ngvzwf81s9han4jr94l39vs5ca70pzr3wpi39qn8k"; + url = mirror://cpan/authors/id/R/RJ/RJBS/Net-SMTP-SSL-1.03.tar.gz; + sha256 = "05y94mb1vdw32mvwb0cp2h4ggh32f8j8nwwfjb8kjwxvfkfhyp9h"; }; propagatedBuildInputs = [IOSocketSSL]; }; @@ -8993,7 +9144,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/W/WR/WROG/${name}.tar.gz"; sha256 = "1nh9988436rmmmd6x2zz1fyrqy2005a1gvqzgvnc1pg2ylg61fqf"; }; - propagatedBuildInputs = [ NetOpenIDCommon JSON LWP ]; + propagatedBuildInputs = [ CGI NetOpenIDCommon JSON LWP ]; }; PackageConstants = buildPerlPackage { @@ -9088,7 +9239,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/modules/by-module/Params/${name}.tar.gz"; sha256 = "1d4ysd95flszrxrnjgy6s7b80jkagjsb939h42i2hix4q20sy0a1"; }; - buildInputs = [ ExtUtilsParseXS ]; + buildInputs = [ ModuleBuild ExtUtilsParseXS ]; }; ParamsUtil = buildPerlPackage { @@ -9240,6 +9391,20 @@ let self = _self // overrides; _self = with self; { }; }; + Pegex = buildPerlPackage rec { + name = "Pegex-0.60"; + src = fetchurl { + url = "mirror://cpan/authors/id/I/IN/INGY/${name}.tar.gz"; + sha256 = "317347f8c6355e886d87aef4c30fb4cb6cfa3e46adf62f59e6141ec05a97f2cf"; + }; + buildInputs = [ FileShareDirInstall YAMLLibYAML ]; + meta = { + homepage = https://github.com/ingydotnet/pegex-pm; + description = "Acmeist PEG Parser Framework"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + }; + }; + Perl5lib = buildPerlPackage rec { name = "perl5lib-1.02"; src = fetchurl { @@ -9383,7 +9548,10 @@ let self = _self // overrides; _self = with self; { sha256 = "0vvppxs36729lggrx4s1gn37lzsm794wfkm3k386bwhkmk7sr31i"; }; buildInputs = [ FileShareDirInstall TestRequires ]; - propagatedBuildInputs = [ ApacheLogFormatCompiler DevelStackTrace DevelStackTraceAsHTML FileShareDir FilesysNotifySimple HTTPBody HTTPMessage HashMultiValue LWP StreamBuffered TestTCP TryTiny URI ]; + propagatedBuildInputs = [ ApacheLogFormatCompiler DevelStackTrace + DevelStackTraceAsHTML FileShareDir FilesysNotifySimple HTTPBody + HTTPMessage HashMultiValue LWP StreamBuffered TestTCP TryTiny URI + POSIXstrftimeCompiler ]; meta = { homepage = https://github.com/plack/Plack; description = "Perl Superglue for Web frameworks and Web Servers (PSGI toolkit)"; @@ -9858,6 +10026,21 @@ let self = _self // overrides; _self = with self; { }; }; + POSIXstrftimeCompiler = buildPerlModule rec { + name = "POSIX-strftime-Compiler-0.41"; + src = fetchurl { + url = "mirror://cpan/authors/id/K/KA/KAZEBURO/${name}.tar.gz"; + sha256 = "670b89e11500f3808c9e21b1c300089622f68906ff12b1cbfba8e30d3a1c3739"; + }; + # We cannot change timezones on the fly. + prePatch = "rm t/04_tzset.t"; + meta = { + homepage = https://github.com/kazeburo/POSIX-strftime-Compiler; + description = "GNU C library compatible strftime for loggers and servers"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + }; + }; + Readonly = buildPerlModule rec { name = "Readonly-2.01"; src = fetchurl { @@ -10071,7 +10254,7 @@ let self = _self // overrides; _self = with self; { sha256 = "832c84b4f19e97781e8902f123a659fdcfef68e0ed9cfe09055852e9d68f7afc"; }; buildInputs = [ TestException ]; - propagatedBuildInputs = [ DateTime DateTimeFormatDateParse Error ExceptionClass HTTPCookies HTTPMessage LWP ParamsValidate URI ]; + propagatedBuildInputs = [ CGI DateTime DateTimeFormatDateParse Error ExceptionClass HTTPCookies HTTPMessage LWP ParamsValidate URI ]; meta = { description = "Talk to RT installation using REST protocol"; license = "perl"; @@ -10117,6 +10300,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/Z/ZE/ZEFRAM/${name}.tar.gz"; sha256 = "d3a45cc137bb9f7d8848d5a10a5142d275a98f8dcfd3adb60593cee9d33fa6ae"; }; + buildInputs = [ ModuleBuild ]; }; ScopeGuard = buildPerlPackage { @@ -10801,14 +10985,17 @@ let self = _self // overrides; _self = with self; { }; }; - SubName = buildPerlPackage { - name = "Sub-Name-0.0502"; + SubName = buildPerlPackage rec { + name = "Sub-Name-0.15"; src = fetchurl { - url = mirror://cpan/authors/id/C/CH/CHIPS/Sub-Name-0.0502.tar.gz; - sha256 = "1r197binpdy4xfh65qkxxvi9c39pmvvcny4rl8a7zrk1jcws6fac"; + url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz"; + sha256 = "dabc9a4abcbe067d120ce005b4203b8a44291cbda013900152ba19a1e7c1c8c8"; }; meta = { - description = "(Re)name a sub"; + homepage = https://github.com/p5sagit/Sub-Name; + description = "(re)name a sub"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; }; }; @@ -11640,18 +11827,33 @@ let self = _self // overrides; _self = with self; { }; }; - TestMockModule = buildPerlPackage { - name = "Test-MockModule-0.05"; + TestMockModule = buildPerlModule { + name = "Test-MockModule-0.11"; src = fetchurl { - url = mirror://cpan/authors/id/S/SI/SIMONFLK/Test-MockModule-0.05.tar.gz; - sha256 = "01vf75higpap5mwm5fyas08b3qcmy5bfq1c3wl4h0y3nihjibib7"; + url = mirror://cpan/authors/id/G/GF/GFRANKS/Test-MockModule-0.11.tar.gz; + sha256 = "1f8l5y9dzik7a19mdbydqa0yxc4x0ilgpf9yaq6ix0bzlsilnn05"; }; + propagatedBuildInputs = [ SUPER ]; meta = { maintainers = with maintainers; [ ocharles ]; platforms = stdenv.lib.platforms.unix; }; }; + SUPER = buildPerlPackage rec { + name = "SUPER-1.20141117"; + src = fetchurl { + url = "mirror://cpan/authors/id/C/CH/CHROMATIC/${name}.tar.gz"; + sha256 = "1a620e7d60aee9b13b1b26a44694c43fdb2bba1755cfff435dae83c7d42cc0b2"; + }; + propagatedBuildInputs = [ SubIdentify ]; + meta = { + description = "Control superclass method dispatch"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + }; + }; + + TestMockObject = buildPerlPackage rec { name = "Test-MockObject-1.20150527"; src = fetchurl { diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ade98083aa3..c8438382a7f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -15,8 +15,10 @@ let callPackage = pkgs.newScope self; + bootstrapped-pip = callPackage ../development/python-modules/bootstrapped-pip { }; + buildPythonPackage = makeOverridable (callPackage ../development/python-modules/generic { - bootstrapped-pip = callPackage ../development/python-modules/bootstrapped-pip { }; + inherit bootstrapped-pip; }); buildPythonApplication = args: buildPythonPackage ({namePrefix="";} // args ); @@ -40,7 +42,7 @@ let in modules // { - inherit python isPy26 isPy27 isPy33 isPy34 isPy35 isPyPy isPy3k pythonName buildPythonPackage buildPythonApplication; + inherit python bootstrapped-pip isPy26 isPy27 isPy33 isPy34 isPy35 isPyPy isPy3k pythonName buildPythonPackage buildPythonApplication; # helpers @@ -99,12 +101,11 @@ in modules // { homepage = "https://python-discid.readthedocs.org/"; license = licenses.lgpl3Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/discid/${name}.tar.gz"; - md5 = "2ad2141452dd10b03ad96ccdad075235"; + sha256 = "b39d443051b26d0230be7a6c616243daae93337a8711dd5d4119bb6a0e516fa8"; }; patchPhase = '' @@ -196,7 +197,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/a/aafigure/${name}.tar.gz"; - md5 = "5322888a21eb0bb2e749fbf98eddf574"; + sha256 = "090c88beb091d28a233f854e239713aa15d8d1906ea16211855345c912e8a091"; }; propagatedBuildInputs = with self; [ pillow ]; @@ -235,7 +236,7 @@ in modules // { sha256 = "1ywimbisgb5g7xl9nrfwcm7dv3j8fsrjfp7bxb3l58zbsrzj6z2s"; }; - propagatedBuildInputs = with self; [ appdirs colorama dateutil requests2 requests_toolbelt sqlalchemy7 ]; + propagatedBuildInputs = with self; [ appdirs colorama dateutil requests2 requests_toolbelt sqlalchemy ]; makeWrapperArgs = [ "--prefix LIBFUSE_PATH : ${pkgs.fuse}/lib/libfuse.so" ]; @@ -533,7 +534,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/a/almir/${name}.zip"; - md5 = "9a1f3c72a039622ca72b74be7a1cd37e"; + sha256 = "5dc0b8a5071f3ff46cd2d92608f567ba446e4c733c063b17d89703caeb9868fe"; }; buildInputs = with self; [ @@ -627,7 +628,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/a/anyjson/${name}.tar.gz"; - md5 = "2ea28d6ec311aeeebaf993cb3008b27c"; + sha256 = "37812d863c9ad3e35c0734c42e0bf0320ce8c3bed82cd20ad54cb34d158157ba"; }; buildInputs = with self; [ self.nose ]; @@ -664,7 +665,7 @@ in modules // { src = pkgs.fetchurl { url = "http://py-amqplib.googlecode.com/files/${name}.tgz"; - sha1 = "f124e5e4a6644bf6d1734032a01ac44db1b25a29"; + sha256 = "0f2618b74d95cd360a6d46a309a3fb1c37d881a237e269ac195a69a34e0e2f62"; }; # error: invalid command 'test' @@ -745,7 +746,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/a/apipkg/${name}.tar.gz"; - md5 = "17e5668601a2322aff41548cb957e7c8"; + sha256 = "2e38399dbe842891fe85392601aab8f40a8f4cc5a9053c326de35a1cc0297ac6"; }; buildInputs = with self; [ pytest ]; @@ -762,7 +763,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/a/appdirs/appdirs-1.4.0.tar.gz"; - md5 = "1d17b4c9694ab84794e228f28dc3275b"; + sha256 = "8fc245efb4387a4e3e0ac8ebcc704582df7d72ff6a42a53f5600bbb18fdaadc5"; }; meta = { @@ -805,7 +806,7 @@ in modules // { src = pkgs.fetchurl { url = "http://apsw.googlecode.com/files/${name}.zip"; - sha1 = "fa4aec08e59fa5964197f59ba42408d64031675b"; + sha256 = "cb121b2bce052609570a2f6def914c0aa526ede07b7096dddb78624d77f013eb"; }; buildInputs = with self; [ pkgs.sqlite ]; @@ -841,7 +842,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/f/funcsigs/${name}.tar.gz"; - md5 = "fb1d031f284233e09701f6db1281c2a5"; + sha256 = "d83ce6df0b0ea6618700fe1db353526391a8a3ada1b7aba52fed7a61da772033"; }; buildInputs = with self; [ @@ -895,7 +896,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/a/args/${name}.tar.gz"; - md5 = "66faf79ba2511def7b8b81d542482046"; + sha256 = "a785b8d837625e9b61c39108532d95b85274acd679693b71ebb5156848fcf814"; }; meta = { @@ -919,20 +920,38 @@ in modules // { }); + chai = buildPythonPackage rec { + name = "chai-${version}"; + version = "1.1.1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/c/chai/${name}.tar.gz"; + sha256 = "016kf3irrclpkpvcm7q0gmkfibq7jgy30a9v73pp42bq9h9a32bl"; + }; + + meta = { + description = "Mocking, stubbing and spying framework for python"; + }; + }; + arrow = buildPythonPackage rec { name = "arrow-${version}"; - version = "0.5.0"; + version = "0.7.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/a/arrow/${name}.tar.gz"; - sha256 = "1q3a6arjm6ysl2ff6lgdm504np7b1rbivrzspybjypq1nczcb7qy"; + sha256 = "0yx10dz3hp825fcq9w15zbp26v622npcjscb91da05zig8036lra"; }; - doCheck = false; + checkPhase = '' + nosetests + ''; + + buildInputs = with self; [ nose chai simplejson ]; propagatedBuildInputs = with self; [ dateutil ]; meta = { - description = "Twitter API library"; + description = "Python library for date manipulation"; license = "apache"; maintainers = with maintainers; [ thoughtpolice ]; }; @@ -1049,7 +1068,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/a/attrdict/${name}.tar.gz"; - md5 = "8a7c1a4e737fe9e2b2b8844c0f7746f8"; + sha256 = "86aeb6d3809e0344409f8148d7cac9eabce5f0b577c160b5e90d10df3f8d2ad3"; }; propagatedBuildInputs = with self; [ coverage nose six ]; @@ -1119,6 +1138,29 @@ in modules // { }; }); + av = buildPythonPackage rec { + name = "av-${version}"; + version = "0.2.4"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/a/av/${name}.tar.gz"; + sha256 = "bdc7e2e213cb9041d9c5c0497e6f8c47e84f89f1f2673a46d891cca0fb0d19a0"; + }; + + buildInputs + = (with self; [ nose pillow numpy ]) + ++ (with pkgs; [ ffmpeg git libav pkgconfig ]); + + # Because of https://github.com/mikeboers/PyAV/issues/152 + doCheck = false; + + meta = { + description = "Pythonic bindings for FFmpeg/Libav"; + homepage = https://github.com/mikeboers/PyAV/; + license = licenses.bsd2; + }; + }; + avro = buildPythonPackage (rec { name = "avro-1.7.6"; @@ -1126,7 +1168,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/a/avro/${name}.tar.gz"; - md5 = "7f4893205e5ad69ac86f6b44efb7df72"; + sha256 = "edf14143cabb2891f05a73d60a57a9fc5a9ebd305c2188abb3f5db777c707ad5"; }; meta = { @@ -1249,7 +1291,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/a/azure/${name}.zip"; - md5 = "5499efd85c54c757c0e757b5407ee47f"; + sha256 = "89c20b2efaaed3c6f56345d55c32a8d4e7d2a16c032d0acb92f8f490c508fe24"; }; propagatedBuildInputs = with self; [ dateutil futures pyopenssl requests2 ]; @@ -1456,7 +1498,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/b/backports.ssl_match_hostname/backports.ssl_match_hostname-3.4.0.2.tar.gz"; - md5 = "788214f20214c64631f0859dc79f23c6"; + sha256 = "07410e7fb09aab7bdaf5e618de66c3dac84e2e3d628352814dc4c37de321d6ae"; }; meta = { @@ -1471,7 +1513,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/b/backports.lzma/${name}.tar.gz"; - md5 = "c3d109746aefa86268e500c07d7e8e0f"; + sha256 = "bac58aec8d39ac3d22250840fb24830d0e4a0ef05ad8f3f09172dc0cc80cdbca"; }; buildInputs = [ pkgs.lzma ]; @@ -1795,7 +1837,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/c/circus/${name}.tar.gz"; - md5 = "5c07cdbe9bb4a9b82e52737ad590617b"; + sha256 = "3757344aa5073ea29e6e2607b3de8ba1652502c61964316116931884293fe846"; }; doCheck = false; # weird error @@ -1944,6 +1986,28 @@ in modules // { }; }; + dosage = buildPythonPackage rec { + name = "${pname}-${version}"; + pname = "dosage"; + version = "2016.03.17"; + PBR_VERSION = version; + src = pkgs.fetchFromGitHub { + owner = "webcomics"; + repo = "dosage"; + rev = "1af022895e5f86bc43da95754c4c4ed305790f5b"; + sha256 = "1bkqhlzigy656pam0znp2ddp1y5sqzyhw3c4fyy58spcafldq4j6"; + }; + buildInputs = with self; [ pytest ]; + propagatedBuildInputs = with self; [ requests2 lxml pbr ]; + # prompt_toolkit doesn't work on 3.5 on OSX. + doCheck = !isPy35; + + meta = { + description = "A comic strip downloader and archiver"; + homepage = http://dosage.rocks/; + }; + }; + dugong = buildPythonPackage rec { name = "${pname}-${version}"; pname = "dugong"; @@ -1961,7 +2025,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/i/iowait/${name}.tar.gz"; - md5 = "f49ca7766fe4a67e03a731e575614f87"; + sha256 = "ab1bc2eb84c22ccf61f17a0024f9fb6df781b39f1852764a66a7769d5adfb299"; }; meta = { @@ -1989,7 +2053,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/r/rarfile/rarfile-2.6.tar.gz"; - md5 = "50ce3f3fdb9196a00059a5ea7b3739fd"; + sha256 = "326700c5450cfb367f612e918866ea27551bac02f4656f340003c88873fa1a56"; }; meta = { @@ -2003,7 +2067,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/proboscis/proboscis-1.2.6.0.tar.gz"; - md5 = "e4b36449ef7c18f70b8243f4c8bddbca"; + sha256 = "b822b243a7c82030fce0de97bdc432345941306d2c24ef227ca561dd019cd238"; }; propagatedBuildInputs = with self; [ nose ]; @@ -2021,7 +2085,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pyechonest/pyechonest-8.0.2.tar.gz"; - md5 = "5586fe8ece7af4e24f71ea740185127e"; + sha256 = "496265f4b7d33483ec153b9e1b8333fe959b115f7e781510089c8313b7d86560"; }; meta = { @@ -2061,7 +2125,7 @@ in modules // { sha256 = "1j4f51dxic39mdwf6alj7gd769wy6mhk916v031wjali51xkh3xb"; }; - buildInputs = with self; [ hypothesis sqlite3 ]; + buildInputs = with self; [ hypothesis1 sqlite3 ]; propagatedBuildInputs = with self; [ chardet ]; @@ -2078,7 +2142,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/b/bitbucket-api/${name}.tar.gz"; - md5 = "6f3cee3586c4aad9c0b2e04fce9704fb"; + sha256 = "e890bc3893d59a6f203c1eb2bae60e78ac4d3869da7ea4fb104dca588aea85b2"; }; propagatedBuildInputs = with self; [ requests_oauth2 nose sh ]; @@ -2096,7 +2160,7 @@ in modules // { name = "bitbucket-cli-0.4.1"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/b/bitbucket-cli/${name}.tar.gz"; - md5 = "79cdbdc6c95dfa313d12cbdef406c9f2"; + sha256 = "d8909627ae7a46519379c6343698d49f9ffd5de839ff44796974828d843a9419"; }; pythonPath = [ self.requests ]; @@ -2210,7 +2274,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/b/blinker/${name}.tar.gz"; - md5 = "66e9688f2d287593a0e698cd8a5fbc57"; + sha256 = "6811010809262261e41ab7b92f3f6d23f35cf816fbec2bc05077992eebec6e2f"; }; meta = { @@ -2460,7 +2524,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/B/Box2D/Box2D-2.3b0.zip"; - md5="25fc4f69cd580bdca0022ac3ace53865"; + sha256 = "4519842c650b0153550eb0c9864da46b5a4ec8555c68b70f5cd2952a21c788b0"; }; patches = [ ../development/python-modules/box2d/disable-test.patch ]; @@ -2485,7 +2549,6 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/b/bugwarrior/${name}.tar.gz"; - # md5 = "09c93f86a27ffc092e69b46889a3bf50"; # provided by pypi website. sha256 = "efe41756c152789f39006f157add9bedfa2b85d2cac15c067e635e37c70cb8f8"; }; @@ -2531,7 +2594,6 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/python-bugzilla/python-${name}.tar.gz"; - # md5 = "c95befd1fecad21f742beaa8180538c0"; # provided by pypi website. sha256 = "11361635a4f1613803a0b9b93ba9126f7fd36180653f953e2590b1536d107d46"; }; @@ -2563,7 +2625,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/c/check-manifest/check-manifest-${version}.tar.gz"; - md5 = "b18f7f0bcd02f52d40148c388ace9290"; + sha256 = "b19fd0d8b9286532ba3dc0282484fd76d11200cf24b340dc3d08f293c7dd0500"; }; doCheck = false; @@ -2582,7 +2644,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/devpi-common/devpi-common-${version}.tar.gz"; - md5 = "3739af0f59151d1aaa67035fec8f97c6"; + sha256 = "a059c4099002d4af8f3ccfc8a9f4bf133b20ea404049b21a31fc1003e1d79452"; }; propagatedBuildInputs = [ self.requests2 self.py ]; @@ -2606,7 +2668,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zc.buildout/${name}.tar.gz"; - md5 = "476a06eed08506925c700109119b6e41"; + sha256 = "a6122ea5c06c6c044a9efce4a3df452c8573e1aebfda7b24262655daac894ef5"; }; meta = { @@ -2624,7 +2686,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zc.buildout/${name}.tar.gz"; - md5 = "8834a21586bf2be53dc412002241a996"; + sha256 = "a5c2fafa4d073ad3dabec267c44a996cbc624700a9a49467cd6b1ef63d35e029"; }; meta = { @@ -2642,7 +2704,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zc.buildout/${name}.tar.gz"; - md5 = "87f7b3f8d13926c806242fd5f6fe36f7"; + sha256 = "0ac5a325d3ffbc5a988fb3ba87f4159d4769cc73e3331cb5234edc8839b6506b"; }; # TODO: consider if this patch should be an option @@ -2659,7 +2721,7 @@ in modules // { }; }; - zc_recipe_egg_fun = { buildout, version, md5 }: buildPythonPackage rec { + zc_recipe_egg_fun = { buildout, version, sha256 }: buildPythonPackage rec { inherit version; name = "zc.recipe.egg-${version}"; @@ -2667,7 +2729,7 @@ in modules // { doCheck = false; src = pkgs.fetchurl { - inherit md5; + inherit sha256; url = "https://pypi.python.org/packages/source/z/zc.recipe.egg/zc.recipe.egg-${version}.tar.gz"; }; meta.broken = true; # https://bitbucket.org/pypa/setuptools/issues/462/pkg_resourcesfind_on_path-thinks-the @@ -2675,12 +2737,12 @@ in modules // { zc_recipe_egg_buildout171 = self.zc_recipe_egg_fun { buildout = self.zc_buildout171; version = "1.3.2"; - md5 = "1cb6af73f527490dde461d3614a36475"; + sha256 = "12zl16fdz85l6hgrkqwily7d2brr9w5pdfqri5n978gh36mqf526"; }; zc_recipe_egg_buildout2 = self.zc_recipe_egg_fun { buildout = self.zc_buildout2; version = "2.0.3"; - md5 = "69a8ce276029390a36008150444aa0b4"; + sha256 = "0d7xkxxhm5bwrscchjzc88559njirqxishdwl2qjx3gij3s12l5s"; }; bunch = buildPythonPackage (rec { @@ -2772,7 +2834,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/c/carrot/${name}.tar.gz"; - md5 = "530a0614de3a669314c3acd4995c54d5"; + sha256 = "cb46374f3c883c580d142a79d2609883713a867cc86e0514163adce784ce2468"; }; buildInputs = with self; [ self.nose ]; @@ -2913,7 +2975,7 @@ in modules // { name = "characteristic-14.1.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/c/characteristic/${name}.tar.gz"; - md5 = "68ea7e28997fc57d3631791ec0567a05"; + sha256 = "91e254948180678dd69e6143202b4686f2fa47cce136936079bb4d9a3b82419d"; }; buildInputs = with self; [ self.pytest ]; @@ -2932,7 +2994,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/C/Cheetah/Cheetah-${version}.tar.gz"; - md5 = "853917116e731afbc8c8a43c37e6ddba"; + sha256 = "be308229f0c1e5e5af4f27d7ee06d90bb19e6af3059794e5fd536a6f29a9b550"; }; propagatedBuildInputs = with self; [ self.markdown ]; @@ -3232,7 +3294,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/C/CoilMQ/CoilMQ-0.6.1.tar.gz"; - md5 = "5f39727415b837abd02651eeb2721749"; + sha256 = "9755733bdae33a9d87630232d166a7da2382f68c2cffb3bb81503806e8d310cb"; }; propagatedBuildInputs = with self; [ self.stompclient ]; @@ -3260,7 +3322,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/c/colander/${name}.tar.gz"; - md5 = "058576123da7216288c079c9f47693f8"; + sha256 = "7389413266b9e680c9529c16d56284edf87e0d5de557948e75f41d65683c23b3"; }; propagatedBuildInputs = with self; [ self.translationstring self.iso8601 ]; @@ -3297,7 +3359,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/C/ColanderAlchemy/${name}.tar.gz"; - md5 = "b054837bd2753cbf15f7d5028cba421b"; + sha256 = "d10e97b5f4648dcdc38c5e5c9f9b77fe39c8fa7f594d89d558b0d82e5631bfd7"; }; buildInputs = with self; [ unittest2 ]; @@ -3319,7 +3381,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/c/configobj/${name}.tar.gz"; - md5 = "e472a3a1c2a67bb0ec9b5d54c13a47d6"; + sha256 = "a2f5650770e1c87fb335af19a9b7eb73fc05ccf22144eb68db7d00cd2bcb0902"; }; # error: invalid command 'test' @@ -3403,7 +3465,7 @@ in modules // { src = pkgs.fetchurl rec { url = "https://pypi.python.org/packages/source/c/contextlib2/${name}.tar.gz"; - md5 = "ea687207db25f65552061db4a2c6727d"; + sha256 = "55a5dc78f7a742a0e756645134ffb39bbe11da0fea2bc0f7070d40dac208b732"; }; }; @@ -3471,7 +3533,7 @@ in modules // { name = "cov-core-1.15.0"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/c/cov-core/${name}.tar.gz"; - md5 = "f519d4cb4c4e52856afb14af52919fe6"; + sha256 = "4a14c67d520fda9d42b0da6134638578caae1d374b9bb462d8de00587dba764c"; }; meta = { description = "plugin core for use by pytest-cov, nose-cov and nose2-cov"; @@ -3556,7 +3618,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/c/cryptacular/${name}.tar.gz"; - md5 = "fe12232ac660185186dd8057d8ca7b0e"; + sha256 = "273f03d03f9b316671ae4f1c1c6b8d3c883da19a5706873e8f3d6543e13dd4a1"; }; # TODO: tests fail: TypeError: object of type 'NoneType' has no len() @@ -3569,15 +3631,15 @@ in modules // { cryptography = buildPythonPackage rec { # also bump cryptography_vectors - name = "cryptography-1.1.1"; + name = "cryptography-1.2.3"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/c/cryptography/${name}.tar.gz"; - sha256 = "1q5snbnn2am85zb5jrnxwzncl4kwa11740ws8g9b4ps5ywx944i9"; + sha256 = "0kj511z4g21fhcr649pyzpl0zzkkc7hsgxxjys6z8wwfvmvirccf"; }; buildInputs = [ pkgs.openssl self.pretend self.cryptography_vectors - self.iso8601 self.pyasn1 self.pytest self.py self.hypothesis ] + self.iso8601 self.pyasn1 self.pytest self.py self.hypothesis1 ] ++ optional stdenv.isDarwin pkgs.darwin.apple_sdk.frameworks.Security; propagatedBuildInputs = with self; [ six idna ipaddress pyasn1 cffi pyasn1-modules modules.sqlite3 ] ++ optional (pythonOlder "3.4") self.enum34; @@ -3589,11 +3651,11 @@ in modules // { cryptography_vectors = buildPythonPackage rec { # also bump cryptography - name = "cryptography_vectors-1.1.1"; + name = "cryptography_vectors-1.2.3"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/c/cryptography-vectors/${name}.tar.gz"; - sha256 = "17gi301p3wi39dr4dhrmpfflid3k004jp9cnvdp46b7p5lm6hb3w"; + sha256 = "0shawgpax79gvjrj0a313sll9gaqys7q1hxngn6j4k24lmz7bwki"; }; }; @@ -3896,7 +3958,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/detox/detox-0.9.3.tar.gz"; - md5 = "b52588ec61cd4c2d33e419677a5eac8c"; + sha256 = "39d48b6758c43ba579f694507d54da96931195eb1b72ad79b46f50af9520b2f3"; }; meta = { @@ -3911,7 +3973,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pbkdf2/${name}.tar.gz"; - md5 = "40cda566f61420490206597243dd869f"; + sha256 = "ac6397369f128212c43064a2b4878038dab78dab41875364554aaf2a684e6979"; }; # ImportError: No module named test @@ -3941,18 +4003,25 @@ in modules // { }; cffi = if isPyPy then null else buildPythonPackage rec { - name = "cffi-1.3.0"; + name = "cffi-1.5.2"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/c/cffi/${name}.tar.gz"; - sha256 = "1s9lcwmyhshrmvgcwy0vww70v23ncz7bgshhbk469kxmy2pm7alx"; + sha256 = "1p91p1n8n46y0k3q7ddgxxjnfh08rjqsjh7zbjxzfiifhycxx6ys"; }; propagatedBuildInputs = with self; [ pkgs.libffi pycparser ]; buildInputs = with self; [ pytest ]; + checkPhase = '' + py.test + ''; + meta = { maintainers = with maintainers; [ iElectric ]; + homepage = https://cffi.readthedocs.org/; + license = with licenses; [ mit ]; + description = "Foreign Function Interface for Python calling C code"; }; }; @@ -4205,7 +4274,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pytest-xdist/pytest-xdist-1.8.zip"; - md5 = "9c0b8efe9d43b460f8cf049fa46ce14d"; + sha256 = "b02135db7080c0978b7ce5d8f43a5879231441c2062a4791bc42b6f98c94fa69"; }; buildInputs = with self; [ pytest ]; @@ -4217,6 +4286,49 @@ in modules // { }; }; + pytest-localserver = buildPythonPackage rec { + name = "pytest-localserver-${version}"; + version = "0.3.5"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/pytest-localserver/${name}.tar.gz"; + sha256 = "0dvqspjr6va55zwmnnc2mmpqc7mm65kxig9ya44x1z8aadzxpa4p"; + }; + + propagatedBuildInputs = with self; [ werkzeug ]; + buildInputs = with self; [ pytest six requests2 ]; + + checkPhase = '' + py.test + ''; + + meta = { + description = "Plugin for the pytest testing framework to test server connections locally"; + homepage = https://pypi.python.org/pypi/pytest-localserver; + license = licenses.mit; + }; + }; + + pytest-subtesthack = buildPythonPackage rec { + name = "pytest-subtesthack-${version}"; + version = "0.1.1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/pytest-subtesthack/${name}.tar.gz"; + sha256 = "15kzcr5pchf3id4ikdvlv752rc0j4d912n589l4rifp8qsj19l1x"; + }; + + propagatedBuildInputs = with self; [ pytest ]; + + # no upstream test + doCheck = false; + + meta = { + description = "Terrible plugin to set up and tear down fixtures within the test function itself"; + homepage = https://github.com/untitaker/pytest-subtesthack; + license = licenses.publicDomain; + }; + }; tinycss = buildPythonPackage rec { name = "tinycss-${version}"; @@ -4571,7 +4683,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/d/deform/${name}.tar.gz"; - md5 = "7a90d41f7fbc18002ce74f39bd90a5e4"; + sha256 = "3fa4d287c8da77a83556e4a5686de006ddd69da359272120b915dc8f5a70cabd"; }; buildInputs = with self; [] ++ optional isPy26 unittest2; @@ -4675,7 +4787,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/derpconf/${name}.tar.gz"; - md5 = "a164807d7bf0c4adf1de781305f29b82"; + sha256 = "9129419e3a6477fe6366c339d2df8c614bdde82a639f33f2f40d4de9a1ed236a"; }; meta = { @@ -4745,7 +4857,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/discogs-client/${name}.tar.gz"; - md5 = "2cc57e1d134aa93404e779b9311676fa"; + sha256 = "0a3616a818dd9fa61a61c3d9731d176e9123130d1b1b97a6beee63b4c72306b7"; }; propagatedBuildInputs = with self; [ oauth2 requests2 ]; @@ -4802,7 +4914,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/dockerpty/${name}.tar.gz"; - md5 = "92fb66d28aa19bf5268e7e3935670e5d"; + sha256 = "a51044cc49089a2408fdf6769a63eebe0b16d91f34716ecee681984446ce467d"; }; propagatedBuildInputs = with self; [ six ]; @@ -4820,7 +4932,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/docker-registry-core/${name}.tar.gz"; - md5 = "610ef9395f2e9a2f91c68d13325fce7b"; + sha256 = "347e804f1f35b28dbe27bf8d7a0b630fca29d684032139bf26e3940572360360"; }; DEPS = "loose"; @@ -4875,7 +4987,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/docopt/${name}.tar.gz"; - md5 = "4bc74561b37fad5d3e7d037f82a4c3b1"; + sha256 = "49b3a825280bd66b3aa83585ef59c4a8c82f2c8a522dbe754a8bc8d08c85c491"; }; meta = { @@ -4910,7 +5022,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/dogpile.cache/dogpile.cache-0.5.4.tar.gz"; - md5 = "513b77ba1bd0c31bb15dd9dd0d8471af"; + sha256 = "9eab7a5dc05ad1b6573144c4a2717226b5c38811f9ec29b514e774535a91ea24"; }; doCheck = false; @@ -4927,7 +5039,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/dogpile.core/dogpile.core-0.4.1.tar.gz"; - md5 = "01cb19f52bba3e95c9b560f39341f045"; + sha256 = "be652fb11a8eaf66f7e5c94d418d2eaa60a2fe81dae500f3743a863cc9dbed76"; }; doCheck = false; @@ -4944,7 +5056,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/dotfiles/${name}.tar.gz"; - md5 = "95a0792eb92a8fc0db8a7e59389470fe"; + sha256 = "45ecfd7f2ed9d0f2a7ac632c9bd0ebdca758d8bbc2b6f11562579d525f0467b8"; }; doCheck = true; @@ -5107,7 +5219,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/E/EasyProcess/${name}.tar.gz"; - md5 = "3da72e2fe16781fe5c7b3b0c6c40ee7b"; + sha256 = "c9980c0b0eeab97969305d8829bed966a3e28a77284e4f45a9b38fb23ce83633"; }; meta = { @@ -5303,7 +5415,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/e/execnet/${name}.zip"; - md5 = "be885ccd9612966bb81839670d2da099"; + sha256 = "fa1d8bd6b6d2282ff4df474b8ac687e1775bff4fc6462b219a5f89d5e9e6908c"; }; doCheck = !isPy3k; # failures.. @@ -5321,7 +5433,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/f/facebook-sdk/facebook-sdk-0.4.0.tar.gz"; - md5 = "ac9f38e197e54b8ba9f3a61988cc33b7"; + sha256 = "5a96c54d06213039dff1fe1fabc51972e394666cd6d83ea70f7c2e67472d9b72"; }; meta = with pkgs.stdenv.lib; { @@ -5469,7 +5581,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/f/funcparserlib/${name}.tar.gz"; - md5 = "3aba546bdad5d0826596910551ce37c0"; + sha256 = "b7992eac1a3eb97b3d91faa342bfda0729e990bd8a43774c1592c091e563c91d"; }; checkPhase = '' @@ -5494,7 +5606,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/singledispatch/${name}.tar.gz"; - md5 = "af2fc6a3d6cc5a02d0bf54d909785fcb"; + sha256 = "5b06af87df13818d14f08a028e42f566640aef80805c3b50c5056b086e3c2b9c"; }; meta = { @@ -5577,7 +5689,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/g/gmpy/${name}.zip"; - md5 = "2bf419076b06e107167e219f60ac6d27"; + sha256 = "1a79118a5332b40aba6aa24b051ead3a31b9b3b9642288934da754515da8fa14"; }; buildInputs = [ @@ -5597,7 +5709,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/g/gmpy2/${name}.zip"; - md5 = "7365d880953ba54c2cdcf171c7e19b2b"; + sha256 = "5041d0ae24407c24487106099f5bcc4abb1a5f58d90e6712cc95321975eddbd4"; }; buildInputs = [ @@ -5902,7 +6014,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/h/humanize/${name}.tar.gz"; - md5 = "e8473d9dc1b220911cac2edd53b1d973"; + sha256 = "a43f57115831ac7c70de098e6ac46ac13be00d69abbf60bdcac251344785bb19"; }; buildInputs = with self; [ mock ]; @@ -5949,7 +6061,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/h/httpauth/${name}.tar.gz"; - md5 = "78d1835a80955e68e98a3ca5ab7f7dbd"; + sha256 = "294029b5dfed27bca5746a31e3ffb5ed99268761536705e8bbd44231b7ca15ec"; }; doCheck = false; @@ -5977,6 +6089,7 @@ in modules // { pkgs.libpng pkgs.libtiff pkgs.libwebp + pkgs.pkgconfig ]; propagatedBuildInputs = with self; [ numpy ]; @@ -6094,7 +6207,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/j/jsonpatch/${name}.tar.gz"; - md5 = "9f2d0aa31f99cc97089a203c5bed3924"; + sha256 = "22d0bc0f5522a4a03dd9fb4c4cdf7c1f03256546c88be4c61e5ceabd22280e47"; }; propagatedBuildInputs = with self; [ jsonpointer ]; @@ -6111,7 +6224,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/j/jsonpointer/${name}.tar.gz"; - md5 = "c4d3f28e72ba77062538d1c0864c40a9"; + sha256 = "39403b47a71aa782de6d80db3b78f8a5f68ad8dfc9e674ca3bb5b32c15ec7308"; }; meta = { @@ -6250,12 +6363,12 @@ in modules // { }; jupyter_console = buildPythonPackage rec { - version = "4.1.0"; + version = "4.1.1"; name = "jupyter_console-${version}"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/j/jupyter_console/${name}.tar.gz"; - sha256 = "3f9703b632e38d68713fc2ea1f546edc4db2a8f925c94b6dd91a8d0c13816ce9"; + sha256 = "1qsa9h7db8qzd4hg9l5mfl8299y4i7jkd6p3vpksk3r5ip8wym6p"; }; buildInputs = with self; [ nose ]; @@ -6413,7 +6526,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.pediapress.com/packages/mirror/${name}.zip"; - md5 = "36193837359204d3337b297ba0f20bc8"; + sha256 = "9229193ee719568d482192d9d913b3c4bb96af7c589d6c31ed4a62caf5054278"; }; meta = { @@ -6429,7 +6542,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.pediapress.com/packages/mirror/${name}.zip"; - md5 = "49d72b0172f69cbe039f62dd4efb65ea"; + sha256 = "7f596fd60eb24d8d3da3ab4880f095294028880eafb653810a7bdaabdb031238"; }; buildInputs = with self; @@ -6451,12 +6564,12 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/n/natsort/${name}.tar.gz"; - md5 = "38cc0bb27c95bf549fe737d9f267f453"; + sha256 = "a0d4239bd609eae5cd5163db6f9794378ce0e3f43ae16c10c35472d866ae20cd"; }; buildInputs = with self; [ - hypothesis + hypothesis1 pytestcov pytestflakes pytestpep8 @@ -6543,7 +6656,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/o/odfpy/${name}.tar.gz"; - md5 = "3f570ead2b5f5eb6eab97eecce22d491"; + sha256 = "e458f969f1ccd7ed77d70a45fe69ad656ac61b39e36e4d32c42d4e3216030891"; }; buildInputs = with self; with pkgs; [ ]; @@ -6603,8 +6716,8 @@ in modules // { name = "passlib-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/passlib/passlib-${version}.tar.gz"; - md5 = "2f872ae7c72ca338634c618f2cff5863"; + url = "https://pypi.python.org/packages/source/p/passlib/passlib-${version}.tar.gz"; + sha256 = "e987f6000d16272f75314c7147eb015727e8532a3b747b1a8fb58e154c68392d"; }; buildInputs = with self; [ nose pybcrypt]; @@ -6641,7 +6754,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/peppercorn/${name}.tar.gz"; - md5 = "f08efbca5790019ab45d76b7244abd40"; + sha256 = "921cba5d51fa211e6da0fbd2120b9a98d663422a80f5bb669ad81ffb0909774b"; }; meta = { @@ -6658,7 +6771,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pew/${name}.tar.gz"; - md5 = "0a06ab0885b39f1ef3890893942f3225"; + sha256 = "0p188ah80l0rzbib2srahj2sswz8rcpqwbrbajyv2r5c1m5k6r4b"; }; propagatedBuildInputs = with self; [ virtualenv virtualenv-clone ]; @@ -6676,7 +6789,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pies/${name}.tar.gz"; - md5 = "caba1ce15d312bf68d65a5d2cf9ccff2"; + sha256 = "d8d6ae4faa0a7da5d634ad8c6ca4bb22b70ad53bb7ecd91af23d490fcd2a88e8"; }; deps = if !isPy3k then [ self.pies2overrides self.enum34 ] @@ -6698,7 +6811,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pies2overrides/${name}.tar.gz"; - md5 = "e73716454a2560341edf99d8f6fe5135"; + sha256 = "2a91445afc7f692bdbabfbf00d3defb1d47ad7825eb568a6464359758ab35763"; }; propagatedBuildInputs = with self; [ ipaddress ]; @@ -6739,7 +6852,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/plotly/${name}.tar.gz"; - md5 = "56fb77dff80325413c8cf40cf229ce90"; + sha256 = "628679e880caab22e2a46273e85e1d1ce1382b631e1c7bbfe539f804c5269b21"; }; propagatedBuildInputs = with self; [ self.pytz self.six self.requests ]; @@ -6760,7 +6873,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/python-poppler-qt4/" + "python-poppler-qt4-${version}.tar.gz"; - md5 = "9c4c5a59b878aed78e96a6ae58c6c185"; + sha256 = "00e3f89f4e23a844844d082918a89c2cbb1e8231ecb011b81d592e7e3c33a74c"; }; propagatedBuildInputs = [ pkgs.pyqt4 pkgs.pkgconfig pkgs.poppler_qt4 ]; @@ -6785,7 +6898,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pudb/${name}.tar.gz"; - md5 = "063030763bf914166a0b2bc8c011143b"; + sha256 = "81b20a995803c4be513e6d36c8ec9a531d3ccb24670b2416abc20f3933ddb8be"; }; propagatedBuildInputs = with self; [ self.pygments self.urwid ]; @@ -6930,7 +7043,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pyramid_beaker/${name}.tar.gz"; - md5 = "acb863517a98b90b5f29648ce55dd563"; + sha256 = "c76578dac3ea717e9ca89c327daf13975987d0b8827d15157319c20614fab74a"; }; propagatedBuildInputs = with self; [ beaker pyramid ]; @@ -6947,7 +7060,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pyramid_chameleon/${name}.tar.gz"; - md5 = "5bb5938356dfd13fce06e095f132e137"; + sha256 = "d176792a50eb015d7865b44bd9b24a7bd0489fa9a5cebbd17b9e05048cef9017"; }; propagatedBuildInputs = with self; [ @@ -7013,7 +7126,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pyramid_exclog/${name}.tar.gz"; - md5 = "05df86758b0d30ee6f8339ff36cef7a0"; + sha256 = "a58c82866c3e1a350684e6b83b440d5dc5e92ca5d23794b56d53aac06fb65a2c"; }; propagatedBuildInputs = with self; [ pyramid ]; @@ -7030,7 +7143,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pyramid_tm/${name}.tar.gz"; - md5 = "89a293488093d6c30036345fa46184d2"; + sha256 = "99528c54accf2bd5860d10634fe8972e8375b2d0f50ee08f208ed0484ffafc1d"; }; propagatedBuildInputs = with self; [ transaction pyramid ]; @@ -7047,7 +7160,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pyramid_multiauth/${name}.tar.gz"; - md5 = "044e423abc4fb76937ac0c21c1205e9c"; + sha256 = "c33f357e0a216cd6ef7d143d40d4679c9fb0796a1eabaf1249aeef63ed000828"; }; propagatedBuildInputs = with self; [ pyramid ]; @@ -7101,7 +7214,7 @@ in modules // { propagatedBuildInputs = with self; [ flup ldap - sqlalchemy7 + sqlalchemy ]; doCheck = true; @@ -7126,7 +7239,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/r/raven/${name}.tar.gz"; - md5 = "6a9264133bf646149ffb9118d81445be"; + sha256 = "c27e40ab3ccf37f30a9f77acb4917370d9341e25abda8e94b9bd48c7127f7d48"; }; # way too many dependencies to run tests @@ -7144,7 +7257,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/r/roman/${name}.zip"; - md5 = "aa71d131eec16d45c030fd06a27c9d17"; + sha256 = "90e83b512b44dd7fc83d67eb45aa5eb707df623e6fc6e66e7f273abd4b2613ae"; }; buildInputs = with self; with pkgs; [ ]; @@ -7165,7 +7278,7 @@ in modules // { version = "0.4.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/l/librosa/librosa-0.4.0.tar.gz"; - md5 = "8149a70a5a5783c3cceeb69de3e07458"; + sha256 = "cc11dcc41f51c08e442292e8a2fc7d7ee77e0d47ff771259eb63f57fcee6f6e7"; }; propagatedBuildInputs = with self; @@ -7250,7 +7363,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/h/hypatia/${name}.tar.gz"; - md5 = "d74c6dda31ff459a39fa5da9e98f2425"; + sha256 = "fb4d394eeac4b06ff2259cada6174aebbe77edd243ffd1deda320cb327f98bd9"; }; buildInputs = with self; [ zope_interface zodb ]; @@ -7266,7 +7379,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zope.copy/${name}.zip"; - md5 = "36aa2c96dec4cfeea57f54da2b733eb9"; + sha256 = "eb2a95866df1377741876a3ee62d8600e80089e6246e1a235e86791b29534457"; }; buildInputs = with self; [ zope_interface zope_location zope_schema ]; @@ -7352,7 +7465,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pyramid_zodbconn/${name}.tar.gz"; - md5 = "3c7746a227fbcda3e138ab8bfab7700b"; + sha256 = "56cfdb6b13dc87b1c51c7abc1557c63960d6b858e14a2d4c9693c3f7877f5f63"; }; # should be fixed in next release @@ -7372,7 +7485,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pyramid_mailer/${name}.tar.gz"; - md5 = "43800c7c894097a23140da58e3638c93"; + sha256 = "4debfad05ee65a05ba6f43e2af913e6e30db75ba42254e4aa0291500c4caa1fc"; }; buildInputs = with self; [ pyramid transaction ]; @@ -7388,7 +7501,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pyrtlsdr/${name}.zip"; - md5 = "646336675a00d38e6f54e77a17011b95"; + sha256 = "cbb9086efe4320858c48f4856d09f7face191c4156510b1459ef4e5588935b6a"; }; postPatch = '' @@ -7410,7 +7523,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/r/repoze.sendmail/${name}.tar.gz"; - md5 = "81d15f1f03cc67d6f56f2091c594ef57"; + sha256 = "51813730adc24728d5ce2609038f7bb81aa1632539d7a79045ef4aa6942eaba2"; }; buildInputs = with self; [ transaction ]; @@ -7426,7 +7539,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zodburi/${name}.tar.gz"; - md5 = "7876893829c2f784506c80d49f861b67"; + sha256 = "c04b9beca032bb7b968a3464417596ba4607a927c5e65929860962ddba1cccc0"; }; buildInputs = with self; [ zodb mock ZEO ]; @@ -7443,7 +7556,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/Z/ZEO/${name}.tar.gz"; - md5 = "494d8320549185097ba4a6b6b76017d6"; + sha256 = "63555b6d2b5f98d215c4b5fdce004fb0475daa6efc8b70f39c77d646c12d7e51"; }; meta = { @@ -7458,7 +7571,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/r/random2/${name}.zip"; - md5 = "48a0a86fe00e447212d0095de8cf3e21"; + sha256 = "34ad30aac341039872401595df9ab2c9dc36d0b7c077db1cea9ade430ed1c007"; }; }; @@ -7546,7 +7659,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/r/repoze.lru/${name}.tar.gz"; - md5 = "2c3b64b17a8e18b405f55d46173e14dd"; + sha256 = "0f7a323bf716d3cb6cb3910cd4fccbee0b3d3793322738566ecce163b01bbd31"; }; meta = { @@ -7562,7 +7675,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/r/repoze.sphinx.autointerface/${name}.tar.gz"; - md5 = "f2fee996ae28dc16eb48f1a3e8f64801"; + sha256 = "97ef5fac0ab0a96f1578017f04aea448651fa9f063fc43393a8253bff8d8d504"; }; propagatedBuildInputs = with self; [ zope_interface sphinx ]; @@ -7604,7 +7717,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/setuptools-git/${name}.tar.gz"; - md5 = "7b5967e9527c789c3113b07a1f196f6e"; + sha256 = "047d7595546635edebef226bc566579d422ccc48a8a91c7d32d8bd174f68f831"; }; propagatedBuildInputs = [ pkgs.git ]; @@ -7647,7 +7760,7 @@ in modules // { version = "1.3.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pywatchman/pywatchman-${version}.tar.gz"; - md5 = "852eab2b7d2f4f56580c3cfff4803350"; + sha256 = "c3d5be183b5b04f6ad575fc71b06dd196185dea1558d9f4d0598ba9beaab8245"; }; postPatch = '' substituteInPlace pywatchman/__init__.py \ @@ -7662,7 +7775,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/z/zope.tales/${name}.zip"; - md5 = "902b03a5f9774f6e2decf3f06d18a09d"; + sha256 = "c0485f09c3f23c7a0ceddabcb02d4a40ebecf8f8f36c87fa9a02c415f96c969e"; }; }; @@ -7672,7 +7785,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zope.deprecation/${name}.tar.gz"; - md5 = "e9a663ded58f4f9f7881beb56cae2782"; + sha256 = "fed622b51ffc600c13cc5a5b6916b8514c115f34f7ea2730409f30c061eb0b78"; }; buildInputs = with self; [ zope_testing ]; @@ -7688,7 +7801,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/v/validictory/validictory-1.0.0a2.tar.gz"; - md5 = "54c206827931cc4ed8a9b1cc78e380c5"; + sha256 = "c02388a70f5b854e71e2e09bd6d762a2d8c2a017557562e866d8ffafb0934b07"; }; doCheck = false; @@ -7705,7 +7818,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/v/venusian/${name}.tar.gz"; - md5 = "dccf2eafb7113759d60c86faf5538756"; + sha256 = "1720cff2ca9c369c840c1d685a7c7a21da1afa687bfe62edd93cae4bf429ca5a"; }; # TODO: https://github.com/Pylons/venusian/issues/23 @@ -7723,7 +7836,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/C/Chameleon/${name}.tar.gz"; - md5 = "0214647152fcfcb9ce357624f8f9f203"; + sha256 = "bd1dfc96742c2a5b0b2adcab823bdd848e70c45a994dc4e51dd2cc31e2bae3be"; }; buildInputs = with self; [] ++ optionals isPy26 [ ordereddict unittest2 ]; @@ -7742,7 +7855,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/ddt/${name}.tar.gz"; - md5 = "29688456f9ee42d09d7d7c864ce6e17b"; + sha256 = "e24ecb7e2cf0bf43fa9d4255d3ae2bd0b7ce30b1d1b89ace7aa68aca1152f37a"; }; meta = { @@ -7755,16 +7868,18 @@ in modules // { }); distutils_extra = buildPythonPackage rec { - name = "distutils-extra-2.26"; + name = "distutils-extra-${version}"; + version = "2.39"; src = pkgs.fetchurl { - url = "http://launchpad.net/python-distutils-extra/trunk/2.26/+download/python-${name}.tar.gz"; - md5 = "7caded30a45907b5cdb10ac4182846eb"; + url = "http://launchpad.net/python-distutils-extra/trunk/${version}/+download/python-${name}.tar.gz"; + sha256 = "1bv3h2p9ffbzyddhi5sccsfwrm3i6yxzn0m06fdxkj2zsvs28gvj"; }; meta = { homepage = https://launchpad.net/python-distutils-extra; description = "Enhancements to Python's distutils"; + license = licenses.gpl2; }; }; @@ -7803,7 +7918,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pyxdg/${name}.tar.gz"; - md5 = "bedcdb3a0ed85986d40044c87f23477c"; + sha256 = "81e883e0b9517d624e8b0499eb267b82a815c0b7146d5269f364988ae031279d"; }; # error: invalid command 'test' @@ -7822,7 +7937,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/c/chardet/${name}.tar.gz"; - md5 = "25274d664ccb5130adae08047416e1a8"; + sha256 = "e53e38b3a4afe6d1132de62b7400a4ac363452dc5dfcf8d88e8e0cce663c68aa"; }; meta = { @@ -7847,12 +7962,12 @@ in modules // { django_1_9 = buildPythonPackage rec { name = "Django-${version}"; - version = "1.9.3"; + version = "1.9.4"; disabled = pythonOlder "2.7"; src = pkgs.fetchurl { url = "http://www.djangoproject.com/m/releases/1.9/${name}.tar.gz"; - sha256 = "0miv4jb2p4xpcdif0zqimmqw1jypzyq6q5v4m79jc9yyhwj1l685"; + sha256 = "1sdxixj4p3wx245dm608bqw5bdabl701qab0ar5wjivyd6mfga5d"; }; # patch only $out/bin to avoid problems with starter templates (see #3134) @@ -7871,12 +7986,12 @@ in modules // { django_1_8 = buildPythonPackage rec { name = "Django-${version}"; - version = "1.8.10"; + version = "1.8.11"; disabled = pythonOlder "2.7"; src = pkgs.fetchurl { url = "http://www.djangoproject.com/m/releases/1.8/${name}.tar.gz"; - sha256 = "08qsgnqq97rg4v80kmbkccr9hm90nw4zh6c46xblk64lnqgb3rfj"; + sha256 = "1yrmlj3h2hp5kc5m11ybya21x2wfr5bqqbkcsw6hknj86pkqn57c"; }; # too complicated to setup @@ -8002,6 +8117,28 @@ in modules // { }; }; + django_compat = buildPythonPackage rec { + name = "django-compat-${version}"; + version = "1.0.8"; + + # build process attempts to access a missing README.rst + disabled = isPy35; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/d/django-compat/${name}.tar.gz"; + sha256 = "195dgr55vzpw1fbjvbw2h35k9bfhvm5zchh2p7nzbq57xmwb3sra"; + }; + + buildInputs = with self; [ django_nose ]; + propagatedBuildInputs = with self; [ django six ]; + + meta = { + description = "Forward and backwards compatibility layer for Django 1.4, 1.7, 1.8, and 1.9"; + homepage = https://github.com/arteria/django-compat; + license = licenses.mit; + }; + }; + django_evolution = buildPythonPackage rec { name = "django_evolution-0.7.5"; disabled = isPy3k; @@ -8025,7 +8162,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/d/django-tagging/${name}.tar.gz"; - md5 = "a0855f2b044db15f3f8a025fa1016ddf"; + sha256 = "e5fbeb7ca6e0c22a9a96239095dff508040ec95171e51c69e6f8ada72ea4bce2"; }; # error: invalid command 'test' @@ -8046,7 +8183,6 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/d/django-classy-tags/${name}.tar.gz"; - md5 = "eb686aa767ad8cf88c1fa0f400a42516"; sha256 = "0wxvpmjdzk0aajk33y4himn3wqjx7k0aqlka9j8ay3yfav78bdq0"; }; @@ -8062,6 +8198,45 @@ in modules // { }; }; + django_hijack = buildPythonPackage rec { + name = "django-hijack-${version}"; + version = "2.0.7"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/d/django-hijack/${name}.tar.gz"; + sha256 = "0rpi1bkfx74xfbb2nk874kfdra1jcqp2vzky1r3z7zidlc9kah04"; + }; + + propagatedBuildInputs = with self; [ django django_compat ]; + + meta = { + description = "Allows superusers to hijack (=login as) and work on behalf of another user"; + homepage = https://github.com/arteria/django-hijack; + license = licenses.mit; + }; + }; + + django_nose = buildPythonPackage rec { + name = "django-nose-${version}"; + version = "1.4.3"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/d/django-nose/${name}.tar.gz"; + sha256 = "0rl9ipa98smprlw56xqlhzhps28p84wg0640qlyn0rjyrpsdmf0r"; + }; + + # vast dependency list + doCheck = false; + + propagatedBuildInputs = with self; [ django nose ]; + + meta = { + description = "Provides all the goodness of nose in your Django tests"; + homepage = https://github.com/django-nose/django-nose; + license = licenses.bsd3; + }; + }; + django_modelcluster = buildPythonPackage rec { name = "django-modelcluster-${version}"; version = "0.6.2"; @@ -8130,7 +8305,6 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/d/django-reversion/${name}.tar.gz"; - md5 = "2de5a3fe82aaf505c134570f96fcc7a8"; sha256 = "0z8fxvxgbxfnalr5br74rsw6g42nry2q656rx7rsgmicd8n42v2r"; }; @@ -8364,7 +8538,7 @@ in modules // { src = pkgs.fetchurl { url = "mirror://sourceforge/docutils/${name}.tar.gz"; - md5 = "4622263b62c5c771c03502afa3157768"; + sha256 = "c7db717810ab6965f66c8cf0398a98c9d8df982da39b4cd7f162911eb89596fa"; }; # error: invalid command 'test' @@ -8399,7 +8573,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/d/dtopt/${name}.tar.gz"; - md5 = "9a41317149e926fcc408086aedee6bab"; + sha256 = "06ae07a12294a7ba708abaa63f838017d1a2faf6147a1e7a14ca4fa28f86da7f"; }; meta = { @@ -8437,7 +8611,7 @@ in modules // { version = "1.9.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/e/elpy/${name}.tar.gz"; - md5 = "651f6f46767b7132e5c0f83d5ac3b1f7"; + sha256 = "419f7b05b19182bc1aedde1ae80812c1534e59a0493476aa01ea819e76ba26f0"; }; python2Deps = if isPy3k then [ ] else [ self.rope ]; propagatedBuildInputs = with self; [ flake8 autopep8 jedi importmagic ] ++ python2Deps; @@ -8457,7 +8631,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/e/enum/${name}.tar.gz"; - md5 = "ce75c7c3c86741175a84456cc5bd531e"; + sha256 = "9bdfacf543baf2350df7613eb37f598a802f346985ca0dc1548be6494140fdff"; }; doCheck = !isPyPy; @@ -8494,7 +8668,7 @@ in modules // { name = "epc-0.0.3"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/e/epc/${name}.tar.gz"; - md5 = "04a93c0cd32b496969ead09f414dac74"; + sha256 = "30b594bd4a4acbd5bda0d3fa3d25b4e8117f2ff8f24d2d1e3e36c90374f3c55e"; }; propagatedBuildInputs = with self; [ sexpdata ]; @@ -8587,7 +8761,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/f/feedgenerator/${name}.tar.gz"; - md5 = "92978492871342ad64e8ae0ccfcf200c"; + sha256 = "5d6b0b10134ac392be0c0c3a39c0e1d7e9c17cc7894590f75981e3f497a4a60f"; }; buildInputs = [ pkgs.glibcLocales ]; @@ -8629,7 +8803,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pyfribidi/${name}.zip"; - md5 = "a3fc1f9d34571305782d1a54ee36f904"; + sha256 = "6f7d83c09eae0cb98a40b85ba3dedc31af4dbff8fc4425f244c1e9f44392fded"; }; meta = { @@ -8719,12 +8893,34 @@ in modules // { }; }; + flaky = buildPythonPackage rec { + name = "flaky-${version}"; + version = "3.1.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/f/flaky/${name}.tar.gz"; + sha256 = "1x9ixika7wqjj52x8wnsh1vk7jadkdqpx01plj7mlh8slwyq4s41"; + }; + + propagatedBuildInputs = with self; [ pytest ]; + buildInputs = with self; [ mock ]; + + # waiting for feedback https://github.com/box/flaky/issues/97 + doCheck = false; + + meta = { + homepage = https://github.com/box/flaky; + description = "Plugin for nose or py.test that automatically reruns flaky tests"; + license = licenses.asl20; + }; + }; + flask = buildPythonPackage { name = "flask-0.10.1"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/F/Flask/Flask-0.10.1.tar.gz"; - md5 = "378670fe456957eb3c27ddaef60b2b24"; + sha256 = "4c83829ff83d408b5e1d4995472265411d2c414112298f2eb4b359d9e4563373"; }; propagatedBuildInputs = with self; [ itsdangerous click werkzeug jinja2 ]; @@ -8761,7 +8957,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/F/Flask-Cache/${name}.tar.gz"; - md5 = "ab82a9cd0844891ccdb54fbb93fd6c59"; + sha256 = "90126ca9bc063854ef8ee276e95d38b2b4ec8e45fd77d5751d37971ee27c7ef4"; }; propagatedBuildInputs = with self; [ werkzeug flask ]; @@ -8946,7 +9142,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/F/FlexGet/${name}.tar.gz"; - md5 = "2c249c43bc594726f908b1425a8b8081"; + sha256 = "0f7aaf0bf37860f0c5adfb0ba59ca228aa3f5c582131445623a4c3bc82d45346"; }; doCheck = false; @@ -8972,7 +9168,7 @@ in modules // { # py3k disabled, see https://travis-ci.org/NixOS/nixpkgs/builds/48759067 graph-tool = if isPy3k then throw "graph-tool in Nix doesn't support py3k yet" - else callPackage ../development/python-modules/graph-tool/2.x.x.nix { }; + else callPackage ../development/python-modules/graph-tool/2.x.x.nix { boost = pkgs.boost159; }; grappelli_safe = buildPythonPackage rec { version = "0.3.13"; @@ -8980,7 +9176,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/g/grappelli_safe/${name}.tar.gz"; - md5 = "5c8c681a0b1df94ecd6dc0b3a8b80892"; + sha256 = "8b21b4724bce449cc4f22dc74ed0be9b3e841d968f3271850bf4836864304eb6"; }; meta = { @@ -9008,7 +9204,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/python-tvrage/python-tvrage-${version}.tar.gz"; - md5 = "cdfec252158c5047b626861900186dfb"; + sha256 = "f8a530376c5cf1bc573d1945a8504c3394b228c731a3eff5100c705997a72063"; }; # has mostly networking dependent tests @@ -9386,7 +9582,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/g/gcovr/${name}.tar.gz"; - md5 = "672db629469882b93c40016aebff50ac"; + sha256 = "2c878e03c2eff2282e64035bec0a30532b2b1173aadf08486401883b79e4dab1"; }; meta = { @@ -9536,7 +9732,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/g/genzshcomp/genzshcomp-0.5.1.tar.gz"; - md5 = "7a954f1835875002e9044fe55ed1b488"; + sha256 = "c77d007cc32cdff836ecf8df6192371767976c108a75b055e057bb6f4a09cd42"; }; buildInputs = with self; [ pkgs.setuptools ] ++ (optional isPy26 argparse); @@ -9765,7 +9961,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/g/gspread/${name}.tar.gz"; - md5 = "5a71e4e3fc509dc1c4d34722f102dec1"; + sha256 = "dba45ef9e652dcd8cf561ae65569bd6ecd18fcc77b991521490698fb2d847106"; }; meta = { @@ -9853,7 +10049,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/g/gunicorn/${name}.tar.gz"; - md5 = "3d759bec3c46a680ff010775258c4c56"; + sha256 = "ae1dd6452f62b3470bc9acaf62cb5301545fbb9c697d863a5bfe35097ed7a0b3"; }; buildInputs = with self; [ pytest ]; @@ -9926,7 +10122,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/h/htmllaundry/${name}.tar.gz"; - md5 = "6db6909de76c4b259e65d90b5debdbda"; + sha256 = "e428cba78d5a965e959f5dac2eb7d5f7d627dd889990d5efa8d4e03f3dd768d9"; }; buildInputs = with self; [ nose ]; @@ -9979,7 +10175,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/h/http_signature/${name}.tar.gz"; - md5 = "015061846254bd5d8c5dbc2913985153"; + sha256 = "14acc192ef20459d5e11b4e800dd3a4542f6bd2ab191bf5717c696bf30936c62"; }; propagatedBuildInputs = with self; [pycrypto]; @@ -9996,7 +10192,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/h/httpbin/${name}.tar.gz"; - md5 = "9b2bb2fab45f5fa839e9a776a64d6089"; + sha256 = "6b57f563900ecfe126015223a259463848daafbdc2687442317c0992773b9054"; }; propagatedBuildInputs = with self; [ flask markupsafe decorator itsdangerous six ]; @@ -10025,7 +10221,7 @@ in modules // { }; }; - hypothesis = buildPythonPackage rec { + hypothesis1 = buildPythonPackage rec { name = "hypothesis-1.14.0"; buildInputs = with self; [fake_factory django numpy pytz flake8 pytest ]; @@ -10044,6 +10240,35 @@ in modules // { }; }; + hypothesis = buildPythonPackage rec { + # http://hypothesis.readthedocs.org/en/latest/packaging.html + + name = "hypothesis-${version}"; + version = "3.1.0"; + + # Upstream prefers github tarballs + src = pkgs.fetchFromGitHub { + owner = "DRMacIver"; + repo = "hypothesis"; + rev = "${version}"; + sha256 = "1fhdb2vwc4blas5fvcly6pmha8psqm4bhi67jz32ypjryzk09iyf"; + }; + + buildInputs = with self; [ flake8 pytest flaky ]; + propagatedBuildInputs = with self; ([ pytz fake_factory django numpy ] ++ optionals isPy27 [ enum34 modules.sqlite3 ]); + + # https://github.com/DRMacIver/hypothesis/issues/300 + checkPhase = '' + ${python.interpreter} -m pytest tests/cover + ''; + + meta = { + description = "A Python library for property based testing"; + homepage = https://github.com/DRMacIver/hypothesis; + license = licenses.mpl20; + }; + }; + httpretty = buildPythonPackage rec { name = "httpretty-${version}"; version = "0.8.6"; @@ -10084,7 +10309,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/i/icalendar/${name}.tar.gz"; - md5 = "072c67a4c461864abd604631d7cf67e7"; + sha256 = "93d0b94eab23d08f62962542309916a9681f16de3d5eca1c75497f30f1b07792"; }; buildInputs = with self; [ setuptools ]; @@ -10098,6 +10323,8 @@ in modules // { }; }; + icdiff = callPackage ../tools/text/icdiff {}; + importlib = buildPythonPackage rec { name = "importlib-1.0.2"; @@ -10105,7 +10332,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/i/importlib/importlib-1.0.2.tar.gz"; - md5 = "4aa23397da8bd7c7426864e88e4db7e1"; + sha256 = "131jvp6ahllcqblszjg6fxrzh4k50w8g60sq924b4nb8lxm9dl14"; }; }; @@ -10114,7 +10341,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/i/influxdb/${name}.tar.gz"; - md5 = "6c975058ccc4df41dad8d8234c52d754"; + sha256 = "6b5ea154454b86d14f2a3960d180e666ba9863da964032dacf2b50628e774a33"; }; # ImportError: No module named tests @@ -10240,7 +10467,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/i/iptools/iptools-${version}.tar.gz"; - md5 = "aed4045638fd40c16f8d9bb04606f700"; + sha256 = "0f03875a5bed740ba4bf44decb6a78679cca914a1ee8a6cc468114485c4d98e3"; }; buildInputs = with self; [ nose ]; @@ -10258,7 +10485,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/I/IPy/IPy-${version}.tar.gz"; - md5 = "f4f7ddc7c5e55a47222a5cc6c0a87b6d"; + sha256 = "5d6abb870c25f946c45c35cf50e66155598660f2765b35cb12e36ed5223c2b89"; }; # error: invalid command 'test' @@ -10327,12 +10554,12 @@ in modules // { }; ipython = buildPythonPackage rec { - version = "4.0.3"; + version = "4.1.2"; name = "ipython-${version}"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/i/ipython/${name}.tar.gz"; - sha256 = "3a928f59e8ac8dd97858c28390867c87c09510f1f8bbe97e4e9c6b036eb84fc0"; + sha256 = "14hnf3m087z39ndn5irj1ficc6l197bmdj6fpvz8bwi7la99cbq5"; }; prePatch = stdenv.lib.optionalString stdenv.isDarwin '' @@ -10456,7 +10683,7 @@ in modules // { name = "ipdbplugin-1.4"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/i/ipdbplugin/ipdbplugin-1.4.tar.gz"; - md5 = "f9a41512e5d901ea0fa199c3f648bba7"; + sha256 = "4778d78b5d0af1a2a6d341aed9e72eb73b1df6b179e145b4845d3a209137029c"; }; propagatedBuildInputs = with self; [ self.nose self.ipython ]; }; @@ -10648,7 +10875,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/j/jrnl/${name}.tar.gz"; - md5 = "395faff36de8a08a5bfeedbf123e9067"; + sha256 = "af599a863ac298533685a7236fb86307eebc00a38eb8bb96f4f67b5d83227ec8"; }; propagatedBuildInputs = with self; [ @@ -10725,7 +10952,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/j/jsonpath-rw/${name}.tar.gz"; - md5 = "3a807e05c2c12158fc6bb0a402fd5778"; + sha256 = "05c471281c45ae113f6103d1268ec7a4831a2e96aa80de45edc89b11fac4fbec"; }; propagatedBuildInputs = with self; [ @@ -10858,7 +11085,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pylast/${name}.tar.gz"; - md5 = "506cf1b13020b3ed2f3c845ea0c9830e"; + sha256 = "bf35820be35447d55564d36072d40b09ac8a7fd41a6f1a7a9d408f4d0eaefac4"; }; # error: invalid command 'test' @@ -11011,7 +11238,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/l/linode/linode-${version}.tar.gz"; - md5 = "03a306575cf274719b3206ecee0bda9e"; + sha256 = "db3c2a7fab8966d903a63f16c515bff241533e4ef2d746aa7aae4a49bba5e573"; }; propagatedBuildInputs = with self; [ requests2 ]; @@ -11025,11 +11252,11 @@ in modules // { }; llfuse = buildPythonPackage rec { - name = "llfuse-0.40"; + name = "llfuse-1.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/l/llfuse/${name}.tar.bz2"; - sha256 = "0mx87n6j2g63mgiimjqn0gj6jgqfdkc04xkxc56r1azjlqji32zf"; + sha256 = "1li7q04ljrvwharw4fblcbfhvk6s0l3lnv8yqb4c22lcgbkiqlps"; }; buildInputs = [ pkgs.pkgconfig pkgs.fuse pkgs.attr ]; @@ -11048,7 +11275,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/l/locustio/${name}.tar.gz"; - md5 = "90cf4d029d58ad58d19ea17a16e59c34"; + sha256 = "c9ca6fdfe6a6fb187a3d54ddf9b1518196348e8f20537f0a14ca81a264ffafa2"; }; propagatedBuildInputs = [ self.msgpack self.requests2 self.flask self.gevent self.pyzmq ]; @@ -11224,7 +11451,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/M/M2Crypto/M2Crypto-${version}.tar.gz"; - md5 = "89557730e245294a6cab06de8ad4fb42"; + sha256 = "1ac3b6eafa5ff7e2a0796675316d7569b28aada45a7ab74042ad089d15a9567f"; }; buildInputs = with self; [ pkgs.swig2 pkgs.openssl ]; @@ -11373,7 +11600,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/m/mccabe/${name}.tar.gz"; - md5 = "81640948ff226f8c12b3277059489157"; + sha256 = "3d8ca9bf65c5014f469180544d1dd5bb5b9df709aad6304f9c2e4370ae0a7b7c"; }; # See https://github.com/flintwork/mccabe/issues/31 @@ -11441,7 +11668,7 @@ in modules // { src = pkgs.fetchurl { url = https://pypi.python.org/packages/source/m/meld3/meld3-1.0.0.tar.gz; - md5 = "ca270506dd4ecb20ae26fa72fbd9b0be"; + sha256 = "57b41eebbb5a82d4a928608962616442e239ec6d611fe6f46343e765e36f0b2b"; }; doCheck = false; @@ -11776,7 +12003,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pymox.googlecode.com/files/${name}.tar.gz"; - sha1 = "b71aeaacf31898c3b38d8b9ca5bcc0664499c0de"; + sha256 = "4d18a4577d14da13d032be21cbdfceed302171c275b72adaa4c5997d589a5030"; }; # error: invalid command 'test' @@ -11840,7 +12067,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/python-mpd/python-mpd-0.3.0.tar.gz"; - md5 = "5b3849b131e2fb12f251434597d65635"; + sha256 = "02812eba1d2e0f46e37457f5a6fa23ba203622e4bcab0a19b265e66b08cd21b4"; }; meta = with pkgs.stdenv.lib; { @@ -11924,7 +12151,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/m/msgpack-python/${name}.tar.gz"; - md5 = "8b317669314cf1bc881716cccdaccb30"; + sha256 = "bfcc581c9dbbf07cc2f951baf30c3249a57e20dcbd60f7e6ffc43ab3cc614794"; }; propagatedBuildInputs = with self; [ ]; @@ -11964,7 +12191,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/m/munkres/${name}.tar.gz"; - md5 = "d7ba3b8c5001578ae229a2d5a655872f"; + sha256 = "c78f803b9b776bfb20a25c9c7bb44adbf0f9202c2024d51aa5969d21e560208d"; }; # error: invalid command 'test' @@ -11984,7 +12211,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/m/musicbrainzngs/${name}.tar.gz"; - md5 = "9e17a181af72d04a291c9a960bc73d44"; + sha256 = "281388ab750d2996e9feca4580fd4215d616a698e02cd6719cb9b8562945c489"; }; buildInputs = [ pkgs.glibcLocales ]; @@ -12022,7 +12249,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/m/mutagen/${name}.tar.gz"; - md5 = "6a9bb5cc33214add35348f1bb3448340"; + sha256 = "cc884fe1e20fe220be7ce7c3b269f4cadc69a8310150a3a41162fba1ca9c88bd"; }; # Needed for tests only @@ -12231,7 +12458,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/m/mysql-connector-repackaged/${name}.tar.gz"; - md5 = "0b17ad1cb3fe763fd44487cb97cf45b2"; + sha256 = "170fbf11c54def1b5fcc919be0a890b760bb2eca81f56123a5dda0c69b5b099e"; }; meta = { @@ -12365,15 +12592,13 @@ in modules // { sleekxmpp = buildPythonPackage rec { name = "sleekxmpp-${version}"; - version = "1.2.5"; - - disabled = (!isPy3k); + version = "1.3.1"; propagatedBuildInputs = with self ; [ dns pyasn1 ]; src = pkgs.fetchurl { - url = "https://github.com/fritzy/SleekXMPP/archive/sleek-${version}.tar.gz"; - sha256 = "07zz0bm098zss0xww11gj45aw417nrkp9k1szzs1zm88wyfr1z31"; + url = "https://pypi.python.org/packages/source/s/sleekxmpp/${name}.tar.gz"; + sha256 = "1krkhkvj8xw5a6c2xlf7h1rg9xdcm9d8x2niivwjahahpvbl6krr"; }; meta = { @@ -12529,7 +12754,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/n/nibabel/${name}.tar.gz"; - md5 = "3be518fde5ec5b09483d4f28c81dc974"; + sha256 = "e559bcb40ae395c7f75c51079f815a13a94cd8a035a47315fc9fba0d2ae2ecaf"; }; propagatedBuildInputs = with self; [ @@ -12566,7 +12791,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/n/nipype/${name}.tar.gz"; - md5 = "480013709633a6d292e2ef668443e0c9"; + sha256 = "7fb143cd4d05f18db1cb7f0b83dba13d3dcf55b4eb3d16df08c97033ccae507b"; }; # Tests fail due to getcwd returning ENOENT??? @@ -12671,7 +12896,6 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/n/nose-cover3/${name}.tar.gz"; sha256 = "1la4hhc1yszjpcchvkqk5xmzlb2g1b3fgxj9wwc58qc549whlcc1"; - md5 = "82f981eaa007b430679899256050fa0c"; }; propagatedBuildInputs = with self; [ nose ]; @@ -12691,7 +12915,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/n/nosexcover/${name}.tar.gz"; - md5 = "12bf494a801b376debeb6a167c247391"; + sha256 = "f5b3a7c936c4f703f15418c1f325775098184b69fa572f868edb8a99f8f144a8"; }; propagatedBuildInputs = with self; [ coverage nose ]; @@ -12725,7 +12949,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/n/nose-cprof/${name}.tar.gz"; - md5 = "5db27c3b8f01915335ae6fc5fd3afd44"; + sha256 = "d1edd5cb3139e897752294d2968bfb066abdd754743fa416e024e5c688893344"; }; meta = { @@ -12816,11 +13040,53 @@ in modules // { }; }; - ntplib = buildPythonPackage rec { - name = "ntplib-0.3.2"; + emoji = buildPythonPackage rec { + name = "emoji-${version}"; + version = "0.3.9"; + src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/n/ntplib/ntplib-0.3.2.tar.gz; - md5 = "0f386dc00c0056ac4d77af0b4c21bb8e"; + url = "https://pypi.python.org/packages/source/e/emoji/${name}.tar.gz"; + sha256 = "19p5c2nlq0w9972rf9fghyswnijwgig5f8cyzs32kppnmzvzbkxw"; + }; + + buildInputs = with self; [ nose ]; + + checkPhase = ''nosetests''; + + meta = { + description = "Emoji for Python"; + homepage = https://pypi.python.org/pypi/emoji/; + license = licenses.bsd3; + maintainers = with maintainers; [ joachifm ]; + }; + }; + + ntfy = buildPythonPackage rec { + version = "1.2.0"; + name = "ntfy-${version}"; + src = pkgs.fetchFromGitHub { + owner = "dschep"; + repo = "ntfy"; + rev = "v${version}"; + sha256 = "0yjxwisxpxy3vpnqk9nw5k3db3xx6wyf6sk1px9m94s30glcq2cc"; + }; + + propagatedBuildInputs = with self; [ appdirs pyyaml requests2 dbus emoji sleekxmpp mock ]; + + meta = { + description = "A utility for sending notifications, on demand and when commands finish"; + homepage = http://ntfy.rtfd.org/; + license = licenses.gpl3; + maintainers = with maintainers; [ kamilchm ]; + }; + }; + + ntplib = buildPythonPackage rec { + name = "ntplib-0.3.3"; + src = pkgs.fetchurl { + url = https://pypi.python.org/packages/source/n/ntplib/ntplib-0.3.3.tar.gz; + + sha256 = "c4621b64d50be9461d9bd9a71ba0b4af06fbbf818bbd483752d95c1a4e273ede"; }; meta = { @@ -13177,17 +13443,20 @@ in modules // { }; openpyxl = buildPythonPackage rec { - version = "2.3.0"; + version = "2.3.3"; name = "openpyxl-${version}"; - src = pkgs.fetchhg { - url = "https://bitbucket.org/openpyxl/openpyxl"; - rev = "${version}"; - sha256 = "1iisk6rfh9h5xb411kfyzkcab6fdnsx573i0d83wfn4csk4p3p4d"; + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/openpyxl/${name}.tar.gz"; + sha256 = "1zigyvsq45izkhr1h5gisgi0ag5dm6kz09f01c2cgdfav1bl3mlk"; }; buildInputs = with self; [ pytest ]; - propagatedBuildInputs = with self; [ jdcal et_xmlfile ]; + propagatedBuildInputs = with self; [ jdcal et_xmlfile lxml ]; + + # Tests are not included in archive. + # https://bitbucket.org/openpyxl/openpyxl/issues/610 + doCheck = false; meta = { description = "A Python library to read/write Excel 2007 xlsx/xlsm files"; @@ -13226,7 +13495,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/o/ordereddict/${name}.tar.gz"; - md5 = "a0ed854ee442051b249bfad0f638bbec"; + sha256 = "07qvy11nvgxpzarrni3wrww3vpc9yafgi2bch4j2vvvc42nb8d8w"; }; meta = { @@ -14563,11 +14832,13 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pagerduty/pagerduty-${version}.tar.gz"; - md5 = "8109a330d16751a7f4041c0ccedec787"; + sha256 = "e8c237239d3ffb061069aa04fc5b3d8ae4fb0af16a9713fe0977f02261d323e9"; }; }; - pandas = let + pandas = self.pandas_18; + + pandas_17 = let inherit (pkgs.stdenv.lib) optional optionalString; inherit (pkgs.stdenv) isDarwin; in buildPythonPackage rec { @@ -14582,16 +14853,14 @@ in modules // { buildInputs = with self; [ nose ] ++ optional isDarwin pkgs.libcxx; propagatedBuildInputs = with self; [ dateutil - numpy - scipy + scipy_0_17 numexpr pytz xlrd bottleneck sqlalchemy lxml - # Disabling this because an upstream dependency, pep8, is broken on v3.5. - (if isPy35 then null else html5lib) + html5lib modules.sqlite3 beautifulsoup4 ] ++ optional isDarwin pkgs.darwin.locale; # provides the locale command @@ -14627,7 +14896,7 @@ in modules // { runHook preCheck # The flag `-A 'not network'` will disable tests that use internet. # The `-e` flag disables a few problematic tests. - ${python.executable} setup.py nosetests -A 'not network' --stop \ + ${python.executable} setup.py nosetests -A 'not slow and not network' --stop \ -e '${concatStringsSep "|" testsToSkip}' --verbosity=3 runHook postCheck @@ -14642,13 +14911,93 @@ in modules // { }; }; + pandas_18 = let + inherit (pkgs.stdenv.lib) optional optionalString; + inherit (pkgs.stdenv) isDarwin; + in buildPythonPackage rec { + name = "pandas-${version}"; + version = "0.18.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/pandas/${name}.tar.gz"; + sha256 = "050qw0ap5bhyv5flp78x3lcq1dlminl3xaj6kbrm0jqmx0672xf9"; + }; + + + LC_ALL = "en_US.UTF-8"; + buildInputs = with self; [ nose pkgs.glibcLocales ] ++ optional isDarwin pkgs.libcxx; + propagatedBuildInputs = with self; [ + dateutil + scipy + numexpr + pytz + xlrd + bottleneck + sqlalchemy + lxml + html5lib + modules.sqlite3 + beautifulsoup4 + openpyxl + xlwt + ] ++ optional isDarwin pkgs.darwin.locale; # provides the locale command + + # For OSX, we need to add a dependency on libcxx, which provides + # `complex.h` and other libraries that pandas depends on to build. + patchPhase = optionalString isDarwin '' + cpp_sdk="${pkgs.libcxx}/include/c++/v1"; + echo "Adding $cpp_sdk to the setup.py common_include variable" + substituteInPlace setup.py \ + --replace "['pandas/src/klib', 'pandas/src']" \ + "['pandas/src/klib', 'pandas/src', '$cpp_sdk']" + + # disable clipboard tests since pbcopy/pbpaste are not open source + substituteInPlace pandas/io/tests/test_clipboard.py \ + --replace pandas.util.clipboard no_such_module \ + --replace OSError ImportError + ''; + + # The flag `-A 'not network'` will disable tests that use internet. + # The `-e` flag disables a few problematic tests. + # https://github.com/pydata/pandas/issues/11169 + # https://github.com/pydata/pandas/issues/11287 + # The test_sql checks fail specifically on python 3.5; see here: + # https://github.com/pydata/pandas/issues/11112 + checkPhase = let + testsToSkip = []; + in '' + runHook preCheck + # The flag `-A 'not network'` will disable tests that use internet. + # The `-e` flag disables a few problematic tests. + ${python.executable} setup.py nosetests -A 'not slow and not network' \ + --verbosity=3 + + runHook postCheck + ''; + + meta = { + homepage = "http://pandas.pydata.org/"; + description = "Python Data Analysis Library"; + license = licenses.bsd3; + maintainers = with maintainers; [ raskin fridh ]; + platforms = platforms.unix; + }; + }; + xlrd = buildPythonPackage rec { name = "xlrd-${version}"; + version = "0.9.4"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/x/xlrd/xlrd-${version}.tar.gz"; sha256 = "8e8d3359f39541a6ff937f4030db54864836a06e42988c452db5b6b86d29ea72"; }; + + buildInputs = with self; [ nose ]; + checkPhase = '' + nosetests -v + ''; + }; bottleneck = buildPythonPackage rec { @@ -14709,7 +15058,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/parsedatetime/${name}.tar.gz"; - md5 = "3aca729761be5259a508ed184df73c68"; + sha256 = "09bfcd8f3c239c75e77b3ff05d782ab2c1aed0892f250ce2adf948d4308fe9dc"; }; }; @@ -14718,7 +15067,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/paramiko/${name}.tar.gz"; - md5 = "48c274c3f9b1282932567b21f6acf3b5"; + sha256 = "6ed97e2281bb48728692cdc621f6b86a65fdc1d46b178ce250cfec10b977a04c"; }; propagatedBuildInputs = with self; [ pycrypto ecdsa ]; @@ -14753,7 +15102,7 @@ in modules // { src = pkgs.fetchurl{ url = "https://pypi.python.org/packages/source/p/patsy/${name}.zip"; - md5 = "7545518b413136ba8343dcebea07e5e2"; + sha256 = "a55dd4ca09af4b9608b81f30322beb450510964c022708ab50e83a065ccf15f0"; }; buildInputs = with self; [ nose ]; @@ -14772,7 +15121,7 @@ in modules // { src = pkgs.fetchurl { url = http://pypi.python.org/packages/source/P/Paste/Paste-1.7.5.1.tar.gz; - md5 = "7ea5fabed7dca48eb46dc613c4b6c4ed"; + sha256 = "11645842ba8ec986ae8cfbe4c6cacff5c35f0f4527abf4f5581ae8b4ad49c0b6"; }; buildInputs = with self; [ nose ]; @@ -14792,7 +15141,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/P/PasteDeploy/PasteDeploy-${version}.tar.gz"; - md5 = "352b7205c78c8de4987578d19431af3b"; + sha256 = "d5858f89a255e6294e63ed46b73613c56e3b9a2d82a42f1df4d06c8421a9e3cb"; }; buildInputs = with self; [ nose ]; @@ -15078,7 +15427,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pg8000/${name}.tar.gz"; - md5 = "173275fd76628b0e0cbed70ed9ce9eb9"; + sha256 = "188658db63c2ca931ae1bf0167b34efaac0ecc743b707f0118cc4b87e90ce488"; }; propagatedBuildInputs = with self; [ pytz ]; @@ -15162,20 +15511,40 @@ in modules // { }; }; + piep = buildPythonPackage rec { + version = "0.8.0"; + name = "piep-${version}"; + disabled = isPy3k; + + src = pkgs.fetchurl { + url = "http://pypi.python.org/packages/source/p/piep/piep-${version}.tar.gz"; + sha256 = "1wgkg1kc28jpya5k4zvbc9jmpa60b3d5c3gwxfbp15hw6smyqirj"; + }; + + propagatedBuildInputs = with self; [pygments]; + + meta = { + description = "Bringing the power of python to stream editing"; + homepage = https://github.com/timbertson/piep; + maintainers = with maintainers; [ gfxmonk ]; + license = licenses.gpl3; + }; + }; + pip = buildPythonPackage rec { - version = "8.0.2"; + version = "8.1.1"; name = "pip-${version}"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pip/pip-${version}.tar.gz"; - sha256 = "46f4bd0d8dfd51125a554568d646fe4200a3c2c6c36b9f2d06d2212148439521"; + sha256 = "160pa7xg0vybidhszd1n0ik2xah0yz6gsym5hp8k7dmfd83d6y1y"; }; # pip detects that we already have bootstrapped_pip "installed", so we need # to force it a little. installFlags = [ "--ignore-installed" ]; - buildInputs = with self; [ mock scripttest virtualenv pytest ]; + buildInputs = with self; [ mock scripttest virtualenv pretend pytest ]; }; @@ -15184,7 +15553,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { url = https://pypi.python.org/packages/source/p/pika/pika-0.9.12.tar.gz; - md5 = "7174fc7cc5570314fa3cfaa729106482"; + sha256 = "670787ee6ade47cadd1ec8220876b9b7ae4df7bc4b9dd1d808261a6b47e9ce5d"; }; buildInputs = with self; [ nose mock pyyaml ]; @@ -15311,7 +15680,7 @@ in modules // { src = pkgs.fetchurl { url = https://pypi.python.org/packages/source/p/python3-pika/python3-pika-0.9.14.tar.gz; - md5 = "f3a3ee58afe0ae06f1fa553710e1aa28"; + sha256 = "1c3hifwvn04kvlja88iawf0awyz726jynwnpcb6gn7376b4nfch7"; }; buildInputs = with self; [ nose mock pyyaml ]; @@ -15354,8 +15723,7 @@ in modules // { doCheck = false; buildInputs = with self; [ - pkgs.freetype pkgs.libjpeg pkgs.zlib pkgs.libtiff pkgs.libwebp pkgs.tcl nose ] - ++ optionals (isPy26 || isPy27 || isPy33 || isPyPy) [ pkgs.lcms2 ] + pkgs.freetype pkgs.libjpeg pkgs.zlib pkgs.libtiff pkgs.libwebp pkgs.tcl nose pkgs.lcms2 ] ++ optionals (isPyPy) [ pkgs.tk pkgs.xorg.libX11 ]; # NOTE: we use LCMS_ROOT as WEBP root since there is not other setting for webp. @@ -15531,7 +15899,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/P/PrettyTable/${name}.tar.bz2"; - sha1 = "ad346a18d92c1d95f2295397c7a8a4f489e48851"; + sha256 = "599bc5b4b9602e28294cf795733c889c26dd934aa7e0ee9cff9b905d4fbad188"; }; buildInputs = [ pkgs.glibcLocales ]; @@ -15687,7 +16055,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/publicsuffix/${name}.tar.gz"; - md5 = "f86babf56f6e58b564d3853adebcf37a"; + sha256 = "f6dfcb8a33fb3ac4f09e644cd26f8af6a09d1a45a019d105c8da58e289ca0096"; }; meta = { @@ -15723,7 +16091,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pyacoustid/${name}.tar.gz"; - md5 = "b27c714d530300b917eb869726334226"; + sha256 = "0117039cb116af245e6866e8e8bf3c9c8b2853ad087142bd0c2dfc0acc09d452"; }; propagatedBuildInputs = with self; [ requests2 audioread ]; @@ -15749,7 +16117,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/P/PyAlgoTrade/PyAlgoTrade-0.16.tar.gz"; - md5 = "01d70583ab15eb3bad21027bdeb30ae5"; + sha256 = "a253617254194b91cfebae7bfd184cb109d4e48a8c70051b9560000a2c0f94b3"; }; propagatedBuildInputs = with self; [ numpy scipy pytz ]; @@ -16016,7 +16384,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pybfd/${name}.tar.gz"; - md5 = "79dd6e12c90ad0515d0ad7fb1bd2f571"; + sha256 = "d99b32ad077e704ddddc0b488c83cae851c14919e5cbc51715d00464a1932df4"; }; preConfigure = '' @@ -16036,11 +16404,12 @@ in modules // { pyblock = stdenv.mkDerivation rec { name = "pyblock-${version}"; version = "0.53"; + md5_path = "f6d33a8362dee358517d0a9e2ebdd044"; src = pkgs.fetchurl rec { url = "http://pkgs.fedoraproject.org/repo/pkgs/python-pyblock/" - + "${name}.tar.bz2/${md5}/${name}.tar.bz2"; - md5 = "f6d33a8362dee358517d0a9e2ebdd044"; + + "${name}.tar.bz2/${md5_path}/${name}.tar.bz2"; + sha256 = "f6cef88969300a6564498557eeea1d8da58acceae238077852ff261a2cb1d815"; }; postPatch = '' @@ -16067,7 +16436,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/py-bcrypt/py-bcrypt-${version}.tar.gz"; - md5 = "dd8b367d6b716a2ea2e72392525f4e36"; + sha256 = "5fa13bce551468350d66c4883694850570f3da28d6866bb638ba44fe5eabda78"; }; meta = { @@ -16269,7 +16638,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pydot/${name}.tar.gz"; - md5 = "cd739651ae5e1063a89f7efd5a9ec72b"; + sha256 = "80ea01a7ba75671a3b7890375be0ad8d5321b07bfb6f572192c31409062b59f3"; }; propagatedBuildInputs = with self; [pyparsing pkgs.graphviz]; meta = { @@ -16329,7 +16698,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pyenchant/pyenchant-1.6.6.tar.gz"; - md5 = "9f5acfd87d04432bf8df5f9710a17358"; + sha256 = "25c9d2667d512f8fc4410465fdd2e868377ca07eb3d56e2b6e534a86281d64d3"; }; propagatedBuildInputs = [ pkgs.enchant ]; @@ -16470,7 +16839,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pygeoip/pygeoip-0.3.2.tar.gz"; - md5 = "861664f8be3bed44820356539f2ea5b6"; + sha256 = "f22c4e00ddf1213e0fae36dc60b46ee7c25a6339941ec1a975539014c1f9a96d"; }; # requires geoip samples @@ -16791,18 +17160,19 @@ in modules // { downloadPage = https://github.com/progrium/pyjwt/releases; license = licenses.mit; maintainers = with maintainers; [ prikhi ]; - platforms = platforms.linux; + platforms = platforms.unix; }; }; pykickstart = buildPythonPackage rec { name = "pykickstart-${version}"; version = "1.99.39"; + md5_path = "d249f60aa89b1b4facd63f776925116d"; src = pkgs.fetchurl rec { url = "http://pkgs.fedoraproject.org/repo/pkgs/pykickstart/" - + "${name}.tar.gz/${md5}/${name}.tar.gz"; - md5 = "d249f60aa89b1b4facd63f776925116d"; + + "${name}.tar.gz/${md5_path}/${name}.tar.gz"; + sha256 = "e0d0f98ac4c5607e6a48d5c1fba2d50cc804de1081043f9da68cbfc69cad957a"; }; postPatch = '' @@ -16868,7 +17238,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pyparsing/${name}.tar.gz"; - md5 = "9be0fcdcc595199c646ab317c1d9a709"; + sha256 = "646e14f90b3689b005c19ac9b6b390c9a39bf976481849993e277d7380e6e79f"; }; meta = { @@ -16993,7 +17363,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/P/PyStemmer/${name}.tar.gz"; - md5 = "46ee623eeeba5a7cc0d95cbfa7e18abd"; + sha256 = "d1ac14eb64978c1697fcfba76e3ac7ebe24357c9428e775390f634648947cb91"; }; checkPhase = '' @@ -17014,7 +17384,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/P/Pyro/${name}.tar.gz"; - md5 = "59d4d3f4a8786776c9d7f9051b8f1a69"; + sha256 = "1bed508453ef7a7556b51424a58101af2349b662baab7e7331c5cb85dbe7e578"; }; meta = { @@ -17034,7 +17404,7 @@ in modules // { sha256 = "0jgyhkkq36wn36rymn4jiyqh2vdslmradq4a2mjkxfbk2cz6wpi5"; }; - buildInputs = with self; [ six pytest hypothesis ] ++ optional (!isPy3k) modules.sqlite3; + buildInputs = with self; [ six pytest hypothesis1 ] ++ optional (!isPy3k) modules.sqlite3; checkPhase = '' py.test @@ -17053,7 +17423,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/P/PyRSS2Gen/${name}.tar.gz"; - md5 = "eae2bc6412c5679c287ecc1a59588f75"; + sha256 = "4929d022713129401160fd47550d5158931e4ea6a7136b5d8dfe3b13ac16f2f0"; }; meta = { @@ -17127,7 +17497,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/python-simple-hipchat/python-simple-hipchat-${version}.zip"; - md5 = "3806b3729a021511bac065360832f197"; + sha256 = "404e5ff7187abb09c2227f22063d06baf0fd525725e9c9ad280176bed1c94a3f"; }; buildInputs = [ pkgs.unzip ]; @@ -17158,7 +17528,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pyudev/${name}.tar.gz"; - md5 = "4034de584b6d9efcbfc590a047c63285"; + sha256 = "765d1c14bd9bd031f64e2612225621984cb2bbb8cbc0c03538bcc4c735ff1c95"; }; postPatch = '' @@ -17183,7 +17553,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pynzb/${name}.tar.gz"; - md5 = "63c74a36348ac28aa99732dcb8be8c59"; + sha256 = "0735b3889a1174bbb65418ee503629d3f5e4a63f04b16f46ffba18253ec3ef17"; }; meta = { @@ -17199,7 +17569,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/progressbar/${name}.tar.gz"; - md5 = "8ea4e2c17a8ec9e7d153767c5f2a7b28"; + sha256 = "dfee5201237ca0e942baa4d451fee8bf8a54065a337fabe7378b8585aeda56a3"; }; # invalid command 'test' @@ -17347,7 +17717,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pyPdf/${name}.tar.gz"; - md5 = "7a75ef56f227b78ae62d6e38d4b6b1da"; + sha256 = "3aede4c3c9c6ad07c98f059f90db0b09ed383f7c791c46100f649e1cabda0e3b"; }; buildInputs = with self; [ ]; @@ -17472,7 +17842,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pyreport/${name}.tar.gz"; - md5 = "3076164a7079891d149a23f9435581db"; + sha256 = "1584607596b7b310bf0b6ce79f424bd44238a017fd870aede11cd6732dbe0d4d"; }; # error: invalid command 'test' @@ -17581,7 +17951,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pysphere.googlecode.com/files/${name}.zip"; - md5 = "c57cba33626ac4b1e3d1974923d59232"; + sha256 = "b3f9ba1f67afb17ac41725b01737cd42e8a39d9e745282dd9b692ae631af0add"; }; disabled = isPy3k; @@ -17699,7 +18069,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/python-wifi/${name}.tar.bz2"; - md5 = "f9d520a8c17b0dfffce95a8a7efba7dd"; + sha256 = "504639e5953eaec0e41758900fbe143d33d82ea86762b19b659a118c77d8403d"; }; meta = { @@ -17872,7 +18242,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pyaml/${name}.tar.gz"; - md5 = "e98cf27f50b9ca291ca4937c135db1c9"; + sha256 = "8dfe1b295116115695752acc84d15ecf5c1c469975fbed7672bf41a6bc6d6d51"; }; buildInputs = with self; [ pyyaml ]; @@ -17927,7 +18297,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/r/recaptcha-client/${name}.tar.gz"; - md5 = "74228180f7e1fb76c4d7089160b0d919"; + sha256 = "28c6853c1d13d365b7dc71a6b05e5ffb56471f70a850de318af50d3d7c0dea2f"; }; meta = { @@ -18015,7 +18385,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/r/requests/${name}.tar.gz"; - md5 = "adbd3f18445f7fe5e77f65c502e264fb"; + sha256 = "156bf3ec27ba9ec7e0cf8fbe02808718099d218de403eb64a714d73ba1a29ab1"; }; meta = { @@ -18136,7 +18506,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/q/qserve/${name}.zip"; - md5 = "d481f0dad66a93d0479022fe0487e8ee"; + sha256 = "0b04b2d4d11b464ff1efd42a9ea9f8136187d59f4076f57c9ba95361d41cd7ed"; }; buildInputs = with self; [ ]; @@ -18176,7 +18546,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/q/quantities/quantities-0.10.1.tar.gz"; - md5 = "e924e21c0a5ddc9ebcdacbbe511b8ec7"; + sha256 = "2d27caf31a5e0c37130ac0c14bfa8f9412a5ff1fbf3378a1d6085594776c4315"; }; meta = with pkgs.stdenv.lib; { @@ -18191,7 +18561,7 @@ in modules // { src = pkgs.fetchurl { url = "https://qutip.googlecode.com/files/QuTiP-2.2.0.tar.gz"; - sha1 = "76ba4991322a991d580e78a197adc80d58bd5fb3"; + sha256 = "a26a639d74b2754b3a1e329d91300e587e8c399d8a81d8f18a4a74c6d6f02ba3"; }; propagatedBuildInputs = with self; [ numpy scipy matplotlib pyqt4 @@ -18413,6 +18783,24 @@ in modules // { }; }; + geoalchemy2 = buildPythonPackage rec { + name = "GeoAlchemy2-${version}"; + version = "0.3.0.dev1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/G/GeoAlchemy2/${name}.tar.gz"; + sha256 = "1j95p860ikpcpcirs5791yjpy8rf18zsz7vvsdy6v3x32hkim0k6"; + }; + + propagatedBuildInputs = with self ; [ sqlalchemy shapely ]; + + meta = { + homepage = http://geoalchemy.org/; + license = licenses.mit; + description = "Toolkit for working with spatial databases"; + }; + }; + geopy = buildPythonPackage rec { name = "geopy-${version}"; version = "1.11.0"; @@ -18514,7 +18902,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/R/RoboMachine/RoboMachine-0.6.tar.gz"; - md5 = "4e95eaa43afda0f363c78a88e9da7159"; + sha256 = "6c9a9bae7bffa272b2a09b05df06c29a3a776542c70cae8041a8975a061d2e54"; }; propagatedBuildInputs = with self; [ pyparsing argparse robotframework ]; @@ -18716,7 +19104,7 @@ in modules // { src = pkgs.fetchurl { url = http://pypi.python.org/packages/source/R/Routes/Routes-1.12.3.tar.gz; - md5 = "9740ff424ff6b841632c784a38fb2be3"; + sha256 = "eacc0dfb7c883374e698cebaa01a740d8c78d364b6e7f3df0312de042f77aa36"; }; propagatedBuildInputs = with self; [ paste webtest ]; @@ -18749,7 +19137,7 @@ in modules // { disabled = isPyPy; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/r/rpy2/${name}.tar.gz"; - md5 = "a36e758b633ce6aec6a5f450bfee980f"; + sha256 = "d0d584c435b5ed376925a95a4525dbe87de7fa9260117e9f208029e0c919ad06"; }; buildInputs = with pkgs; [ readline R pcre lzma bzip2 zlib icu ]; propagatedBuildInputs = [ self.singledispatch ]; @@ -18767,7 +19155,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/r/rpyc/${name}.tar.gz"; - md5 = "6931cb92c41f547591b525142ccaeef1"; + sha256 = "43fa845314f0bf442f5f5fab15bb1d1b5fe2011a8fc603f92d8022575cef8b4b"; }; propagatedBuildInputs = with self; [ nose plumbum ]; @@ -18808,7 +19196,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/S/SquareMap/SquareMap-1.0.4.tar.gz"; - md5 = "e36a453baddb97c19af6f79d5ba51f38"; + sha256 = "feab6cb3b222993df68440e34825d8a16de2c74fdb290ae3974c86b1d5f3eef8"; }; meta = { @@ -18875,7 +19263,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/R/RunSnakeRun/RunSnakeRun-2.0.4.tar.gz"; - md5 = "3220b5b89994baee70b1c24d7e42a306"; + sha256 = "61d03a13f1dcb3c1829f5a146da1fe0cc0e27947558a51e848b6d469902815ef"; }; propagatedBuildInputs = [ self.squaremap self.wxPython28 ]; @@ -19081,7 +19469,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/s/scripttest/scripttest-${version}.tar.gz"; - md5 = "1d1c5117ccfc7b5961cae6c1020c0848"; + sha256 = "951cfc25219b0cd003493a565f2e621fd791beaae9f9a3bdd7024d8626419c38"; }; buildInputs = with self; [ pytest ]; @@ -19099,7 +19487,7 @@ in modules // { name = "seaborn-0.6.0"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/s/seaborn/${name}.tar.gz"; - md5 = "bc518f1f45dadb9deb2bb57ca3af3cad"; + sha256 = "e078399b56ed0d53a4aa8bd4d6bd4a9a9deebc0b4acad259d0ef81830affdb68"; }; buildInputs = with self; [ nose ]; @@ -19201,7 +19589,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/s/setuptools_trial/setuptools_trial-0.5.12.tar.gz"; - md5 = "f16f4237c9ee483a0cd13208849d96ad"; + sha256 = "9cc4ca5fd432944eb95e193f28b5a602e8b07201fea4d7077c0976a40f073432"; }; propagatedBuildInputs = with self; [ twisted ]; @@ -19309,7 +19697,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/simpleldap/simpleldap-${version}.tar.gz"; - md5 = "f8a95b24895596338032ca4b4450f1de"; + sha256 = "a5916680a7fe1b2c5d74dc76351be2941d03b7b94a50d8520280e3f588a84e61"; }; meta = { @@ -19408,7 +19796,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/s/sqlite3dbm/${name}.tar.gz"; - md5 = "fc2f8fb09a4bbc0260b97e835b369184"; + sha256 = "4721607e0b817b89efdba7e79cab881a03164b94777f4cf796ad5dd59a7612c5"; }; buildInputs = with self; [ modules.sqlite3 ]; @@ -19425,7 +19813,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pgpdump/pgpdump-1.5.tar.gz"; - md5 = "040a451c8e63de3e61fc5b66efa7fca5"; + sha256 = "1c4700857bf7ba735b08cfe4101aa3a4f5fd839657af249c17b2697c20829668"; }; meta = { @@ -19581,7 +19969,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pytidylib/pytidylib-${version}.tar.gz"; - md5 = "2a28267370c9409b592cdb786649cb25"; + sha256 = "0af07bd8ebd256af70ca925ada9337faf16d85b3072624f975136a5134150ab6"; }; # Judging from SyntaxError in tests @@ -19631,7 +20019,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/t/timelib/${name}.zip"; - md5 = "400e316f81001ec0842fa9b2cef5ade9"; + sha256 = "49142233bdb5971d64a41e05a1f80a408a02be0dc7d9f8c99e7bdd0613ba81cb"; }; buildInputs = with self; [ ]; @@ -19685,7 +20073,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pilkit/${name}.tar.gz"; - md5 = "659dd67440f4b576889f2cd350f43d7b"; + sha256 = "e00585f5466654ea2cdbf7decef9862cb00e16fd363017fa7ef6623a16b0d2c7"; }; preConfigure = '' @@ -19791,7 +20179,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/semantic/semantic-1.0.3.tar.gz"; - md5 = "78a150190e3e7d0f6f357b4c828e5f0d"; + sha256 = "bbc47dad03dddb1ba5895612fdfa1e43cfb3c497534976cebacd4f3684b505b4"; }; # strange setuptools error (can not import semantic.test) @@ -19828,7 +20216,7 @@ in modules // { name = "semantic_version-2.4.2"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/semantic_version/${name}.tar.gz"; - md5 = "fd7d5ade76e78d8540b9a4044496a57c"; + sha256 = "7e8b7fa74a3bc9b6e90b15b83b9bc2377c78eaeae3447516425f475d5d6932d2"; }; meta = { @@ -19842,7 +20230,7 @@ in modules // { name = "sexpdata-0.0.2"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/s/sexpdata/${name}.tar.gz"; - md5 = "efc44265bc27cb3d6ffed4fbf5733fc1"; + sha256 = "eb696bc66b35def5fb356de09481447dff4e9a3ed926823134e1d0f35eade428"; }; doCheck = false; @@ -19859,7 +20247,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/s/sh/${name}.tar.gz"; - md5 = "7af8df6c92d29ff927b6db0146bddec3"; + sha256 = "590fb9b84abf8b1f560df92d73d87965f1e85c6b8330f8a5f6b336b36f0559a4"; }; doCheck = false; @@ -19944,7 +20332,7 @@ in modules // { src = pkgs.fetchurl { url = https://pypi.python.org/packages/source/s/smartdc/smartdc-0.1.12.tar.gz; - md5 = "b960f61facafc879142b699050f6d8b4"; + sha256 = "36206f4fddecae080c66faf756712537e650936b879abb23a8c428731d2415fe"; }; propagatedBuildInputs = with self; [ requests http_signature ]; @@ -19994,7 +20382,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/supervisor/${name}.tar.gz"; - md5 = "8c9714feaa63902f03871317e3ebf62e"; + sha256 = "e3c3b35804c24b6325b5ba462553ebee80d5f4d1766274737b5c532cd4a11d59"; }; buildInputs = with self; [ mock ]; @@ -20015,7 +20403,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/subprocess32/${name}.tar.gz"; - md5 = "754c5ab9f533e764f931136974b618f1"; + sha256 = "ddf4d46ed2be2c7e7372dfd00c464cabb6b3e29ca4113d85e26f82b3d2c220f6"; }; buildInputs = [ pkgs.bash ]; @@ -20109,7 +20497,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/sphinxcontrib-httpdomain/${name}.tar.gz"; - md5 = "ad7ea42bd4c7c0ee57b1cb25bbf24aab"; + sha256 = "ba8fbe82eddc96cfa9d7b975b0422801a14ace9d7e051b8b2c725b92ea6137b5"; }; propagatedBuildInputs = with self; [sphinx]; @@ -20125,21 +20513,22 @@ in modules // { sphinxcontrib_plantuml = buildPythonPackage (rec { - name = "sphinxcontrib-plantuml-0.5"; + name = "sphinxcontrib-plantuml-0.7"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/sphinxcontrib-plantuml/${name}.tar.gz"; - md5 = "4a8840fe3475a19c2af3fa877ab9d296"; + sha256 = "011yprqf41dcm1824zgk2w8vi9115286pmli6apwhlrsxc6b6cwv"; }; + # No tests included. + doCheck = false; + propagatedBuildInputs = with self; [sphinx plantuml]; meta = { description = "Provides a Sphinx domain for embedding UML diagram with PlantUML"; - homepage = http://bitbucket.org/birkenfeld/sphinx-contrib; - - license = "BSD"; + license = with licenses; [ bsd2 ]; }; }); @@ -20149,7 +20538,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/S/Sphinx-PyPI-upload/${name}.tar.gz"; - md5 = "b9f1df5c8443197e4d49abbba1cfddc4"; + sha256 = "5f919a47ce7a7e6028dba809de81ae1297ac192347cf6fc54efca919d4865159"; }; meta = { @@ -20206,7 +20595,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/S/SQLAlchemy/${name}.tar.gz"; - md5 = "4f3377306309e46739696721b1785335"; + sha256 = "9edb47d137db42d57fd26673d6c841e189b1aeb9b566cca908962fcc8448c0bc"; }; preConfigure = optionalString isPy3k '' @@ -20255,11 +20644,11 @@ in modules // { sqlalchemy = buildPythonPackage rec { name = "SQLAlchemy-${version}"; - version = "1.0.10"; + version = "1.0.12"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/S/SQLAlchemy/${name}.tar.gz"; - sha256 = "963415bf4ea4fa13698893464bc6917d291331e0e8202dddd0ebfed2864ef7e3"; + sha256 = "1l8qclhd0s90w3pvwhi5mjxdwr5j7gw7cjka2fx6f2vqmq7f4yb6"; }; buildInputs = with self; [ nose mock ] @@ -20286,10 +20675,11 @@ in modules // { version = "0.8.2"; disabled = isPy33; - src = pkgs.fetchgit { - url = https://github.com/crosspop/sqlalchemy-imageattach.git; - rev = "refs/tags/${version}"; - md5 = "cffdcde30952176e35fccf385f579dda"; + src = pkgs.fetchFromGitHub { + repo = "sqlalchemy-imageattach"; + owner = "crosspop"; + rev = "${version}"; + sha256 = "1pqf7vk4lsvnhw169cqfyk0iz5f8n45470mdslklpi38z2fax9p0"; }; buildInputs = with self; [ pytest webob pkgs.imagemagick nose ]; @@ -20398,7 +20788,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/python-statsd/${name}.tar.gz"; - md5 = "3a0c71a160b504b843703c3041c7d7fb"; + sha256 = "3d2fc153e0d894aa9983531ef47d20d75bd4ee9fd0e46a9d82f452dde58a0a71"; }; buildInputs = with self; [ mock nose coverage ]; @@ -20417,7 +20807,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/s/stompclient/${name}.tar.gz"; - md5 = "af0a314b6106dd80da24a918c24a1eab"; + sha256 = "95a4e98dd0bba348714439ea11a25ee8a74acb8953f95a683924b5bf2a527e4e"; }; buildInputs = with self; [ mock nose ]; @@ -20772,7 +21162,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/T/Tempita/Tempita-${version}.tar.gz"; - md5 = "4c2f17bb9d481821c41b6fbee904cea1"; + sha256 = "cacecf0baa674d356641f1d406b8bff1d756d739c46b869a54de515d08e6fc9c"; }; disabled = isPy3k; @@ -21063,7 +21453,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/t/tmdb3/${name}.zip"; - md5 = "cd259427454472164c9a2479504c9cbb"; + sha256 = "64a6c3f1a60a9d8bf18f96a5403f3735b334040345ac3646064931c209720972"; }; meta = { @@ -21175,7 +21565,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/t/traits/${name}.tar.gz"; - md5 = "3ad558eebaedc63c29c80183c0371d2f"; + sha256 = "5293a8786030b0b243e059f52004355b6939d7c0f1be2eb5a605b63cca484c84"; }; # Use pytest because its easier to discover tests @@ -21206,7 +21596,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/t/transaction/${name}.tar.gz"; - md5 = "b4ca5983c9e3a0808ff5ff7648092c76"; + sha256 = "1b2304a886a85ad014f73d93346c14350fc214ae22a4f565f42f6761cfb9ecc5"; }; propagatedBuildInputs = with self; [ zope_interface ]; @@ -21224,7 +21614,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/t/transmissionrpc/${name}.tar.gz"; - md5 = "b2f918593e509f0e66e2e643291b436d"; + sha256 = "ec43b460f9fde2faedbfa6d663ef495b3fd69df855a135eebe8f8a741c0dde60"; }; propagatedBuildInputs = with self; [ six ]; @@ -21242,7 +21632,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/t/tl.eggdeps/tl.${name}.tar.gz"; - md5 = "2472204a2abd0d8cd4d11ff0fbf36ae7"; + sha256 = "a99de5e4652865224daab09b2e2574a4f7c1d0d9a267048f9836aa914a2caf3a"; }; # tests fail, see http://hydra.nixos.org/build/4316603/log/raw @@ -21317,7 +21707,6 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/T/Twiggy/Twiggy-0.4.5.tar.gz"; - # md5 = "b0dfbbb7f56342e448af4d22a47a339c"; # provided by pypi website. sha256 = "4e8f1894e5aee522db6cb245ccbfde3c5d1aa08d31330c7e3af783b0e66eec23"; }; @@ -21418,7 +21807,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/t/tzlocal/tzlocal-1.1.1.zip"; - md5 = "56c2a04501b98f2a1188d003fd6d3dba"; + sha256 = "696bfd8d7c888de039af6c6fdf86fd52e32508277d89c75d200eb2c150487ed4"; }; # test fail (timezone test fail) @@ -21599,7 +21988,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/u/update_checker/${name}.tar.gz"; - md5 = "1daa54bac316be6624d7ee77373144bb"; + sha256 = "681bc7c26cffd1564eb6f0f3170d975a31c2a9f2224a32f80fe954232b86f173"; }; propagatedBuildInputs = with self; [ requests2 ]; @@ -21644,7 +22033,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/u/urwid/${name}.tar.gz"; - md5 = "a989acd54f4ff1a554add464803a9175"; + sha256 = "29f04fad3bf0a79c5491f7ebec2d50fa086e9d16359896c9204c6a92bc07aba2"; }; meta = { @@ -21704,7 +22093,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/P/PyVirtualDisplay/${name}.tar.gz"; - md5 = "90b65fe15b81788c2e208d124e3a3c14"; + sha256 = "aa6aef08995e14c20cc670d933bfa6e70d736d0b555af309b2e989e2faa9ee53"; }; meta = { @@ -21745,7 +22134,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/v/virtualenv-clone/${name}.tar.gz"; - md5 = "23e71d255058b2543d839af7f4ce3208"; + sha256 = "7087ba4eb48acfd5209a3fd03e15d072f28742619127c98333057e32748d91c4"; }; buildInputs = with self; [pytest]; @@ -21856,7 +22245,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/w/waitress/${name}.tar.gz"; - md5 = "da3f2e62b3676be5dd630703a68e2a04"; + sha256 = "826527dc9d334ed4ed76cdae672fdcbbccf614186657db71679ab58df869458a"; }; doCheck = false; @@ -21892,7 +22281,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/w/webcolors/${name}.tar.gz"; - md5 = "35de9d785b5c04a9cc66a2eae0519254"; + sha256 = "304fc95dab2848c7bf64f378356766e692c2f8b4a8b15fa3509544e6412936e8"; }; # error: invalid command 'test' @@ -21912,7 +22301,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/W/Wand/${name}.tar.gz"; - md5 = "10bab03bf86ce8da2a95a3b15197ae2e"; + sha256 = "31e2186ce8d1da0d2ea84d1428fc4d441c2e9d0e25156cc746b35b781026bcff"; }; buildInputs = with self; [ pkgs.imagemagick pytest psutil memory_profiler pytest_xdist ]; @@ -21958,7 +22347,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/w/web.py/web.py-${version}.tar.gz"; - md5 = "93375e3f03e74d6bf5c5096a4962a8db"; + sha256 = "748c7e99ad9e36f62ea19f7965eb7dd7860b530e8f563ed60ce3e53e7409a550"; }; meta = { @@ -22016,7 +22405,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/W/WebTest/WebTest-${version}.zip"; - md5 = "49314bdba23f4d0bd807facb2a6d3f90"; + sha256 = "c320adc2cd862ea71ca9e2012e6157eb12f5f8d1632d1541f2eabf984aaa3ecc"; }; preConfigure = '' @@ -22093,7 +22482,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/w/willie/willie-5.2.0.tar.gz"; - md5 = "a19f8c34e10e3c2d0d915c894224e521"; + sha256 = "2da2e91b65c471b4c8e5e5e11471b25887635258d24aaf76b5354147b3ab577d"; }; propagatedBuildInputs = with self; [ feedparser pytz lxml praw pyenchant pygeoip backports_ssl_match_hostname_3_4_0_2 ]; @@ -22222,11 +22611,11 @@ in modules // { xarray = buildPythonPackage rec { name = "xarray-${version}"; - version = "0.7.0"; + version = "0.7.1"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/x/xarray/${name}.tar.gz"; - sha256 = "b1562e8e2c61f1c3587d557ff48d2bc7be36574d6a8e86f11186c356bdd794cf"; + sha256 = "1swcpq8x0p5pp94r9j4hr2anz1rqh7fnqax16xn9xsgrikdjipj5"; }; buildInputs = with self; [ pytest ]; @@ -22244,6 +22633,27 @@ in modules // { }; }; + xlwt = buildPythonPackage rec { + name = "xlwt-${version}"; + version = "1.0.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/x/xlwt/${name}.tar.gz"; + sha256 = "1y8w5imsicp01gn749qhw6j0grh9y19zz57ribwaknn8xqwjjhxc"; + }; + + buildInputs = with self; [ nose ]; + checkPhase = '' + nosetests -v + ''; + + meta = { + description = "Library to create spreadsheet files compatible with MS"; + homepage = https://github.com/python-excel/xlwt; + license = with licenses; [ bsdOriginal bsd3 lgpl21 ]; + }; + }; + youtube-dl = callPackage ../tools/misc/youtube-dl { # Release versions don't need pandoc because the formatted man page # is included in the tarball. @@ -22283,7 +22693,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/Z/ZConfig/ZConfig-${version}.tar.gz"; - md5 = "60a107c5857c3877368dfe5930559804"; + sha256 = "6577da957511d8c2f805fefd2e31cacc4117bb5c54aec03ad8ce374020c021f3"; }; propagatedBuildInputs = with self; [ zope_testrunner ]; @@ -22303,7 +22713,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zc.lockfile/${name}.tar.gz"; - md5 = "f099d4cf2583a0c7bea0146a44dc4d59"; + sha256 = "96bb2aa0438f3e29a31e4702316f832ec1482837daef729a92e28c202d8fba5c"; }; meta = { @@ -22321,7 +22731,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zdaemon/${name}.tar.gz"; - md5 = "4056e2ea35855695ed15389d9c168b92"; + sha256 = "82d7eaa4d831ff1ecdcffcb274f3457e095c0cc86e630bc72009a863c341ab9f"; }; propagatedBuildInputs = [ self.zconfig ]; @@ -22375,7 +22785,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/Z/ZODB3/ZODB3-${version}.tar.gz"; - md5 = "21975c1609296e7834e8cf4025af3039"; + sha256 = "b5767028e732c619f45c27189dd001e14ec155d7984807991fce751b35b4fcb0"; }; propagatedBuildInputs = with self; [ manuel transaction zc_lockfile zconfig zdaemon zope_interface zope_event BTrees persistent ZEO ]; @@ -22396,7 +22806,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/Z/ZODB/ZODB-${version}.tar.gz"; - md5 = "092d787524b095164231742c96b32f50"; + sha256 = "c5d8ffcca37ab4d0a9bfffead6228d58c00cf1c78135abc98a8dbf05b8c8fb58"; }; propagatedBuildInputs = with self; [ manuel transaction zc_lockfile zconfig zdaemon zope_interface persistent BTrees ] @@ -22421,7 +22831,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/z/zodbpickle/${name}.tar.gz"; - md5 = "d401bd89f99ec8d56c22493e6f8c0443"; + sha256 = "f65c00fbc13523fced63de6cc11747aa1a6343aeb2895c89838ed55a5ab12cca"; }; # fails.. @@ -22459,7 +22869,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/persistent/${name}.tar.gz"; - md5 = "2942f1ca7764b1bef8d48fa0d9a236b7"; + sha256 = "678902217c5370d33694c6dc95b89e1e6284b4dc41f04c056326194a3f6f3e22"; }; meta = { @@ -22473,7 +22883,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/x/xdot/xdot-0.6.tar.gz"; - md5 = "a8e5fc5208657b03ad1bd4c46de75724"; + sha256 = "c71d82bad0fec696af36af788c2a1dbb5d9975bd70bfbdc14bda15b5c7319e6c"; }; propagatedBuildInputs = with self; [ pygtk pygobject pkgs.graphviz ]; @@ -22490,7 +22900,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zope.broken/${name}.zip"; - md5 = "eff24d7918099a3e899ee63a9c31bee6"; + sha256 = "b9b8776002da4f7b6b12dfcce77eb642ae62b39586dbf60e1d9bdc992c9f2999"; }; buildInputs = with self; [ zope_interface ]; @@ -22529,7 +22939,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/z/zope.browserresource/zope.browserresource-4.0.1.zip"; - md5 = "81bbe92c1f04725561470f89d73222c5"; + sha256 = "d580184562e7098950ae377b5b37fbb88becdaa2256ac2a6760b69a3e86a99b2"; }; }; @@ -22578,7 +22988,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zope.container/${name}.tar.gz"; - md5 = "b24d2303ece65a2d9ce23a5bd074c335"; + sha256 = "5c04e61b52fd04d8b7103476532f557c2278c86281aae30d44f88a5fbe888940"; }; # a test is failing @@ -22601,7 +23011,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zope.contenttype/${name}.tar.gz"; - md5 = "171be44753e86742da8c81b3ad008ce0"; + sha256 = "9decc7531ad6925057f1a667ac0ef9d658577a92b0b48dafa7daa97b78a02bbb"; }; meta = { @@ -22615,7 +23025,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zope.dottedname/${name}.tar.gz"; - md5 = "62d639f75b31d2d864fe5982cb23959c"; + sha256 = "331d801d98e539fa6c5d50c3835ecc144c429667f483281505de53fc771e6bf5"; }; meta = { maintainers = with maintainers; [ goibhniu ]; @@ -22669,7 +23079,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zope.filerepresentation/${name}.tar.gz"; - md5 = "4a7a434094f4bfa99a7f22e75966c359"; + sha256 = "d775ebba4aff7687e0381f050ebda4e48ce50900c1438f3f7e901220634ed3e0"; }; propagatedBuildInputs = with self; [ zope_schema ]; @@ -22773,7 +23183,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zope.publisher/${name}.tar.gz"; - md5 = "495131970cc7cb14de8e517fb3857ade"; + sha256 = "d994d8eddfba504841492115032a9a7d86b1713ebc96d0ca16fbc6ee93168ba4"; }; propagatedBuildInputs = with self; [ @@ -22807,7 +23217,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zope.security/${name}.tar.gz"; - md5 = "27d1f2873a0ee9c1f485f7b8f22d8e1c"; + sha256 = "8da30b03d5491464d59397e03b88192f31f587325ee6c6eb1ca596a1e487e2ec"; }; propagatedBuildInputs = with self; [ @@ -22844,7 +23254,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zope.sqlalchemy/${name}.zip"; - md5 = "0a468bd5b8884cd29fb71acbf7eaa31e"; + sha256 = "e196d1b2cf796f46e2c6127717e359ddd35d8d084a8ba059f0f0fabff245b9e1"; }; buildInputs = with self; [ zope_testing zope_interface ]; @@ -22904,7 +23314,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zope.traversing/${name}.zip"; - md5 = "5cc40c552f953939f7c597ebbedd586f"; + sha256 = "79d38b92ec1d9a2467966ee954b792d83ac66f22e45e928113d4b5dc1f5e74eb"; }; propagatedBuildInputs = with self; [ zope_location zope_security zope_publisher transaction zope_tales ]; @@ -23033,23 +23443,6 @@ in modules // { propagatedBuildInputs = with self; [ requests webob ]; }; - tornadokick = buildPythonPackage rec { - name = "tornadokick-0.2.1"; - - propagatedBuildInputs = with self; [ tornado ]; - - src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/tornadokick/${name}.tar.gz"; - md5 = "95ee5a295ce3f361c6f843c4f39cbb8c"; - }; - - meta = { - description = "A Toolkit for the Tornado Web Framework"; - homepage = http://github.com/multoncore/tornadokick; - license = licenses.asl20; - }; - }; - tunigo = buildPythonPackage rec { name = "tunigo-${version}"; version = "0.1.3"; @@ -23238,7 +23631,7 @@ in modules // { name = "tissue-0.9.2"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/t/tissue/${name}.tar.gz"; - md5 = "87dbcdafff41bfa1b424413f79aa9153"; + sha256 = "7e34726c3ec8fae358a7faf62de172db15716f5582e5192a109e33348bd76c2e"; }; buildInputs = with self; [ nose ]; @@ -23277,7 +23670,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/t/translationstring/${name}.tar.gz"; - md5 = "a4b62e0f3c189c783a1685b3027f7c90"; + sha256 = "4ee44cfa58c52ade8910ea0ebc3d2d84bdcad9fa0422405b1801ec9b9a65b72d"; }; meta = { @@ -23337,7 +23730,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/w/websocket-client/${name}.tar.gz"; - md5 = "b07a897511a3c585251fe2ea85a9d9d9"; + sha256 = "cb3ab95617ed2098d24723e3ad04ed06c4fde661400b96daa1859af965bfe040"; }; propagatedBuildInputs = with self; [ six backports_ssl_match_hostname_3_4_0_2 unittest2 argparse ]; @@ -23355,7 +23748,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/W/WebHelpers/${name}.tar.gz"; - md5 = "32749ffadfc40fea51075a7def32588b"; + sha256 = "ea86f284e929366b77424ba9a89341f43ae8dee3cbeb8702f73bcf86058aa583"; }; buildInputs = with self; [ routes markupsafe webob nose ]; @@ -23393,7 +23786,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/w/whisper/${name}.tar.gz"; - md5 = "5fac757cc4822ab0678dbe0d781d904e"; + sha256 = "0eca66449d6ceb29e2ab5457b01618e0fe525710dd130a286a18282d849ae5b2"; }; # error: invalid command 'test' @@ -23432,7 +23825,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/u/ujson/${name}.zip"; - md5 = "8148a2493fff78940feab1e11dc0a893"; + sha256 = "68cf825f227c82e1ac61e423cfcad923ff734c27b5bdd7174495d162c42c602b"; }; meta = { @@ -23469,7 +23862,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pyusb/${name}.tar.gz"; - md5 = "5cc9c7dd77b4d12fcc22fee3b39844bc"; + sha256 = "14ec66077bdcd6f1aa9e892a0a35a54bb3c1ec56aa740ead64349c18f0186d19"; }; # Fix the USB backend library lookup @@ -23581,7 +23974,7 @@ in modules // { src = pkgs.fetchurl rec { url = "https://pypi.python.org/packages/source/g/graphite-web/${name}.tar.gz"; - md5 = "8edbb61f1ffe11c181bd2cb9ec977c72"; + sha256 = "472a4403fd5b5364939aee10e78f171b1489e5f6bfe6f150ed9cae8476410114"; }; propagatedBuildInputs = with self; [ django_1_5 django_tagging modules.sqlite3 whisper pkgs.pycairo ldap memcached ]; @@ -23652,7 +24045,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/g/graphite_beacon/${name}.tar.gz"; - md5 = "3d7b2bf8a41b6c3ec5ba2c14db321096"; + sha256 = "ebde1aba8030c8aeffaeea39f9d44a2be464b198583ad4a390a2bff5f4172543"; }; propagatedBuildInputs = [ self.tornado ]; @@ -23869,13 +24262,13 @@ in modules // { }; libvirt = let - version = "1.3.0"; + version = "1.3.2"; in assert version == pkgs.libvirt.version; pkgs.stdenv.mkDerivation rec { name = "libvirt-python-${version}"; src = pkgs.fetchurl { url = "http://libvirt.org/sources/python/${name}.tar.gz"; - sha256 = "0z7w79mkx7w322d2mf9d4bz56mmfic3nx0q4bc6fa063aay42z89"; + sha256 = "1y0b2sglc6q43pw1sr0by5wx8037kvrp2969p69k6mq1g2gawdbd"; }; buildInputs = with self; [ python pkgs.pkgconfig pkgs.libvirt lxml ]; @@ -23888,25 +24281,29 @@ in modules // { homepage = http://www.libvirt.org/; description = "libvirt Python bindings"; license = licenses.lgpl2; + maintainers = [ maintainers.fpletz ]; }; }; searx = buildPythonPackage rec { - name = "searx-0.7.0"; + name = "searx-0.8.1"; src = pkgs.fetchurl { - url = "https://github.com/asciimoo/searx/archive/v0.7.0.tar.gz"; - sha256 = "0vq2zjdr1c8mr3zkycqq3732zf4pybbbrs3kzplqgf851k9zfpbw"; + url = "https://github.com/asciimoo/searx/archive/v0.8.1.tar.gz"; + sha256 = "0z0s9n8iblrw7y5xrh2apzsazkgm4vzmxn0ckw4yfiya9am8zk32"; }; - propagatedBuildInputs = with self; [ pyyaml lxml grequests flaskbabel flask requests - gevent speaklater Babel pytz dateutil pygments ]; + propagatedBuildInputs = with self; [ + pyyaml lxml grequests flaskbabel flask requests2 + gevent speaklater Babel pytz dateutil pygments + pyasn1 pyasn1-modules ndg-httpsclient certifi + ]; meta = { homepage = https://github.com/asciimoo/searx; description = "A privacy-respecting, hackable metasearch engine"; license = licenses.agpl3Plus; - maintainers = with maintainers; [ matejc ]; + maintainers = with maintainers; [ matejc fpletz ]; }; }; @@ -23980,24 +24377,27 @@ in modules // { pushbullet = buildPythonPackage rec { name = "pushbullet.py-${version}"; - version = "0.5.0"; + version = "0.10.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pushbullet.py/pushbullet.py-0.5.0.tar.gz"; - md5 = "36c83ba5f7d5208bb86c00eba633f921"; + url = "https://pypi.python.org/packages/source/p/pushbullet.py/pushbullet.py-0.10.0.tar.gz"; + sha256 = "537d3132e1dbc91e31ade4cccf4c7def6f9d48e904a67f341d35b8a54a9be74d"; }; propagatedBuildInputs = with self; [requests websocket_client python_magic ]; }; power = buildPythonPackage rec { - name = "power-1.2"; + name = "power-1.4"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/power/${name}.tar.gz"; - sha256 = "09a00af8357f63dbb1a1eb13b82e39ccc0a14d6d2e44e5b235afe60ce8ee8195"; + url = "https://pypi.python.org/packages/source/p/power/${name}.tar.gz"; + sha256 = "7d7d60ec332acbe3a7d00379b45e39abf650bf7ee311d61da5ab921f52f060f0"; }; + # Tests can't work because there is no power information available. + doCheck = false; + meta = { description = "Cross-platform system power status information"; homepage = https://github.com/Kentzo/Power; @@ -24047,12 +24447,13 @@ in modules // { }; }; - pythonefl_1_16 = buildPythonPackage rec { + # Should be bumped along with EFL! + pythonefl = buildPythonPackage rec { name = "python-efl-${version}"; - version = "1.16.0"; + version = "1.17.0"; src = pkgs.fetchurl { url = "http://download.enlightenment.org/rel/bindings/python/${name}.tar.xz"; - sha256 = "142ffki41xj0z2dnf011g8j4b35waviprk4x1dhvy1wgqdywl61l"; + sha256 = "0yciffcgmyfmy95gidg9jhczv96jyi38zcdj0q19fjmx704zx84y"; }; preConfigure = '' @@ -24061,7 +24462,7 @@ in modules // { preBuild = "${python}/bin/${python.executable} setup.py build_ext"; installPhase= "${python}/bin/${python.executable} setup.py install --prefix=$out"; - buildInputs = with self; [ pkgs.pkgconfig pkgs.e19.efl pkgs.e19.elementary ]; + buildInputs = with self; [ pkgs.pkgconfig pkgs.enlightenment.efl pkgs.enlightenment.elementary ]; doCheck = false; meta = { @@ -24535,7 +24936,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/t/thumbor-pexif/${name}.tar.gz"; - md5 = "fb4cdb60f4a0bead5193fb483ccd3430"; + sha256 = "715cd24760c7c28d6270c79c9e29b55b8d952a24e0e56833d827c2c62451bc3c"; }; meta = { @@ -24553,7 +24954,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/${baseName}/${name}.tar.gz"; - md5 = "5cc79077f386a17b539f1e51c05a3650"; + sha256 = "0lc1x0pai85avm1r452xnvxc12wijnhz87xv20yp3is9fs6rnkrh"; }; buildInputs = with self; [ pkgs.coreutils ]; @@ -24600,7 +25001,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/datadiff/datadiff-1.1.6.zip"; - md5 = "c34a690db75eead148aa5fa89e575d1e"; + sha256 = "f1402701063998f6a70609789aae8dc05703f3ad0a34882f6199653654c55543"; }; buildInputs = with self; [ nose ]; @@ -24617,7 +25018,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/t/termcolor/termcolor-1.1.0.tar.gz"; - md5 = "043e89644f8909d462fbbfa511c768df"; + sha256 = "1d6d69ce66211143803fbc56652b41d73b4a400a2891d7bf7a1cdf4c02de613b"; }; meta = { @@ -24700,7 +25101,7 @@ in modules // { name = "ofxclient-1.3.8"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/o/ofxclient/${name}.tar.gz"; - md5 = "a632e157f9c98524bf9302a0c6788174"; + sha256 = "99ab03bffdb30d9ec98724898f428f8e73129483417d5892799a0f0d2249f233"; }; # ImportError: No module named tests @@ -24713,7 +25114,7 @@ in modules // { name = "ofxhome-0.3.1"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/o/ofxhome/${name}.tar.gz"; - md5 = "98e8ef92ccd443ab750fcb0741efe816"; + sha256 = "0000db437fd1a8c7c65cea5d88ce9d3b54642a1f4844dde04f860e29330ac68d"; }; buildInputs = with self; [ nose ]; @@ -24732,7 +25133,7 @@ in modules // { name = "ofxparse-0.14"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/o/ofxparse/${name}.tar.gz"; - md5 = "4ad8a34e008d4893a61eadd593176f0f"; + sha256 = "d8c486126a94d912442d040121db44fbc4a646ea70fa935df33b5b4dbfbbe42a"; }; propagatedBuildInputs = with self; [ six beautifulsoup4 ]; @@ -24748,7 +25149,7 @@ in modules // { name = "ofxtools-0.3.8"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/o/ofxtools/${name}.tar.gz"; - md5 = "4ac3c3f5223816bc2c48dd818fd434d8"; + sha256 = "88f289a60f4312a1599c38a8fb3216e2b46d10cc34476f9a16a33ac8aac7ec35"; }; meta = { homepage = "https://github.com/csingley/ofxtools"; @@ -24799,7 +25200,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/dicttoxml/dicttoxml-1.6.4.tar.gz"; - md5 = "154b47d2b7405280b871a81502a05657"; + sha256 = "5f29e95fec56680823dc41911c04c2af08727ee53c1b60e83c489212bab71161"; }; propagatedBuildInputs = with self; [ ]; @@ -24928,7 +25329,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/t/trollius/${name}.tar.gz"; - md5 = "3631a464d49d0cbfd30ab2918ef2b783"; + sha256 = "8884cae4ec6a2d593abcffd5e700626ad4618f42b11beb2b75998f2e8247de76"; }; buildInputs = with self; [ mock ] @@ -24986,7 +25387,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/n/neovim/${name}.tar.gz"; - md5 = "8b723417d3bf15bab0b245d080d45298"; + sha256 = "93f475d5583a053af919ba0729b32b3fefef1dbde4717b5657d806bdc69b76b3"; }; propagatedBuildInputs = with self; [ msgpack ] @@ -25034,7 +25435,7 @@ in modules // { name = "ghp-import-${version}"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/g/ghp-import/${name}.tar.gz"; - md5 = "99e018372990c03ab355aa62c34965c5"; + sha256 = "6058810e1c46dd3b5b1eee87e203bdfbd566e10cfc77566edda7aa4dbf6a3053"; }; disabled = isPyPy; buildInputs = [ pkgs.glibcLocales ]; @@ -25053,7 +25454,7 @@ in modules // { name = "typogrify-2.0.7"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/t/typogrify/${name}.tar.gz"; - md5 = "63f38f80531996f187d2894cc497ba08"; + sha256 = "8be4668cda434163ce229d87ca273a11922cb1614cb359970b7dc96eed13cb38"; }; disabled = isPyPy; # Wants to set up Django @@ -25144,7 +25545,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/dot2tex/dot2tex-2.9.0.tar.gz"; - md5 = "2dbaeac905424d0410751235bde4b8b2"; + sha256 = "7d3e54add7dccdaeb6cc9e61ceaf7b587914cf8ebd6821cfea008acdc1e50d4a"; }; propagatedBuildInputs = with self; [ @@ -25231,7 +25632,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/x/xcffib/${name}.tar.gz"; - md5 = "fa13f3fee67c83016a1242982a7c8bda"; + sha256 = "a84eecd5a1bb7570e26c83aca87a2016578ca4e353e1fa56189e95bdef063e6a"; }; patchPhase = '' @@ -25503,7 +25904,7 @@ in modules // { version = "0.7.2"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/x/xlsx2csv/${name}.tar.gz"; - md5 = "eea39d8ab08ff4503bb145171d0a46f6"; + sha256 = "7c6c8fa6c2774224d03a6a96049e116822484dccfa3634893397212ebcd23866"; }; meta = { homepage = https://github.com/bitprophet/alabaster; @@ -25797,4 +26198,62 @@ in modules // { }; }; + termstyle = buildPythonPackage rec { + name = "python-termstyle-${version}"; + version = "0.1.10"; + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/python-termstyle/${name}.tar.gz"; + sha256 = "1qllzkx1alf14zcfapppf8w87si4cpa7lgjmdp3f5idzdyqnnapl"; + }; + + meta = { + description = "console colouring for python"; + homepage = "https://pypi.python.org/pypi/python-termstyle/0.1.10"; + license = licenses.bsdOriginal; + }; + + }; + + green = buildPythonPackage rec { + name = "green-${version}"; + version = "2.3.0"; + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/g/green/${name}.tar.gz"; + sha256 = "1888khfl9yxb8yfxq9b48dxwplqlxx8s0l530z5j7c6bx74v08b4"; + }; + + propagatedBuildInputs = with self; [ termstyle colorama ]; + buildInputs = with self; [ mock ]; + + meta = { + description = "python test runner"; + homepage = "https://github.com/CleanCut/green"; + licence = licenses.mit; + }; + }; + + topydo = buildPythonPackage rec { + name = "topydo-${version}"; + version = "0.9"; + disabled = (!isPy3k); + + src = pkgs.fetchFromGitHub { + owner = "bram85"; + repo = "topydo"; + rev = version; + sha256 = "0vmfr2cxn3r5zc0c4q3a94xy1r0cv177b9zrm9hkkjcmhgq42s3h"; + }; + + propagatedBuildInputs = with self; [ arrow icalendar ]; + buildInputs = with self; [ mock freezegun coverage pkgs.glibcLocales ]; + + LC_ALL="en_US.UTF-8"; + }; + + meta = { + description = "A cli todo application compatible with the todo.txt format"; + homepage = "https://github.com/bram85/topydo"; + license = license.gpl3; + }; + } diff --git a/pkgs/top-level/release-lib.nix b/pkgs/top-level/release-lib.nix index 2f0296223a0..343a3f47a4b 100644 --- a/pkgs/top-level/release-lib.nix +++ b/pkgs/top-level/release-lib.nix @@ -1,5 +1,5 @@ { supportedSystems -, packageSet ? (import ./all-packages.nix) +, packageSet ? (import ./../..) , allowTexliveBuilds ? false , scrubJobs ? true }: diff --git a/pkgs/top-level/release-python.nix b/pkgs/top-level/release-python.nix index 79bbd9d21a0..cb21a660eb5 100644 --- a/pkgs/top-level/release-python.nix +++ b/pkgs/top-level/release-python.nix @@ -3,7 +3,7 @@ $ hydra-eval-jobs pkgs/top-level/release-python.nix */ -{ nixpkgs ? { outPath = (import ./all-packages.nix {}).lib.cleanSource ../..; revCount = 1234; shortRev = "abcdef"; } +{ nixpkgs ? { outPath = (import ./../.. {}).lib.cleanSource ../..; revCount = 1234; shortRev = "abcdef"; } , officialRelease ? false , # The platforms for which we build Nixpkgs. supportedSystems ? [ "x86_64-linux" ] diff --git a/pkgs/top-level/release-small.nix b/pkgs/top-level/release-small.nix index fbfa4903b45..9a10fad4e9f 100644 --- a/pkgs/top-level/release-small.nix +++ b/pkgs/top-level/release-small.nix @@ -1,7 +1,7 @@ /* A small release file, with few packages to be built. The aim is to reduce the load on Hydra when testing the `stdenv-updates' branch. */ -{ nixpkgs ? { outPath = (import ./all-packages.nix {}).lib.cleanSource ../..; revCount = 1234; shortRev = "abcdef"; } +{ nixpkgs ? { outPath = (import ./../.. {}).lib.cleanSource ../..; revCount = 1234; shortRev = "abcdef"; } , supportedSystems ? [ "x86_64-linux" "i686-linux" "x86_64-darwin" ] }: diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index 56caa3a3bb4..cc1e9b791f7 100644 --- a/pkgs/top-level/release.nix +++ b/pkgs/top-level/release.nix @@ -9,7 +9,7 @@ $ nix-build pkgs/top-level/release.nix -A coreutils.x86_64-linux */ -{ nixpkgs ? { outPath = (import ./all-packages.nix {}).lib.cleanSource ../..; revCount = 1234; shortRev = "abcdef"; } +{ nixpkgs ? { outPath = (import ./../.. {}).lib.cleanSource ../..; revCount = 1234; shortRev = "abcdef"; } , officialRelease ? false , # The platforms for which we build Nixpkgs. supportedSystems ? [ "x86_64-linux" "i686-linux" "x86_64-darwin" ] @@ -25,6 +25,8 @@ let jobs = { tarball = import ./make-tarball.nix { inherit pkgs nixpkgs officialRelease; }; + metrics = import ./metrics.nix { inherit pkgs nixpkgs; }; + manual = import ../../doc; lib-tests = import ../../lib/tests/release.nix { inherit nixpkgs; }; @@ -33,6 +35,7 @@ let meta.description = "Release-critical builds for the Nixpkgs unstable channel"; constituents = [ jobs.tarball + jobs.metrics jobs.manual jobs.lib-tests jobs.stdenv.x86_64-linux diff --git a/pkgs/top-level/rust-packages.nix b/pkgs/top-level/rust-packages.nix index 765eb43e845..2b3b98dba63 100644 --- a/pkgs/top-level/rust-packages.nix +++ b/pkgs/top-level/rust-packages.nix @@ -7,15 +7,15 @@ { runCommand, fetchFromGitHub, git }: let - version = "2016-02-25"; - rev = "a43392dd266a3e5c982f6bee3451187fc35ebfa8"; + version = "2016-03-22"; + rev = "f28cdedb698cf76f513fb4514b5ed2892ec89b2f"; src = fetchFromGitHub { inherit rev; owner = "rust-lang"; repo = "crates.io-index"; - sha256 = "45ad457fb1d13f1c0d0b09d36d5ea3e44baffc7884b82dfcbdff5ae7ab350bbd"; + sha256 = "05j43pgdlf554y9r781xdc5la55anwiq6k7vml9icak699ywfxqq"; }; in diff --git a/pkgs/top-level/stdenv.nix b/pkgs/top-level/stdenv.nix new file mode 100644 index 00000000000..aeb36b8edc3 --- /dev/null +++ b/pkgs/top-level/stdenv.nix @@ -0,0 +1,31 @@ +{ system, bootStdenv, crossSystem, config, platform, lib, ... }: +self: super: + +with super; + +rec { + allStdenvs = import ../stdenv { + inherit system platform config lib; + allPackages = args: import ./../.. ({ inherit config system; } // args); + }; + + defaultStdenv = allStdenvs.stdenv // { inherit platform; }; + + stdenv = + if bootStdenv != null then (bootStdenv // {inherit platform;}) else + if crossSystem != null then + stdenvCross + else + let + changer = config.replaceStdenv or null; + in if changer != null then + changer { + # We import again all-packages to avoid recursivities. + pkgs = import ./../.. { + # We remove packageOverrides to avoid recursivities + config = removeAttrs config [ "replaceStdenv" ]; + }; + } + else + defaultStdenv; +}