haskellPackages: regenerate hackage-packages
To include packages alphabetically after with-compiler
This commit is contained in:
parent
3173a11636
commit
391e94a986
1 changed files with 199 additions and 3 deletions
202
pkgs/development/haskell-modules/hackage-packages.nix
generated
202
pkgs/development/haskell-modules/hackage-packages.nix
generated
|
@ -22859,6 +22859,21 @@ self: {
|
|||
}) {};
|
||||
|
||||
"Yampa" = callPackage
|
||||
({ mkDerivation, base, deepseq, random, simple-affine-space }:
|
||||
mkDerivation {
|
||||
pname = "Yampa";
|
||||
version = "0.13.7";
|
||||
sha256 = "0fz4v7q0q1npqxgjcc5ig9ynz1jya54a3vdl5p2mzymg91hwapf8";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
libraryHaskellDepends = [
|
||||
base deepseq random simple-affine-space
|
||||
];
|
||||
description = "Elegant Functional Reactive Programming Language for Hybrid Systems";
|
||||
license = lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
"Yampa_0_14_1" = callPackage
|
||||
({ mkDerivation, base, deepseq, random, simple-affine-space }:
|
||||
mkDerivation {
|
||||
pname = "Yampa";
|
||||
|
@ -22871,6 +22886,7 @@ self: {
|
|||
];
|
||||
description = "Elegant Functional Reactive Programming Language for Hybrid Systems";
|
||||
license = lib.licenses.bsd3;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"Yampa-core" = callPackage
|
||||
|
@ -127023,7 +127039,6 @@ self: {
|
|||
libraryHaskellDepends = [ base hakyll hyphenation split tagsoup ];
|
||||
description = "automatic hyphenation for Hakyll";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.erictapen ];
|
||||
}) {};
|
||||
|
||||
"hakyll-contrib-i18n" = callPackage
|
||||
|
@ -273182,7 +273197,6 @@ self: {
|
|||
license = lib.licenses.bsd3;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
mainProgram = "example";
|
||||
maintainers = [ lib.maintainers.erictapen ];
|
||||
}) {};
|
||||
|
||||
"squeal-postgresql-ltree" = callPackage
|
||||
|
@ -312602,7 +312616,6 @@ self: {
|
|||
license = lib.licenses.mit;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
mainProgram = "webify";
|
||||
maintainers = [ lib.maintainers.erictapen ];
|
||||
}) {};
|
||||
|
||||
"webkit" = callPackage
|
||||
|
@ -316832,6 +316845,39 @@ self: {
|
|||
}) {};
|
||||
|
||||
"xlsx" = callPackage
|
||||
({ mkDerivation, attoparsec, base, base64-bytestring, binary-search
|
||||
, bytestring, conduit, containers, criterion, data-default, deepseq
|
||||
, Diff, directory, dlist, errors, exceptions, extra, filepath
|
||||
, groom, hexpat, lens, monad-control, mtl, network-uri, old-locale
|
||||
, raw-strings-qq, safe, smallcheck, tasty, tasty-hunit
|
||||
, tasty-smallcheck, text, time, transformers, transformers-base
|
||||
, vector, xeno, xml-conduit, xml-types, zip, zip-archive
|
||||
, zip-stream, zlib
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "xlsx";
|
||||
version = "1.0.0.1";
|
||||
sha256 = "1fs2xks7wcbr0idgd50kxlb35l5xy1icvkiyxm8q8772bq2zvadl";
|
||||
libraryHaskellDepends = [
|
||||
attoparsec base base64-bytestring binary-search bytestring conduit
|
||||
containers data-default deepseq dlist errors exceptions extra
|
||||
filepath hexpat lens monad-control mtl network-uri old-locale safe
|
||||
text time transformers transformers-base vector xeno xml-conduit
|
||||
xml-types zip zip-archive zip-stream zlib
|
||||
];
|
||||
testHaskellDepends = [
|
||||
base bytestring conduit containers deepseq Diff directory filepath
|
||||
groom lens mtl raw-strings-qq smallcheck tasty tasty-hunit
|
||||
tasty-smallcheck text time vector xml-conduit
|
||||
];
|
||||
benchmarkHaskellDepends = [
|
||||
base bytestring conduit criterion deepseq lens
|
||||
];
|
||||
description = "Simple and incomplete Excel file parser/writer";
|
||||
license = lib.licenses.mit;
|
||||
}) {};
|
||||
|
||||
"xlsx_1_1_0_1" = callPackage
|
||||
({ mkDerivation, attoparsec, base, base64-bytestring, binary-search
|
||||
, bytestring, conduit, containers, criterion, data-default, deepseq
|
||||
, Diff, directory, dlist, errors, exceptions, extra, filepath
|
||||
|
@ -316862,6 +316908,7 @@ self: {
|
|||
];
|
||||
description = "Simple and incomplete Excel file parser/writer";
|
||||
license = lib.licenses.mit;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"xlsx-tabular" = callPackage
|
||||
|
@ -317658,6 +317705,27 @@ self: {
|
|||
}) {};
|
||||
|
||||
"xmlbf" = callPackage
|
||||
({ mkDerivation, base, bytestring, containers, deepseq, QuickCheck
|
||||
, quickcheck-instances, selective, tasty, tasty-hunit
|
||||
, tasty-quickcheck, text, transformers, unordered-containers
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "xmlbf";
|
||||
version = "0.6.2";
|
||||
sha256 = "0kmny9nxn1sj1sk7480lqin0fmq0lgwq6yxdxpnhsig01rgfisp6";
|
||||
libraryHaskellDepends = [
|
||||
base bytestring containers deepseq selective text transformers
|
||||
unordered-containers
|
||||
];
|
||||
testHaskellDepends = [
|
||||
base bytestring QuickCheck quickcheck-instances tasty tasty-hunit
|
||||
tasty-quickcheck text transformers
|
||||
];
|
||||
description = "XML back and forth! Parser, renderer, ToXml, FromXml, fixpoints";
|
||||
license = lib.licenses.asl20;
|
||||
}) {};
|
||||
|
||||
"xmlbf_0_7" = callPackage
|
||||
({ mkDerivation, base, bytestring, containers, deepseq, exceptions
|
||||
, mmorph, mtl, QuickCheck, quickcheck-instances, selective, tasty
|
||||
, tasty-hunit, tasty-quickcheck, text, transformers
|
||||
|
@ -317677,9 +317745,30 @@ self: {
|
|||
];
|
||||
description = "XML back and forth! Parser, renderer, ToXml, FromXml, fixpoints";
|
||||
license = lib.licenses.asl20;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"xmlbf-xeno" = callPackage
|
||||
({ mkDerivation, base, bytestring, criterion, deepseq, ghc-prim
|
||||
, html-entities, tasty, tasty-hunit, text, unordered-containers
|
||||
, xeno, xml, xmlbf
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "xmlbf-xeno";
|
||||
version = "0.2.1";
|
||||
sha256 = "1vdvmny9f5nxwgdpzn0qa5wghr21i69pnkhw2d1zncsgvq3kkw28";
|
||||
libraryHaskellDepends = [
|
||||
base bytestring html-entities text unordered-containers xeno xmlbf
|
||||
];
|
||||
testHaskellDepends = [ base tasty tasty-hunit xmlbf ];
|
||||
benchmarkHaskellDepends = [
|
||||
base bytestring criterion deepseq ghc-prim xml
|
||||
];
|
||||
description = "xeno backend support for the xmlbf library";
|
||||
license = lib.licenses.asl20;
|
||||
}) {};
|
||||
|
||||
"xmlbf-xeno_0_2_2" = callPackage
|
||||
({ mkDerivation, base, bytestring, criterion, deepseq, ghc-prim
|
||||
, html-entities, tasty, tasty-hunit, text, unordered-containers
|
||||
, xeno, xml, xmlbf
|
||||
|
@ -317697,9 +317786,31 @@ self: {
|
|||
];
|
||||
description = "xeno backend support for the xmlbf library";
|
||||
license = lib.licenses.asl20;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"xmlbf-xmlhtml" = callPackage
|
||||
({ mkDerivation, base, bytestring, html-entities, QuickCheck
|
||||
, quickcheck-instances, tasty, tasty-hunit, tasty-quickcheck, text
|
||||
, unordered-containers, xmlbf, xmlhtml
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "xmlbf-xmlhtml";
|
||||
version = "0.2";
|
||||
sha256 = "1h2w98jdr3r9isbl5g39gd3fxlm4vqib15grqgarhx2gj1k9vlxd";
|
||||
libraryHaskellDepends = [
|
||||
base bytestring html-entities text unordered-containers xmlbf
|
||||
xmlhtml
|
||||
];
|
||||
testHaskellDepends = [
|
||||
base bytestring QuickCheck quickcheck-instances tasty tasty-hunit
|
||||
tasty-quickcheck text unordered-containers xmlbf
|
||||
];
|
||||
description = "xmlhtml backend support for the xmlbf library";
|
||||
license = lib.licenses.asl20;
|
||||
}) {};
|
||||
|
||||
"xmlbf-xmlhtml_0_2_2" = callPackage
|
||||
({ mkDerivation, base, bytestring, html-entities, tasty
|
||||
, tasty-hunit, text, unordered-containers, xmlbf, xmlhtml
|
||||
}:
|
||||
|
@ -317714,6 +317825,7 @@ self: {
|
|||
testHaskellDepends = [ base tasty tasty-hunit xmlbf ];
|
||||
description = "xmlhtml backend support for the xmlbf library";
|
||||
license = lib.licenses.asl20;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"xmlgen" = callPackage
|
||||
|
@ -317865,6 +317977,40 @@ self: {
|
|||
inherit (pkgs.xorg) libXrender; inherit (pkgs) wirelesstools;};
|
||||
|
||||
"xmonad" = callPackage
|
||||
({ mkDerivation, base, containers, data-default-class, directory
|
||||
, filepath, mtl, process, QuickCheck, quickcheck-classes, setlocale
|
||||
, time, transformers, unix, X11
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "xmonad";
|
||||
version = "0.17.1";
|
||||
sha256 = "1apqwyqmc51gamfgsvlanzqqig9qvjss89ibcamhnha1gs1k4jl8";
|
||||
revision = "2";
|
||||
editedCabalFile = "1rgwrnyb7kijzl2mqm8ks2nydh37q5vkbg4400rg9n6x13w2r9b3";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
libraryHaskellDepends = [
|
||||
base containers data-default-class directory filepath mtl process
|
||||
setlocale time transformers unix X11
|
||||
];
|
||||
executableHaskellDepends = [ base ];
|
||||
testHaskellDepends = [
|
||||
base containers QuickCheck quickcheck-classes X11
|
||||
];
|
||||
postInstall = ''
|
||||
install -D man/xmonad.1 ''${!outputDoc}/share/man/man1/xmonad.1
|
||||
install -D man/xmonad.hs ''${!outputDoc}/share/doc/$name/sample-xmonad.hs
|
||||
'';
|
||||
description = "A tiling window manager";
|
||||
license = lib.licenses.bsd3;
|
||||
mainProgram = "xmonad";
|
||||
maintainers = [
|
||||
lib.maintainers.dschrempf lib.maintainers.ivanbrennan
|
||||
lib.maintainers.peti
|
||||
];
|
||||
}) {};
|
||||
|
||||
"xmonad_0_17_2" = callPackage
|
||||
({ mkDerivation, base, containers, data-default-class, directory
|
||||
, filepath, mtl, process, QuickCheck, quickcheck-classes, setlocale
|
||||
, time, transformers, unix, X11
|
||||
|
@ -317889,6 +318035,7 @@ self: {
|
|||
'';
|
||||
description = "A tiling window manager";
|
||||
license = lib.licenses.bsd3;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
mainProgram = "xmonad";
|
||||
maintainers = [
|
||||
lib.maintainers.dschrempf lib.maintainers.ivanbrennan
|
||||
|
@ -318459,6 +318606,26 @@ self: {
|
|||
}) {xslt = null;};
|
||||
|
||||
"xss-sanitize" = callPackage
|
||||
({ mkDerivation, attoparsec, base, containers, css-text, hspec
|
||||
, HUnit, network-uri, tagsoup, text, utf8-string
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "xss-sanitize";
|
||||
version = "0.3.7.1";
|
||||
sha256 = "1lmmyh28mb1k44m63m7qx6iy4x2fgqq5srmky47dsm0fby9iag1h";
|
||||
libraryHaskellDepends = [
|
||||
attoparsec base containers css-text network-uri tagsoup text
|
||||
utf8-string
|
||||
];
|
||||
testHaskellDepends = [
|
||||
attoparsec base containers css-text hspec HUnit network-uri tagsoup
|
||||
text utf8-string
|
||||
];
|
||||
description = "sanitize untrusted HTML to prevent XSS attacks";
|
||||
license = lib.licenses.bsd2;
|
||||
}) {};
|
||||
|
||||
"xss-sanitize_0_3_7_2" = callPackage
|
||||
({ mkDerivation, attoparsec, base, containers, css-text, hspec
|
||||
, HUnit, network-uri, tagsoup, text, utf8-string
|
||||
}:
|
||||
|
@ -318476,6 +318643,7 @@ self: {
|
|||
];
|
||||
description = "sanitize untrusted HTML to prevent XSS attacks";
|
||||
license = lib.licenses.bsd2;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"xstatic" = callPackage
|
||||
|
@ -319287,6 +319455,34 @@ self: {
|
|||
}) {};
|
||||
|
||||
"yaml-unscrambler" = callPackage
|
||||
({ mkDerivation, acc, attoparsec, attoparsec-data, attoparsec-time
|
||||
, base, base64-bytestring, bytestring, conduit, containers, foldl
|
||||
, hashable, libyaml, mtl, neat-interpolation, QuickCheck
|
||||
, quickcheck-instances, rerebase, scientific, selective, tasty
|
||||
, tasty-hunit, tasty-quickcheck, text, text-builder-dev, time
|
||||
, transformers, unordered-containers, uuid, vector, yaml
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "yaml-unscrambler";
|
||||
version = "0.1.0.13";
|
||||
sha256 = "0c7cnxlx01xjr992z0150dl1lnlyj2gwrqza7yhgmn4m7wg6r5z1";
|
||||
libraryHaskellDepends = [
|
||||
acc attoparsec attoparsec-data attoparsec-time base
|
||||
base64-bytestring bytestring conduit containers foldl hashable
|
||||
libyaml mtl scientific selective text text-builder-dev time
|
||||
transformers unordered-containers uuid vector yaml
|
||||
];
|
||||
testHaskellDepends = [
|
||||
foldl neat-interpolation QuickCheck quickcheck-instances rerebase
|
||||
tasty tasty-hunit tasty-quickcheck
|
||||
];
|
||||
description = "Flexible declarative YAML parsing toolkit";
|
||||
license = lib.licenses.mit;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
broken = true;
|
||||
}) {};
|
||||
|
||||
"yaml-unscrambler_0_1_0_16" = callPackage
|
||||
({ mkDerivation, acc, attoparsec, attoparsec-data, attoparsec-time
|
||||
, base, base64-bytestring, bytestring, conduit, containers, foldl
|
||||
, hashable, libyaml, mtl, neat-interpolation, quickcheck-instances
|
||||
|
|
Loading…
Reference in a new issue