Merge pull request #94872 from NixOS/haskell-updates

Update Haskell package set to LTS 16.8 (plus other fixes)

authored by Peter Simons and committed by GitHub 99ec1661 15a841bc

+1605 -885
+2 -2
pkgs/development/compilers/ghc/8.10.1.nix
··· 24 enableRelocatedStaticLibs ? stdenv.targetPlatform != stdenv.hostPlatform 25 26 # aarch64 outputs otherwise exceed 2GB limit 27 - , enableProfiliedLibs ? !stdenv.targetPlatform.isAarch64 28 29 , # Whether to build dynamic libs for the standard library (on the target 30 # platform). Static libs are always built. ··· 68 HADDOCK_DOCS = NO 69 BUILD_SPHINX_HTML = NO 70 BUILD_SPHINX_PDF = NO 71 - '' + stdenv.lib.optionalString (!enableProfiliedLibs) '' 72 GhcLibWays = "v dyn" 73 '' + stdenv.lib.optionalString enableRelocatedStaticLibs '' 74 GhcLibHcOpts += -fPIC
··· 24 enableRelocatedStaticLibs ? stdenv.targetPlatform != stdenv.hostPlatform 25 26 # aarch64 outputs otherwise exceed 2GB limit 27 + , enableProfiledLibs ? !stdenv.targetPlatform.isAarch64 28 29 , # Whether to build dynamic libs for the standard library (on the target 30 # platform). Static libs are always built. ··· 68 HADDOCK_DOCS = NO 69 BUILD_SPHINX_HTML = NO 70 BUILD_SPHINX_PDF = NO 71 + '' + stdenv.lib.optionalString (!enableProfiledLibs) '' 72 GhcLibWays = "v dyn" 73 '' + stdenv.lib.optionalString enableRelocatedStaticLibs '' 74 GhcLibHcOpts += -fPIC
+4 -4
pkgs/development/compilers/ghc/8.8.3.nix
··· 23 , # If enabled, use -fPIC when compiling static libs. 24 enableRelocatedStaticLibs ? stdenv.targetPlatform != stdenv.hostPlatform 25 26 , # Whether to build dynamic libs for the standard library (on the target 27 # platform). Static libs are always built. 28 enableShared ? !stdenv.targetPlatform.isWindows && !stdenv.targetPlatform.useiOSPrebuilt 29 30 , # Whether to build terminfo. 31 enableTerminfo ? !stdenv.targetPlatform.isWindows 32 - 33 - # aarch64 outputs otherwise exceed 2GB limit 34 - , enableProfiliedLibs ? !stdenv.targetPlatform.isAarch64 35 36 , # What flavour to build. An empty string indicates no 37 # specific flavour and falls back to ghc default values. ··· 68 HADDOCK_DOCS = NO 69 BUILD_SPHINX_HTML = NO 70 BUILD_SPHINX_PDF = NO 71 - '' + stdenv.lib.optionalString (!enableProfiliedLibs) '' 72 GhcLibWays = "v dyn" 73 '' + stdenv.lib.optionalString enableRelocatedStaticLibs '' 74 GhcLibHcOpts += -fPIC
··· 23 , # If enabled, use -fPIC when compiling static libs. 24 enableRelocatedStaticLibs ? stdenv.targetPlatform != stdenv.hostPlatform 25 26 + # aarch64 outputs otherwise exceed 2GB limit 27 + , enableProfiledLibs ? !stdenv.targetPlatform.isAarch64 28 + 29 , # Whether to build dynamic libs for the standard library (on the target 30 # platform). Static libs are always built. 31 enableShared ? !stdenv.targetPlatform.isWindows && !stdenv.targetPlatform.useiOSPrebuilt 32 33 , # Whether to build terminfo. 34 enableTerminfo ? !stdenv.targetPlatform.isWindows 35 36 , # What flavour to build. An empty string indicates no 37 # specific flavour and falls back to ghc default values. ··· 68 HADDOCK_DOCS = NO 69 BUILD_SPHINX_HTML = NO 70 BUILD_SPHINX_PDF = NO 71 + '' + stdenv.lib.optionalString (!enableProfiledLibs) '' 72 GhcLibWays = "v dyn" 73 '' + stdenv.lib.optionalString enableRelocatedStaticLibs '' 74 GhcLibHcOpts += -fPIC
+2 -2
pkgs/development/compilers/ghc/8.8.4.nix
··· 24 enableRelocatedStaticLibs ? stdenv.targetPlatform != stdenv.hostPlatform 25 26 # aarch64 outputs otherwise exceed 2GB limit 27 - , enableProfiliedLibs ? !stdenv.targetPlatform.isAarch64 28 29 , # Whether to build dynamic libs for the standard library (on the target 30 # platform). Static libs are always built. ··· 68 HADDOCK_DOCS = NO 69 BUILD_SPHINX_HTML = NO 70 BUILD_SPHINX_PDF = NO 71 - '' + stdenv.lib.optionalString (!enableProfiliedLibs) '' 72 GhcLibWays = "v dyn" 73 '' + stdenv.lib.optionalString enableRelocatedStaticLibs '' 74 GhcLibHcOpts += -fPIC
··· 24 enableRelocatedStaticLibs ? stdenv.targetPlatform != stdenv.hostPlatform 25 26 # aarch64 outputs otherwise exceed 2GB limit 27 + , enableProfiledLibs ? !stdenv.targetPlatform.isAarch64 28 29 , # Whether to build dynamic libs for the standard library (on the target 30 # platform). Static libs are always built. ··· 68 HADDOCK_DOCS = NO 69 BUILD_SPHINX_HTML = NO 70 BUILD_SPHINX_PDF = NO 71 + '' + stdenv.lib.optionalString (!enableProfiledLibs) '' 72 GhcLibWays = "v dyn" 73 '' + stdenv.lib.optionalString enableRelocatedStaticLibs '' 74 GhcLibHcOpts += -fPIC
+10 -10
pkgs/development/compilers/ghc/head.nix
··· 20 # build-time dependency too. 21 buildLlvmPackages, llvmPackages 22 23 - , # If enabled, GHC will be built with the GPL-free but slower integer-simple 24 - # library instead of the faster but GPLed integer-gmp library. 25 - enableIntegerSimple ? !(stdenv.lib.any (stdenv.lib.meta.platformMatch stdenv.hostPlatform) gmp.meta.platforms) 26 , gmp 27 28 , # If enabled, use -fPIC when compiling static libs. ··· 35 , # Whether to build terminfo. 36 enableTerminfo ? !stdenv.targetPlatform.isWindows 37 38 - , version ? "8.11.20200505" 39 , # What flavour to build. An empty string indicates no 40 # specific flavour and falls back to ghc default values. 41 ghcFlavour ? stdenv.lib.optionalString (stdenv.targetPlatform != stdenv.hostPlatform) ··· 46 disableLargeAddressSpace ? stdenv.targetPlatform.isDarwin && stdenv.targetPlatform.isAarch64 47 }: 48 49 - assert !enableIntegerSimple -> gmp != null; 50 51 let 52 inherit (stdenv) buildPlatform hostPlatform targetPlatform; ··· 64 include mk/flavours/\$(BuildFlavour).mk 65 endif 66 DYNAMIC_GHC_PROGRAMS = ${if enableShared then "YES" else "NO"} 67 - INTEGER_LIBRARY = ${if enableIntegerSimple then "integer-simple" else "integer-gmp"} 68 '' + stdenv.lib.optionalString (targetPlatform != hostPlatform) '' 69 Stage1Only = ${if targetPlatform.system == hostPlatform.system then "NO" else "YES"} 70 CrossCompilePrefix = ${targetPrefix} ··· 81 # Splicer will pull out correct variations 82 libDeps = platform: stdenv.lib.optional enableTerminfo ncurses 83 ++ [libffi] 84 - ++ stdenv.lib.optional (!enableIntegerSimple) gmp 85 ++ stdenv.lib.optional (platform.libc != "glibc" && !targetPlatform.isWindows) libiconv 86 ++ stdenv.lib.optional enableDwarf elfutils; 87 ··· 103 104 src = fetchgit { 105 url = "https://gitlab.haskell.org/ghc/ghc.git/"; 106 - rev = "40c71c2cf38b4e134d81b7184a4d5e02949ae70c"; 107 - sha256 = "04h9rcyzm9w3an1z00hjs062dp7dl19b8pkyxjsypr7a2i9dmvkb"; 108 }; 109 110 enableParallelBuilding = true; ··· 173 "--with-system-libffi" 174 "--with-ffi-includes=${targetPackages.libffi.dev}/include" 175 "--with-ffi-libraries=${targetPackages.libffi.out}/lib" 176 - ] ++ stdenv.lib.optionals (targetPlatform == hostPlatform && !enableIntegerSimple) [ 177 "--with-gmp-includes=${targetPackages.gmp.dev}/include" 178 "--with-gmp-libraries=${targetPackages.gmp.out}/lib" 179 ] ++ stdenv.lib.optionals (targetPlatform == hostPlatform && hostPlatform.libc != "glibc" && !targetPlatform.isWindows) [
··· 20 # build-time dependency too. 21 buildLlvmPackages, llvmPackages 22 23 + , # If enabled, GHC will be built with the GPL-free but slightly slower native 24 + # bignum backend instead of the faster but GPLed gmp backend. 25 + enableNativeBignum ? !(stdenv.lib.any (stdenv.lib.meta.platformMatch stdenv.hostPlatform) gmp.meta.platforms) 26 , gmp 27 28 , # If enabled, use -fPIC when compiling static libs. ··· 35 , # Whether to build terminfo. 36 enableTerminfo ? !stdenv.targetPlatform.isWindows 37 38 + , version ? "8.11.20200731" 39 , # What flavour to build. An empty string indicates no 40 # specific flavour and falls back to ghc default values. 41 ghcFlavour ? stdenv.lib.optionalString (stdenv.targetPlatform != stdenv.hostPlatform) ··· 46 disableLargeAddressSpace ? stdenv.targetPlatform.isDarwin && stdenv.targetPlatform.isAarch64 47 }: 48 49 + assert !enableNativeBignum -> gmp != null; 50 51 let 52 inherit (stdenv) buildPlatform hostPlatform targetPlatform; ··· 64 include mk/flavours/\$(BuildFlavour).mk 65 endif 66 DYNAMIC_GHC_PROGRAMS = ${if enableShared then "YES" else "NO"} 67 + BIGNUM_BACKEND = ${if enableNativeBignum then "native" else "gmp"} 68 '' + stdenv.lib.optionalString (targetPlatform != hostPlatform) '' 69 Stage1Only = ${if targetPlatform.system == hostPlatform.system then "NO" else "YES"} 70 CrossCompilePrefix = ${targetPrefix} ··· 81 # Splicer will pull out correct variations 82 libDeps = platform: stdenv.lib.optional enableTerminfo ncurses 83 ++ [libffi] 84 + ++ stdenv.lib.optional (!enableNativeBignum) gmp 85 ++ stdenv.lib.optional (platform.libc != "glibc" && !targetPlatform.isWindows) libiconv 86 ++ stdenv.lib.optional enableDwarf elfutils; 87 ··· 103 104 src = fetchgit { 105 url = "https://gitlab.haskell.org/ghc/ghc.git/"; 106 + rev = "380638a33691ba43fdcd2e18bca636750e5f66f1"; 107 + sha256 = "029cgiyhddvwnx5zx31i0vgj13zsvzb8fna99zr6ifscz6x7rid1"; 108 }; 109 110 enableParallelBuilding = true; ··· 173 "--with-system-libffi" 174 "--with-ffi-includes=${targetPackages.libffi.dev}/include" 175 "--with-ffi-libraries=${targetPackages.libffi.out}/lib" 176 + ] ++ stdenv.lib.optionals (targetPlatform == hostPlatform && !enableNativeBignum) [ 177 "--with-gmp-includes=${targetPackages.gmp.dev}/include" 178 "--with-gmp-libraries=${targetPackages.gmp.out}/lib" 179 ] ++ stdenv.lib.optionals (targetPlatform == hostPlatform && hostPlatform.libc != "glibc" && !targetPlatform.isWindows) [
+2 -2
pkgs/development/haskell-modules/configuration-common.nix
··· 1336 })).override { 1337 # we are faster than stack here 1338 hie-bios = dontCheck self.hie-bios_0_6_1; 1339 - lsp-test = dontCheck self.lsp-test_0_11_0_3; 1340 }); 1341 1342 haskell-language-server = (overrideCabal super.haskell-language-server ··· 1356 ghcide = self.hls-ghcide; 1357 # we are faster than stack here 1358 hie-bios = dontCheck self.hie-bios_0_6_1; 1359 - lsp-test = dontCheck self.lsp-test_0_11_0_3; 1360 }; 1361 1362 # https://github.com/kowainik/policeman/issues/57
··· 1336 })).override { 1337 # we are faster than stack here 1338 hie-bios = dontCheck self.hie-bios_0_6_1; 1339 + lsp-test = dontCheck self.lsp-test_0_11_0_4; 1340 }); 1341 1342 haskell-language-server = (overrideCabal super.haskell-language-server ··· 1356 ghcide = self.hls-ghcide; 1357 # we are faster than stack here 1358 hie-bios = dontCheck self.hie-bios_0_6_1; 1359 + lsp-test = dontCheck self.lsp-test_0_11_0_4; 1360 }; 1361 1362 # https://github.com/kowainik/policeman/issues/57
+2 -2
pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
··· 67 unliftio-core = doJailbreak super.unliftio-core; 68 69 # Use the latest version to fix the build. 70 - dhall = self.dhall_1_33_1; 71 lens = self.lens_4_19_2; 72 - optics-core = self.optics-core_0_3; 73 repline = self.repline_0_4_0_0; 74 singletons = self.singletons_2_7; 75 th-desugar = self.th-desugar_1_11;
··· 67 unliftio-core = doJailbreak super.unliftio-core; 68 69 # Use the latest version to fix the build. 70 + dhall = self.dhall_1_34_0; 71 lens = self.lens_4_19_2; 72 + optics-core = self.optics-core_0_3_0_1; 73 repline = self.repline_0_4_0_0; 74 singletons = self.singletons_2_7; 75 th-desugar = self.th-desugar_1_11;
+1
pkgs/development/haskell-modules/configuration-ghc-head.nix
··· 26 filepath = null; 27 ghc-boot = null; 28 ghc-boot-th = null; 29 ghc-compact = null; 30 ghc-heap = null; 31 ghci = null;
··· 26 filepath = null; 27 ghc-boot = null; 28 ghc-boot-th = null; 29 + ghc-bignum = null; 30 ghc-compact = null; 31 ghc-heap = null; 32 ghci = null;
+29 -21
pkgs/development/haskell-modules/configuration-hackage2nix.yaml
··· 72 # gi-gdkx11-4.x requires gtk-4.x, which is still under development and 73 # not yet available in Nixpkgs 74 - gi-gdkx11 < 4 75 - # LTS Haskell 16.7 76 - abstract-deque ==0.3 77 - abstract-par ==0.3.3 78 - AC-Angle ==1.0 ··· 323 - bins ==0.1.2.0 324 - bitarray ==0.0.1.1 325 - bits ==0.5.2 326 - - bitset-word8 ==0.1.1.1 327 - bits-extra ==0.0.2.0 328 - bitvec ==1.0.3.0 329 - blake2 ==0.3.0 ··· 439 - cipher-des ==0.0.6 440 - cipher-rc4 ==0.1.4 441 - circle-packing ==0.1.0.6 442 - - clash-ghc ==1.2.3 443 - - clash-lib ==1.2.3 444 - - clash-prelude ==1.2.3 445 - classy-prelude ==1.5.0 446 - classy-prelude-conduit ==1.5.0 447 - classy-prelude-yesod ==1.5.0 ··· 518 - control-monad-omega ==0.3.2 519 - convertible ==1.1.1.0 520 - cookie ==0.4.5 521 - - core-data ==0.2.1.5 522 - - core-program ==0.2.4.2 523 - - core-text ==0.2.3.3 524 - countable ==1.0 525 - cpio-conduit ==0.7.0 526 - cpphs ==1.20.9.1 ··· 787 - file-path-th ==0.1.0.0 788 - filepattern ==0.1.2 789 - fileplow ==0.1.0.0 790 - - filtrable ==0.1.3.0 791 - fin ==0.1.1 792 - FindBin ==0.0.5 793 - fingertree ==0.1.4.2 ··· 976 - hadoop-streaming ==0.2.0.3 977 - hakyll ==4.13.4.0 978 - half ==0.3 979 - hamtsolo ==1.0.3 980 - HandsomeSoup ==0.4.2 981 - hapistrano ==0.4.1.0 ··· 1046 - hint ==0.9.0.3 1047 - hjsmin ==0.2.0.4 1048 - hkd-default ==1.1.0.0 1049 - - hkgr ==0.2.6 1050 - hlibcpuid ==0.2.0 1051 - hlibgit2 ==0.18.0.16 1052 - hmatrix ==0.20.0.0 ··· 1144 - http-link-header ==1.0.3.1 1145 - http-media ==0.8.0.0 1146 - http-reverse-proxy ==0.6.0 1147 - - http-streams ==0.8.7.1 1148 - http-types ==0.12.3 1149 - human-readable-duration ==0.2.1.4 1150 - HUnit ==1.6.0.0 ··· 1511 - MusicBrainz ==0.4.1 1512 - mustache ==2.3.1 1513 - mutable-containers ==0.3.4 1514 - - mwc-probability ==2.3.0 1515 - mwc-random ==0.14.0.0 1516 - mx-state-codes ==1.0.0.0 1517 - mysql ==0.1.7 ··· 1732 - pretty-class ==1.0.1.1 1733 - pretty-hex ==1.1 1734 - prettyprinter ==1.6.2 1735 - - prettyprinter-ansi-terminal ==1.1.1.2 1736 - prettyprinter-compat-annotated-wl-pprint ==1 1737 - prettyprinter-compat-ansi-wl-pprint ==1.0.1 1738 - prettyprinter-compat-wl-pprint ==1.0.0.1 1739 - - prettyprinter-convert-ansi-wl-pprint ==1.1 1740 - pretty-relative-time ==0.2.0.0 1741 - pretty-show ==1.10 1742 - pretty-simple ==3.2.3.0 ··· 1825 - rawstring-qm ==0.2.3.0 1826 - raw-strings-qq ==1.1 1827 - rcu ==0.2.4 1828 - - rdf ==0.1.0.3 1829 - rdtsc ==1.3.0.1 1830 - re2 ==0.3 1831 - readable ==0.3.1 ··· 1914 - salve ==1.0.10 1915 - sample-frame ==0.0.3 1916 - sample-frame-np ==0.0.4.1 1917 - - sampling ==0.3.4 1918 - say ==0.1.0.1 1919 - sbp ==2.6.3 1920 - scalpel ==0.6.2 ··· 2137 - syb ==0.7.1 2138 - symbol ==0.2.4 2139 - symengine ==0.1.2.0 2140 - sysinfo ==0.1.1 2141 - system-argv0 ==0.1.1 2142 - systemd ==2.3.0 ··· 2231 - th-nowq ==0.1.0.5 2232 - th-orphans ==0.13.10 2233 - th-printf ==0.7 2234 - - thread-hierarchy ==0.3.0.1 2235 - thread-local-storage ==0.2 2236 - threads ==0.5.1.6 2237 - - thread-supervisor ==0.1.0.0 2238 - threepenny-gui ==0.9.0.0 2239 - th-reify-compat ==0.0.1.5 2240 - th-reify-many ==0.1.9 ··· 2426 - wave ==0.2.0 2427 - wcwidth ==0.0.2 2428 - webdriver ==0.9.0.1 2429 - - webex-teams-api ==0.2.0.0 2430 - - webex-teams-conduit ==0.2.0.0 2431 - - webex-teams-pipes ==0.2.0.0 2432 - webrtc-vad ==0.1.0.3 2433 - websockets ==0.12.7.1 2434 - websockets-snap ==0.10.3.1 ··· 3745 - chart-histogram 3746 - Chart-simple 3747 - chart-svg 3748 - chart-unit 3749 - chatter 3750 - chatty-text ··· 7615 - mDNSResponder-client 7616 - mdp 7617 - mealstrom 7618 - MeanShift 7619 - Measure 7620 - mecab ··· 8661 - postgresql-simple-sop 8662 - postgresql-simple-typed 8663 - postgresql-syntax 8664 - postgresql-typed 8665 - postgresql-typed-lifted 8666 - postgrest-ws ··· 9334 - SCalendar 9335 - scalendar 9336 - scalp-webhooks 9337 - scan-vector-machine 9338 - scc 9339 - scenegraph ··· 10164 - taskell 10165 - TaskMonad 10166 - tasty-auto 10167 - tasty-fail-fast 10168 - tasty-groundhog-converters 10169 - tasty-hedgehog-coverage
··· 72 # gi-gdkx11-4.x requires gtk-4.x, which is still under development and 73 # not yet available in Nixpkgs 74 - gi-gdkx11 < 4 75 + # LTS Haskell 16.8 76 - abstract-deque ==0.3 77 - abstract-par ==0.3.3 78 - AC-Angle ==1.0 ··· 323 - bins ==0.1.2.0 324 - bitarray ==0.0.1.1 325 - bits ==0.5.2 326 + - bitset-word8 ==0.1.1.2 327 - bits-extra ==0.0.2.0 328 - bitvec ==1.0.3.0 329 - blake2 ==0.3.0 ··· 439 - cipher-des ==0.0.6 440 - cipher-rc4 ==0.1.4 441 - circle-packing ==0.1.0.6 442 + - clash-ghc ==1.2.4 443 + - clash-lib ==1.2.4 444 + - clash-prelude ==1.2.4 445 - classy-prelude ==1.5.0 446 - classy-prelude-conduit ==1.5.0 447 - classy-prelude-yesod ==1.5.0 ··· 518 - control-monad-omega ==0.3.2 519 - convertible ==1.1.1.0 520 - cookie ==0.4.5 521 + - core-data ==0.2.1.7 522 + - core-program ==0.2.4.4 523 + - core-text ==0.2.3.5 524 - countable ==1.0 525 - cpio-conduit ==0.7.0 526 - cpphs ==1.20.9.1 ··· 787 - file-path-th ==0.1.0.0 788 - filepattern ==0.1.2 789 - fileplow ==0.1.0.0 790 + - filtrable ==0.1.4.0 791 - fin ==0.1.1 792 - FindBin ==0.0.5 793 - fingertree ==0.1.4.2 ··· 976 - hadoop-streaming ==0.2.0.3 977 - hakyll ==4.13.4.0 978 - half ==0.3 979 + - hall-symbols ==0.1.0.6 980 - hamtsolo ==1.0.3 981 - HandsomeSoup ==0.4.2 982 - hapistrano ==0.4.1.0 ··· 1047 - hint ==0.9.0.3 1048 - hjsmin ==0.2.0.4 1049 - hkd-default ==1.1.0.0 1050 + - hkgr ==0.2.6.1 1051 - hlibcpuid ==0.2.0 1052 - hlibgit2 ==0.18.0.16 1053 - hmatrix ==0.20.0.0 ··· 1145 - http-link-header ==1.0.3.1 1146 - http-media ==0.8.0.0 1147 - http-reverse-proxy ==0.6.0 1148 + - http-streams ==0.8.7.2 1149 - http-types ==0.12.3 1150 - human-readable-duration ==0.2.1.4 1151 - HUnit ==1.6.0.0 ··· 1512 - MusicBrainz ==0.4.1 1513 - mustache ==2.3.1 1514 - mutable-containers ==0.3.4 1515 + - mwc-probability ==2.3.1 1516 - mwc-random ==0.14.0.0 1517 - mx-state-codes ==1.0.0.0 1518 - mysql ==0.1.7 ··· 1733 - pretty-class ==1.0.1.1 1734 - pretty-hex ==1.1 1735 - prettyprinter ==1.6.2 1736 + - prettyprinter-ansi-terminal ==1.1.2 1737 - prettyprinter-compat-annotated-wl-pprint ==1 1738 - prettyprinter-compat-ansi-wl-pprint ==1.0.1 1739 - prettyprinter-compat-wl-pprint ==1.0.0.1 1740 + - prettyprinter-convert-ansi-wl-pprint ==1.1.1 1741 - pretty-relative-time ==0.2.0.0 1742 - pretty-show ==1.10 1743 - pretty-simple ==3.2.3.0 ··· 1826 - rawstring-qm ==0.2.3.0 1827 - raw-strings-qq ==1.1 1828 - rcu ==0.2.4 1829 + - rdf ==0.1.0.4 1830 - rdtsc ==1.3.0.1 1831 - re2 ==0.3 1832 - readable ==0.3.1 ··· 1915 - salve ==1.0.10 1916 - sample-frame ==0.0.3 1917 - sample-frame-np ==0.0.4.1 1918 + - sampling ==0.3.5 1919 - say ==0.1.0.1 1920 - sbp ==2.6.3 1921 - scalpel ==0.6.2 ··· 2138 - syb ==0.7.1 2139 - symbol ==0.2.4 2140 - symengine ==0.1.2.0 2141 + - symmetry-operations-symbols ==0.0.1.4 2142 - sysinfo ==0.1.1 2143 - system-argv0 ==0.1.1 2144 - systemd ==2.3.0 ··· 2233 - th-nowq ==0.1.0.5 2234 - th-orphans ==0.13.10 2235 - th-printf ==0.7 2236 + - thread-hierarchy ==0.3.0.2 2237 - thread-local-storage ==0.2 2238 - threads ==0.5.1.6 2239 + - thread-supervisor ==0.1.0.1 2240 - threepenny-gui ==0.9.0.0 2241 - th-reify-compat ==0.0.1.5 2242 - th-reify-many ==0.1.9 ··· 2428 - wave ==0.2.0 2429 - wcwidth ==0.0.2 2430 - webdriver ==0.9.0.1 2431 + - webex-teams-api ==0.2.0.1 2432 + - webex-teams-conduit ==0.2.0.1 2433 + - webex-teams-pipes ==0.2.0.1 2434 - webrtc-vad ==0.1.0.3 2435 - websockets ==0.12.7.1 2436 - websockets-snap ==0.10.3.1 ··· 3747 - chart-histogram 3748 - Chart-simple 3749 - chart-svg 3750 + - chart-svg-various 3751 - chart-unit 3752 - chatter 3753 - chatty-text ··· 7618 - mDNSResponder-client 7619 - mdp 7620 - mealstrom 7621 + - mealy 7622 - MeanShift 7623 - Measure 7624 - mecab ··· 8665 - postgresql-simple-sop 8666 - postgresql-simple-typed 8667 - postgresql-syntax 8668 + - postgresql-tx-query 8669 + - postgresql-tx-squeal 8670 - postgresql-typed 8671 - postgresql-typed-lifted 8672 - postgrest-ws ··· 9340 - SCalendar 9341 - scalendar 9342 - scalp-webhooks 9343 + - scalpel-search 9344 - scan-vector-machine 9345 - scc 9346 - scenegraph ··· 10171 - taskell 10172 - TaskMonad 10173 - tasty-auto 10174 + - tasty-bdd 10175 - tasty-fail-fast 10176 - tasty-groundhog-converters 10177 - tasty-hedgehog-coverage
+1526 -842
pkgs/development/haskell-modules/hackage-packages.nix
··· 1310 pname = "BNFC-meta"; 1311 version = "0.6.1"; 1312 sha256 = "0snackflcjxza4iqbd85fdsmylwr3bj71nsfrs2s2idc3nlxc7ia"; 1313 libraryHaskellDepends = [ 1314 alex-meta array base fail happy-meta haskell-src-meta syb 1315 template-haskell ··· 20586 ({ mkDerivation, base, bytestring, transformers, vector, vulkan }: 20587 mkDerivation { 20588 pname = "VulkanMemoryAllocator"; 20589 - version = "0.3.5"; 20590 - sha256 = "1j8xnb29ad172qjfrnd4mc4v5a4bfd6ka8xadfknb2d5a5d7r5nn"; 20591 libraryHaskellDepends = [ 20592 base bytestring transformers vector vulkan 20593 ]; ··· 23909 license = stdenv.lib.licenses.bsd3; 23910 }) {}; 23911 23912 - "aeson_1_5_2_0" = callPackage 23913 ({ mkDerivation, attoparsec, base, base-compat 23914 , base-compat-batteries, base-orphans, base16-bytestring 23915 - , bytestring, containers, deepseq, Diff, directory, dlist, filepath 23916 - , generic-deriving, ghc-prim, hashable, hashable-time 23917 , integer-logarithms, primitive, QuickCheck, quickcheck-instances 23918 - , scientific, tagged, tasty, tasty-golden, tasty-hunit 23919 , tasty-quickcheck, template-haskell, text, th-abstraction, these 23920 , time, time-compat, unordered-containers, uuid-types, vector 23921 }: 23922 mkDerivation { 23923 pname = "aeson"; 23924 - version = "1.5.2.0"; 23925 - sha256 = "0awk3dss79mmcxpy147mijnd9icvlnm77bq248ibbbzx9y99hdfd"; 23926 libraryHaskellDepends = [ 23927 - attoparsec base base-compat-batteries bytestring containers deepseq 23928 - dlist ghc-prim hashable primitive scientific tagged 23929 - template-haskell text th-abstraction these time time-compat 23930 - unordered-containers uuid-types vector 23931 ]; 23932 testHaskellDepends = [ 23933 attoparsec base base-compat base-orphans base16-bytestring 23934 - bytestring containers Diff directory dlist filepath 23935 generic-deriving ghc-prim hashable hashable-time integer-logarithms 23936 - QuickCheck quickcheck-instances scientific tagged tasty 23937 tasty-golden tasty-hunit tasty-quickcheck template-haskell text 23938 these time time-compat unordered-containers uuid-types vector 23939 ]; ··· 24813 }: 24814 mkDerivation { 24815 pname = "aeson-with"; 24816 - version = "0.1.1.1"; 24817 - sha256 = "0dfb7ra2gl24vdi5am23rpz7p5mrjig9pxhrb4i7pbqhjlnhhk2g"; 24818 libraryHaskellDepends = [ 24819 aeson base hashmap lens lens-aeson mtl scientific text 24820 unordered-containers vector ··· 25515 license = stdenv.lib.licenses.bsd3; 25516 }) {}; 25517 25518 "alea" = callPackage 25519 ({ mkDerivation, base, optparse-applicative, random, text }: 25520 mkDerivation { ··· 25585 }: 25586 mkDerivation { 25587 pname = "alex-meta"; 25588 - version = "0.3.0.11"; 25589 - sha256 = "0pb6m2h9r3j71iy8ch8kgvssblidlr6r7k12fa1q2v7wi5q2mq91"; 25590 libraryHaskellDepends = [ 25591 array base containers haskell-src-meta QuickCheck template-haskell 25592 ]; ··· 29018 ]; 29019 description = "A simple streamly wrapper for amqp"; 29020 license = stdenv.lib.licenses.bsd3; 29021 - hydraPlatforms = stdenv.lib.platforms.none; 29022 - broken = true; 29023 - }) {testcontainers = null;}; 29024 29025 "amqp-utils" = callPackage 29026 ({ mkDerivation, amqp, base, bytestring, connection, containers ··· 30204 broken = true; 30205 }) {inherit (pkgs) libaosd;}; 30206 30207 "ap-reflect" = callPackage 30208 ({ mkDerivation, base }: 30209 mkDerivation { ··· 31235 31236 "apply-refact" = callPackage 31237 ({ mkDerivation, base, containers, directory, extra, filemanip 31238 - , filepath, ghc, ghc-boot-th, ghc-exactprint, mtl 31239 - , optparse-applicative, process, refact, silently, syb, tasty 31240 - , tasty-expected-failure, tasty-golden, transformers, unix-compat 31241 }: 31242 mkDerivation { 31243 pname = "apply-refact"; 31244 - version = "0.8.2.0"; 31245 - sha256 = "0bhf20b5h095d5a6955hk43k7z4ypkiivq755a21y7nc83l8q5x0"; 31246 isLibrary = true; 31247 isExecutable = true; 31248 libraryHaskellDepends = [ 31249 - base containers directory extra filemanip ghc ghc-exactprint mtl 31250 process refact syb transformers unix-compat 31251 ]; 31252 executableHaskellDepends = [ 31253 base containers directory extra filemanip filepath ghc ghc-boot-th 31254 - ghc-exactprint mtl optparse-applicative process refact syb 31255 - transformers unix-compat 31256 ]; 31257 testHaskellDepends = [ 31258 base containers directory extra filemanip filepath ghc ghc-boot-th 31259 - ghc-exactprint mtl optparse-applicative process refact silently syb 31260 tasty tasty-expected-failure tasty-golden transformers unix-compat 31261 ]; 31262 description = "Perform refactorings specified by the refact library"; ··· 31674 pname = "archive-libarchive"; 31675 version = "1.0.0.0"; 31676 sha256 = "0pqq76gnk6y71c5wwjhq99y2695v6bfyzjb8gakp6h3jivcpd2gb"; 31677 libraryHaskellDepends = [ 31678 base bytestring composition-prelude libarchive 31679 ]; ··· 33910 }: 33911 mkDerivation { 33912 pname = "atom-conduit"; 33913 - version = "0.8.0.0"; 33914 - sha256 = "0vakq72n9q6hk6ysl64qcyrrya2gp2l3s97n3vggwv84p167xqwd"; 33915 libraryHaskellDepends = [ 33916 base-noprelude blaze-builder conduit microlens microlens-th parsers 33917 prettyprinter refined relude safe-exceptions text time timerep ··· 35343 }: 35344 mkDerivation { 35345 pname = "avwx"; 35346 - version = "0.3.0.2"; 35347 - sha256 = "02pvh2i1f96k3pyrmdb3jv2ia7mcp8q5pw067psr8k2sw329qadl"; 35348 isLibrary = true; 35349 isExecutable = true; 35350 libraryHaskellDepends = [ attoparsec base HTTP lens parsers text ]; ··· 35808 }: 35809 mkDerivation { 35810 pname = "aws-lambda-haskell-runtime"; 35811 - version = "3.0.2"; 35812 - sha256 = "18gdr7jmaq7csh5c27aam5cbyydw9d0bzv9frnck3ggpfqjnb84i"; 35813 libraryHaskellDepends = [ 35814 aeson base bytestring case-insensitive http-client http-types path 35815 path-io safe-exceptions-checked template-haskell text ··· 35827 }: 35828 mkDerivation { 35829 pname = "aws-lambda-haskell-runtime-wai"; 35830 - version = "1.0.1"; 35831 - sha256 = "0kzk5nnya39k2h0nn321qg16ss1h6yvymy7r77cbrk015572yck9"; 35832 libraryHaskellDepends = [ 35833 aeson aws-lambda-haskell-runtime base binary bytestring 35834 case-insensitive http-types iproute network text ··· 36903 license = stdenv.lib.licenses.bsd3; 36904 }) {}; 36905 36906 "banwords" = callPackage 36907 ({ mkDerivation, attoparsec, base, bytestring, data-default, HUnit 36908 , test-framework, test-framework-hunit, text, vector ··· 42068 42069 "bitset-word8" = callPackage 42070 ({ mkDerivation, base, bytestring, containers, criterion, deepseq 42071 - , hspec, QuickCheck, template-haskell, th-lift-instances, vector 42072 - }: 42073 - mkDerivation { 42074 - pname = "bitset-word8"; 42075 - version = "0.1.1.1"; 42076 - sha256 = "1pjjpqfqjnylfs5npnh7w75h9xk5gpkwzaqx0a972wa9h18gih7z"; 42077 - libraryHaskellDepends = [ 42078 - base containers template-haskell th-lift-instances 42079 - ]; 42080 - testHaskellDepends = [ 42081 - base containers hspec QuickCheck template-haskell th-lift-instances 42082 - ]; 42083 - benchmarkHaskellDepends = [ 42084 - base bytestring containers criterion deepseq template-haskell 42085 - th-lift-instances vector 42086 - ]; 42087 - description = "Space efficient set of Word8 and some pre-canned sets useful for parsing HTTP"; 42088 - license = stdenv.lib.licenses.mit; 42089 - }) {}; 42090 - 42091 - "bitset-word8_0_1_1_2" = callPackage 42092 - ({ mkDerivation, base, bytestring, containers, criterion, deepseq 42093 , hspec, hspec-discover, QuickCheck, template-haskell 42094 , th-lift-instances, vector 42095 }: ··· 42110 ]; 42111 description = "Space efficient set of Word8 and some pre-canned sets useful for parsing HTTP"; 42112 license = stdenv.lib.licenses.mit; 42113 - hydraPlatforms = stdenv.lib.platforms.none; 42114 }) {}; 42115 42116 "bitspeak" = callPackage ··· 43331 broken = true; 43332 }) {}; 43333 43334 "bluemix-sdk" = callPackage 43335 ({ mkDerivation, aeson, base, bytestring, http-client, http-types 43336 , text, vector ··· 44347 44348 "box" = callPackage 44349 ({ mkDerivation, attoparsec, base, comonad, concurrency 44350 - , contravariant, dejafu, doctest, exceptions, foldl, generic-lens 44351 - , lens, mmorph, mtl, numhask, optparse-generic, profunctors, random 44352 - , streaming, text, time, transformers, transformers-base 44353 - , websockets 44354 }: 44355 mkDerivation { 44356 pname = "box"; 44357 - version = "0.5.0"; 44358 - sha256 = "1r3jcnrdjyn894y574fjymrpfrpbwgrfmmvxgbkpa0m1ny8j3nln"; 44359 isLibrary = true; 44360 isExecutable = true; 44361 libraryHaskellDepends = [ 44362 - attoparsec base comonad concurrency contravariant exceptions foldl 44363 - lens mmorph numhask profunctors streaming text time transformers 44364 - transformers-base 44365 ]; 44366 executableHaskellDepends = [ 44367 base concurrency dejafu exceptions generic-lens lens mtl numhask 44368 - optparse-generic random streaming text transformers websockets 44369 ]; 44370 testHaskellDepends = [ base doctest numhask ]; 44371 description = "boxes"; ··· 44375 }) {}; 44376 44377 "box-csv" = callPackage 44378 - ({ mkDerivation, attoparsec, base, box, doctest, foldl 44379 - , generic-lens, lens, numhask, scientific, text, time 44380 }: 44381 mkDerivation { 44382 pname = "box-csv"; 44383 - version = "0.0.1"; 44384 - sha256 = "1vyqrc527d4xfv55qw6d0arpsrac3jfzsymh8fqi33s592fnz61d"; 44385 libraryHaskellDepends = [ 44386 - attoparsec base box foldl generic-lens lens numhask scientific text 44387 - time 44388 ]; 44389 testHaskellDepends = [ base doctest numhask ]; 44390 description = "See readme.md"; ··· 44399 }: 44400 mkDerivation { 44401 pname = "box-socket"; 44402 - version = "0.0.1"; 44403 - sha256 = "1r9ghvhizm468mw3bfwjwrdncggswjvl4hq7pwfxl5c8rp6va74q"; 44404 isLibrary = true; 44405 isExecutable = true; 44406 libraryHaskellDepends = [ ··· 45637 broken = true; 45638 }) {}; 45639 45640 "build" = callPackage 45641 ({ mkDerivation, algebraic-graphs, base, containers, extra 45642 , filepath, mtl, random, transformers ··· 45896 }: 45897 mkDerivation { 45898 pname = "burrito"; 45899 - version = "1.1.0.1"; 45900 - sha256 = "197lchafv56g8kcxzfgdgkcygi5f8bddxqzhbsvb8c0gwlv7g270"; 45901 libraryHaskellDepends = [ 45902 base bytestring containers parsec template-haskell text 45903 transformers ··· 46436 license = stdenv.lib.licenses.bsd3; 46437 }) {}; 46438 46439 - "bytestring_0_10_10_1" = callPackage 46440 - ({ mkDerivation, base, byteorder, deepseq, directory, dlist 46441 - , ghc-prim, HUnit, integer-gmp, mtl, QuickCheck, random 46442 - , test-framework, test-framework-hunit, test-framework-quickcheck2 46443 - }: 46444 mkDerivation { 46445 pname = "bytestring"; 46446 - version = "0.10.10.1"; 46447 - sha256 = "1imcy8yw5jag91qncvi1s9n0lldmf2pjkja6qq4mfqyh02f7arvq"; 46448 libraryHaskellDepends = [ base deepseq ghc-prim integer-gmp ]; 46449 - testHaskellDepends = [ 46450 - base byteorder deepseq directory dlist ghc-prim HUnit mtl 46451 - QuickCheck random test-framework test-framework-hunit 46452 - test-framework-quickcheck2 46453 - ]; 46454 description = "Fast, compact, strict and lazy byte strings with a list interface"; 46455 license = stdenv.lib.licenses.bsd3; 46456 hydraPlatforms = stdenv.lib.platforms.none; ··· 47535 license = stdenv.lib.licenses.bsd3; 47536 }) {}; 47537 47538 "cabal-dependency-licenses" = callPackage 47539 ({ mkDerivation, base, Cabal, containers, directory, filepath }: 47540 mkDerivation { ··· 47597 pname = "cabal-doctest"; 47598 version = "1.0.8"; 47599 sha256 = "03if74imlhhk7m56nci5f1wclniwqdmwl4hl177040j1gnlac9i0"; 47600 - revision = "1"; 47601 - editedCabalFile = "0z0r7h2y5six2zgfylcwr9g4j78qph35zqglk9lz4za1klvgdprl"; 47602 libraryHaskellDepends = [ base Cabal directory filepath ]; 47603 description = "A Setup.hs helper for doctests running"; 47604 license = stdenv.lib.licenses.bsd3; ··· 48787 license = stdenv.lib.licenses.publicDomain; 48788 hydraPlatforms = stdenv.lib.platforms.none; 48789 broken = true; 48790 }) {}; 48791 48792 "caf" = callPackage ··· 52125 52126 "chart-svg" = callPackage 52127 ({ mkDerivation, attoparsec, base, Color, containers, doctest 52128 - , foldl, generic-lens, lens, lucid, numhask, numhask-space 52129 - , pretty-simple, scientific, tagsoup, text, time, transformers 52130 , unordered-containers, web-rep 52131 }: 52132 mkDerivation { 52133 pname = "chart-svg"; 52134 - version = "0.1.1"; 52135 - sha256 = "0k3z2950dv5cj5mzxkipfkav44jckv60xj0b9zlli8xnj1gzrx58"; 52136 isLibrary = true; 52137 isExecutable = true; 52138 libraryHaskellDepends = [ 52139 - attoparsec base Color foldl generic-lens lens lucid numhask 52140 - numhask-space pretty-simple scientific tagsoup text time 52141 - transformers web-rep 52142 ]; 52143 executableHaskellDepends = [ 52144 base containers generic-lens lens lucid numhask numhask-space text ··· 52146 ]; 52147 testHaskellDepends = [ base doctest numhask ]; 52148 description = "Charts in SVG"; 52149 license = stdenv.lib.licenses.bsd3; 52150 hydraPlatforms = stdenv.lib.platforms.none; 52151 broken = true; ··· 53982 }: 53983 mkDerivation { 53984 pname = "clash-ghc"; 53985 - version = "1.2.3"; 53986 - sha256 = "1ifd8skqbgqcsclm5sxaikc25gwv5da5dv64kjy23r45sxlv11by"; 53987 - isLibrary = true; 53988 - isExecutable = true; 53989 - libraryHaskellDepends = [ 53990 - array base bifunctors bytestring Cabal clash-lib clash-prelude 53991 - concurrent-supply containers deepseq directory filepath ghc 53992 - ghc-boot ghc-prim ghc-typelits-extra ghc-typelits-knownnat 53993 - ghc-typelits-natnormalise ghci hashable haskeline integer-gmp lens 53994 - mtl primitive process reflection split template-haskell text time 53995 - transformers uniplate unix unordered-containers utf8-string vector 53996 - ]; 53997 - executableHaskellDepends = [ base ]; 53998 - description = "CAES Language for Synchronous Hardware"; 53999 - license = stdenv.lib.licenses.bsd2; 54000 - }) {}; 54001 - 54002 - "clash-ghc_1_2_4" = callPackage 54003 - ({ mkDerivation, array, base, bifunctors, bytestring, Cabal 54004 - , clash-lib, clash-prelude, concurrent-supply, containers, deepseq 54005 - , directory, filepath, ghc, ghc-boot, ghc-prim, ghc-typelits-extra 54006 - , ghc-typelits-knownnat, ghc-typelits-natnormalise, ghci, hashable 54007 - , haskeline, integer-gmp, lens, mtl, primitive, process, reflection 54008 - , split, template-haskell, text, time, transformers, uniplate, unix 54009 - , unordered-containers, utf8-string, vector 54010 - }: 54011 - mkDerivation { 54012 - pname = "clash-ghc"; 54013 version = "1.2.4"; 54014 sha256 = "1xzpz0bkdfvhkk496q4zr7f6ix23dgg6w5r14j5gxy4jb8f8bxln"; 54015 isLibrary = true; ··· 54025 executableHaskellDepends = [ base ]; 54026 description = "CAES Language for Synchronous Hardware"; 54027 license = stdenv.lib.licenses.bsd2; 54028 - hydraPlatforms = stdenv.lib.platforms.none; 54029 }) {}; 54030 54031 "clash-lib" = callPackage ··· 54038 , ordered-containers, parsers, prettyprinter, primitive, process 54039 , reducers, tasty, tasty-hunit, template-haskell, temporary 54040 , terminal-size, text, text-show, time, transformers, trifecta 54041 - , unordered-containers, vector, vector-binary-instances 54042 - }: 54043 - mkDerivation { 54044 - pname = "clash-lib"; 54045 - version = "1.2.3"; 54046 - sha256 = "0cxhw8wgzvpmg7kfyjf9ys38n98vynndr1fn1pzyc03s4mn2rszm"; 54047 - enableSeparateDataOutput = true; 54048 - libraryHaskellDepends = [ 54049 - aeson ansi-terminal attoparsec base binary bytestring clash-prelude 54050 - concurrent-supply containers data-binary-ieee754 data-default 54051 - deepseq directory dlist errors exceptions extra filepath ghc 54052 - ghc-boot-th hashable haskell-src-meta hint integer-gmp interpolate 54053 - lens mtl ordered-containers parsers prettyprinter primitive process 54054 - reducers template-haskell temporary terminal-size text text-show 54055 - time transformers trifecta unordered-containers vector 54056 - vector-binary-instances 54057 - ]; 54058 - testHaskellDepends = [ 54059 - base clash-prelude concurrent-supply containers data-default 54060 - deepseq ghc ghc-typelits-knownnat haskell-src-exts lens tasty 54061 - tasty-hunit template-haskell text transformers unordered-containers 54062 - ]; 54063 - description = "CAES Language for Synchronous Hardware - As a Library"; 54064 - license = stdenv.lib.licenses.bsd2; 54065 - }) {}; 54066 - 54067 - "clash-lib_1_2_4" = callPackage 54068 - ({ mkDerivation, aeson, ansi-terminal, attoparsec, base, binary 54069 - , bytestring, clash-prelude, concurrent-supply, containers 54070 - , data-binary-ieee754, data-default, deepseq, directory, dlist 54071 - , errors, exceptions, extra, filepath, ghc, ghc-boot-th 54072 - , ghc-typelits-knownnat, hashable, haskell-src-exts 54073 - , haskell-src-meta, hint, integer-gmp, interpolate, lens, mtl 54074 - , ordered-containers, parsers, prettyprinter, primitive, process 54075 - , reducers, tasty, tasty-hunit, template-haskell, temporary 54076 - , terminal-size, text, text-show, time, transformers, trifecta 54077 , unordered-containers, utf8-string, vector 54078 , vector-binary-instances 54079 }: ··· 54099 ]; 54100 description = "CAES Language for Synchronous Hardware - As a Library"; 54101 license = stdenv.lib.licenses.bsd2; 54102 - hydraPlatforms = stdenv.lib.platforms.none; 54103 }) {}; 54104 54105 "clash-multisignal" = callPackage ··· 54132 }: 54133 mkDerivation { 54134 pname = "clash-prelude"; 54135 - version = "1.2.3"; 54136 - sha256 = "0k3xariqr314c9s53jcf1w6azivcdrq0lnnsbj889453ys0sw9jg"; 54137 - setupHaskellDepends = [ base Cabal cabal-doctest ]; 54138 - libraryHaskellDepends = [ 54139 - array base bifunctors binary bytestring constraints containers 54140 - data-binary-ieee754 data-default-class deepseq ghc-prim 54141 - ghc-typelits-extra ghc-typelits-knownnat ghc-typelits-natnormalise 54142 - half hashable integer-gmp interpolate lens QuickCheck 54143 - recursion-schemes reflection singletons template-haskell text 54144 - text-show th-abstraction th-lift th-orphans time transformers 54145 - type-errors uniplate vector 54146 - ]; 54147 - testHaskellDepends = [ 54148 - base doctest ghc-typelits-knownnat hint quickcheck-classes-base 54149 - tasty tasty-hunit tasty-quickcheck template-haskell 54150 - ]; 54151 - benchmarkHaskellDepends = [ 54152 - base criterion deepseq template-haskell 54153 - ]; 54154 - description = "CAES Language for Synchronous Hardware - Prelude library"; 54155 - license = stdenv.lib.licenses.bsd2; 54156 - }) {}; 54157 - 54158 - "clash-prelude_1_2_4" = callPackage 54159 - ({ mkDerivation, array, base, bifunctors, binary, bytestring, Cabal 54160 - , cabal-doctest, constraints, containers, criterion 54161 - , data-binary-ieee754, data-default-class, deepseq, doctest 54162 - , ghc-prim, ghc-typelits-extra, ghc-typelits-knownnat 54163 - , ghc-typelits-natnormalise, half, hashable, hint, integer-gmp 54164 - , interpolate, lens, QuickCheck, quickcheck-classes-base 54165 - , recursion-schemes, reflection, singletons, tasty, tasty-hunit 54166 - , tasty-quickcheck, template-haskell, text, text-show 54167 - , th-abstraction, th-lift, th-orphans, time, transformers 54168 - , type-errors, uniplate, vector 54169 - }: 54170 - mkDerivation { 54171 - pname = "clash-prelude"; 54172 version = "1.2.4"; 54173 sha256 = "1yizprs6i4y2vyhjj6pvpd5xmdbxyqjwclk6saaws0g3xv008ffg"; 54174 setupHaskellDepends = [ base Cabal cabal-doctest ]; ··· 54190 ]; 54191 description = "CAES Language for Synchronous Hardware - Prelude library"; 54192 license = stdenv.lib.licenses.bsd2; 54193 - hydraPlatforms = stdenv.lib.platforms.none; 54194 }) {}; 54195 54196 "clash-prelude-quickcheck" = callPackage ··· 57617 }: 57618 mkDerivation { 57619 pname = "commonmark"; 57620 - version = "0.1.0.1"; 57621 - sha256 = "1p5z52n795ncrx94q9v1kyw3y1fqdi6vdz5iyg6n9pis7raqiy0i"; 57622 libraryHaskellDepends = [ 57623 base bytestring containers parsec text transformers 57624 ]; ··· 62276 }: 62277 mkDerivation { 62278 pname = "core-data"; 62279 - version = "0.2.1.5"; 62280 - sha256 = "17lvpbyrr9wm93qprk45n5gf3f6k47f9wf7ays0bfk0hx23chc1n"; 62281 libraryHaskellDepends = [ 62282 aeson base bytestring containers core-text hashable prettyprinter 62283 prettyprinter-ansi-terminal scientific text unordered-containers ··· 62287 license = stdenv.lib.licenses.bsd3; 62288 }) {}; 62289 62290 - "core-data_0_2_1_7" = callPackage 62291 ({ mkDerivation, aeson, base, bytestring, containers, core-text 62292 , hashable, prettyprinter, prettyprinter-ansi-terminal, scientific 62293 , text, unordered-containers, vector 62294 }: 62295 mkDerivation { 62296 pname = "core-data"; 62297 - version = "0.2.1.7"; 62298 - sha256 = "19fcbp6ccwggpv1lm1z03m3innk9agiwbz03whiivr3zg2gzcglh"; 62299 libraryHaskellDepends = [ 62300 aeson base bytestring containers core-text hashable prettyprinter 62301 prettyprinter-ansi-terminal scientific text unordered-containers ··· 62332 }: 62333 mkDerivation { 62334 pname = "core-program"; 62335 - version = "0.2.4.2"; 62336 - sha256 = "0zs62mn87fdrjwi1dp11hkr7nbb7v3ikxk1ph6cnjdk0di9hrr6a"; 62337 libraryHaskellDepends = [ 62338 async base bytestring chronologique core-data core-text directory 62339 exceptions filepath fsnotify hashable hourglass mtl prettyprinter ··· 62344 license = stdenv.lib.licenses.bsd3; 62345 }) {}; 62346 62347 - "core-program_0_2_4_4" = callPackage 62348 ({ mkDerivation, async, base, bytestring, chronologique, core-data 62349 , core-text, directory, exceptions, filepath, fsnotify, hashable 62350 , hourglass, mtl, prettyprinter, prettyprinter-ansi-terminal ··· 62353 }: 62354 mkDerivation { 62355 pname = "core-program"; 62356 - version = "0.2.4.4"; 62357 - sha256 = "1mkhwfw4h5q2dly1gm082k3s9jsq2wb0xksfa6xv8ghvxpvypvck"; 62358 libraryHaskellDepends = [ 62359 async base bytestring chronologique core-data core-text directory 62360 exceptions filepath fsnotify hashable hourglass mtl prettyprinter ··· 62373 }: 62374 mkDerivation { 62375 pname = "core-text"; 62376 - version = "0.2.3.3"; 62377 - sha256 = "0bnbl34fzy497a8ljgcydp490j3684yw8r32jijqyix7y9q2cl2d"; 62378 libraryHaskellDepends = [ 62379 base bytestring deepseq fingertree hashable prettyprinter 62380 prettyprinter-ansi-terminal template-haskell text text-short ··· 62383 license = stdenv.lib.licenses.bsd3; 62384 }) {}; 62385 62386 - "core-text_0_2_3_5" = callPackage 62387 ({ mkDerivation, base, bytestring, deepseq, fingertree, hashable 62388 , prettyprinter, prettyprinter-ansi-terminal, template-haskell 62389 , text, text-short 62390 }: 62391 mkDerivation { 62392 pname = "core-text"; 62393 - version = "0.2.3.5"; 62394 - sha256 = "085w21vh5rgl1pc7731ih47gh8gszjj0xfgkr3acy0r9rbh33m9c"; 62395 libraryHaskellDepends = [ 62396 base bytestring deepseq fingertree hashable prettyprinter 62397 prettyprinter-ansi-terminal template-haskell text text-short ··· 64992 }: 64993 mkDerivation { 64994 pname = "csound-expression"; 64995 - version = "5.3.2"; 64996 - sha256 = "1v3ssy2rfgwz9wwv8kmaifyrphyl5w66p9zmrg1bi0vbzwxnr57q"; 64997 libraryHaskellDepends = [ 64998 base Boolean colour containers csound-expression-dynamic 64999 csound-expression-opcodes csound-expression-typed data-default ··· 65005 65006 "csound-expression-dynamic" = callPackage 65007 ({ mkDerivation, array, base, Boolean, containers, data-default 65008 - , data-fix, data-fix-cse, hashable, transformers, wl-pprint 65009 }: 65010 mkDerivation { 65011 pname = "csound-expression-dynamic"; 65012 - version = "0.3.3"; 65013 - sha256 = "0k4pk96cx2f6rhz18mrdkkz7ic2fdzpqkxf1x596990az7pjg7g3"; 65014 libraryHaskellDepends = [ 65015 array base Boolean containers data-default data-fix data-fix-cse 65016 - hashable transformers wl-pprint 65017 ]; 65018 description = "dynamic core for csound-expression library"; 65019 license = stdenv.lib.licenses.bsd3; ··· 65042 }: 65043 mkDerivation { 65044 pname = "csound-expression-typed"; 65045 - version = "0.2.2.0"; 65046 - sha256 = "19cplqpyd7vhn28z0k8mxmscja05w9xb8q4bbvq5qd0h8liqxsqg"; 65047 enableSeparateDataOutput = true; 65048 libraryHaskellDepends = [ 65049 base Boolean colour containers csound-expression-dynamic ··· 65479 }: 65480 mkDerivation { 65481 pname = "cuckoo"; 65482 - version = "0.2.0.1"; 65483 - sha256 = "1q070hzrsm0f1lfxnsk4jmmb9pay98522k2lqncvzg09fm2a687j"; 65484 libraryHaskellDepends = [ base memory primitive random vector ]; 65485 testHaskellDepends = [ 65486 - base bytestring cryptonite doctest hashable memory stopwatch 65487 ]; 65488 benchmarkHaskellDepends = [ 65489 base bytestring criterion memory QuickCheck stopwatch ··· 66051 66052 "cut-the-crap" = callPackage 66053 ({ mkDerivation, base, exceptions, generic-lens, hspec, hspec-core 66054 - , lens, optparse-applicative, regex-tdfa, shelly, system-filepath 66055 - , temporary, text, unliftio-core 66056 }: 66057 mkDerivation { 66058 pname = "cut-the-crap"; 66059 - version = "1.3.0"; 66060 - sha256 = "1pvqz44panx6xp0zw2wip0hz66gsjz569d0n6gayr4sj8scskasp"; 66061 isLibrary = true; 66062 isExecutable = true; 66063 libraryHaskellDepends = [ 66064 base exceptions generic-lens lens optparse-applicative regex-tdfa 66065 - shelly system-filepath temporary text unliftio-core 66066 ]; 66067 executableHaskellDepends = [ 66068 base exceptions generic-lens lens optparse-applicative regex-tdfa 66069 - shelly system-filepath temporary text unliftio-core 66070 ]; 66071 testHaskellDepends = [ 66072 base exceptions generic-lens hspec hspec-core lens 66073 - optparse-applicative regex-tdfa shelly system-filepath temporary 66074 - text unliftio-core 66075 ]; 66076 description = "Cuts out uninteresting parts of videos by detecting silences"; 66077 license = stdenv.lib.licenses.mit; 66078 - }) {}; 66079 66080 "cutter" = callPackage 66081 ({ mkDerivation, base, bytestring, explicit-exception, spreadsheet ··· 67645 ({ mkDerivation, base, containers, data-fix, transformers }: 67646 mkDerivation { 67647 pname = "data-fix-cse"; 67648 - version = "0.0.2"; 67649 - sha256 = "1xn6qnir5dss23y8d71dsy78sdk7hczwprxir8v6la15c43rf9p2"; 67650 libraryHaskellDepends = [ base containers data-fix transformers ]; 67651 description = "Common subexpression elimination for the fixploint types"; 67652 license = stdenv.lib.licenses.bsd3; ··· 71900 license = stdenv.lib.licenses.bsd3; 71901 }) {}; 71902 71903 - "dhall_1_33_1" = callPackage 71904 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, atomic-write 71905 , base, bytestring, case-insensitive, cborg, cborg-json, containers 71906 , contravariant, cryptonite, data-fix, deepseq, Diff, directory 71907 , doctest, dotgen, either, exceptions, filepath, foldl, gauge 71908 , generic-random, half, hashable, haskeline, http-client 71909 , http-client-tls, http-types, lens-family-core, megaparsec, memory 71910 - , mockery, mtl, network-uri, optparse-applicative 71911 , parser-combinators, parsers, pretty-simple, prettyprinter 71912 , prettyprinter-ansi-terminal, profunctors, QuickCheck 71913 , quickcheck-instances, repline, scientific, semigroups, serialise ··· 71918 }: 71919 mkDerivation { 71920 pname = "dhall"; 71921 - version = "1.33.1"; 71922 - sha256 = "17l6qh5zhy0gnxw0x5v4c6n00dmgk279lfyi65n2hsbpaspw7h2k"; 71923 - revision = "2"; 71924 - editedCabalFile = "0hxk6ay7kqfi8kwni8hdca4q8qm30xdhfwdgxbl360s3ngps7jg0"; 71925 isLibrary = true; 71926 isExecutable = true; 71927 libraryHaskellDepends = [ 71928 aeson aeson-pretty ansi-terminal atomic-write base bytestring 71929 case-insensitive cborg cborg-json containers contravariant 71930 cryptonite data-fix deepseq Diff directory dotgen either exceptions 71931 filepath half hashable haskeline http-client http-client-tls 71932 - http-types lens-family-core megaparsec memory mtl network-uri 71933 - optparse-applicative parser-combinators parsers pretty-simple 71934 - prettyprinter prettyprinter-ansi-terminal profunctors repline 71935 - scientific serialise template-haskell text text-manipulate 71936 th-lift-instances transformers transformers-compat 71937 unordered-containers uri-encode vector 71938 ]; ··· 71978 license = stdenv.lib.licenses.bsd3; 71979 }) {}; 71980 71981 - "dhall-bash_1_0_31" = callPackage 71982 ({ mkDerivation, base, bytestring, containers, dhall 71983 , neat-interpolation, optparse-generic, shell-escape, text 71984 }: 71985 mkDerivation { 71986 pname = "dhall-bash"; 71987 - version = "1.0.31"; 71988 - sha256 = "10xp159bzbwnzapixrndg7sb0v5bg7li1nkr48akh6h4icpvnfsp"; 71989 isLibrary = true; 71990 isExecutable = true; 71991 libraryHaskellDepends = [ ··· 72021 72022 "dhall-docs" = callPackage 72023 ({ mkDerivation, base, bytestring, containers, dhall, directory 72024 - , doctest, file-embed, filepath, HaXml, lucid, megaparsec, mmark 72025 - , mtl, optparse-applicative, path, path-io, pretty, prettyprinter 72026 - , tar, tasty, tasty-silver, text 72027 }: 72028 mkDerivation { 72029 pname = "dhall-docs"; 72030 - version = "0.0.1"; 72031 - sha256 = "1cb3xlb27bw8csvg7a73whr4ld608g1w9i5nc7z799ry3pp64m0n"; 72032 isLibrary = true; 72033 isExecutable = true; 72034 enableSeparateDataOutput = true; 72035 libraryHaskellDepends = [ 72036 base bytestring containers dhall directory file-embed filepath 72037 - lucid megaparsec mmark mtl optparse-applicative path path-io 72038 - prettyprinter tar text 72039 ]; 72040 executableHaskellDepends = [ base dhall ]; 72041 testHaskellDepends = [ 72042 - base containers directory doctest filepath HaXml path path-io 72043 - pretty tasty tasty-silver text 72044 ]; 72045 description = "Generate HTML docs from a dhall package"; 72046 license = stdenv.lib.licenses.bsd3; ··· 72111 license = stdenv.lib.licenses.bsd3; 72112 }) {}; 72113 72114 - "dhall-json_1_7_0" = callPackage 72115 ({ mkDerivation, aeson, aeson-pretty, aeson-yaml, ansi-terminal 72116 , base, bytestring, containers, dhall, exceptions, filepath 72117 - , optparse-applicative, prettyprinter, prettyprinter-ansi-terminal 72118 - , scientific, tasty, tasty-hunit, tasty-silver, text 72119 - , unordered-containers, vector 72120 }: 72121 mkDerivation { 72122 pname = "dhall-json"; 72123 - version = "1.7.0"; 72124 - sha256 = "1nk2dibdnzm5wmvlsf82n8hc0zab1chqw339pp9q5n2gavj8kvsi"; 72125 - revision = "1"; 72126 - editedCabalFile = "1xbr4cphc98frf458vsggx5lh3my7ahlz5fl19hnyy876iwb04hm"; 72127 isLibrary = true; 72128 isExecutable = true; 72129 libraryHaskellDepends = [ 72130 aeson aeson-pretty aeson-yaml base bytestring containers dhall 72131 - exceptions filepath optparse-applicative prettyprinter scientific 72132 - text unordered-containers vector 72133 ]; 72134 executableHaskellDepends = [ 72135 aeson aeson-pretty ansi-terminal base bytestring dhall exceptions ··· 72191 license = stdenv.lib.licenses.mit; 72192 }) {}; 72193 72194 "dhall-nix" = callPackage 72195 ({ mkDerivation, base, containers, data-fix, dhall, hnix 72196 , lens-family-core, neat-interpolation, optparse-generic, text 72197 }: 72198 mkDerivation { 72199 pname = "dhall-nix"; 72200 - version = "1.1.15"; 72201 - sha256 = "0ynbl5nrsql9y0nh7kiyvf9h0z61d2d5v1iga8vidaqvdkih383h"; 72202 - revision = "1"; 72203 - editedCabalFile = "0fkc59w12pdd7wzf11x8glkvvq1jj482dmzzq1d2h1xd8z616zkz"; 72204 isLibrary = true; 72205 isExecutable = true; 72206 libraryHaskellDepends = [ ··· 72214 license = stdenv.lib.licenses.bsd3; 72215 hydraPlatforms = stdenv.lib.platforms.none; 72216 broken = true; 72217 }) {}; 72218 72219 "dhall-text" = callPackage ··· 72297 broken = true; 72298 }) {}; 72299 72300 - "dhall-yaml_1_2_0" = callPackage 72301 ({ mkDerivation, aeson, ansi-terminal, base, bytestring, dhall 72302 , dhall-json, exceptions, HsYAML, HsYAML-aeson 72303 , optparse-applicative, prettyprinter, prettyprinter-ansi-terminal ··· 72305 }: 72306 mkDerivation { 72307 pname = "dhall-yaml"; 72308 - version = "1.2.0"; 72309 - sha256 = "0jvz8xjj2f0g8pxaspgvg7rzhfyccz1rgvp4l3c9zjri3wirxpwp"; 72310 - revision = "1"; 72311 - editedCabalFile = "0qkwnckzr04442iz6x0cba7m8nclw18pb4icnpxrxnn9fxc7blx5"; 72312 isLibrary = true; 72313 isExecutable = true; 72314 libraryHaskellDepends = [ ··· 74362 "discord-haskell" = callPackage 74363 ({ mkDerivation, aeson, async, base, base64-bytestring, bytestring 74364 , containers, data-default, emoji, http-client, iso8601-time 74365 - , JuicyPixels, MonadRandom, req, safe-exceptions, text, time 74366 - , unordered-containers, vector, websockets, wuss 74367 }: 74368 mkDerivation { 74369 pname = "discord-haskell"; 74370 - version = "1.6.1"; 74371 - sha256 = "0id3y2zg1hg0mj6ymjm4khmsdnjdl3i7sm9b7jvw5vy44956cf5y"; 74372 isLibrary = true; 74373 isExecutable = true; 74374 libraryHaskellDepends = [ 74375 aeson async base base64-bytestring bytestring containers 74376 data-default emoji http-client iso8601-time JuicyPixels MonadRandom 74377 - req safe-exceptions text time unordered-containers vector 74378 - websockets wuss 74379 ]; 74380 - executableHaskellDepends = [ base text ]; 74381 description = "Write bots for Discord in Haskell"; 74382 license = stdenv.lib.licenses.mit; 74383 hydraPlatforms = stdenv.lib.platforms.none; ··· 75930 ({ mkDerivation, base, mmsyn3, mmsyn6ukr, mmsyn7s, vector }: 75931 mkDerivation { 75932 pname = "dobutokO-poetry"; 75933 - version = "0.7.0.0"; 75934 - sha256 = "0c2838dn34hwh9z0j1qhz276zf7zypr0gq25ym4m6wzpni14scj7"; 75935 isLibrary = true; 75936 isExecutable = true; 75937 libraryHaskellDepends = [ base mmsyn3 mmsyn6ukr mmsyn7s vector ]; ··· 79733 license = stdenv.lib.licenses.bsd3; 79734 }) {}; 79735 79736 "egison-pattern-src-haskell-mode" = callPackage 79737 ({ mkDerivation, base, egison-pattern-src, haskell-src-exts, mtl 79738 , tasty, tasty-discover, tasty-hunit, text 79739 }: 79740 mkDerivation { 79741 pname = "egison-pattern-src-haskell-mode"; 79742 - version = "0.2.1.0"; 79743 - sha256 = "0lgvvw23ii0g62b8q67h4mfm2bd07akl2m8dp8855hm16q1b8w8n"; 79744 libraryHaskellDepends = [ 79745 base egison-pattern-src haskell-src-exts mtl text 79746 ]; ··· 79774 testToolDepends = [ tasty-discover ]; 79775 description = "Parser and pretty printer for Egison pattern expressions to use with TH"; 79776 license = stdenv.lib.licenses.bsd3; 79777 }) {}; 79778 79779 "egison-quote" = callPackage ··· 79951 79952 "either-result" = callPackage 79953 ({ mkDerivation, base, doctest, doctest-discover, hspec 79954 - , hspec-discover 79955 }: 79956 mkDerivation { 79957 pname = "either-result"; 79958 - version = "0.1.2.0"; 79959 - sha256 = "1ch6m0bimbkq73xchhfczssl6pzszkrhcgbcccbzi752r4vps31s"; 79960 - libraryHaskellDepends = [ base ]; 79961 - testHaskellDepends = [ base doctest hspec ]; 79962 testToolDepends = [ doctest-discover hspec-discover ]; 79963 - description = "‘Result a’ is a wrapper of ‘Either String a’"; 79964 license = stdenv.lib.licenses.asl20; 79965 }) {}; 79966 ··· 80963 }: 80964 mkDerivation { 80965 pname = "elynx"; 80966 - version = "0.3.0"; 80967 - sha256 = "15qnsbbfmyyxmhzs5ly84w4yficcmnl3v49wjqhr86836l770rbi"; 80968 isLibrary = false; 80969 isExecutable = true; 80970 executableHaskellDepends = [ ··· 80977 }) {}; 80978 80979 "elynx-markov" = callPackage 80980 - ({ mkDerivation, base, bytestring, containers, elynx-seq 80981 - , elynx-tools, elynx-tree, hmatrix, hspec, hspec-megaparsec 80982 - , integration, math-functions, megaparsec, mwc-random, parallel 80983 - , primitive, statistics, vector 80984 }: 80985 mkDerivation { 80986 pname = "elynx-markov"; 80987 - version = "0.3.0"; 80988 - sha256 = "0w889wjyj4g8yr4ysvh2v1jnsf6bpdri8pj9klslnrpmk4b7x14n"; 80989 libraryHaskellDepends = [ 80990 - base bytestring containers elynx-seq elynx-tools elynx-tree hmatrix 80991 - integration math-functions megaparsec mwc-random parallel primitive 80992 - statistics vector 80993 ]; 80994 testHaskellDepends = [ 80995 - base containers elynx-tools elynx-tree hmatrix hspec 80996 - hspec-megaparsec mwc-random vector 80997 ]; 80998 description = "Simulate molecular sequences along trees"; 80999 license = stdenv.lib.licenses.gpl3Plus; ··· 81002 }) {}; 81003 81004 "elynx-nexus" = callPackage 81005 - ({ mkDerivation, base, bytestring, hspec, megaparsec }: 81006 mkDerivation { 81007 pname = "elynx-nexus"; 81008 - version = "0.3.0"; 81009 - sha256 = "00aikdx89b0x9zw78srp5qmx564myn9dhwy1k6nq9b411cxsfz0v"; 81010 - libraryHaskellDepends = [ base bytestring megaparsec ]; 81011 testHaskellDepends = [ base hspec ]; 81012 description = "Import and export Nexus files"; 81013 license = stdenv.lib.licenses.gpl3Plus; ··· 81016 }) {}; 81017 81018 "elynx-seq" = callPackage 81019 - ({ mkDerivation, aeson, base, bytestring, containers, elynx-tools 81020 - , hspec, hspec-megaparsec, matrices, megaparsec, mwc-random 81021 - , parallel, primitive, vector, vector-th-unbox, word8 81022 }: 81023 mkDerivation { 81024 pname = "elynx-seq"; 81025 - version = "0.3.0"; 81026 - sha256 = "0y7raavskrxgqmfsszm3f177hsjwnf69302vq3k7anj4fzqydvcn"; 81027 libraryHaskellDepends = [ 81028 - aeson base bytestring containers elynx-tools matrices megaparsec 81029 - mwc-random parallel primitive vector vector-th-unbox word8 81030 ]; 81031 testHaskellDepends = [ 81032 - base bytestring elynx-tools hspec hspec-megaparsec matrices vector 81033 ]; 81034 description = "Handle molecular sequences"; 81035 license = stdenv.lib.licenses.gpl3Plus; ··· 81038 }) {}; 81039 81040 "elynx-tools" = callPackage 81041 - ({ mkDerivation, aeson, async, base, base16-bytestring, bytestring 81042 - , containers, cryptohash-sha256, deepseq, directory, fast-logger 81043 - , hmatrix, matrices, megaparsec, monad-control, monad-logger 81044 - , mwc-random, optparse-applicative, parallel, primitive 81045 - , template-haskell, text, time, transformers, transformers-base 81046 - , vector, zlib 81047 }: 81048 mkDerivation { 81049 pname = "elynx-tools"; 81050 - version = "0.3.0"; 81051 - sha256 = "1ba9vcmzf7kwm8h493m2n9naq1pzhsddd8mv3mp8vb30jgg75vhj"; 81052 libraryHaskellDepends = [ 81053 - aeson async base base16-bytestring bytestring containers 81054 - cryptohash-sha256 deepseq directory fast-logger hmatrix matrices 81055 - megaparsec monad-control monad-logger mwc-random 81056 - optparse-applicative parallel primitive template-haskell text time 81057 - transformers transformers-base vector zlib 81058 ]; 81059 description = "Tools for ELynx"; 81060 license = stdenv.lib.licenses.gpl3Plus; ··· 81063 }) {}; 81064 81065 "elynx-tree" = callPackage 81066 - ({ mkDerivation, aeson, base, bytestring, comonad, containers 81067 - , criterion, deepseq, elynx-nexus, elynx-tools, hspec 81068 - , hspec-megaparsec, math-functions, megaparsec, mwc-random 81069 - , primitive, QuickCheck, statistics, vector 81070 }: 81071 mkDerivation { 81072 pname = "elynx-tree"; 81073 - version = "0.3.0"; 81074 - sha256 = "10z7fm5ir91vh3j39kf2ylx02i4fvnwxzk7x9bfpp6f26cr0mfcb"; 81075 libraryHaskellDepends = [ 81076 - aeson base bytestring comonad containers deepseq elynx-nexus 81077 - elynx-tools math-functions megaparsec mwc-random primitive 81078 - statistics vector 81079 ]; 81080 testHaskellDepends = [ 81081 - base bytestring containers elynx-tools hspec hspec-megaparsec 81082 - megaparsec QuickCheck 81083 ]; 81084 benchmarkHaskellDepends = [ 81085 - base bytestring containers criterion elynx-tools 81086 ]; 81087 description = "Handle phylogenetic trees"; 81088 license = stdenv.lib.licenses.gpl3Plus; ··· 87868 license = stdenv.lib.licenses.bsd3; 87869 }) {}; 87870 87871 "fgl-arbitrary" = callPackage 87872 ({ mkDerivation, base, containers, fgl, hspec, QuickCheck }: 87873 mkDerivation { 87874 pname = "fgl-arbitrary"; 87875 - version = "0.2.0.5"; 87876 - sha256 = "1wp6v4wb2g6alq4r26da1zmc3g2g2xzca0znf4ldw4552azasaxx"; 87877 libraryHaskellDepends = [ base fgl QuickCheck ]; 87878 testHaskellDepends = [ base containers fgl hspec QuickCheck ]; 87879 description = "QuickCheck support for fgl"; ··· 88537 }) {}; 88538 88539 "filtrable" = callPackage 88540 - ({ mkDerivation, base }: 88541 mkDerivation { 88542 pname = "filtrable"; 88543 - version = "0.1.3.0"; 88544 - sha256 = "1viazb01xnw7siwrsynaxqcjrgc96gqfgmj4vxl5r3lbnb34wdl0"; 88545 - revision = "1"; 88546 - editedCabalFile = "15ghhsvd9r18ifrqh3x76p6hln4as185dnj5zzanbbfv684j9qsc"; 88547 - libraryHaskellDepends = [ base ]; 88548 description = "Class of filtrable containers"; 88549 license = stdenv.lib.licenses.bsd3; 88550 }) {}; 88551 88552 - "filtrable_0_1_4_0" = callPackage 88553 - ({ mkDerivation, base, transformers }: 88554 mkDerivation { 88555 pname = "filtrable"; 88556 - version = "0.1.4.0"; 88557 - sha256 = "11jas9w611pslc3hanybsdwrh4292zvgigng8y4cv7gm0j908xng"; 88558 libraryHaskellDepends = [ base transformers ]; 88559 description = "Class of filtrable containers"; 88560 license = stdenv.lib.licenses.bsd3; 88561 hydraPlatforms = stdenv.lib.platforms.none; ··· 90103 }: 90104 mkDerivation { 90105 pname = "floskell"; 90106 - version = "0.10.3"; 90107 - sha256 = "07nr7grav7z378k3v14f21kji0hrgch0q1dwc00iw93zamanda2x"; 90108 isLibrary = true; 90109 isExecutable = true; 90110 enableSeparateDataOutput = true; ··· 90860 license = stdenv.lib.licenses.bsd3; 90861 }) {}; 90862 90863 - "foldl_1_4_7" = callPackage 90864 ({ mkDerivation, base, bytestring, comonad, containers 90865 , contravariant, criterion, doctest, hashable, mwc-random 90866 - , primitive, profunctors, semigroupoids, semigroups, text 90867 - , transformers, unordered-containers, vector, vector-builder 90868 }: 90869 mkDerivation { 90870 pname = "foldl"; 90871 - version = "1.4.7"; 90872 - sha256 = "0pvdfzap9bv9v2n72gxy1xd1idyyz87h836bh09m84i8baasblxb"; 90873 libraryHaskellDepends = [ 90874 base bytestring comonad containers contravariant hashable 90875 - mwc-random primitive profunctors semigroupoids semigroups text 90876 - transformers unordered-containers vector vector-builder 90877 ]; 90878 testHaskellDepends = [ base doctest ]; 90879 benchmarkHaskellDepends = [ base criterion ]; ··· 91833 pname = "fourmolu"; 91834 version = "0.1.0.0"; 91835 sha256 = "1kc7hhaqn7sghbcfj9xg8r1pvrmhawy9y2rhizfxzm7z034bgjyk"; 91836 isLibrary = true; 91837 isExecutable = true; 91838 enableSeparateDataOutput = true; ··· 93912 }) {}; 93913 93914 "functor-combinators" = callPackage 93915 - ({ mkDerivation, base, bifunctors, comonad, constraints, containers 93916 - , dependent-sum, deriving-compat, free, hedgehog, kan-extensions 93917 - , mmorph, mtl, natural-transformation, nonempty-containers, pointed 93918 - , profunctors, semigroupoids, tagged, tasty, tasty-hedgehog, these 93919 , transformers, trivial-constraint, vinyl 93920 }: 93921 mkDerivation { 93922 pname = "functor-combinators"; 93923 - version = "0.2.0.0"; 93924 - sha256 = "0z8r9z08cayyv2ag748aa8550sd2mnj2zagdkf5i5yn3lvhd0k6j"; 93925 libraryHaskellDepends = [ 93926 - base bifunctors comonad constraints containers deriving-compat free 93927 - kan-extensions mmorph mtl natural-transformation 93928 - nonempty-containers pointed profunctors semigroupoids tagged these 93929 - transformers trivial-constraint vinyl 93930 ]; 93931 testHaskellDepends = [ 93932 base bifunctors dependent-sum free hedgehog nonempty-containers 93933 - semigroupoids tasty tasty-hedgehog transformers 93934 ]; 93935 description = "Tools for functor combinator-based program design"; 93936 license = stdenv.lib.licenses.bsd3; ··· 94357 }: 94358 mkDerivation { 94359 pname = "fused-effects-th"; 94360 - version = "0.1.0.0"; 94361 - sha256 = "05apm97hlk1k0h6px5sf25gwb6wnrg5za3z8r64rcxmzcfhd10c9"; 94362 revision = "1"; 94363 - editedCabalFile = "00zyzq1xz78vbnygayvc78i023xqib0k2p0qvxzx4d2908l36g6f"; 94364 libraryHaskellDepends = [ base fused-effects template-haskell ]; 94365 testHaskellDepends = [ 94366 base fused-effects tasty tasty-hunit template-haskell ··· 95962 benchmarkHaskellDepends = [ base criterion deepseq ]; 95963 description = "Deriving instances with GHC.Generics and related utilities"; 95964 license = stdenv.lib.licenses.mit; 95965 }) {}; 95966 95967 "generic-data-surgery" = callPackage ··· 101704 license = stdenv.lib.licenses.bsd3; 101705 }) {}; 101706 101707 "github-tools" = callPackage 101708 ({ mkDerivation, base, bytestring, containers, exceptions, github 101709 , groom, html, http-client, http-client-tls, monad-parallel ··· 107480 license = stdenv.lib.licenses.bsd3; 107481 }) {inherit (pkgs) graphviz;}; 107482 107483 "graql" = callPackage 107484 ({ mkDerivation, aeson, base, containers, hspec, markdown-unlit 107485 , process, regex-posix, scientific, text ··· 111991 }) {}; 111992 111993 "hal" = callPackage 111994 - ({ mkDerivation, aeson, base, bytestring, containers, envy 111995 - , exceptions, http-conduit, http-types, mtl, text, time 111996 }: 111997 mkDerivation { 111998 pname = "hal"; 111999 - version = "0.4.3"; 112000 - sha256 = "0iqyayya1j3l1jrb2i68shn4zgrqf63pv3l9v29s0chn3gyyij1r"; 112001 libraryHaskellDepends = [ 112002 - aeson base bytestring containers envy exceptions http-conduit 112003 - http-types mtl text time 112004 ]; 112005 description = "A runtime environment for Haskell applications running on AWS Lambda"; 112006 license = stdenv.lib.licenses.bsd3; ··· 113559 }: 113560 mkDerivation { 113561 pname = "happy-meta"; 113562 - version = "0.2.0.10"; 113563 - sha256 = "1w6shcydpca5g9dgnki0w2xqr9mf17xa18s8hxxm3z3dd0sp1db9"; 113564 libraryHaskellDepends = [ 113565 array base containers fail haskell-src-meta mtl template-haskell 113566 ]; ··· 113740 }: 113741 mkDerivation { 113742 pname = "harg"; 113743 - version = "0.4.2.0"; 113744 - sha256 = "14a5d73klg7da1pg30as9xnky95jxh1kl0qrzihvgd5m2kybsrb0"; 113745 libraryHaskellDepends = [ 113746 aeson barbies base bytestring directory higgledy 113747 optparse-applicative split text yaml ··· 114010 114011 "hascard" = callPackage 114012 ({ mkDerivation, base, brick, containers, directory, filepath 114013 - , microlens, microlens-platform, mwc-random, optparse-applicative 114014 - , ordered-containers, parsec, process, random-fu, strict, text 114015 - , vector, vty, word-wrap 114016 }: 114017 mkDerivation { 114018 pname = "hascard"; 114019 - version = "0.2.0.0"; 114020 - sha256 = "1khdlkf2n6x3rck9sc7jir08mx7n7dv9p25j80g27q6a1nm0pq91"; 114021 isLibrary = true; 114022 isExecutable = true; 114023 libraryHaskellDepends = [ 114024 - base brick containers directory filepath microlens 114025 microlens-platform mwc-random optparse-applicative 114026 - ordered-containers parsec process random-fu strict text vector vty 114027 word-wrap 114028 ]; 114029 executableHaskellDepends = [ 114030 - base brick containers directory filepath microlens 114031 microlens-platform mwc-random optparse-applicative 114032 - ordered-containers parsec process random-fu strict text vector vty 114033 word-wrap 114034 ]; 114035 testHaskellDepends = [ 114036 - base brick containers directory filepath microlens 114037 microlens-platform mwc-random optparse-applicative 114038 - ordered-containers parsec process random-fu strict text vector vty 114039 word-wrap 114040 ]; 114041 description = "A TUI for reviewing notes using 'flashcards' written with markdown-like syntax"; ··· 117751 }: 117752 mkDerivation { 117753 pname = "haskoin-store"; 117754 - version = "0.37.3"; 117755 - sha256 = "1gkgznvx0y30568l2rs0px2pfyzn9sbzqv9vnd5ps5ib33yb853s"; 117756 isLibrary = true; 117757 isExecutable = true; 117758 libraryHaskellDepends = [ ··· 117793 }: 117794 mkDerivation { 117795 pname = "haskoin-store-data"; 117796 - version = "0.37.3"; 117797 - sha256 = "1wz0nwm4izsxaxij9s4vfjdlcqp1jca16g2phdn3k2dp35kyfymi"; 117798 libraryHaskellDepends = [ 117799 aeson base bytestring cereal containers data-default deepseq 117800 hashable haskoin-core http-client http-types lens mtl network ··· 121227 }: 121228 mkDerivation { 121229 pname = "hedgehog-classes"; 121230 - version = "0.2.5"; 121231 - sha256 = "0rr9d3xajdlfmx92klq1zyi55wrc5ivf2p1jb0a6vxpyk75gy8wg"; 121232 libraryHaskellDepends = [ 121233 aeson base binary comonad containers hedgehog pretty-show primitive 121234 semirings silently transformers vector wl-pprint-annotated ··· 123010 ({ mkDerivation, base }: 123011 mkDerivation { 123012 pname = "hextra"; 123013 - version = "0.3.0.3"; 123014 - sha256 = "1vqx8wqac0xy1h2g36ylhyikqw9rd1m2704z27vc97g58vmhxbli"; 123015 libraryHaskellDepends = [ base ]; 123016 description = "Generic and niche utility functions and more for Haskell"; 123017 license = stdenv.lib.licenses.mpl20; ··· 123703 }: 123704 mkDerivation { 123705 pname = "hgrev"; 123706 - version = "0.2.5"; 123707 - sha256 = "06ikaxxa70x71w4rq7a9rcp4mj12d8wlwzfdxnrapg9x9yr3py85"; 123708 libraryHaskellDepends = [ 123709 aeson base bytestring directory filepath process template-haskell 123710 ]; ··· 125609 }) {}; 125610 125611 "hkgr" = callPackage 125612 - ({ mkDerivation, base, directory, extra, filepath, simple-cabal 125613 - , simple-cmd, simple-cmd-args, xdg-basedir 125614 - }: 125615 - mkDerivation { 125616 - pname = "hkgr"; 125617 - version = "0.2.6"; 125618 - sha256 = "0wjq88cg84jiy3mqwhsamd6q57y76fqpyq27yq5jb30w3wrp4wdv"; 125619 - isLibrary = false; 125620 - isExecutable = true; 125621 - enableSeparateDataOutput = true; 125622 - executableHaskellDepends = [ 125623 - base directory extra filepath simple-cabal simple-cmd 125624 - simple-cmd-args xdg-basedir 125625 - ]; 125626 - description = "Simple Hackage release workflow for package maintainers"; 125627 - license = stdenv.lib.licenses.gpl3; 125628 - }) {}; 125629 - 125630 - "hkgr_0_2_6_1" = callPackage 125631 ({ mkDerivation, base, directory, extra, filepath, simple-cabal 125632 , simple-cmd, simple-cmd-args, xdg-basedir 125633 }: ··· 125644 ]; 125645 description = "Simple Hackage release workflow for package maintainers"; 125646 license = stdenv.lib.licenses.gpl3; 125647 - hydraPlatforms = stdenv.lib.platforms.none; 125648 }) {}; 125649 125650 "hkt" = callPackage ··· 130443 license = stdenv.lib.licenses.bsd3; 130444 }) {}; 130445 130446 directory filepath hashable lazy-hash microlens microlens-th 130447 ({ mkDerivation, base, mtl }: 130448 mkDerivation { ··· 130508 130509 directory filepath hashable lazy-hash microlens microlens-th 130510 directory filepath hashable lazy-hash microlens microlens-th 130511 - , smallcheck, tasty, tasty-smallcheck, util 130512 - }: 130513 mkDerivation { 130514 directory filepath hashable lazy-hash microlens microlens-th 130515 - version = "0.1.1.0"; 130516 - directory filepath hashable lazy-hash microlens microlens-th 130517 - libraryHaskellDepends = [ 130518 - directory filepath hashable lazy-hash microlens microlens-th 130519 - ]; 130520 - testHaskellDepends = [ base smallcheck tasty tasty-smallcheck ]; 130521 - benchmarkHaskellDepends = [ base criterion ]; 130522 - directory filepath hashable lazy-hash microlens microlens-th 130523 license = stdenv.lib.licenses.bsd3; 130524 }) {}; 130525 ··· 133482 license = stdenv.lib.licenses.mit; 133483 }) {}; 133484 133485 directory filepath hashable lazy-hash microlens microlens-th 133486 ({ mkDerivation, aeson, aeson-pretty, base, bytestring, directory 133487 directory filepath hashable lazy-hash microlens microlens-th ··· 134471 }: 134472 mkDerivation { 134473 directory filepath hashable lazy-hash microlens microlens-th 134474 - version = "0.3"; 134475 - directory filepath hashable lazy-hash microlens microlens-th 134476 - revision = "1"; 134477 - directory filepath hashable lazy-hash microlens microlens-th 134478 libraryHaskellDepends = [ 134479 directory filepath hashable lazy-hash microlens microlens-th 134480 ]; ··· 136510 }: 136511 mkDerivation { 136512 pname = "http-streams"; 136513 - version = "0.8.7.1"; 136514 - sha256 = "0kl668ggxz5wzvziagw9inmmwb0l5x2r00nf4p7wm0pnl8m19l2b"; 136515 - libraryHaskellDepends = [ 136516 - aeson attoparsec base base64-bytestring blaze-builder bytestring 136517 - case-insensitive directory HsOpenSSL http-common io-streams mtl 136518 - network network-uri openssl-streams text transformers 136519 - unordered-containers 136520 - ]; 136521 - testHaskellDepends = [ 136522 - aeson aeson-pretty attoparsec base base64-bytestring blaze-builder 136523 - bytestring case-insensitive directory ghc-prim HsOpenSSL hspec 136524 - hspec-expectations http-common HUnit io-streams lifted-base mtl 136525 - network network-uri openssl-streams snap-core snap-server 136526 - system-fileio system-filepath text transformers 136527 - unordered-containers 136528 - ]; 136529 - description = "An HTTP client using io-streams"; 136530 - license = stdenv.lib.licenses.bsd3; 136531 - }) {}; 136532 - 136533 - "http-streams_0_8_7_2" = callPackage 136534 - ({ mkDerivation, aeson, aeson-pretty, attoparsec, base 136535 - , base64-bytestring, blaze-builder, bytestring, case-insensitive 136536 - , directory, ghc-prim, HsOpenSSL, hspec, hspec-expectations 136537 - , http-common, HUnit, io-streams, lifted-base, mtl, network 136538 - , network-uri, openssl-streams, snap-core, snap-server 136539 - , system-fileio, system-filepath, text, transformers 136540 - , unordered-containers 136541 - }: 136542 - mkDerivation { 136543 - pname = "http-streams"; 136544 version = "0.8.7.2"; 136545 sha256 = "1q0lp8hkzfc0srci9y794q5cqkih50r3iw2c32wbx8h502jcvv1q"; 136546 libraryHaskellDepends = [ ··· 136559 ]; 136560 description = "An HTTP client using io-streams"; 136561 license = stdenv.lib.licenses.bsd3; 136562 - hydraPlatforms = stdenv.lib.platforms.none; 136563 }) {}; 136564 136565 "http-test" = callPackage ··· 139652 pname = "hyper"; 139653 version = "0.1.0.3"; 139654 sha256 = "0bc2mvxaggdyikdx51qc1li8idmnlw3ha2n3qli6jf1zz8mlqx0s"; 139655 libraryHaskellDepends = [ base blaze-html deepseq text ]; 139656 description = "Display class for the HyperHaskell graphical Haskell interpreter"; 139657 license = stdenv.lib.licenses.bsd3; ··· 140252 ({ mkDerivation, base, ghc-prim, transformers }: 140253 mkDerivation { 140254 pname = "icfpc2020-galaxy"; 140255 - version = "0.1.0.1"; 140256 - sha256 = "1nd925iwyy73imw2h0xa3n9vi8rr487v541l9mlb834l20v6mpzl"; 140257 libraryHaskellDepends = [ base ghc-prim transformers ]; 140258 description = "A strange message received at the Pegovka observatory"; 140259 license = stdenv.lib.licenses.mit; ··· 148894 broken = true; 148895 }) {}; 148896 148897 "jspath" = callPackage 148898 ({ mkDerivation, base, bytestring, bytestring-trie, JSONb 148899 , utf8-string ··· 151256 }: 151257 mkDerivation { 151258 pname = "knit"; 151259 - version = "0.1.0.0"; 151260 - sha256 = "0ypa7bj89zbkgyryms6nzwhqpp15hs52ynjvisdsng1xpgmf65dy"; 151261 libraryHaskellDepends = [ 151262 base bytestring containers deepseq hashtables vector 151263 ]; ··· 153193 }: 153194 mkDerivation { 153195 pname = "language-dickinson"; 153196 - version = "1.1.0.1"; 153197 - sha256 = "0j163whdxpzi2aklb5x7f42y61whm941x0rjls02crgmpdaj0z75"; 153198 isLibrary = true; 153199 isExecutable = true; 153200 enableSeparateDataOutput = true; ··· 162229 license = stdenv.lib.licenses.bsd3; 162230 }) {}; 162231 162232 - "lsp-test_0_11_0_3" = callPackage 162233 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, async, base 162234 , bytestring, conduit, conduit-parse, containers, data-default 162235 , Diff, directory, filepath, Glob, haskell-lsp, hspec, lens, mtl ··· 162238 }: 162239 mkDerivation { 162240 pname = "lsp-test"; 162241 - version = "0.11.0.3"; 162242 - sha256 = "065g80nbiw9lrk4rjnbksrnjc79klxxl8vxvpmcsinqmvxcynm8f"; 162243 isLibrary = true; 162244 isExecutable = true; 162245 libraryHaskellDepends = [ ··· 162498 ({ mkDerivation, base, lucid }: 162499 mkDerivation { 162500 pname = "lucid-cdn"; 162501 - version = "0.1.1.0"; 162502 - sha256 = "1z70mgwa3krd9a4za32psdnqzrvqb9205saqfhxpkny8sd2g14rc"; 162503 libraryHaskellDepends = [ base lucid ]; 162504 description = "Curated list of CDN imports for lucid"; 162505 license = stdenv.lib.licenses.mit; ··· 165839 broken = true; 165840 }) {}; 165841 165842 "matrix-lens" = callPackage 165843 ({ mkDerivation, base, hedgehog, lens, matrix, tasty 165844 , tasty-discover, tasty-hedgehog, tasty-hspec, vector ··· 166370 166371 "mcmc" = callPackage 166372 ({ mkDerivation, aeson, base, bytestring, containers, criterion 166373 - , data-default, directory, hspec, hspec-discover, log-domain 166374 - , microlens, mwc-random, QuickCheck, statistics, text, time 166375 , transformers, vector, zlib 166376 }: 166377 mkDerivation { 166378 pname = "mcmc"; 166379 - version = "0.2.0"; 166380 - sha256 = "1nybslnvn9g6cha19m2xhs6nba5nap572yxhgv4bjv44dmr6lvf7"; 166381 libraryHaskellDepends = [ 166382 - aeson base bytestring containers data-default directory log-domain 166383 - microlens mwc-random statistics text time transformers vector zlib 166384 ]; 166385 testHaskellDepends = [ 166386 base directory hspec hspec-discover log-domain mwc-random ··· 166388 ]; 166389 testToolDepends = [ hspec-discover ]; 166390 benchmarkHaskellDepends = [ 166391 - base criterion log-domain microlens mwc-random statistics text 166392 - vector 166393 ]; 166394 description = "Sample from a posterior using Markov chain Monte Carlo"; 166395 license = stdenv.lib.licenses.gpl3Plus; ··· 166549 broken = true; 166550 }) {}; 166551 166552 "means" = callPackage 166553 ({ mkDerivation, base, semigroups }: 166554 mkDerivation { ··· 166655 ]; 166656 description = "A schema language for JSON"; 166657 license = stdenv.lib.licenses.mit; 166658 }) {}; 166659 166660 "mediabus" = callPackage ··· 169807 license = stdenv.lib.licenses.bsd3; 169808 }) {}; 169809 169810 "mixpanel-client" = callPackage 169811 ({ mkDerivation, aeson, base, base64-bytestring, bytestring, hspec 169812 , hspec-discover, http-client, http-client-tls, markdown-unlit ··· 170264 license = stdenv.lib.licenses.bsd3; 170265 hydraPlatforms = stdenv.lib.platforms.none; 170266 broken = true; 170267 }) {}; 170268 170269 "mockazo" = callPackage ··· 176120 }: 176121 mkDerivation { 176122 pname = "mwc-probability"; 176123 - version = "2.3.0"; 176124 - sha256 = "1rk5n015a24bv49m2qnc66iv5hcw99zk9zflqv99pxxbpia6kiyj"; 176125 libraryHaskellDepends = [ 176126 base containers mwc-random primitive transformers 176127 ]; ··· 178830 license = stdenv.lib.licenses.bsd3; 178831 }) {}; 178832 178833 "network-address" = callPackage 178834 ({ mkDerivation, base, Cabal, QuickCheck, test-framework 178835 , test-framework-quickcheck2 ··· 180461 }: 180462 mkDerivation { 180463 pname = "ngx-export-tools-extra"; 180464 - version = "0.5.4.1"; 180465 - sha256 = "153dswxwzai2fgn7k164zm1j2n144rncjyxj1k76mg9bqggplahs"; 180466 libraryHaskellDepends = [ 180467 aeson ansi-wl-pprint array base base64 binary bytestring 180468 case-insensitive containers ede enclosed-exceptions http-client ··· 181626 license = stdenv.lib.licenses.bsd3; 181627 }) {}; 181628 181629 "nonempty-lift" = callPackage 181630 ({ mkDerivation, base, comonad, hedgehog, hedgehog-classes 181631 , semigroupoids ··· 182733 182734 "numhask-space" = callPackage 182735 ({ mkDerivation, adjunctions, base, containers, distributive 182736 - , doctest, foldl, lattices, protolude, semigroupoids, tdigest, text 182737 - , time 182738 }: 182739 mkDerivation { 182740 pname = "numhask-space"; 182741 - version = "0.5.0"; 182742 - sha256 = "0ygx5qkmsxf9qr1kbv96aqcm2rwb20v57zkn62ibhp01adj8n1gs"; 182743 libraryHaskellDepends = [ 182744 - adjunctions base containers distributive foldl lattices protolude 182745 - semigroupoids tdigest text time 182746 ]; 182747 - testHaskellDepends = [ base doctest protolude ]; 182748 description = "numerical spaces"; 182749 license = stdenv.lib.licenses.bsd3; 182750 hydraPlatforms = stdenv.lib.platforms.none; ··· 184343 license = stdenv.lib.licenses.bsd3; 184344 }) {}; 184345 184346 "opaleye-classy" = callPackage 184347 ({ mkDerivation, base, bytestring, lens, mtl, opaleye 184348 , postgresql-simple, product-profunctors, transformers ··· 185695 }: 185696 mkDerivation { 185697 pname = "opml-conduit"; 185698 - version = "0.8.0.0"; 185699 - sha256 = "08j6hm605km4j3w9n8mbwlzhz8avy3m941wgr9rp5dfkasi3s9p3"; 185700 enableSeparateDataOutput = true; 185701 libraryHaskellDepends = [ 185702 base case-insensitive conduit conduit-combinators containers ··· 185807 license = stdenv.lib.licenses.bsd3; 185808 }) {}; 185809 185810 - "optics-core_0_3" = callPackage 185811 ({ mkDerivation, array, base, containers, indexed-profunctors 185812 , transformers 185813 }: 185814 mkDerivation { 185815 pname = "optics-core"; 185816 - version = "0.3"; 185817 - sha256 = "0gjxbrgp7c9k40782i2hm0pmb4fdrzcwbkq1xsj1835xszzxlp8n"; 185818 libraryHaskellDepends = [ 185819 array base containers indexed-profunctors transformers 185820 ]; ··· 185875 license = stdenv.lib.licenses.bsd3; 185876 }) {}; 185877 185878 - "optics-th_0_3" = callPackage 185879 ({ mkDerivation, base, containers, mtl, optics-core, tagged 185880 , template-haskell, th-abstraction, transformers 185881 }: 185882 mkDerivation { 185883 pname = "optics-th"; 185884 - version = "0.3"; 185885 - sha256 = "1k8kwii9jn1gjswkf7p5j5yvq7p9z8rs09ak78s5lmvxkh4c7035"; 185886 libraryHaskellDepends = [ 185887 base containers mtl optics-core template-haskell th-abstraction 185888 transformers ··· 186133 ({ mkDerivation, base, mtl }: 186134 mkDerivation { 186135 pname = "optparse-declarative"; 186136 - version = "0.3.0"; 186137 - sha256 = "1avy0g6jk34jbfp1xzqcyhb4j53knsbzx1pssl4b5f6nn981mbj8"; 186138 libraryHaskellDepends = [ base mtl ]; 186139 description = "Declarative command line option parser"; 186140 license = stdenv.lib.licenses.mit; ··· 187797 pname = "pandoc-citeproc"; 187798 version = "0.17.0.1"; 187799 sha256 = "0hi31h4jxamnyw0jsbwnbzy9gkp3a03mhsgwy9w73hi13lywxrgk"; 187800 isLibrary = true; 187801 isExecutable = true; 187802 enableSeparateDataOutput = true; ··· 187820 license = stdenv.lib.licenses.bsd3; 187821 }) {}; 187822 187823 "pandoc-citeproc-preamble" = callPackage 187824 ({ mkDerivation, base, directory, filepath, pandoc-types, process 187825 , text-conversions ··· 188149 broken = true; 188150 }) {}; 188151 188152 - "pandoc-plot_0_8_1_0" = callPackage 188153 ({ mkDerivation, base, bytestring, containers, criterion 188154 , data-default, directory, filepath, githash, hashable, hspec 188155 , hspec-expectations, lifted-async, mtl, optparse-applicative ··· 188158 }: 188159 mkDerivation { 188160 pname = "pandoc-plot"; 188161 - version = "0.8.1.0"; 188162 - sha256 = "11mn2baqya3xm325znxcsxglv6ydd67yd69p3fvqn9m2fcg1y9fr"; 188163 isLibrary = true; 188164 isExecutable = true; 188165 libraryHaskellDepends = [ ··· 193482 broken = true; 193483 }) {}; 193484 193485 "pgm" = callPackage 193486 ({ mkDerivation, array, base, bytestring, parsec }: 193487 mkDerivation { ··· 194518 ]; 194519 description = "Compositional pipelines"; 194520 license = stdenv.lib.licenses.bsd3; 194521 }) {}; 194522 194523 "pipes-aeson" = callPackage ··· 199097 license = stdenv.lib.licenses.mit; 199098 }) {}; 199099 199100 "postgresql-typed" = callPackage 199101 ({ mkDerivation, aeson, array, attoparsec, base, binary, bytestring 199102 , containers, convertible, criterion, cryptonite, data-default ··· 199106 }: 199107 mkDerivation { 199108 pname = "postgresql-typed"; 199109 - version = "0.6.1.1"; 199110 - sha256 = "002bqsvsig6232d4di811rpjyjg7r45xsywb34i9l98imh51mia1"; 199111 libraryHaskellDepends = [ 199112 aeson array attoparsec base binary bytestring containers cryptonite 199113 data-default haskell-src-meta HDBC memory network old-locale ··· 200782 }) {}; 200783 200784 "prettyprinter-ansi-terminal" = callPackage 200785 - ({ mkDerivation, ansi-terminal, base, doctest, prettyprinter, text 200786 - }: 200787 - mkDerivation { 200788 - pname = "prettyprinter-ansi-terminal"; 200789 - version = "1.1.1.2"; 200790 - sha256 = "0ha6vz707qzb5ky7kdsnw2zgphg2dnxrpbrxy8gaw119vwhb9q6k"; 200791 - libraryHaskellDepends = [ ansi-terminal base prettyprinter text ]; 200792 - testHaskellDepends = [ base doctest ]; 200793 - description = "ANSI terminal backend for the »prettyprinter« package"; 200794 - license = stdenv.lib.licenses.bsd2; 200795 - }) {}; 200796 - 200797 - "prettyprinter-ansi-terminal_1_1_2" = callPackage 200798 ({ mkDerivation, ansi-terminal, base, base-compat, containers 200799 , deepseq, doctest, gauge, prettyprinter, QuickCheck, text 200800 }: ··· 200810 ]; 200811 description = "ANSI terminal backend for the »prettyprinter« package"; 200812 license = stdenv.lib.licenses.bsd2; 200813 - hydraPlatforms = stdenv.lib.platforms.none; 200814 }) {}; 200815 200816 "prettyprinter-compat-annotated-wl-pprint" = callPackage ··· 200862 }: 200863 mkDerivation { 200864 pname = "prettyprinter-convert-ansi-wl-pprint"; 200865 - version = "1.1"; 200866 - sha256 = "03565w1qvqgdr1g2nwj3d2xpqbx04xm45pjfkb9d6jb2fww2v65q"; 200867 - revision = "1"; 200868 - editedCabalFile = "1c4zcscmvq0vbdgnp7n0avv8si5jshl4kw2qd1lqmhr28kj8x45f"; 200869 - libraryHaskellDepends = [ 200870 - ansi-terminal ansi-wl-pprint base prettyprinter 200871 - prettyprinter-ansi-terminal text 200872 - ]; 200873 - testHaskellDepends = [ base doctest ]; 200874 - description = "Converter from »ansi-wl-pprint« documents to »prettyprinter«-based ones"; 200875 - license = stdenv.lib.licenses.bsd2; 200876 - }) {}; 200877 - 200878 - "prettyprinter-convert-ansi-wl-pprint_1_1_1" = callPackage 200879 - ({ mkDerivation, ansi-terminal, ansi-wl-pprint, base, doctest 200880 - , prettyprinter, prettyprinter-ansi-terminal, text 200881 - }: 200882 - mkDerivation { 200883 - pname = "prettyprinter-convert-ansi-wl-pprint"; 200884 version = "1.1.1"; 200885 sha256 = "0bgf2np1ymy6zsd1qacndgyipcf0bamw1wkkikaq57npbb7psc41"; 200886 libraryHaskellDepends = [ ··· 200890 testHaskellDepends = [ base doctest ]; 200891 description = "Converter from »ansi-wl-pprint« documents to »prettyprinter«-based ones"; 200892 license = stdenv.lib.licenses.bsd2; 200893 - hydraPlatforms = stdenv.lib.platforms.none; 200894 }) {}; 200895 200896 "prettyprinter-graphviz" = callPackage ··· 202003 license = stdenv.lib.licenses.bsd3; 202004 }) {}; 202005 202006 "prof-flamegraph" = callPackage 202007 ({ mkDerivation, base, optparse-applicative }: 202008 mkDerivation { ··· 202516 }: 202517 mkDerivation { 202518 pname = "prometheus"; 202519 - version = "2.2.1"; 202520 - sha256 = "0wf7ayxxppdg1x1s2sjmlnnhdmlm18a90mgzg7wfvpmlb9kgvs3f"; 202521 libraryHaskellDepends = [ 202522 atomic-primops base bytestring containers http-client 202523 http-client-tls http-types network-uri text transformers wai warp ··· 203505 }: 203506 mkDerivation { 203507 pname = "provenience"; 203508 - version = "0.1.0.1"; 203509 - sha256 = "0z2lsyx59wk663y4p0xwl5sjrl1h3aqlqwig2xhvv9a1cf2bzzd3"; 203510 isLibrary = true; 203511 isExecutable = true; 203512 libraryHaskellDepends = [ ··· 205983 license = stdenv.lib.licenses.bsd3; 205984 }) {}; 205985 205986 "quickcheck-io" = callPackage 205987 ({ mkDerivation, base, HUnit, QuickCheck }: 205988 mkDerivation { ··· 207663 }: 207664 mkDerivation { 207665 pname = "random-fu"; 207666 - version = "0.2.7.6"; 207667 - sha256 = "1as1g6i80jy3vnj71h33bj5ywlw9bsdcqwbl3pdqqfqp0mv13rfk"; 207668 libraryHaskellDepends = [ 207669 base erf math-functions monad-loops mtl random random-shuffle 207670 random-source rvar syb template-haskell transformers vector ··· 207737 }: 207738 mkDerivation { 207739 pname = "random-source"; 207740 - version = "0.3.0.10"; 207741 - sha256 = "1ii7pr9dn6yfkkxsk504jmf6466phm15fhnk7894hhdg1qvfm43d"; 207742 libraryHaskellDepends = [ 207743 base flexible-defaults mersenne-random-pure64 mtl mwc-random 207744 primitive random stateref syb template-haskell th-extras ··· 208805 }: 208806 mkDerivation { 208807 pname = "rdf"; 208808 - version = "0.1.0.3"; 208809 - sha256 = "0bypvzr4xj3nvq839slhjcl6lzs4zp34yg6q3hdkwa5vgall6x2s"; 208810 - revision = "1"; 208811 - editedCabalFile = "0x5zdjbyrpap5qs40yl0m96fcgy11f6s5r3v0n8n5904cxa5sqy3"; 208812 - libraryHaskellDepends = [ 208813 - attoparsec base bytestring deepseq dlist fgl text transformers 208814 - ]; 208815 - benchmarkHaskellDepends = [ 208816 - base bytestring criterion deepseq text 208817 - ]; 208818 - description = "Representation and Incremental Processing of RDF Data"; 208819 - license = stdenv.lib.licenses.mit; 208820 - }) {}; 208821 - 208822 - "rdf_0_1_0_4" = callPackage 208823 - ({ mkDerivation, attoparsec, base, bytestring, criterion, deepseq 208824 - , dlist, fgl, text, transformers 208825 - }: 208826 - mkDerivation { 208827 - pname = "rdf"; 208828 version = "0.1.0.4"; 208829 sha256 = "1ncvh2rkxmy3k3scrpf7zyambvr94s5hq6n2yb4h7f5yx6xzr0wk"; 208830 libraryHaskellDepends = [ ··· 208835 ]; 208836 description = "Representation and Incremental Processing of RDF Data"; 208837 license = stdenv.lib.licenses.mit; 208838 - hydraPlatforms = stdenv.lib.platforms.none; 208839 }) {}; 208840 208841 "rdf4h" = callPackage ··· 209691 license = stdenv.lib.licenses.bsd3; 209692 }) {}; 209693 209694 - "reanimate-svg_0_10_0_0" = callPackage 209695 ({ mkDerivation, attoparsec, base, bytestring, containers 209696 , double-conversion, hspec, JuicyPixels, lens, linear, mtl 209697 , scientific, svg-tree, text, transformers, vector, xml 209698 }: 209699 mkDerivation { 209700 pname = "reanimate-svg"; 209701 - version = "0.10.0.0"; 209702 - sha256 = "16m1829ashjwmsammqhxkifxpgwnhvxf84w36hqr3f0g0zmhfhai"; 209703 libraryHaskellDepends = [ 209704 attoparsec base bytestring containers double-conversion JuicyPixels 209705 lens linear mtl scientific text transformers vector xml ··· 210633 }: 210634 mkDerivation { 210635 pname = "refined"; 210636 - version = "0.6"; 210637 - sha256 = "0clfkdj7lj33yryan50a37b6h434in8rwa6n9cnv8lwzvk0mayy6"; 210638 libraryHaskellDepends = [ 210639 aeson base bytestring deepseq exceptions mtl QuickCheck 210640 template-haskell text these-skinny ··· 210830 pname = "reflex-basic-host"; 210831 version = "0.2.0.1"; 210832 sha256 = "1bax3rcrwi3447wd7apramw0f248ddksl8lrdjgrph26bbh8vc1i"; 210833 - revision = "1"; 210834 - editedCabalFile = "11bzd169wpdn57d7krgx9bw4x5qzskp9d5abdn74x6ipy34cj5ml"; 210835 isLibrary = true; 210836 isExecutable = true; 210837 libraryHaskellDepends = [ ··· 215217 license = stdenv.lib.licenses.bsd3; 215218 }) {}; 215219 215220 "rg" = callPackage 215221 ({ mkDerivation, array, base, fmt, possibly, tasty, tasty-hunit 215222 , text, unordered-containers, vector ··· 215736 license = stdenv.lib.licenses.mit; 215737 }) {}; 215738 215739 "rio-orphans" = callPackage 215740 ({ mkDerivation, base, exceptions, fast-logger, hspec 215741 , monad-control, monad-logger, resourcet, rio, transformers-base ··· 215774 license = stdenv.lib.licenses.bsd3; 215775 }) {}; 215776 215777 "riot" = callPackage 215778 ({ mkDerivation, base, containers, directory, haskell98, mtl 215779 , ncurses, old-locale, packedstring, process, unix ··· 217280 license = stdenv.lib.licenses.bsd3; 217281 }) {}; 217282 217283 - "rpmbuild-order_0_4_0" = callPackage 217284 ({ mkDerivation, base, bytestring, Cabal, case-insensitive 217285 , containers, directory, extra, fgl, filepath, hspec 217286 - , optparse-applicative, process, simple-cmd-args 217287 }: 217288 mkDerivation { 217289 pname = "rpmbuild-order"; 217290 - version = "0.4.0"; 217291 - sha256 = "1whjid4nml07wyy9al9w63213qbd2iacwz8dsfv7a9b3vn31yd3k"; 217292 isLibrary = true; 217293 isExecutable = true; 217294 libraryHaskellDepends = [ ··· 217299 base bytestring directory extra fgl optparse-applicative 217300 simple-cmd-args 217301 ]; 217302 - testHaskellDepends = [ base hspec ]; 217303 description = "Order RPM packages by dependencies"; 217304 license = stdenv.lib.licenses.bsd3; 217305 hydraPlatforms = stdenv.lib.platforms.none; ··· 217814 ({ mkDerivation, base, bytestring, file-embed, process, yaml }: 217815 mkDerivation { 217816 pname = "runhs"; 217817 - version = "1.0.0.3"; 217818 - sha256 = "019aabgxfkan0l3i8wawya84wix3qmclsx0lsc8p6hvz5fjdlx21"; 217819 isLibrary = false; 217820 isExecutable = true; 217821 executableHaskellDepends = [ ··· 218939 }: 218940 mkDerivation { 218941 pname = "sampling"; 218942 - version = "0.3.4"; 218943 - sha256 = "1cwx64llg6x6dnsld6lx6bmb4cljz8abqp0d6vmh4wk11vzjsly0"; 218944 libraryHaskellDepends = [ 218945 base containers foldl mwc-random primitive vector 218946 ]; ··· 219646 benchmarkHaskellDepends = [ base criterion tagsoup text ]; 219647 description = "A high level web scraping library for Haskell"; 219648 license = stdenv.lib.licenses.asl20; 219649 }) {}; 219650 219651 "scan" = callPackage ··· 225897 pname = "serversession"; 225898 version = "1.0.1"; 225899 sha256 = "08j8v6a2018bmvwsb7crdg0ajak74jggb073pdpx9s0pf3cfzyrz"; 225900 libraryHaskellDepends = [ 225901 aeson base base64-bytestring bytestring data-default hashable nonce 225902 path-pieces text time transformers unordered-containers ··· 227213 }) {}; 227214 227215 "shakebook" = callPackage 227216 - ({ mkDerivation, aeson, aeson-with, base, binary-instances, comonad 227217 - , comonad-extras, doctemplates, feed, free, hashable-time 227218 - , http-conduit, ixset-typed, ixset-typed-conversions, lens 227219 - , lens-aeson, mustache, pandoc, pandoc-types, path-extensions, rio 227220 - , shake-plus, sitemap-gen, slick, split, tasty, tasty-golden 227221 - , text-time, within, zipper-extra 227222 }: 227223 mkDerivation { 227224 pname = "shakebook"; 227225 - version = "0.9.1.0"; 227226 - sha256 = "14b94gmy95whypmgqwbqr0kp5nrnk8s87dih35s85zsbmi2q1pzm"; 227227 libraryHaskellDepends = [ 227228 - aeson aeson-with base binary-instances comonad comonad-extras 227229 - doctemplates feed free hashable-time http-conduit ixset-typed 227230 - ixset-typed-conversions lens lens-aeson mustache pandoc 227231 - pandoc-types path-extensions rio shake-plus sitemap-gen slick split 227232 - text-time within zipper-extra 227233 ]; 227234 testHaskellDepends = [ 227235 - aeson aeson-with base binary-instances comonad comonad-extras 227236 - doctemplates feed free hashable-time http-conduit ixset-typed 227237 - ixset-typed-conversions lens lens-aeson mustache pandoc 227238 - pandoc-types path-extensions rio shake-plus sitemap-gen slick split 227239 - tasty tasty-golden text-time within zipper-extra 227240 ]; 227241 description = "Shake-based technical documentation generator; HTML & PDF"; 227242 license = stdenv.lib.licenses.mit; ··· 231192 }) {}; 231193 231194 "slynx" = callPackage 231195 - ({ mkDerivation, async, base, bytestring, containers, elynx-markov 231196 - , elynx-seq, elynx-tools, elynx-tree, hmatrix, megaparsec 231197 - , monad-logger, mwc-random, optparse-applicative, scientific, text 231198 , transformers, vector 231199 }: 231200 mkDerivation { 231201 pname = "slynx"; 231202 - version = "0.3.0"; 231203 - sha256 = "18nncc771b16ngkihza9skx1n73w811sg1p2hphp5pl7vkbl4wkr"; 231204 isLibrary = true; 231205 isExecutable = true; 231206 libraryHaskellDepends = [ 231207 - async base bytestring containers elynx-markov elynx-seq elynx-tools 231208 - elynx-tree hmatrix megaparsec monad-logger mwc-random 231209 - optparse-applicative scientific text transformers vector 231210 ]; 231211 - executableHaskellDepends = [ base elynx-seq elynx-tools ]; 231212 description = "Handle molecular sequences"; 231213 license = stdenv.lib.licenses.gpl3Plus; 231214 hydraPlatforms = stdenv.lib.platforms.none; ··· 235550 license = stdenv.lib.licenses.bsd3; 235551 }) {}; 235552 235553 - "splitmix_0_1" = callPackage 235554 ({ mkDerivation, async, base, base-compat, base-compat-batteries 235555 , bytestring, clock, containers, criterion, deepseq, HUnit 235556 , math-functions, process, random, test-framework ··· 235558 }: 235559 mkDerivation { 235560 pname = "splitmix"; 235561 - version = "0.1"; 235562 - sha256 = "1yhbh6zsklz5fbas2v69xd2qi3xvk4zidzl0acv17fyxa9rwh48w"; 235563 libraryHaskellDepends = [ base deepseq time ]; 235564 testHaskellDepends = [ 235565 async base base-compat base-compat-batteries bytestring containers ··· 236705 }: 236706 mkDerivation { 236707 pname = "stack"; 236708 - version = "2.3.1"; 236709 - sha256 = "1l17jdkr6ca3hwm4v8bshq2zbadqhb35hk2gfjy2dri1mdibcsdr"; 236710 configureFlags = [ 236711 "-fdisable-git-info" "-fhide-dependency-versions" 236712 "-fsupported-build" ··· 239237 ({ mkDerivation, array, async, base, base-orphans 239238 , base64-bytestring, bifunctors, bytestring, cereal, cereal-vector 239239 , clock, containers, contravariant, criterion, cryptohash, deepseq 239240 - , directory, fail, filepath, free, ghc-prim, hashable, hspec 239241 , hspec-smallcheck, integer-gmp, lifted-base, monad-control 239242 - , mono-traversable, network, primitive, resourcet, safe, semigroups 239243 - , smallcheck, store-core, syb, template-haskell, text, th-lift 239244 , th-lift-instances, th-orphans, th-reify-many, th-utilities, time 239245 , transformers, unordered-containers, vector 239246 , vector-binary-instances, void, weigh 239247 }: 239248 mkDerivation { 239249 pname = "store"; 239250 - version = "0.7.4"; 239251 - sha256 = "1lipkzhdr6m5555r2p3s5g5i2am9kg34dznfakcsxv5z20vzd31z"; 239252 libraryHaskellDepends = [ 239253 array async base base-orphans base64-bytestring bifunctors 239254 bytestring containers contravariant cryptohash deepseq directory 239255 - fail filepath free ghc-prim hashable hspec hspec-smallcheck 239256 - integer-gmp lifted-base monad-control mono-traversable network 239257 - primitive resourcet safe semigroups smallcheck store-core syb 239258 - template-haskell text th-lift th-lift-instances th-orphans 239259 - th-reify-many th-utilities time transformers unordered-containers 239260 - vector void 239261 ]; 239262 testHaskellDepends = [ 239263 array async base base-orphans base64-bytestring bifunctors 239264 bytestring clock containers contravariant cryptohash deepseq 239265 - directory fail filepath free ghc-prim hashable hspec 239266 - hspec-smallcheck integer-gmp lifted-base monad-control 239267 - mono-traversable network primitive resourcet safe semigroups 239268 - smallcheck store-core syb template-haskell text th-lift 239269 - th-lift-instances th-orphans th-reify-many th-utilities time 239270 - transformers unordered-containers vector void 239271 ]; 239272 benchmarkHaskellDepends = [ 239273 array async base base-orphans base64-bytestring bifunctors 239274 bytestring cereal cereal-vector containers contravariant criterion 239275 - cryptohash deepseq directory fail filepath free ghc-prim hashable 239276 - hspec hspec-smallcheck integer-gmp lifted-base monad-control 239277 - mono-traversable network primitive resourcet safe semigroups 239278 - smallcheck store-core syb template-haskell text th-lift 239279 - th-lift-instances th-orphans th-reify-many th-utilities time 239280 - transformers unordered-containers vector vector-binary-instances 239281 - void weigh 239282 ]; 239283 description = "Fast binary serialization"; 239284 license = stdenv.lib.licenses.mit; 239285 }) {}; 239286 239287 "store-core" = callPackage 239288 - ({ mkDerivation, base, bytestring, fail, ghc-prim, primitive, text 239289 , transformers 239290 }: 239291 mkDerivation { 239292 pname = "store-core"; 239293 - version = "0.4.4.2"; 239294 - sha256 = "184f3whh7kzc2fkm1mgllg06f002z8shayz1b8cvhal3qg1qahf9"; 239295 libraryHaskellDepends = [ 239296 - base bytestring fail ghc-prim primitive text transformers 239297 ]; 239298 description = "Fast and lightweight binary serialization"; 239299 license = stdenv.lib.licenses.mit; ··· 239306 }: 239307 mkDerivation { 239308 pname = "store-streaming"; 239309 - version = "0.2.0.0"; 239310 - sha256 = "0fhcv0lvmhdc53fx9y2dvvykvap7dz4asnajy95kpwhaz6z1xc2k"; 239311 libraryHaskellDepends = [ 239312 async base bytestring conduit free resourcet store store-core 239313 streaming-commons text transformers ··· 239381 license = stdenv.lib.licenses.mit; 239382 }) {}; 239383 239384 - "stratosphere_0_56_0" = callPackage 239385 ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers 239386 , hashable, hspec, hspec-discover, lens, template-haskell, text 239387 , unordered-containers 239388 }: 239389 mkDerivation { 239390 pname = "stratosphere"; 239391 - version = "0.56.0"; 239392 - sha256 = "00pszcypf0ckagxx2l5ldl0m6kacr3xbmw0yxfcjh6hs34543v8n"; 239393 isLibrary = true; 239394 isExecutable = true; 239395 libraryHaskellDepends = [ ··· 240387 license = stdenv.lib.licenses.bsd3; 240388 }) {}; 240389 240390 "strict-base" = callPackage 240391 ({ mkDerivation, base }: 240392 mkDerivation { ··· 240488 license = stdenv.lib.licenses.bsd3; 240489 }) {}; 240490 240491 "strict-list" = callPackage 240492 ({ mkDerivation, base, hashable, QuickCheck, quickcheck-instances 240493 , rerebase, semigroupoids, tasty, tasty-hunit, tasty-quickcheck ··· 240503 ]; 240504 description = "Strict linked list"; 240505 license = stdenv.lib.licenses.mit; 240506 }) {}; 240507 240508 "strict-tuple" = callPackage ··· 240719 pname = "string-interpolate"; 240720 version = "0.3.0.0"; 240721 sha256 = "0h7lqr5g11pr9ikzg7j26fgj9m8659j1vpcwggvndv6k71sh281a"; 240722 libraryHaskellDepends = [ 240723 base bytestring haskell-src-exts haskell-src-meta split 240724 template-haskell text text-conversions utf8-string ··· 241596 license = stdenv.lib.licenses.bsd3; 241597 }) {}; 241598 241599 "stylist" = callPackage 241600 ({ mkDerivation, async, base, css-syntax, hashable, hspec 241601 , network-uri, QuickCheck, scientific, text, unordered-containers ··· 242932 }: 242933 mkDerivation { 242934 pname = "sweet-egison"; 242935 - version = "0.1.0.3"; 242936 - sha256 = "17xqkhlxqkmn1ayhsxl1pw3y4fqxbq4lcdaq9ispp57qd3dcvd7v"; 242937 libraryHaskellDepends = [ 242938 backtracking base egison-pattern-src egison-pattern-src-th-mode 242939 haskell-src-exts haskell-src-meta logict template-haskell ··· 245917 broken = true; 245918 }) {}; 245919 245920 "tasty-dejafu" = callPackage 245921 ({ mkDerivation, base, dejafu, random, tagged, tasty }: 245922 mkDerivation { ··· 246076 pname = "tasty-hedgehog"; 246077 version = "1.0.0.2"; 246078 sha256 = "1vsv3m6brhshpqm8qixz97m7h0nx67cj6ira4cngbk7mf5rqylv5"; 246079 - revision = "3"; 246080 - editedCabalFile = "0vjr63nsc3z2jzc80clx2pzhcx1l53bqscwflvwwgjy0gmsshakd"; 246081 libraryHaskellDepends = [ base hedgehog tagged tasty ]; 246082 testHaskellDepends = [ 246083 base hedgehog tasty tasty-expected-failure ··· 248792 broken = true; 248793 }) {}; 248794 248795 "testing-feat" = callPackage 248796 ({ mkDerivation, base, QuickCheck, size-based 248797 , testing-type-modifiers ··· 250942 }) {}; 250943 250944 "thread-hierarchy" = callPackage 250945 - ({ mkDerivation, base, containers, hspec, stm }: 250946 - mkDerivation { 250947 - pname = "thread-hierarchy"; 250948 - version = "0.3.0.1"; 250949 - sha256 = "0d2wbm75f59vj1h18afdhb1wqyclv5gpgj6pyrhbcnf7aa2490c1"; 250950 - libraryHaskellDepends = [ base containers stm ]; 250951 - testHaskellDepends = [ base containers hspec stm ]; 250952 - description = "Simple Haskel thread management in hierarchical manner"; 250953 - license = stdenv.lib.licenses.mit; 250954 - }) {}; 250955 - 250956 - "thread-hierarchy_0_3_0_2" = callPackage 250957 ({ mkDerivation, base, containers, hspec, hspec-discover, stm }: 250958 mkDerivation { 250959 pname = "thread-hierarchy"; ··· 250964 testToolDepends = [ hspec-discover ]; 250965 description = "Simple Haskell thread management in hierarchical manner"; 250966 license = stdenv.lib.licenses.mit; 250967 - hydraPlatforms = stdenv.lib.platforms.none; 250968 }) {}; 250969 250970 "thread-local-storage" = callPackage ··· 250982 250983 "thread-supervisor" = callPackage 250984 ({ mkDerivation, base, clock, containers, data-default, hspec 250985 - , QuickCheck, unliftio 250986 - }: 250987 - mkDerivation { 250988 - pname = "thread-supervisor"; 250989 - version = "0.1.0.0"; 250990 - sha256 = "1gn2h4c84fdhppwjzkj9sr2rggc5q7193lf1n8c6ggzz6k2cj2rs"; 250991 - libraryHaskellDepends = [ 250992 - base clock containers data-default unliftio 250993 - ]; 250994 - testHaskellDepends = [ 250995 - base clock data-default hspec QuickCheck unliftio 250996 - ]; 250997 - description = "A simplified implementation of Erlang/OTP like supervisor over thread"; 250998 - license = stdenv.lib.licenses.mit; 250999 - }) {}; 251000 - 251001 - "thread-supervisor_0_1_0_1" = callPackage 251002 - ({ mkDerivation, base, clock, containers, data-default, hspec 251003 , hspec-discover, QuickCheck, unliftio 251004 }: 251005 mkDerivation { ··· 251015 testToolDepends = [ hspec-discover ]; 251016 description = "A simplified implementation of Erlang/OTP like supervisor over thread"; 251017 license = stdenv.lib.licenses.mit; 251018 - hydraPlatforms = stdenv.lib.platforms.none; 251019 }) {}; 251020 251021 "threadPool" = callPackage ··· 253043 broken = true; 253044 }) {}; 253045 253046 - "tldr_0_7_0" = callPackage 253047 ({ mkDerivation, ansi-terminal, base, bytestring, cmark, containers 253048 , directory, filepath, optparse-applicative, semigroups, tasty 253049 , tasty-golden, text, typed-process 253050 }: 253051 mkDerivation { 253052 pname = "tldr"; 253053 - version = "0.7.0"; 253054 - sha256 = "1y0lw65k9kjmqk27hsq3gr40af4jnwksf739ihp2dg4llyrqgvhl"; 253055 isLibrary = true; 253056 isExecutable = true; 253057 libraryHaskellDepends = [ ··· 253151 }) {}; 253152 253153 "tlynx" = callPackage 253154 - ({ mkDerivation, aeson, array, base, bytestring, comonad 253155 , containers, elynx-tools, elynx-tree, gnuplot, lifted-async 253156 - , megaparsec, monad-logger, mwc-random, optparse-applicative 253157 - , parallel, primitive, scientific, statistics, text, transformers 253158 - , vector 253159 }: 253160 mkDerivation { 253161 pname = "tlynx"; 253162 - version = "0.3.0"; 253163 - sha256 = "070r7j87s3206a5hpkhlfszpnpc7ngil88r6iq2752kijjik2x6v"; 253164 isLibrary = true; 253165 isExecutable = true; 253166 libraryHaskellDepends = [ 253167 - aeson array base bytestring comonad containers elynx-tools 253168 - elynx-tree gnuplot lifted-async megaparsec monad-logger mwc-random 253169 - optparse-applicative parallel primitive scientific statistics text 253170 - transformers vector 253171 ]; 253172 - executableHaskellDepends = [ base elynx-tools ]; 253173 description = "Handle phylogenetic trees"; 253174 license = stdenv.lib.licenses.gpl3Plus; 253175 hydraPlatforms = stdenv.lib.platforms.none; ··· 261319 license = stdenv.lib.licenses.bsd3; 261320 }) {}; 261321 261322 - "unordered-containers_0_2_11_0" = callPackage 261323 ({ mkDerivation, base, bytestring, ChasingBottoms, containers 261324 - , deepseq, deepseq-generics, gauge, hashable, hashmap, HUnit, mtl 261325 - , QuickCheck, random, test-framework, test-framework-hunit 261326 - , test-framework-quickcheck2 261327 }: 261328 mkDerivation { 261329 pname = "unordered-containers"; 261330 - version = "0.2.11.0"; 261331 - sha256 = "0z58qi781n1znjw35s1pq0k7fqn0995jqmrsznp1773gg66qqfib"; 261332 libraryHaskellDepends = [ base deepseq hashable ]; 261333 testHaskellDepends = [ 261334 base ChasingBottoms containers hashable HUnit QuickCheck random 261335 test-framework test-framework-hunit test-framework-quickcheck2 261336 ]; 261337 benchmarkHaskellDepends = [ 261338 - base bytestring containers deepseq deepseq-generics gauge hashable 261339 - hashmap mtl random 261340 ]; 261341 description = "Efficient hashing-based container types"; 261342 license = stdenv.lib.licenses.bsd3; ··· 263027 }) {}; 263028 263029 "uuid-bytes" = callPackage 263030 - ({ mkDerivation, base, byteslice, bytesmith, HUnit 263031 - , natural-arithmetic, primitive, small-bytearray-builder, tasty 263032 - , tasty-hunit, wide-word 263033 }: 263034 mkDerivation { 263035 pname = "uuid-bytes"; 263036 - version = "0.1.1.0"; 263037 - sha256 = "13kskg9j847w3f01pf0r24kf1nnfz5srfp268ip5n55ji26h5cmr"; 263038 libraryHaskellDepends = [ 263039 - base byteslice bytesmith natural-arithmetic primitive 263040 - small-bytearray-builder wide-word 263041 ]; 263042 testHaskellDepends = [ 263043 base byteslice HUnit natural-arithmetic primitive tasty tasty-hunit ··· 266130 ({ mkDerivation, base, bytestring, transformers, vector, vulkan }: 266131 mkDerivation { 266132 pname = "vulkan"; 266133 - version = "3.6.2"; 266134 - sha256 = "05lp2jwc4m432k1k9x8305a5a4m92lnxab4341lpmqc3vy30hz7a"; 266135 libraryHaskellDepends = [ base bytestring transformers vector ]; 266136 librarySystemDepends = [ vulkan ]; 266137 description = "Bindings to the Vulkan graphics API"; ··· 268796 268797 "web-rep" = callPackage 268798 ({ mkDerivation, attoparsec, base, box, box-socket, clay 268799 - , concurrency, doctest, foldl, generic-lens 268800 - , interpolatedstring-perl6, language-javascript, lens, lucid, mtl 268801 - , numhask, optparse-generic, scotty, tasty, tasty-hspec, text 268802 - , transformers, unordered-containers, wai-middleware-static 268803 - , wai-websockets, websockets 268804 }: 268805 mkDerivation { 268806 pname = "web-rep"; 268807 - version = "0.6.0"; 268808 - sha256 = "1ljlmfcjhiiqmsw2zfvxifr13g35c0mj33rkdxih6yz948czz17m"; 268809 isLibrary = true; 268810 isExecutable = true; 268811 libraryHaskellDepends = [ 268812 - attoparsec base box box-socket clay concurrency foldl generic-lens 268813 interpolatedstring-perl6 language-javascript lens lucid mtl numhask 268814 scotty text transformers unordered-containers wai-middleware-static 268815 wai-websockets websockets ··· 269308 269309 "webex-teams-api" = callPackage 269310 ({ mkDerivation, aeson, async, attoparsec, base, bitset-word8 269311 - , bytestring, conduit, data-default, hspec, http-conduit 269312 - , http-types, network-uri, optparse-applicative, text, utf8-string 269313 - , wai, warp 269314 - }: 269315 - mkDerivation { 269316 - pname = "webex-teams-api"; 269317 - version = "0.2.0.0"; 269318 - sha256 = "02x4g10r0rl1g4fbqkj8zxcbz64g8dck4d77f0gswkadsn5y6mkp"; 269319 - isLibrary = true; 269320 - isExecutable = true; 269321 - libraryHaskellDepends = [ 269322 - aeson attoparsec base bitset-word8 bytestring conduit data-default 269323 - http-conduit network-uri text 269324 - ]; 269325 - executableHaskellDepends = [ 269326 - aeson base bytestring data-default http-conduit 269327 - optparse-applicative text utf8-string 269328 - ]; 269329 - testHaskellDepends = [ 269330 - aeson async attoparsec base bytestring data-default hspec 269331 - http-conduit http-types network-uri text wai warp 269332 - ]; 269333 - description = "A Haskell bindings for Webex Teams API"; 269334 - license = stdenv.lib.licenses.mit; 269335 - }) {}; 269336 - 269337 - "webex-teams-api_0_2_0_1" = callPackage 269338 - ({ mkDerivation, aeson, async, attoparsec, base, bitset-word8 269339 , bytestring, conduit, data-default, hspec, hspec-discover 269340 , http-conduit, http-types, network-uri, optparse-applicative, text 269341 , utf8-string, wai, warp ··· 269361 testToolDepends = [ hspec-discover ]; 269362 description = "A Haskell bindings for Webex Teams API"; 269363 license = stdenv.lib.licenses.mit; 269364 - hydraPlatforms = stdenv.lib.platforms.none; 269365 }) {}; 269366 269367 "webex-teams-conduit" = callPackage 269368 ({ mkDerivation, aeson, async, base, bytestring, conduit 269369 - , data-default, hspec, http-client, http-conduit, http-types 269370 - , network-uri, optparse-applicative, text, utf8-string, wai, warp 269371 - , webex-teams-api 269372 - }: 269373 - mkDerivation { 269374 - pname = "webex-teams-conduit"; 269375 - version = "0.2.0.0"; 269376 - sha256 = "0p9ffj3qm84c7m4w5bfpn53vcs96p7gdlyk87mjmc9h9i6v7sz0d"; 269377 - isLibrary = true; 269378 - isExecutable = true; 269379 - libraryHaskellDepends = [ base conduit webex-teams-api ]; 269380 - executableHaskellDepends = [ 269381 - base bytestring conduit data-default http-client 269382 - optparse-applicative text utf8-string webex-teams-api 269383 - ]; 269384 - testHaskellDepends = [ 269385 - aeson async base bytestring conduit data-default hspec http-conduit 269386 - http-types network-uri text wai warp webex-teams-api 269387 - ]; 269388 - description = "Conduit wrapper of Webex Teams List API"; 269389 - license = stdenv.lib.licenses.mit; 269390 - }) {}; 269391 - 269392 - "webex-teams-conduit_0_2_0_1" = callPackage 269393 - ({ mkDerivation, aeson, async, base, bytestring, conduit 269394 , data-default, hspec, hspec-discover, http-client, http-conduit 269395 , http-types, network-uri, optparse-applicative, text, utf8-string 269396 , wai, warp, webex-teams-api ··· 269413 testToolDepends = [ hspec-discover ]; 269414 description = "Conduit wrapper of Webex Teams List API"; 269415 license = stdenv.lib.licenses.mit; 269416 - hydraPlatforms = stdenv.lib.platforms.none; 269417 }) {}; 269418 269419 "webex-teams-pipes" = callPackage 269420 ({ mkDerivation, aeson, async, base, bytestring, data-default 269421 - , hspec, http-client, http-conduit, http-types, network-uri 269422 - , optparse-applicative, pipes, text, utf8-string, wai, warp 269423 - , webex-teams-api 269424 - }: 269425 - mkDerivation { 269426 - pname = "webex-teams-pipes"; 269427 - version = "0.2.0.0"; 269428 - sha256 = "001ilf2yj6q8rqcagjlh28rad191jyjjr1cpk6cf84v66isdbykp"; 269429 - isLibrary = true; 269430 - isExecutable = true; 269431 - libraryHaskellDepends = [ base pipes webex-teams-api ]; 269432 - executableHaskellDepends = [ 269433 - base bytestring data-default http-client optparse-applicative pipes 269434 - text utf8-string webex-teams-api 269435 - ]; 269436 - testHaskellDepends = [ 269437 - aeson async base bytestring data-default hspec http-conduit 269438 - http-types network-uri pipes text wai warp webex-teams-api 269439 - ]; 269440 - description = "Pipes wrapper of Webex Teams List API"; 269441 - license = stdenv.lib.licenses.mit; 269442 - }) {}; 269443 - 269444 - "webex-teams-pipes_0_2_0_1" = callPackage 269445 - ({ mkDerivation, aeson, async, base, bytestring, data-default 269446 , hspec, hspec-discover, http-client, http-conduit, http-types 269447 , network-uri, optparse-applicative, pipes, text, utf8-string, wai 269448 , warp, webex-teams-api ··· 269465 testToolDepends = [ hspec-discover ]; 269466 description = "Pipes wrapper of Webex Teams List API"; 269467 license = stdenv.lib.licenses.mit; 269468 - hydraPlatforms = stdenv.lib.platforms.none; 269469 }) {}; 269470 269471 "webfinger-client" = callPackage ··· 273278 broken = true; 273279 }) {}; 273280 273281 "xlsx-tabular" = callPackage 273282 ({ mkDerivation, aeson, base, bytestring, containers, data-default 273283 , lens, text, xlsx ··· 276733 license = stdenv.lib.licenses.mit; 276734 }) {}; 276735 276736 "yesod-bootstrap" = callPackage 276737 ({ mkDerivation, base, blaze-html, blaze-markup, bootstrap-types 276738 , shakespeare, text, transformers, yesod-core, yesod-elements ··· 279549 }: 279550 mkDerivation { 279551 pname = "zeolite-lang"; 279552 - version = "0.7.1.0"; 279553 - sha256 = "1sdnnixy3n54nhr4kq3xa066nplgz19c03iwjvaahj2a0iir07m4"; 279554 isLibrary = false; 279555 isExecutable = true; 279556 enableSeparateDataOutput = true; ··· 280325 license = stdenv.lib.licenses.bsd3; 280326 }) {inherit (pkgs) zlib;}; 280327 280328 "zlib-bindings" = callPackage 280329 ({ mkDerivation, base, bytestring, hspec, QuickCheck, zlib }: 280330 mkDerivation { ··· 280606 "zre" = callPackage 280607 ({ mkDerivation, async, attoparsec, base, binary, bytestring 280608 , cereal, containers, data-default, directory, filepath 280609 - , lifted-async, monad-control, mtl, network, network-bsd 280610 - , network-info, network-multicast, optparse-applicative, process 280611 - , QuickCheck, quickcheck-instances, random, repline, sockaddr, stm 280612 - , text, time, transformers-base, uuid, zeromq4-haskell 280613 }: 280614 mkDerivation { 280615 pname = "zre"; 280616 - version = "0.1.3.0"; 280617 - sha256 = "09wsfghrba6akhxwl19khln0w64p919glz14f6sdijiagmkd87zw"; 280618 isLibrary = true; 280619 isExecutable = true; 280620 libraryHaskellDepends = [ 280621 async attoparsec base binary bytestring cereal containers 280622 - data-default directory filepath lifted-async monad-control mtl 280623 - network network-bsd network-info network-multicast 280624 - optparse-applicative process random sockaddr stm text time 280625 - transformers-base uuid zeromq4-haskell 280626 ]; 280627 executableHaskellDepends = [ 280628 async base bytestring lifted-async monad-control mtl
··· 1310 pname = "BNFC-meta"; 1311 version = "0.6.1"; 1312 sha256 = "0snackflcjxza4iqbd85fdsmylwr3bj71nsfrs2s2idc3nlxc7ia"; 1313 + revision = "1"; 1314 + editedCabalFile = "1lj92qxjf7gbgifhz1p6jw20079x6772gkbhvpd8ba4956dvzna3"; 1315 libraryHaskellDepends = [ 1316 alex-meta array base fail happy-meta haskell-src-meta syb 1317 template-haskell ··· 20588 ({ mkDerivation, base, bytestring, transformers, vector, vulkan }: 20589 mkDerivation { 20590 pname = "VulkanMemoryAllocator"; 20591 + version = "0.3.6"; 20592 + sha256 = "1zclpawaa1cx1p58asn7lla4lakkr869qnkdvrypxxqki3406hsz"; 20593 libraryHaskellDepends = [ 20594 base bytestring transformers vector vulkan 20595 ]; ··· 23911 license = stdenv.lib.licenses.bsd3; 23912 }) {}; 23913 23914 + "aeson_1_5_3_0" = callPackage 23915 ({ mkDerivation, attoparsec, base, base-compat 23916 , base-compat-batteries, base-orphans, base16-bytestring 23917 + , bytestring, containers, data-fix, deepseq, Diff, directory, dlist 23918 + , filepath, generic-deriving, ghc-prim, hashable, hashable-time 23919 , integer-logarithms, primitive, QuickCheck, quickcheck-instances 23920 + , scientific, strict, tagged, tasty, tasty-golden, tasty-hunit 23921 , tasty-quickcheck, template-haskell, text, th-abstraction, these 23922 , time, time-compat, unordered-containers, uuid-types, vector 23923 }: 23924 mkDerivation { 23925 pname = "aeson"; 23926 + version = "1.5.3.0"; 23927 + sha256 = "0slqxmm4rikndzq2rmgydaqgf9qqnni62bgr0zihf25d65mgk3lm"; 23928 libraryHaskellDepends = [ 23929 + attoparsec base base-compat-batteries bytestring containers 23930 + data-fix deepseq dlist ghc-prim hashable primitive scientific 23931 + strict tagged template-haskell text th-abstraction these time 23932 + time-compat unordered-containers uuid-types vector 23933 ]; 23934 testHaskellDepends = [ 23935 attoparsec base base-compat base-orphans base16-bytestring 23936 + bytestring containers data-fix Diff directory dlist filepath 23937 generic-deriving ghc-prim hashable hashable-time integer-logarithms 23938 + QuickCheck quickcheck-instances scientific strict tagged tasty 23939 tasty-golden tasty-hunit tasty-quickcheck template-haskell text 23940 these time time-compat unordered-containers uuid-types vector 23941 ]; ··· 24815 }: 24816 mkDerivation { 24817 pname = "aeson-with"; 24818 + version = "0.1.1.2"; 24819 + sha256 = "14sj4zx8g03vb4wdvri41yr3rhilczq4chyy7nl4l2wpk58g246c"; 24820 libraryHaskellDepends = [ 24821 aeson base hashmap lens lens-aeson mtl scientific text 24822 unordered-containers vector ··· 25517 license = stdenv.lib.licenses.bsd3; 25518 }) {}; 25519 25520 + "alarmclock_0_7_0_5" = callPackage 25521 + ({ mkDerivation, async, base, clock, hspec, stm, time 25522 + , unbounded-delays 25523 + }: 25524 + mkDerivation { 25525 + pname = "alarmclock"; 25526 + version = "0.7.0.5"; 25527 + sha256 = "0197phsc4rn5mn155hbmxplxi2ymra1x6lxq16xs6a8zrk4gfkj9"; 25528 + libraryHaskellDepends = [ 25529 + async base clock stm time unbounded-delays 25530 + ]; 25531 + testHaskellDepends = [ 25532 + async base clock hspec stm time unbounded-delays 25533 + ]; 25534 + description = "Wake up and perform an action at a certain time"; 25535 + license = stdenv.lib.licenses.bsd3; 25536 + hydraPlatforms = stdenv.lib.platforms.none; 25537 + }) {}; 25538 + 25539 "alea" = callPackage 25540 ({ mkDerivation, base, optparse-applicative, random, text }: 25541 mkDerivation { ··· 25606 }: 25607 mkDerivation { 25608 pname = "alex-meta"; 25609 + version = "0.3.0.12"; 25610 + sha256 = "0s0yhkl0ymr50agqnsbscw8926jk4044n6scw086ylhcijx3qmxa"; 25611 libraryHaskellDepends = [ 25612 array base containers haskell-src-meta QuickCheck template-haskell 25613 ]; ··· 29039 ]; 29040 description = "A simple streamly wrapper for amqp"; 29041 license = stdenv.lib.licenses.bsd3; 29042 + }) {}; 29043 29044 "amqp-utils" = callPackage 29045 ({ mkDerivation, amqp, base, bytestring, connection, containers ··· 30223 broken = true; 30224 }) {inherit (pkgs) libaosd;}; 30225 30226 + "ap-normalize" = callPackage 30227 + ({ mkDerivation, base, inspection-testing, transformers }: 30228 + mkDerivation { 30229 + pname = "ap-normalize"; 30230 + version = "0.1.0.0"; 30231 + sha256 = "0iqfilamnp0k170af7sw0ydn0cmba7ab06yinkl8vfppf583a4la"; 30232 + libraryHaskellDepends = [ base ]; 30233 + testHaskellDepends = [ base inspection-testing transformers ]; 30234 + description = "Self-normalizing applicative expressions"; 30235 + license = stdenv.lib.licenses.mit; 30236 + }) {}; 30237 + 30238 "ap-reflect" = callPackage 30239 ({ mkDerivation, base }: 30240 mkDerivation { ··· 31266 31267 "apply-refact" = callPackage 31268 ({ mkDerivation, base, containers, directory, extra, filemanip 31269 + , filepath, ghc, ghc-boot-th, ghc-exactprint, optparse-applicative 31270 + , process, refact, silently, syb, tasty, tasty-expected-failure 31271 + , tasty-golden, transformers, unix-compat 31272 }: 31273 mkDerivation { 31274 pname = "apply-refact"; 31275 + version = "0.8.2.1"; 31276 + sha256 = "12dnwsv37bhla7cnqa3h24mnvdk5199lwd5mf845n1r6xqrh2vvp"; 31277 isLibrary = true; 31278 isExecutable = true; 31279 libraryHaskellDepends = [ 31280 + base containers directory extra filemanip ghc ghc-exactprint 31281 process refact syb transformers unix-compat 31282 ]; 31283 executableHaskellDepends = [ 31284 base containers directory extra filemanip filepath ghc ghc-boot-th 31285 + ghc-exactprint optparse-applicative process refact syb transformers 31286 + unix-compat 31287 ]; 31288 testHaskellDepends = [ 31289 base containers directory extra filemanip filepath ghc ghc-boot-th 31290 + ghc-exactprint optparse-applicative process refact silently syb 31291 tasty tasty-expected-failure tasty-golden transformers unix-compat 31292 ]; 31293 description = "Perform refactorings specified by the refact library"; ··· 31705 pname = "archive-libarchive"; 31706 version = "1.0.0.0"; 31707 sha256 = "0pqq76gnk6y71c5wwjhq99y2695v6bfyzjb8gakp6h3jivcpd2gb"; 31708 + revision = "1"; 31709 + editedCabalFile = "12wq8nisyr2i1861v2377llha63nqpiys9vk6dvg9rfz7f6qqdch"; 31710 libraryHaskellDepends = [ 31711 base bytestring composition-prelude libarchive 31712 ]; ··· 33943 }: 33944 mkDerivation { 33945 pname = "atom-conduit"; 33946 + version = "0.9.0.0"; 33947 + sha256 = "0kjdw3x5jsa5hjb36zq93xyp3ac1s4j5vpb52969hckcghmyrabm"; 33948 libraryHaskellDepends = [ 33949 base-noprelude blaze-builder conduit microlens microlens-th parsers 33950 prettyprinter refined relude safe-exceptions text time timerep ··· 35376 }: 35377 mkDerivation { 35378 pname = "avwx"; 35379 + version = "0.3.0.3"; 35380 + sha256 = "1yvyyvfgga5gpf6bw5wkaxzwqvvvlzbqlq217h454gzlsm8vlv52"; 35381 isLibrary = true; 35382 isExecutable = true; 35383 libraryHaskellDepends = [ attoparsec base HTTP lens parsers text ]; ··· 35841 }: 35842 mkDerivation { 35843 pname = "aws-lambda-haskell-runtime"; 35844 + version = "3.0.3"; 35845 + sha256 = "0dxzdc4ixl33njind48g014rfk6wxyg0pdcwiarn4vgb30h6h4kq"; 35846 libraryHaskellDepends = [ 35847 aeson base bytestring case-insensitive http-client http-types path 35848 path-io safe-exceptions-checked template-haskell text ··· 35860 }: 35861 mkDerivation { 35862 pname = "aws-lambda-haskell-runtime-wai"; 35863 + version = "1.0.2"; 35864 + sha256 = "0bjqrwl2kcnxv8yni2bxaz5x3pgs3j6c4rrgqpv5kfs7yn1ins7w"; 35865 libraryHaskellDepends = [ 35866 aeson aws-lambda-haskell-runtime base binary bytestring 35867 case-insensitive http-types iproute network text ··· 36936 license = stdenv.lib.licenses.bsd3; 36937 }) {}; 36938 36939 + "bank-holidays-england_0_2_0_5" = callPackage 36940 + ({ mkDerivation, base, containers, hspec, QuickCheck, time }: 36941 + mkDerivation { 36942 + pname = "bank-holidays-england"; 36943 + version = "0.2.0.5"; 36944 + sha256 = "0n7q9s1vsmh5adkhpgycz8y6q49xqf77fpmm73cw0iqgjly4x9hp"; 36945 + libraryHaskellDepends = [ base containers time ]; 36946 + testHaskellDepends = [ base containers hspec QuickCheck time ]; 36947 + description = "Calculation of bank holidays in England and Wales"; 36948 + license = stdenv.lib.licenses.bsd3; 36949 + hydraPlatforms = stdenv.lib.platforms.none; 36950 + }) {}; 36951 + 36952 "banwords" = callPackage 36953 ({ mkDerivation, attoparsec, base, bytestring, data-default, HUnit 36954 , test-framework, test-framework-hunit, text, vector ··· 42114 42115 "bitset-word8" = callPackage 42116 ({ mkDerivation, base, bytestring, containers, criterion, deepseq 42117 , hspec, hspec-discover, QuickCheck, template-haskell 42118 , th-lift-instances, vector 42119 }: ··· 42134 ]; 42135 description = "Space efficient set of Word8 and some pre-canned sets useful for parsing HTTP"; 42136 license = stdenv.lib.licenses.mit; 42137 }) {}; 42138 42139 "bitspeak" = callPackage ··· 43354 broken = true; 43355 }) {}; 43356 43357 + "bludigon" = callPackage 43358 + ({ mkDerivation, base, containers, data-default, deepseq, directory 43359 + , filepath, finite-typelits, hspec, libX11, libXrandr, lifted-base 43360 + , monad-control, mtl, process, QuickCheck, text, time, transformers 43361 + , transformers-base, unix, X11 43362 + }: 43363 + mkDerivation { 43364 + pname = "bludigon"; 43365 + version = "0.1.0.1"; 43366 + sha256 = "1c0a6a6ir09vxdjv6nx94c73q381c1wbyf4s7p13cah2zh0y4gw4"; 43367 + isLibrary = true; 43368 + isExecutable = true; 43369 + libraryHaskellDepends = [ 43370 + base containers data-default deepseq directory filepath 43371 + finite-typelits lifted-base monad-control mtl process text time 43372 + transformers transformers-base unix X11 43373 + ]; 43374 + librarySystemDepends = [ libX11 libXrandr ]; 43375 + executableHaskellDepends = [ base ]; 43376 + testHaskellDepends = [ 43377 + base data-default deepseq hspec mtl QuickCheck time 43378 + ]; 43379 + description = "Configurable blue light filter"; 43380 + license = stdenv.lib.licenses.bsd3; 43381 + }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXrandr;}; 43382 + 43383 "bluemix-sdk" = callPackage 43384 ({ mkDerivation, aeson, base, bytestring, http-client, http-types 43385 , text, vector ··· 44396 44397 "box" = callPackage 44398 ({ mkDerivation, attoparsec, base, comonad, concurrency 44399 + , contravariant, dejafu, doctest, exceptions, generic-lens, lens 44400 + , mmorph, mtl, numhask, optparse-generic, profunctors, random, text 44401 + , time, transformers, transformers-base, websockets 44402 }: 44403 mkDerivation { 44404 pname = "box"; 44405 + version = "0.6.0"; 44406 + sha256 = "0kv3j0fh2ahn4x2lgpghhkrbw5y1cy5mdlrriycqv4slrdzaqyks"; 44407 isLibrary = true; 44408 isExecutable = true; 44409 libraryHaskellDepends = [ 44410 + attoparsec base comonad concurrency contravariant exceptions lens 44411 + mmorph numhask profunctors text time transformers transformers-base 44412 ]; 44413 executableHaskellDepends = [ 44414 base concurrency dejafu exceptions generic-lens lens mtl numhask 44415 + optparse-generic random text transformers websockets 44416 ]; 44417 testHaskellDepends = [ base doctest numhask ]; 44418 description = "boxes"; ··· 44422 }) {}; 44423 44424 "box-csv" = callPackage 44425 + ({ mkDerivation, attoparsec, base, box, doctest, generic-lens, lens 44426 + , numhask, scientific, text, time 44427 }: 44428 mkDerivation { 44429 pname = "box-csv"; 44430 + version = "0.0.2"; 44431 + sha256 = "09qmxd9mxyag6zx8y5yv7bphycbs35zfkkf7kvkdmjqdk7l7b0fd"; 44432 libraryHaskellDepends = [ 44433 + attoparsec base box generic-lens lens numhask scientific text time 44434 ]; 44435 testHaskellDepends = [ base doctest numhask ]; 44436 description = "See readme.md"; ··· 44445 }: 44446 mkDerivation { 44447 pname = "box-socket"; 44448 + version = "0.0.2"; 44449 + sha256 = "0wf7smpzczqm0yqnphmp46bgm67nyhj0swn0vxhdgb8z0362szsp"; 44450 isLibrary = true; 44451 isExecutable = true; 44452 libraryHaskellDepends = [ ··· 45683 broken = true; 45684 }) {}; 45685 45686 + "bugzilla-redhat" = callPackage 45687 + ({ mkDerivation, aeson, base, blaze-builder, bytestring, connection 45688 + , containers, http-conduit, http-types, iso8601-time, resourcet 45689 + , text, time, transformers, unordered-containers, vector 45690 + }: 45691 + mkDerivation { 45692 + pname = "bugzilla-redhat"; 45693 + version = "0.3.0"; 45694 + sha256 = "1d751f1219ivx9bfdl7xb89w2vns07ciqp4cqcykixnllx2jx18y"; 45695 + isLibrary = true; 45696 + isExecutable = true; 45697 + libraryHaskellDepends = [ 45698 + aeson base blaze-builder bytestring connection containers 45699 + http-conduit http-types iso8601-time resourcet text time 45700 + transformers unordered-containers vector 45701 + ]; 45702 + description = "A Haskell interface to the Bugzilla native REST API"; 45703 + license = stdenv.lib.licenses.bsd3; 45704 + }) {}; 45705 + 45706 "build" = callPackage 45707 ({ mkDerivation, algebraic-graphs, base, containers, extra 45708 , filepath, mtl, random, transformers ··· 45962 }: 45963 mkDerivation { 45964 pname = "burrito"; 45965 + version = "1.1.0.2"; 45966 + sha256 = "1k625j5syyiq66i88zy6q0mvwkjl5jsj79sxdmd1rbam3m39whx1"; 45967 libraryHaskellDepends = [ 45968 base bytestring containers parsec template-haskell text 45969 transformers ··· 46502 license = stdenv.lib.licenses.bsd3; 46503 }) {}; 46504 46505 + "bytestring_0_10_12_0" = callPackage 46506 + ({ mkDerivation, base, deepseq, ghc-prim, integer-gmp }: 46507 mkDerivation { 46508 pname = "bytestring"; 46509 + version = "0.10.12.0"; 46510 + sha256 = "1s1kgnqb8ybz223sf2838mmxnlhwsd3lnakng6ap38m058bzzj7d"; 46511 libraryHaskellDepends = [ base deepseq ghc-prim integer-gmp ]; 46512 description = "Fast, compact, strict and lazy byte strings with a list interface"; 46513 license = stdenv.lib.licenses.bsd3; 46514 hydraPlatforms = stdenv.lib.platforms.none; ··· 47593 license = stdenv.lib.licenses.bsd3; 47594 }) {}; 47595 47596 + "cabal-debian_5_1" = callPackage 47597 + ({ mkDerivation, ansi-wl-pprint, base, bifunctors, Cabal 47598 + , containers, data-default, debian, deepseq, Diff, directory 47599 + , exceptions, filepath, hsemail, HUnit, lens, mtl, network-uri 47600 + , newtype-generics, optparse-applicative, parsec, pretty, process 47601 + , pureMD5, regex-tdfa, syb, text, unix, unliftio, utf8-string 47602 + }: 47603 + mkDerivation { 47604 + pname = "cabal-debian"; 47605 + version = "5.1"; 47606 + sha256 = "14kh2s61m7wm9h0ms4dlpfvqr2gd8fv0w44ar3c3dg5053hwrvny"; 47607 + isLibrary = true; 47608 + isExecutable = true; 47609 + libraryHaskellDepends = [ 47610 + ansi-wl-pprint base bifunctors Cabal containers data-default debian 47611 + deepseq Diff directory exceptions filepath hsemail HUnit lens mtl 47612 + network-uri newtype-generics optparse-applicative parsec pretty 47613 + process pureMD5 regex-tdfa syb text unix unliftio utf8-string 47614 + ]; 47615 + executableHaskellDepends = [ base Cabal debian lens mtl pretty ]; 47616 + description = "Create a Debianization for a Cabal package"; 47617 + license = stdenv.lib.licenses.bsd3; 47618 + hydraPlatforms = stdenv.lib.platforms.none; 47619 + }) {}; 47620 + 47621 "cabal-dependency-licenses" = callPackage 47622 ({ mkDerivation, base, Cabal, containers, directory, filepath }: 47623 mkDerivation { ··· 47680 pname = "cabal-doctest"; 47681 version = "1.0.8"; 47682 sha256 = "03if74imlhhk7m56nci5f1wclniwqdmwl4hl177040j1gnlac9i0"; 47683 + revision = "2"; 47684 + editedCabalFile = "05v1awad3d1wvc763xcgvxm4n6n7bs7byc6s14kdbw35zcaddlcb"; 47685 libraryHaskellDepends = [ base Cabal directory filepath ]; 47686 description = "A Setup.hs helper for doctests running"; 47687 license = stdenv.lib.licenses.bsd3; ··· 48870 license = stdenv.lib.licenses.publicDomain; 48871 hydraPlatforms = stdenv.lib.platforms.none; 48872 broken = true; 48873 + }) {}; 48874 + 48875 + "caerbannog" = callPackage 48876 + ({ mkDerivation, base, binary, bytestring, hspec, QuickCheck 48877 + , random 48878 + }: 48879 + mkDerivation { 48880 + pname = "caerbannog"; 48881 + version = "0.6.0.3"; 48882 + sha256 = "0mv10cc50365kz2ad36wivvhcyl43bwxjp71f0n9vq2ndrmb4dna"; 48883 + libraryHaskellDepends = [ base binary bytestring ]; 48884 + testHaskellDepends = [ 48885 + base binary bytestring hspec QuickCheck random 48886 + ]; 48887 + description = "That rabbit's got a vicious streak a mile wide!"; 48888 + license = stdenv.lib.licenses.bsd3; 48889 }) {}; 48890 48891 "caf" = callPackage ··· 52224 52225 "chart-svg" = callPackage 52226 ({ mkDerivation, attoparsec, base, Color, containers, doctest 52227 + , generic-lens, lens, lucid, numhask, numhask-space, pretty-simple 52228 + , scientific, tagsoup, text, time, transformers 52229 , unordered-containers, web-rep 52230 }: 52231 mkDerivation { 52232 pname = "chart-svg"; 52233 + version = "0.1.3"; 52234 + sha256 = "0b3hpxm7xjw8pjhpcla46jdsjhqxxb3ga0jmmj97wn6w971yphi1"; 52235 isLibrary = true; 52236 isExecutable = true; 52237 libraryHaskellDepends = [ 52238 + attoparsec base Color generic-lens lens lucid numhask numhask-space 52239 + pretty-simple scientific tagsoup text time transformers web-rep 52240 ]; 52241 executableHaskellDepends = [ 52242 base containers generic-lens lens lucid numhask numhask-space text ··· 52244 ]; 52245 testHaskellDepends = [ base doctest numhask ]; 52246 description = "Charts in SVG"; 52247 + license = stdenv.lib.licenses.bsd3; 52248 + hydraPlatforms = stdenv.lib.platforms.none; 52249 + broken = true; 52250 + }) {}; 52251 + 52252 + "chart-svg-various" = callPackage 52253 + ({ mkDerivation, base, box, box-csv, box-socket, chart-svg 52254 + , concurrency, doctest, foldl, lens, lucid, mealy, numhask 52255 + , numhask-array, numhask-space, text, time, transformers 52256 + , unordered-containers, web-rep 52257 + }: 52258 + mkDerivation { 52259 + pname = "chart-svg-various"; 52260 + version = "0.0.1"; 52261 + sha256 = "0ajmm6xhzxay715c4zds6lcjnhp8l9qf78rzhymd4hc6vz9v0pi1"; 52262 + isLibrary = true; 52263 + isExecutable = true; 52264 + libraryHaskellDepends = [ 52265 + base box box-csv box-socket chart-svg concurrency foldl lens lucid 52266 + mealy numhask numhask-array numhask-space text time transformers 52267 + unordered-containers web-rep 52268 + ]; 52269 + executableHaskellDepends = [ base numhask ]; 52270 + testHaskellDepends = [ base doctest numhask ]; 52271 + description = "See readme.md"; 52272 license = stdenv.lib.licenses.bsd3; 52273 hydraPlatforms = stdenv.lib.platforms.none; 52274 broken = true; ··· 54105 }: 54106 mkDerivation { 54107 pname = "clash-ghc"; 54108 version = "1.2.4"; 54109 sha256 = "1xzpz0bkdfvhkk496q4zr7f6ix23dgg6w5r14j5gxy4jb8f8bxln"; 54110 isLibrary = true; ··· 54120 executableHaskellDepends = [ base ]; 54121 description = "CAES Language for Synchronous Hardware"; 54122 license = stdenv.lib.licenses.bsd2; 54123 }) {}; 54124 54125 "clash-lib" = callPackage ··· 54132 , ordered-containers, parsers, prettyprinter, primitive, process 54133 , reducers, tasty, tasty-hunit, template-haskell, temporary 54134 , terminal-size, text, text-show, time, transformers, trifecta 54135 , unordered-containers, utf8-string, vector 54136 , vector-binary-instances 54137 }: ··· 54157 ]; 54158 description = "CAES Language for Synchronous Hardware - As a Library"; 54159 license = stdenv.lib.licenses.bsd2; 54160 }) {}; 54161 54162 "clash-multisignal" = callPackage ··· 54189 }: 54190 mkDerivation { 54191 pname = "clash-prelude"; 54192 version = "1.2.4"; 54193 sha256 = "1yizprs6i4y2vyhjj6pvpd5xmdbxyqjwclk6saaws0g3xv008ffg"; 54194 setupHaskellDepends = [ base Cabal cabal-doctest ]; ··· 54210 ]; 54211 description = "CAES Language for Synchronous Hardware - Prelude library"; 54212 license = stdenv.lib.licenses.bsd2; 54213 }) {}; 54214 54215 "clash-prelude-quickcheck" = callPackage ··· 57636 }: 57637 mkDerivation { 57638 pname = "commonmark"; 57639 + version = "0.1.0.2"; 57640 + sha256 = "00rqy02pn4gg0wpwvxyqxvzqg75lvb1qawn4m8rnjq6v43c4g23l"; 57641 libraryHaskellDepends = [ 57642 base bytestring containers parsec text transformers 57643 ]; ··· 62295 }: 62296 mkDerivation { 62297 pname = "core-data"; 62298 + version = "0.2.1.7"; 62299 + sha256 = "19fcbp6ccwggpv1lm1z03m3innk9agiwbz03whiivr3zg2gzcglh"; 62300 libraryHaskellDepends = [ 62301 aeson base bytestring containers core-text hashable prettyprinter 62302 prettyprinter-ansi-terminal scientific text unordered-containers ··· 62306 license = stdenv.lib.licenses.bsd3; 62307 }) {}; 62308 62309 + "core-data_0_2_1_8" = callPackage 62310 ({ mkDerivation, aeson, base, bytestring, containers, core-text 62311 , hashable, prettyprinter, prettyprinter-ansi-terminal, scientific 62312 , text, unordered-containers, vector 62313 }: 62314 mkDerivation { 62315 pname = "core-data"; 62316 + version = "0.2.1.8"; 62317 + sha256 = "1hgvvkk3m3ykdndmf2hbm59v0pim68jwgl2a6n5hw1dv4xwd3fay"; 62318 libraryHaskellDepends = [ 62319 aeson base bytestring containers core-text hashable prettyprinter 62320 prettyprinter-ansi-terminal scientific text unordered-containers ··· 62351 }: 62352 mkDerivation { 62353 pname = "core-program"; 62354 + version = "0.2.4.4"; 62355 + sha256 = "1mkhwfw4h5q2dly1gm082k3s9jsq2wb0xksfa6xv8ghvxpvypvck"; 62356 libraryHaskellDepends = [ 62357 async base bytestring chronologique core-data core-text directory 62358 exceptions filepath fsnotify hashable hourglass mtl prettyprinter ··· 62363 license = stdenv.lib.licenses.bsd3; 62364 }) {}; 62365 62366 + "core-program_0_2_4_5" = callPackage 62367 ({ mkDerivation, async, base, bytestring, chronologique, core-data 62368 , core-text, directory, exceptions, filepath, fsnotify, hashable 62369 , hourglass, mtl, prettyprinter, prettyprinter-ansi-terminal ··· 62372 }: 62373 mkDerivation { 62374 pname = "core-program"; 62375 + version = "0.2.4.5"; 62376 + sha256 = "1a2zjdywmgniwcj649f43hri55bh30vz2s00r3yqj3gvhhighi86"; 62377 libraryHaskellDepends = [ 62378 async base bytestring chronologique core-data core-text directory 62379 exceptions filepath fsnotify hashable hourglass mtl prettyprinter ··· 62392 }: 62393 mkDerivation { 62394 pname = "core-text"; 62395 + version = "0.2.3.5"; 62396 + sha256 = "085w21vh5rgl1pc7731ih47gh8gszjj0xfgkr3acy0r9rbh33m9c"; 62397 libraryHaskellDepends = [ 62398 base bytestring deepseq fingertree hashable prettyprinter 62399 prettyprinter-ansi-terminal template-haskell text text-short ··· 62402 license = stdenv.lib.licenses.bsd3; 62403 }) {}; 62404 62405 + "core-text_0_2_3_6" = callPackage 62406 ({ mkDerivation, base, bytestring, deepseq, fingertree, hashable 62407 , prettyprinter, prettyprinter-ansi-terminal, template-haskell 62408 , text, text-short 62409 }: 62410 mkDerivation { 62411 pname = "core-text"; 62412 + version = "0.2.3.6"; 62413 + sha256 = "13sdgym8xhljpc465bq1h066mrcvk77568viklhib255skjl56gn"; 62414 libraryHaskellDepends = [ 62415 base bytestring deepseq fingertree hashable prettyprinter 62416 prettyprinter-ansi-terminal template-haskell text text-short ··· 65011 }: 65012 mkDerivation { 65013 pname = "csound-expression"; 65014 + version = "5.3.3"; 65015 + sha256 = "0g6djh3ijvka6hkw4nhb7vhhyl4i268rdxvnwmm6ayg6a8kg8p0g"; 65016 libraryHaskellDepends = [ 65017 base Boolean colour containers csound-expression-dynamic 65018 csound-expression-opcodes csound-expression-typed data-default ··· 65024 65025 "csound-expression-dynamic" = callPackage 65026 ({ mkDerivation, array, base, Boolean, containers, data-default 65027 + , data-fix, data-fix-cse, deriving-compat, hashable, transformers 65028 + , wl-pprint 65029 }: 65030 mkDerivation { 65031 pname = "csound-expression-dynamic"; 65032 + version = "0.3.5"; 65033 + sha256 = "07xykqpym48bvvs7sa0m12psahsn7z245cd89akv9flkgwjwaa29"; 65034 libraryHaskellDepends = [ 65035 array base Boolean containers data-default data-fix data-fix-cse 65036 + deriving-compat hashable transformers wl-pprint 65037 ]; 65038 description = "dynamic core for csound-expression library"; 65039 license = stdenv.lib.licenses.bsd3; ··· 65062 }: 65063 mkDerivation { 65064 pname = "csound-expression-typed"; 65065 + version = "0.2.3.1"; 65066 + sha256 = "02zd41sz1y8qfchdyhgiddi6s1p5081nr5haq04qdmbz5bgpdmbq"; 65067 enableSeparateDataOutput = true; 65068 libraryHaskellDepends = [ 65069 base Boolean colour containers csound-expression-dynamic ··· 65499 }: 65500 mkDerivation { 65501 pname = "cuckoo"; 65502 + version = "0.2.1"; 65503 + sha256 = "1bv39vfg0yzancyya1cdbrcdc0gasp0djcc9ryiwrc3kf9y0nbzn"; 65504 libraryHaskellDepends = [ base memory primitive random vector ]; 65505 testHaskellDepends = [ 65506 + base bytestring cryptonite doctest hashable memory primitive 65507 + stopwatch 65508 ]; 65509 benchmarkHaskellDepends = [ 65510 base bytestring criterion memory QuickCheck stopwatch ··· 66072 66073 "cut-the-crap" = callPackage 66074 ({ mkDerivation, base, exceptions, generic-lens, hspec, hspec-core 66075 + , lens, optparse-applicative, pocketsphinx, QuickCheck 66076 + , quickcheck-classes, regex-tdfa, shelly, sphinxbase 66077 + , system-filepath, temporary, text, time, unliftio-core 66078 }: 66079 mkDerivation { 66080 pname = "cut-the-crap"; 66081 + version = "1.4.0"; 66082 + sha256 = "03xip8a9inqir8zm244ffv92ag5r7z8hlh0qz7z4vfdmg54mhhnq"; 66083 isLibrary = true; 66084 isExecutable = true; 66085 libraryHaskellDepends = [ 66086 base exceptions generic-lens lens optparse-applicative regex-tdfa 66087 + shelly system-filepath temporary text time unliftio-core 66088 ]; 66089 + libraryPkgconfigDepends = [ pocketsphinx sphinxbase ]; 66090 executableHaskellDepends = [ 66091 base exceptions generic-lens lens optparse-applicative regex-tdfa 66092 + shelly system-filepath temporary text time unliftio-core 66093 ]; 66094 + executablePkgconfigDepends = [ pocketsphinx sphinxbase ]; 66095 testHaskellDepends = [ 66096 base exceptions generic-lens hspec hspec-core lens 66097 + optparse-applicative QuickCheck quickcheck-classes regex-tdfa 66098 + shelly system-filepath temporary text time unliftio-core 66099 ]; 66100 + testPkgconfigDepends = [ pocketsphinx sphinxbase ]; 66101 description = "Cuts out uninteresting parts of videos by detecting silences"; 66102 license = stdenv.lib.licenses.mit; 66103 + }) {inherit (pkgs) pocketsphinx; inherit (pkgs) sphinxbase;}; 66104 66105 "cutter" = callPackage 66106 ({ mkDerivation, base, bytestring, explicit-exception, spreadsheet ··· 67670 ({ mkDerivation, base, containers, data-fix, transformers }: 67671 mkDerivation { 67672 pname = "data-fix-cse"; 67673 + version = "0.0.3"; 67674 + sha256 = "1v8ffi5c0sz8q2fla6fab4css3pkjmi0knx5d04mvffhw66bjhbz"; 67675 libraryHaskellDepends = [ base containers data-fix transformers ]; 67676 description = "Common subexpression elimination for the fixploint types"; 67677 license = stdenv.lib.licenses.bsd3; ··· 71925 license = stdenv.lib.licenses.bsd3; 71926 }) {}; 71927 71928 + "dhall_1_34_0" = callPackage 71929 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, atomic-write 71930 , base, bytestring, case-insensitive, cborg, cborg-json, containers 71931 , contravariant, cryptonite, data-fix, deepseq, Diff, directory 71932 , doctest, dotgen, either, exceptions, filepath, foldl, gauge 71933 , generic-random, half, hashable, haskeline, http-client 71934 , http-client-tls, http-types, lens-family-core, megaparsec, memory 71935 + , mmorph, mockery, mtl, network-uri, optparse-applicative 71936 , parser-combinators, parsers, pretty-simple, prettyprinter 71937 , prettyprinter-ansi-terminal, profunctors, QuickCheck 71938 , quickcheck-instances, repline, scientific, semigroups, serialise ··· 71943 }: 71944 mkDerivation { 71945 pname = "dhall"; 71946 + version = "1.34.0"; 71947 + sha256 = "0rqvzvcqbhs9gvga7api6jjblnypm4a33z8kxi578ps63mhn3g0d"; 71948 isLibrary = true; 71949 isExecutable = true; 71950 + enableSeparateDataOutput = true; 71951 libraryHaskellDepends = [ 71952 aeson aeson-pretty ansi-terminal atomic-write base bytestring 71953 case-insensitive cborg cborg-json containers contravariant 71954 cryptonite data-fix deepseq Diff directory dotgen either exceptions 71955 filepath half hashable haskeline http-client http-client-tls 71956 + http-types lens-family-core megaparsec memory mmorph mtl 71957 + network-uri optparse-applicative parser-combinators parsers 71958 + pretty-simple prettyprinter prettyprinter-ansi-terminal profunctors 71959 + repline scientific serialise template-haskell text text-manipulate 71960 th-lift-instances transformers transformers-compat 71961 unordered-containers uri-encode vector 71962 ]; ··· 72002 license = stdenv.lib.licenses.bsd3; 72003 }) {}; 72004 72005 + "dhall-bash_1_0_32" = callPackage 72006 ({ mkDerivation, base, bytestring, containers, dhall 72007 , neat-interpolation, optparse-generic, shell-escape, text 72008 }: 72009 mkDerivation { 72010 pname = "dhall-bash"; 72011 + version = "1.0.32"; 72012 + sha256 = "0y4pjrknbq48j1cnj25zf31k02j5ivjm3h6ffizr3vgr24whfxih"; 72013 isLibrary = true; 72014 isExecutable = true; 72015 libraryHaskellDepends = [ ··· 72045 72046 "dhall-docs" = callPackage 72047 ({ mkDerivation, base, bytestring, containers, dhall, directory 72048 + , doctest, file-embed, filepath, foldl, HaXml, lens-family-core 72049 + , lucid, megaparsec, mmark, mtl, optparse-applicative, path 72050 + , path-io, pretty, prettyprinter, tar, tasty, tasty-hunit 72051 + , tasty-silver, text, turtle 72052 }: 72053 mkDerivation { 72054 pname = "dhall-docs"; 72055 + version = "1.0.0"; 72056 + sha256 = "0kfn3nr0g4x5bpdrkg5lh8qma2536k3gx7bvrsrkn53lyyxnbnvi"; 72057 isLibrary = true; 72058 isExecutable = true; 72059 enableSeparateDataOutput = true; 72060 libraryHaskellDepends = [ 72061 base bytestring containers dhall directory file-embed filepath 72062 + lens-family-core lucid megaparsec mmark mtl optparse-applicative 72063 + path path-io prettyprinter tar text 72064 ]; 72065 executableHaskellDepends = [ base dhall ]; 72066 testHaskellDepends = [ 72067 + base bytestring containers dhall directory doctest filepath foldl 72068 + HaXml path path-io pretty tasty tasty-hunit tasty-silver text 72069 + turtle 72070 ]; 72071 description = "Generate HTML docs from a dhall package"; 72072 license = stdenv.lib.licenses.bsd3; ··· 72137 license = stdenv.lib.licenses.bsd3; 72138 }) {}; 72139 72140 + "dhall-json_1_7_1" = callPackage 72141 ({ mkDerivation, aeson, aeson-pretty, aeson-yaml, ansi-terminal 72142 , base, bytestring, containers, dhall, exceptions, filepath 72143 + , lens-family-core, optparse-applicative, prettyprinter 72144 + , prettyprinter-ansi-terminal, scientific, tasty, tasty-hunit 72145 + , tasty-silver, text, unordered-containers, vector 72146 }: 72147 mkDerivation { 72148 pname = "dhall-json"; 72149 + version = "1.7.1"; 72150 + sha256 = "158c9vhxa124r1xqn365wvwqhby5rngkip08ghy8rnjs5ijcxzgf"; 72151 isLibrary = true; 72152 isExecutable = true; 72153 libraryHaskellDepends = [ 72154 aeson aeson-pretty aeson-yaml base bytestring containers dhall 72155 + exceptions filepath lens-family-core optparse-applicative 72156 + prettyprinter scientific text unordered-containers vector 72157 ]; 72158 executableHaskellDepends = [ 72159 aeson aeson-pretty ansi-terminal base bytestring dhall exceptions ··· 72215 license = stdenv.lib.licenses.mit; 72216 }) {}; 72217 72218 + "dhall-lsp-server_1_0_9" = callPackage 72219 + ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers 72220 + , data-default, dhall, dhall-json, directory, doctest, filepath 72221 + , haskell-lsp, haskell-lsp-types, hslogger, lens, lens-family-core 72222 + , lsp-test, megaparsec, mtl, network-uri, optparse-applicative 72223 + , prettyprinter, QuickCheck, rope-utf16-splay, tasty, tasty-hspec 72224 + , text, transformers, unordered-containers, uri-encode 72225 + }: 72226 + mkDerivation { 72227 + pname = "dhall-lsp-server"; 72228 + version = "1.0.9"; 72229 + sha256 = "0zf53pc8rxapmdm9fvp04gfnw2910yv1gm5sm5v5wb606njzk0xn"; 72230 + isLibrary = true; 72231 + isExecutable = true; 72232 + libraryHaskellDepends = [ 72233 + aeson aeson-pretty base bytestring containers data-default dhall 72234 + dhall-json directory filepath haskell-lsp hslogger lens 72235 + lens-family-core megaparsec mtl network-uri prettyprinter 72236 + rope-utf16-splay text transformers unordered-containers uri-encode 72237 + ]; 72238 + executableHaskellDepends = [ base optparse-applicative ]; 72239 + testHaskellDepends = [ 72240 + base directory doctest filepath haskell-lsp-types lsp-test 72241 + QuickCheck tasty tasty-hspec text 72242 + ]; 72243 + description = "Language Server Protocol (LSP) server for Dhall"; 72244 + license = stdenv.lib.licenses.mit; 72245 + hydraPlatforms = stdenv.lib.platforms.none; 72246 + }) {}; 72247 + 72248 "dhall-nix" = callPackage 72249 ({ mkDerivation, base, containers, data-fix, dhall, hnix 72250 , lens-family-core, neat-interpolation, optparse-generic, text 72251 }: 72252 mkDerivation { 72253 pname = "dhall-nix"; 72254 + version = "1.1.16"; 72255 + sha256 = "1p9aizzf7zx92ns292zyzvg01r85dpl3wa61nh6g3q16qjs35bcx"; 72256 isLibrary = true; 72257 isExecutable = true; 72258 libraryHaskellDepends = [ ··· 72266 license = stdenv.lib.licenses.bsd3; 72267 hydraPlatforms = stdenv.lib.platforms.none; 72268 broken = true; 72269 + }) {}; 72270 + 72271 + "dhall-nixpkgs" = callPackage 72272 + ({ mkDerivation, aeson, base, data-fix, dhall, foldl, hnix 72273 + , lens-family-core, megaparsec, mmorph, neat-interpolation 72274 + , network-uri, optparse-applicative, prettyprinter, text 72275 + , transformers, turtle 72276 + }: 72277 + mkDerivation { 72278 + pname = "dhall-nixpkgs"; 72279 + version = "1.0.0"; 72280 + sha256 = "1bymafh0p0avfsdpcijj76075pgkn81sf6f3y17m7p0lmp8hhh75"; 72281 + isLibrary = false; 72282 + isExecutable = true; 72283 + executableHaskellDepends = [ 72284 + aeson base data-fix dhall foldl hnix lens-family-core megaparsec 72285 + mmorph neat-interpolation network-uri optparse-applicative 72286 + prettyprinter text transformers turtle 72287 + ]; 72288 + description = "Convert Dhall projects to Nix packages"; 72289 + license = stdenv.lib.licenses.bsd3; 72290 }) {}; 72291 72292 "dhall-text" = callPackage ··· 72370 broken = true; 72371 }) {}; 72372 72373 + "dhall-yaml_1_2_1" = callPackage 72374 ({ mkDerivation, aeson, ansi-terminal, base, bytestring, dhall 72375 , dhall-json, exceptions, HsYAML, HsYAML-aeson 72376 , optparse-applicative, prettyprinter, prettyprinter-ansi-terminal ··· 72378 }: 72379 mkDerivation { 72380 pname = "dhall-yaml"; 72381 + version = "1.2.1"; 72382 + sha256 = "18p8a92wiz2zi4q7v5fjvdallxrl21scmwwv706g3mm5dgfgcs5a"; 72383 isLibrary = true; 72384 isExecutable = true; 72385 libraryHaskellDepends = [ ··· 74433 "discord-haskell" = callPackage 74434 ({ mkDerivation, aeson, async, base, base64-bytestring, bytestring 74435 , containers, data-default, emoji, http-client, iso8601-time 74436 + , JuicyPixels, MonadRandom, mtl, req, safe-exceptions, text, time 74437 + , unliftio, unordered-containers, vector, websockets, wuss 74438 }: 74439 mkDerivation { 74440 pname = "discord-haskell"; 74441 + version = "1.7.0"; 74442 + sha256 = "1hb2qfljj0xq427657ml8qasg99fhwh0zfsrmryqpaq5ch8aqn20"; 74443 isLibrary = true; 74444 isExecutable = true; 74445 libraryHaskellDepends = [ 74446 aeson async base base64-bytestring bytestring containers 74447 data-default emoji http-client iso8601-time JuicyPixels MonadRandom 74448 + mtl req safe-exceptions text time unliftio unordered-containers 74449 + vector websockets wuss 74450 ]; 74451 + executableHaskellDepends = [ base text unliftio ]; 74452 description = "Write bots for Discord in Haskell"; 74453 license = stdenv.lib.licenses.mit; 74454 hydraPlatforms = stdenv.lib.platforms.none; ··· 76001 ({ mkDerivation, base, mmsyn3, mmsyn6ukr, mmsyn7s, vector }: 76002 mkDerivation { 76003 pname = "dobutokO-poetry"; 76004 + version = "0.9.0.1"; 76005 + sha256 = "1wjxmlcz5xyc3avfm9f74f3scjjqa3a8hn0pav2l0lhkf8r6p5i6"; 76006 isLibrary = true; 76007 isExecutable = true; 76008 libraryHaskellDepends = [ base mmsyn3 mmsyn6ukr mmsyn7s vector ]; ··· 79804 license = stdenv.lib.licenses.bsd3; 79805 }) {}; 79806 79807 + "egison-pattern-src_0_2_1_1" = callPackage 79808 + ({ mkDerivation, base, containers, free, megaparsec, mtl 79809 + , parser-combinators, prettyprinter, recursion-schemes, tasty 79810 + , tasty-discover, tasty-hunit, text 79811 + }: 79812 + mkDerivation { 79813 + pname = "egison-pattern-src"; 79814 + version = "0.2.1.1"; 79815 + sha256 = "0zpaxkskpdhq5nm1h6fh1klww4cslz96a3w4fhlaz0v0wdbkbrfs"; 79816 + libraryHaskellDepends = [ 79817 + base containers free megaparsec mtl parser-combinators 79818 + prettyprinter recursion-schemes text 79819 + ]; 79820 + testHaskellDepends = [ 79821 + base megaparsec mtl tasty tasty-hunit text 79822 + ]; 79823 + testToolDepends = [ tasty-discover ]; 79824 + description = "Manipulating Egison patterns: abstract syntax, parser, and pretty-printer"; 79825 + license = stdenv.lib.licenses.bsd3; 79826 + hydraPlatforms = stdenv.lib.platforms.none; 79827 + }) {}; 79828 + 79829 "egison-pattern-src-haskell-mode" = callPackage 79830 ({ mkDerivation, base, egison-pattern-src, haskell-src-exts, mtl 79831 , tasty, tasty-discover, tasty-hunit, text 79832 }: 79833 mkDerivation { 79834 pname = "egison-pattern-src-haskell-mode"; 79835 + version = "0.2.1.1"; 79836 + sha256 = "0k21fi28imqnn2rp5182mjxnrahssbdxay3pzhzj5yyfjp8qymwp"; 79837 libraryHaskellDepends = [ 79838 base egison-pattern-src haskell-src-exts mtl text 79839 ]; ··· 79867 testToolDepends = [ tasty-discover ]; 79868 description = "Parser and pretty printer for Egison pattern expressions to use with TH"; 79869 license = stdenv.lib.licenses.bsd3; 79870 + }) {}; 79871 + 79872 + "egison-pattern-src-th-mode_0_2_1_1" = callPackage 79873 + ({ mkDerivation, base, egison-pattern-src, haskell-src-exts 79874 + , haskell-src-meta, mtl, pretty, tasty, tasty-discover, tasty-hunit 79875 + , template-haskell, text 79876 + }: 79877 + mkDerivation { 79878 + pname = "egison-pattern-src-th-mode"; 79879 + version = "0.2.1.1"; 79880 + sha256 = "110rykbxkpv9vrqvwdxm0fa73djy2g5swcxzpx61zh6cl4wk949g"; 79881 + libraryHaskellDepends = [ 79882 + base egison-pattern-src haskell-src-exts haskell-src-meta mtl 79883 + pretty template-haskell text 79884 + ]; 79885 + testHaskellDepends = [ 79886 + base egison-pattern-src haskell-src-exts mtl tasty tasty-hunit 79887 + template-haskell text 79888 + ]; 79889 + testToolDepends = [ tasty-discover ]; 79890 + description = "Parser and pretty printer for Egison pattern expressions to use with TH"; 79891 + license = stdenv.lib.licenses.bsd3; 79892 + hydraPlatforms = stdenv.lib.platforms.none; 79893 }) {}; 79894 79895 "egison-quote" = callPackage ··· 80067 80068 "either-result" = callPackage 80069 ({ mkDerivation, base, doctest, doctest-discover, hspec 80070 + , hspec-discover, mtl, transformers 80071 }: 80072 mkDerivation { 80073 pname = "either-result"; 80074 + version = "0.3.0.0"; 80075 + sha256 = "1cj6g6b90cpfzfsrkja35bs6qfnqnx9fqxwfrkm5985pp0ii546d"; 80076 + libraryHaskellDepends = [ base mtl transformers ]; 80077 + testHaskellDepends = [ base doctest hspec transformers ]; 80078 testToolDepends = [ doctest-discover hspec-discover ]; 80079 + description = "‘MonadFail’ instance for a wrapper of ‘ExceptT String m a’"; 80080 license = stdenv.lib.licenses.asl20; 80081 }) {}; 80082 ··· 81079 }: 81080 mkDerivation { 81081 pname = "elynx"; 81082 + version = "0.3.1"; 81083 + sha256 = "00fm1aixj31djlrmkzvhsk119w00jch6l1alaxmy97gjcg8kk6hd"; 81084 isLibrary = false; 81085 isExecutable = true; 81086 executableHaskellDepends = [ ··· 81093 }) {}; 81094 81095 "elynx-markov" = callPackage 81096 + ({ mkDerivation, async, attoparsec, base, bytestring, containers 81097 + , elynx-seq, elynx-tools, hmatrix, hspec, integration 81098 + , math-functions, mwc-random, parallel, primitive, statistics 81099 + , vector 81100 }: 81101 mkDerivation { 81102 pname = "elynx-markov"; 81103 + version = "0.3.1"; 81104 + sha256 = "05wjnlz5x6j74m9dc524yagwhj8w3vmxp3x55hkbfq89j44fb6n1"; 81105 libraryHaskellDepends = [ 81106 + async attoparsec base bytestring containers elynx-seq hmatrix 81107 + integration math-functions mwc-random parallel primitive statistics 81108 + vector 81109 ]; 81110 testHaskellDepends = [ 81111 + base containers elynx-tools hmatrix hspec mwc-random vector 81112 ]; 81113 description = "Simulate molecular sequences along trees"; 81114 license = stdenv.lib.licenses.gpl3Plus; ··· 81117 }) {}; 81118 81119 "elynx-nexus" = callPackage 81120 + ({ mkDerivation, attoparsec, base, bytestring, hspec }: 81121 mkDerivation { 81122 pname = "elynx-nexus"; 81123 + version = "0.3.1"; 81124 + sha256 = "0rqhzwfr8zz7nzvc7kkp6n2jxvq4qn3pv9ipk7mfdpxsfcm46550"; 81125 + libraryHaskellDepends = [ attoparsec base bytestring ]; 81126 testHaskellDepends = [ base hspec ]; 81127 description = "Import and export Nexus files"; 81128 license = stdenv.lib.licenses.gpl3Plus; ··· 81131 }) {}; 81132 81133 "elynx-seq" = callPackage 81134 + ({ mkDerivation, aeson, attoparsec, base, bytestring, containers 81135 + , elynx-tools, hspec, matrices, mwc-random, parallel, primitive 81136 + , vector, vector-th-unbox, word8 81137 }: 81138 mkDerivation { 81139 pname = "elynx-seq"; 81140 + version = "0.3.1"; 81141 + sha256 = "0wvp13kcx0fbhhk45ahs18p24dqn4n7wg1194hfj4v3qxg7pqy7q"; 81142 libraryHaskellDepends = [ 81143 + aeson attoparsec base bytestring containers matrices mwc-random 81144 + parallel primitive vector vector-th-unbox word8 81145 ]; 81146 testHaskellDepends = [ 81147 + base bytestring elynx-tools hspec matrices vector 81148 ]; 81149 description = "Handle molecular sequences"; 81150 license = stdenv.lib.licenses.gpl3Plus; ··· 81153 }) {}; 81154 81155 "elynx-tools" = callPackage 81156 + ({ mkDerivation, aeson, attoparsec, base, base16-bytestring 81157 + , bytestring, cryptohash-sha256, deepseq, directory, fast-logger 81158 + , hmatrix, monad-control, monad-logger, mwc-random 81159 + , optparse-applicative, primitive, template-haskell, text, time 81160 + , transformers, transformers-base, vector, zlib 81161 }: 81162 mkDerivation { 81163 pname = "elynx-tools"; 81164 + version = "0.3.1"; 81165 + sha256 = "1h7vg6dh45mc5snk4c9q0xplb3q68gklxhj295pa20d83jarki0x"; 81166 libraryHaskellDepends = [ 81167 + aeson attoparsec base base16-bytestring bytestring 81168 + cryptohash-sha256 deepseq directory fast-logger hmatrix 81169 + monad-control monad-logger mwc-random optparse-applicative 81170 + primitive template-haskell text time transformers transformers-base 81171 + vector zlib 81172 ]; 81173 description = "Tools for ELynx"; 81174 license = stdenv.lib.licenses.gpl3Plus; ··· 81177 }) {}; 81178 81179 "elynx-tree" = callPackage 81180 + ({ mkDerivation, aeson, attoparsec, base, bytestring, comonad 81181 + , containers, criterion, deepseq, double-conversion, elynx-nexus 81182 + , elynx-tools, hspec, math-functions, mwc-random, primitive 81183 + , QuickCheck, statistics 81184 }: 81185 mkDerivation { 81186 pname = "elynx-tree"; 81187 + version = "0.3.1"; 81188 + sha256 = "0ppah6lkzg39z80w30wicz88y4jpfj0z38py9y73srwvqy6a45l3"; 81189 libraryHaskellDepends = [ 81190 + aeson attoparsec base bytestring comonad containers deepseq 81191 + double-conversion elynx-nexus math-functions mwc-random primitive 81192 + statistics 81193 ]; 81194 testHaskellDepends = [ 81195 + attoparsec base bytestring containers elynx-tools hspec QuickCheck 81196 ]; 81197 benchmarkHaskellDepends = [ 81198 + base bytestring criterion elynx-tools 81199 ]; 81200 description = "Handle phylogenetic trees"; 81201 license = stdenv.lib.licenses.gpl3Plus; ··· 87981 license = stdenv.lib.licenses.bsd3; 87982 }) {}; 87983 87984 + "fgl_5_7_0_3" = callPackage 87985 + ({ mkDerivation, array, base, containers, deepseq, hspec 87986 + , microbench, QuickCheck, transformers 87987 + }: 87988 + mkDerivation { 87989 + pname = "fgl"; 87990 + version = "5.7.0.3"; 87991 + sha256 = "04k5grp5d381wkc7sxgcl0sd3z3nlm6l6mmh103vhzh6p49vhs99"; 87992 + libraryHaskellDepends = [ 87993 + array base containers deepseq transformers 87994 + ]; 87995 + testHaskellDepends = [ base containers hspec QuickCheck ]; 87996 + benchmarkHaskellDepends = [ base deepseq microbench ]; 87997 + description = "Martin Erwig's Functional Graph Library"; 87998 + license = stdenv.lib.licenses.bsd3; 87999 + hydraPlatforms = stdenv.lib.platforms.none; 88000 + }) {}; 88001 + 88002 "fgl-arbitrary" = callPackage 88003 ({ mkDerivation, base, containers, fgl, hspec, QuickCheck }: 88004 mkDerivation { 88005 pname = "fgl-arbitrary"; 88006 + version = "0.2.0.6"; 88007 + sha256 = "1mykbd1r43gpsn10ys8q3nr0i4wnhn6wq23hcici18mxxji11wkc"; 88008 libraryHaskellDepends = [ base fgl QuickCheck ]; 88009 testHaskellDepends = [ base containers fgl hspec QuickCheck ]; 88010 description = "QuickCheck support for fgl"; ··· 88668 }) {}; 88669 88670 "filtrable" = callPackage 88671 + ({ mkDerivation, base, transformers }: 88672 mkDerivation { 88673 pname = "filtrable"; 88674 + version = "0.1.4.0"; 88675 + sha256 = "11jas9w611pslc3hanybsdwrh4292zvgigng8y4cv7gm0j908xng"; 88676 + libraryHaskellDepends = [ base transformers ]; 88677 description = "Class of filtrable containers"; 88678 license = stdenv.lib.licenses.bsd3; 88679 }) {}; 88680 88681 + "filtrable_0_1_5_0" = callPackage 88682 + ({ mkDerivation, base, smallcheck, tasty, tasty-smallcheck 88683 + , transformers 88684 + }: 88685 mkDerivation { 88686 pname = "filtrable"; 88687 + version = "0.1.5.0"; 88688 + sha256 = "0glarxd5yaflyhy8ni6q0kzrhgwi8msr3q4zf6by80g2qd33kvh8"; 88689 libraryHaskellDepends = [ base transformers ]; 88690 + testHaskellDepends = [ base smallcheck tasty tasty-smallcheck ]; 88691 description = "Class of filtrable containers"; 88692 license = stdenv.lib.licenses.bsd3; 88693 hydraPlatforms = stdenv.lib.platforms.none; ··· 90235 }: 90236 mkDerivation { 90237 pname = "floskell"; 90238 + version = "0.10.4"; 90239 + sha256 = "14cwby2xyv2cviknpji6117jz6zfjrayrfvc75481g229yhcx156"; 90240 isLibrary = true; 90241 isExecutable = true; 90242 enableSeparateDataOutput = true; ··· 90992 license = stdenv.lib.licenses.bsd3; 90993 }) {}; 90994 90995 + "foldl_1_4_8" = callPackage 90996 ({ mkDerivation, base, bytestring, comonad, containers 90997 , contravariant, criterion, doctest, hashable, mwc-random 90998 + , primitive, profunctors, semigroupoids, text, transformers 90999 + , unordered-containers, vector, vector-builder 91000 }: 91001 mkDerivation { 91002 pname = "foldl"; 91003 + version = "1.4.8"; 91004 + sha256 = "1jlrcj9nq8xwlrsny6fzfizai3ilc1zbw38abgf35ryl23r5j6pd"; 91005 + revision = "1"; 91006 + editedCabalFile = "09jz01w3brgd8fwya56qgg0riv9vxzc0r9lkkhkx54nflari2rig"; 91007 libraryHaskellDepends = [ 91008 base bytestring comonad containers contravariant hashable 91009 + mwc-random primitive profunctors semigroupoids text transformers 91010 + unordered-containers vector vector-builder 91011 ]; 91012 testHaskellDepends = [ base doctest ]; 91013 benchmarkHaskellDepends = [ base criterion ]; ··· 91967 pname = "fourmolu"; 91968 version = "0.1.0.0"; 91969 sha256 = "1kc7hhaqn7sghbcfj9xg8r1pvrmhawy9y2rhizfxzm7z034bgjyk"; 91970 + revision = "1"; 91971 + editedCabalFile = "1j6g6rzanjbdqf9svhjx0bbsy504xyc6vcn1ac3vgn4vp367wz0y"; 91972 isLibrary = true; 91973 isExecutable = true; 91974 enableSeparateDataOutput = true; ··· 94048 }) {}; 94049 94050 "functor-combinators" = callPackage 94051 + ({ mkDerivation, assoc, base, bifunctors, comonad, constraints 94052 + , containers, contravariant, dependent-sum, deriving-compat, free 94053 + , hedgehog, invariant, kan-extensions, mmorph, mtl 94054 + , natural-transformation, nonempty-containers, pointed, profunctors 94055 + , semigroupoids, sop-core, tagged, tasty, tasty-hedgehog, these 94056 , transformers, trivial-constraint, vinyl 94057 }: 94058 mkDerivation { 94059 pname = "functor-combinators"; 94060 + version = "0.3.0.0"; 94061 + sha256 = "0bqlmxgq9as0ij11ir2licj3jkq190g56rdrf2g4hsjvk9xjsdkm"; 94062 libraryHaskellDepends = [ 94063 + assoc base bifunctors comonad constraints containers contravariant 94064 + deriving-compat free invariant kan-extensions mmorph mtl 94065 + natural-transformation nonempty-containers pointed profunctors 94066 + semigroupoids sop-core tagged these transformers trivial-constraint 94067 + vinyl 94068 ]; 94069 testHaskellDepends = [ 94070 base bifunctors dependent-sum free hedgehog nonempty-containers 94071 + semigroupoids tasty tasty-hedgehog transformers trivial-constraint 94072 ]; 94073 description = "Tools for functor combinator-based program design"; 94074 license = stdenv.lib.licenses.bsd3; ··· 94495 }: 94496 mkDerivation { 94497 pname = "fused-effects-th"; 94498 + version = "0.1.0.1"; 94499 + sha256 = "0yr9gymqna0q47cv9j17cwgbbjc8sjf7f1lm8fbig5zybb6ycpm9"; 94500 revision = "1"; 94501 + editedCabalFile = "0slildsx3al8gn9s8w1dqq55pwsizjbkwmkm1vl742zk0kivax8c"; 94502 libraryHaskellDepends = [ base fused-effects template-haskell ]; 94503 testHaskellDepends = [ 94504 base fused-effects tasty tasty-hunit template-haskell ··· 96100 benchmarkHaskellDepends = [ base criterion deepseq ]; 96101 description = "Deriving instances with GHC.Generics and related utilities"; 96102 license = stdenv.lib.licenses.mit; 96103 + }) {}; 96104 + 96105 + "generic-data_0_9_0_0" = callPackage 96106 + ({ mkDerivation, ap-normalize, base, base-orphans, Cabal 96107 + , cabal-doctest, contravariant, criterion, deepseq, doctest 96108 + , generic-lens, ghc-boot-th, inspection-testing, one-liner 96109 + , QuickCheck, show-combinators, tasty, tasty-hunit 96110 + , template-haskell, unordered-containers 96111 + }: 96112 + mkDerivation { 96113 + pname = "generic-data"; 96114 + version = "0.9.0.0"; 96115 + sha256 = "1w8qkrl38p2fc38xbhgb973jd0czvm2f3707iqknj7rxf0xhjcfn"; 96116 + setupHaskellDepends = [ base Cabal cabal-doctest ]; 96117 + libraryHaskellDepends = [ 96118 + ap-normalize base base-orphans contravariant ghc-boot-th 96119 + show-combinators 96120 + ]; 96121 + testHaskellDepends = [ 96122 + base doctest generic-lens inspection-testing one-liner QuickCheck 96123 + show-combinators tasty tasty-hunit template-haskell 96124 + unordered-containers 96125 + ]; 96126 + benchmarkHaskellDepends = [ base criterion deepseq ]; 96127 + description = "Deriving instances with GHC.Generics and related utilities"; 96128 + license = stdenv.lib.licenses.mit; 96129 + hydraPlatforms = stdenv.lib.platforms.none; 96130 }) {}; 96131 96132 "generic-data-surgery" = callPackage ··· 101869 license = stdenv.lib.licenses.bsd3; 101870 }) {}; 101871 101872 + "github-rest_1_0_3" = callPackage 101873 + ({ mkDerivation, aeson, aeson-qq, base, bytestring, http-client 101874 + , http-client-tls, http-types, jwt, mtl, scientific, tasty 101875 + , tasty-golden, tasty-hunit, tasty-quickcheck, text, time 101876 + , transformers, unliftio, unliftio-core 101877 + }: 101878 + mkDerivation { 101879 + pname = "github-rest"; 101880 + version = "1.0.3"; 101881 + sha256 = "0alwix2lvrvv6ba7nrxg6qvvrdci1vbv94yvq29zmsab9lbv6jrb"; 101882 + libraryHaskellDepends = [ 101883 + aeson base bytestring http-client http-client-tls http-types jwt 101884 + mtl scientific text time transformers unliftio unliftio-core 101885 + ]; 101886 + testHaskellDepends = [ 101887 + aeson aeson-qq base bytestring http-client http-client-tls 101888 + http-types jwt mtl scientific tasty tasty-golden tasty-hunit 101889 + tasty-quickcheck text time transformers unliftio unliftio-core 101890 + ]; 101891 + description = "Query the GitHub REST API programmatically"; 101892 + license = stdenv.lib.licenses.bsd3; 101893 + hydraPlatforms = stdenv.lib.platforms.none; 101894 + }) {}; 101895 + 101896 "github-tools" = callPackage 101897 ({ mkDerivation, base, bytestring, containers, exceptions, github 101898 , groom, html, http-client, http-client-tls, monad-parallel ··· 107669 license = stdenv.lib.licenses.bsd3; 107670 }) {inherit (pkgs) graphviz;}; 107671 107672 + "graphviz_2999_20_1_0" = callPackage 107673 + ({ mkDerivation, base, bytestring, colour, containers, criterion 107674 + , deepseq, directory, dlist, fgl, fgl-arbitrary, filepath, graphviz 107675 + , hspec, hspec-discover, mtl, polyparse, process, QuickCheck 107676 + , temporary, text, wl-pprint-text 107677 + }: 107678 + mkDerivation { 107679 + pname = "graphviz"; 107680 + version = "2999.20.1.0"; 107681 + sha256 = "0l0zxgb938hh09qirggbaskq79mgj3s081cnr42y5vm1rp1jir2s"; 107682 + isLibrary = true; 107683 + isExecutable = true; 107684 + libraryHaskellDepends = [ 107685 + base bytestring colour containers directory dlist fgl filepath mtl 107686 + polyparse process temporary text wl-pprint-text 107687 + ]; 107688 + testHaskellDepends = [ 107689 + base containers fgl fgl-arbitrary filepath hspec QuickCheck text 107690 + ]; 107691 + testSystemDepends = [ graphviz ]; 107692 + testToolDepends = [ hspec-discover ]; 107693 + benchmarkHaskellDepends = [ base criterion deepseq text ]; 107694 + description = "Bindings to Graphviz for graph visualisation"; 107695 + license = stdenv.lib.licenses.bsd3; 107696 + hydraPlatforms = stdenv.lib.platforms.none; 107697 + }) {inherit (pkgs) graphviz;}; 107698 + 107699 "graql" = callPackage 107700 ({ mkDerivation, aeson, base, containers, hspec, markdown-unlit 107701 , process, regex-posix, scientific, text ··· 112207 }) {}; 112208 112209 "hal" = callPackage 112210 + ({ mkDerivation, aeson, base, bytestring, conduit, conduit-extra 112211 + , containers, envy, exceptions, http-client, http-conduit 112212 + , http-types, mtl, text, time 112213 }: 112214 mkDerivation { 112215 pname = "hal"; 112216 + version = "0.4.4"; 112217 + sha256 = "0nqxlvbk8lb9c6hh15gn8nd9h2p0rcrllkqjli0ixqil3qpynl76"; 112218 libraryHaskellDepends = [ 112219 + aeson base bytestring conduit conduit-extra containers envy 112220 + exceptions http-client http-conduit http-types mtl text time 112221 ]; 112222 description = "A runtime environment for Haskell applications running on AWS Lambda"; 112223 license = stdenv.lib.licenses.bsd3; ··· 113776 }: 113777 mkDerivation { 113778 pname = "happy-meta"; 113779 + version = "0.2.0.11"; 113780 + sha256 = "1vgv5fx1fya7wfh3zwdgy0hm0lyzp171gnpp6ymfd6kqmqkl3293"; 113781 libraryHaskellDepends = [ 113782 array base containers fail haskell-src-meta mtl template-haskell 113783 ]; ··· 113957 }: 113958 mkDerivation { 113959 pname = "harg"; 113960 + version = "0.4.2.1"; 113961 + sha256 = "0fbbf9zxfbyc6mnsybrd81sd87ps6qwks5zv5kmjygc6w8ngh6vh"; 113962 libraryHaskellDepends = [ 113963 aeson barbies base bytestring directory higgledy 113964 optparse-applicative split text yaml ··· 114227 114228 "hascard" = callPackage 114229 ({ mkDerivation, base, brick, containers, directory, filepath 114230 + , megaparsec, microlens, microlens-platform, mwc-random 114231 + , optparse-applicative, ordered-containers, process, random-fu 114232 + , strict, text, vector, vty, word-wrap 114233 }: 114234 mkDerivation { 114235 pname = "hascard"; 114236 + version = "0.2.1.0"; 114237 + sha256 = "13f7vmdrd3ibr78pjy7144qj0qa8s07k4j341fzw8w8af83m9wvc"; 114238 isLibrary = true; 114239 isExecutable = true; 114240 libraryHaskellDepends = [ 114241 + base brick containers directory filepath megaparsec microlens 114242 microlens-platform mwc-random optparse-applicative 114243 + ordered-containers process random-fu strict text vector vty 114244 word-wrap 114245 ]; 114246 executableHaskellDepends = [ 114247 + base brick containers directory filepath megaparsec microlens 114248 microlens-platform mwc-random optparse-applicative 114249 + ordered-containers process random-fu strict text vector vty 114250 word-wrap 114251 ]; 114252 testHaskellDepends = [ 114253 + base brick containers directory filepath megaparsec microlens 114254 microlens-platform mwc-random optparse-applicative 114255 + ordered-containers process random-fu strict text vector vty 114256 word-wrap 114257 ]; 114258 description = "A TUI for reviewing notes using 'flashcards' written with markdown-like syntax"; ··· 117968 }: 117969 mkDerivation { 117970 pname = "haskoin-store"; 117971 + version = "0.37.5"; 117972 + sha256 = "0ac1znif59fzcxcl3nmvrv6v49rzlcgsv138zgjnk7zxarp8alyg"; 117973 isLibrary = true; 117974 isExecutable = true; 117975 libraryHaskellDepends = [ ··· 118010 }: 118011 mkDerivation { 118012 pname = "haskoin-store-data"; 118013 + version = "0.37.5"; 118014 + sha256 = "1p8hsnwr0h0sbnwg1kwbal36q4bh3s0daz1a5n2c8xal5xdkbdra"; 118015 libraryHaskellDepends = [ 118016 aeson base bytestring cereal containers data-default deepseq 118017 hashable haskoin-core http-client http-types lens mtl network ··· 121444 }: 121445 mkDerivation { 121446 pname = "hedgehog-classes"; 121447 + version = "0.2.5.1"; 121448 + sha256 = "0gyq9dr25sz14yw5x8jlb73l2hzv92r1c6cfan7lygq7z0yaiw6b"; 121449 libraryHaskellDepends = [ 121450 aeson base binary comonad containers hedgehog pretty-show primitive 121451 semirings silently transformers vector wl-pprint-annotated ··· 123227 ({ mkDerivation, base }: 123228 mkDerivation { 123229 pname = "hextra"; 123230 + version = "1.0.0.0"; 123231 + sha256 = "17ik20q07if3gvfsifm00k8z6iffcjwmy19n5xyzzc4bd17qffzb"; 123232 libraryHaskellDepends = [ base ]; 123233 description = "Generic and niche utility functions and more for Haskell"; 123234 license = stdenv.lib.licenses.mpl20; ··· 123920 }: 123921 mkDerivation { 123922 pname = "hgrev"; 123923 + version = "0.2.6"; 123924 + sha256 = "1v1niqvqj6w8nkr3pmjwj7va2f2nv8miwsfqsp3lj3b2i9x6asb2"; 123925 libraryHaskellDepends = [ 123926 aeson base bytestring directory filepath process template-haskell 123927 ]; ··· 125826 }) {}; 125827 125828 "hkgr" = callPackage 125829 ({ mkDerivation, base, directory, extra, filepath, simple-cabal 125830 , simple-cmd, simple-cmd-args, xdg-basedir 125831 }: ··· 125842 ]; 125843 description = "Simple Hackage release workflow for package maintainers"; 125844 license = stdenv.lib.licenses.gpl3; 125845 }) {}; 125846 125847 "hkt" = callPackage ··· 130640 license = stdenv.lib.licenses.bsd3; 130641 }) {}; 130642 130643 + "hs-functors_0_1_7_1" = callPackage 130644 + ({ mkDerivation, base, dual, tagged, transformers }: 130645 + mkDerivation { 130646 + directory filepath hashable lazy-hash microlens microlens-th 130647 + version = "0.1.7.1"; 130648 + sha256 = "1cigaggilr05pgizj11g5c40ln38zb5q8p0igliamkhx7fz3axis"; 130649 + libraryHaskellDepends = [ base dual tagged transformers ]; 130650 + directory filepath hashable lazy-hash microlens microlens-th 130651 + license = stdenv.lib.licenses.bsd3; 130652 + hydraPlatforms = stdenv.lib.platforms.none; 130653 + }) {}; 130654 + 130655 directory filepath hashable lazy-hash microlens microlens-th 130656 ({ mkDerivation, base, mtl }: 130657 mkDerivation { ··· 130717 130718 directory filepath hashable lazy-hash microlens microlens-th 130719 directory filepath hashable lazy-hash microlens microlens-th 130720 mkDerivation { 130721 directory filepath hashable lazy-hash microlens microlens-th 130722 + version = "0.2.0.0"; 130723 + sha256 = "04dm8c5ilaw4agljfp7k31ln2j5m1shyg4zb3x36rjkbs807z8sf"; 130724 + libraryHaskellDepends = [ base hs-functors ]; 130725 + description = "Indexed applicative functors and monads"; 130726 license = stdenv.lib.licenses.bsd3; 130727 }) {}; 130728 ··· 133684 license = stdenv.lib.licenses.mit; 133685 }) {}; 133686 133687 + "hspec-golden_0_1_0_3" = callPackage 133688 + directory filepath hashable lazy-hash microlens microlens-th 133689 + directory filepath hashable lazy-hash microlens microlens-th 133690 + }: 133691 + mkDerivation { 133692 + directory filepath hashable lazy-hash microlens microlens-th 133693 + version = "0.1.0.3"; 133694 + sha256 = "1d5ab34n0f1wk1q86qlb7x2b49abzzh08jh7j52nbrvnxld2j64l"; 133695 + isLibrary = true; 133696 + isExecutable = true; 133697 + directory filepath hashable lazy-hash microlens microlens-th 133698 + directory filepath hashable lazy-hash microlens microlens-th 133699 + directory filepath hashable lazy-hash microlens microlens-th 133700 + directory filepath hashable lazy-hash microlens microlens-th 133701 + license = stdenv.lib.licenses.mit; 133702 + hydraPlatforms = stdenv.lib.platforms.none; 133703 + }) {}; 133704 + 133705 directory filepath hashable lazy-hash microlens microlens-th 133706 ({ mkDerivation, aeson, aeson-pretty, base, bytestring, directory 133707 directory filepath hashable lazy-hash microlens microlens-th ··· 134691 }: 134692 mkDerivation { 134693 directory filepath hashable lazy-hash microlens microlens-th 134694 + version = "0.3.1"; 134695 + sha256 = "0pcx1s15ijdj5kxqbwcqf5qvpa8wxac9ph5013cmg1k1yflnqrzh"; 134696 libraryHaskellDepends = [ 134697 directory filepath hashable lazy-hash microlens microlens-th 134698 ]; ··· 136728 }: 136729 mkDerivation { 136730 pname = "http-streams"; 136731 version = "0.8.7.2"; 136732 sha256 = "1q0lp8hkzfc0srci9y794q5cqkih50r3iw2c32wbx8h502jcvv1q"; 136733 libraryHaskellDepends = [ ··· 136746 ]; 136747 description = "An HTTP client using io-streams"; 136748 license = stdenv.lib.licenses.bsd3; 136749 }) {}; 136750 136751 "http-test" = callPackage ··· 139838 pname = "hyper"; 139839 version = "0.1.0.3"; 139840 sha256 = "0bc2mvxaggdyikdx51qc1li8idmnlw3ha2n3qli6jf1zz8mlqx0s"; 139841 + revision = "1"; 139842 + editedCabalFile = "1qfavgvdlmsip57grhxs0mawh82nxrq4m0mv9z3vam1b9j6nw2cc"; 139843 libraryHaskellDepends = [ base blaze-html deepseq text ]; 139844 description = "Display class for the HyperHaskell graphical Haskell interpreter"; 139845 license = stdenv.lib.licenses.bsd3; ··· 140440 ({ mkDerivation, base, ghc-prim, transformers }: 140441 mkDerivation { 140442 pname = "icfpc2020-galaxy"; 140443 + version = "0.2.0.0"; 140444 + sha256 = "17m8vp3kikpscagb40972r9a8i6ng8wjc697zdslj5zl95rpyrvd"; 140445 libraryHaskellDepends = [ base ghc-prim transformers ]; 140446 description = "A strange message received at the Pegovka observatory"; 140447 license = stdenv.lib.licenses.mit; ··· 149082 broken = true; 149083 }) {}; 149084 149085 + "jsop" = callPackage 149086 + ({ mkDerivation, aeson, base, containers, generics-sop, lens 149087 + , lens-aeson, monoidal-containers, protolude, string-interpolate 149088 + , tasty, tasty-discover, tasty-hspec, text 149089 + }: 149090 + mkDerivation { 149091 + pname = "jsop"; 149092 + version = "0.1.0.0"; 149093 + sha256 = "0yaxcpxgn00jf3igvncg59ca6hz28sf791872n617v3vh7arv8y3"; 149094 + libraryHaskellDepends = [ 149095 + aeson base containers generics-sop lens lens-aeson 149096 + monoidal-containers protolude string-interpolate tasty 149097 + tasty-discover tasty-hspec text 149098 + ]; 149099 + testHaskellDepends = [ 149100 + aeson base containers generics-sop lens lens-aeson 149101 + monoidal-containers protolude string-interpolate tasty 149102 + tasty-discover tasty-hspec text 149103 + ]; 149104 + testToolDepends = [ tasty-discover ]; 149105 + description = "Cherry picking in JSON objects"; 149106 + license = stdenv.lib.licenses.bsd3; 149107 + }) {}; 149108 + 149109 "jspath" = callPackage 149110 ({ mkDerivation, base, bytestring, bytestring-trie, JSONb 149111 , utf8-string ··· 151468 }: 151469 mkDerivation { 151470 pname = "knit"; 151471 + version = "0.2.0.0"; 151472 + sha256 = "0a1swv5w9fxissxqr2x61qijqyhdxs71fv21fjz4r0kcqywnvy6x"; 151473 libraryHaskellDepends = [ 151474 base bytestring containers deepseq hashtables vector 151475 ]; ··· 153405 }: 153406 mkDerivation { 153407 pname = "language-dickinson"; 153408 + version = "1.1.0.2"; 153409 + sha256 = "1g2d32535vmgjiy1ld4hq8g5il98c3h6ykfdl34fq8329qf9gxxr"; 153410 isLibrary = true; 153411 isExecutable = true; 153412 enableSeparateDataOutput = true; ··· 162441 license = stdenv.lib.licenses.bsd3; 162442 }) {}; 162443 162444 + "lsp-test_0_11_0_4" = callPackage 162445 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, async, base 162446 , bytestring, conduit, conduit-parse, containers, data-default 162447 , Diff, directory, filepath, Glob, haskell-lsp, hspec, lens, mtl ··· 162450 }: 162451 mkDerivation { 162452 pname = "lsp-test"; 162453 + version = "0.11.0.4"; 162454 + sha256 = "0nf0ys44q2n81arg7ll08dkilq8giz0gxarld2lpq5fyhhfvyv7g"; 162455 isLibrary = true; 162456 isExecutable = true; 162457 libraryHaskellDepends = [ ··· 162710 ({ mkDerivation, base, lucid }: 162711 mkDerivation { 162712 pname = "lucid-cdn"; 162713 + version = "0.1.1.1"; 162714 + sha256 = "1dl44rc5b3wrgfcllp6h1sw4w18jgglh1grh5w9g37rcxi2cxwll"; 162715 libraryHaskellDepends = [ base lucid ]; 162716 description = "Curated list of CDN imports for lucid"; 162717 license = stdenv.lib.licenses.mit; ··· 166051 broken = true; 166052 }) {}; 166053 166054 + "matrix-as-xyz_0_1_2_1" = callPackage 166055 + ({ mkDerivation, base, doctest, hspec, matrix, parsec, QuickCheck 166056 + }: 166057 + mkDerivation { 166058 + pname = "matrix-as-xyz"; 166059 + version = "0.1.2.1"; 166060 + sha256 = "0k49k16mxp7izkanan0yrrlkzvblw1w7bvfrh486fys83gvkb3x8"; 166061 + libraryHaskellDepends = [ base doctest hspec matrix parsec ]; 166062 + testHaskellDepends = [ 166063 + base doctest hspec matrix parsec QuickCheck 166064 + ]; 166065 + description = "Read and Display Jones-Faithful notation for spacegroup and planegroup"; 166066 + license = stdenv.lib.licenses.bsd3; 166067 + hydraPlatforms = stdenv.lib.platforms.none; 166068 + broken = true; 166069 + }) {}; 166070 + 166071 "matrix-lens" = callPackage 166072 ({ mkDerivation, base, hedgehog, lens, matrix, tasty 166073 , tasty-discover, tasty-hedgehog, tasty-hspec, vector ··· 166599 166600 "mcmc" = callPackage 166601 ({ mkDerivation, aeson, base, bytestring, containers, criterion 166602 + , data-default, directory, double-conversion, hspec, hspec-discover 166603 + , log-domain, microlens, mwc-random, QuickCheck, statistics, time 166604 , transformers, vector, zlib 166605 }: 166606 mkDerivation { 166607 pname = "mcmc"; 166608 + version = "0.2.1"; 166609 + sha256 = "1jh88xqi485ha3bqrp012xsv7cljwsaxxc45l5npcr947g22ln11"; 166610 libraryHaskellDepends = [ 166611 + aeson base bytestring containers data-default directory 166612 + double-conversion log-domain microlens mwc-random statistics time 166613 + transformers vector zlib 166614 ]; 166615 testHaskellDepends = [ 166616 base directory hspec hspec-discover log-domain mwc-random ··· 166618 ]; 166619 testToolDepends = [ hspec-discover ]; 166620 benchmarkHaskellDepends = [ 166621 + base criterion log-domain microlens mwc-random statistics vector 166622 ]; 166623 description = "Sample from a posterior using Markov chain Monte Carlo"; 166624 license = stdenv.lib.licenses.gpl3Plus; ··· 166778 broken = true; 166779 }) {}; 166780 166781 + "mealy" = callPackage 166782 + ({ mkDerivation, adjunctions, backprop, base, containers, doctest 166783 + , folds, generic-lens, hmatrix, lens, mwc-probability, mwc-random 166784 + , numhask, numhask-array, primitive, profunctors, tdigest, text 166785 + , vector, vector-algorithms 166786 + }: 166787 + mkDerivation { 166788 + pname = "mealy"; 166789 + version = "0.0.1"; 166790 + sha256 = "0z7hf1blzhgrjmrf7s2dpgmg73157j476g17i7m52zgfgq4vmym9"; 166791 + libraryHaskellDepends = [ 166792 + adjunctions backprop base containers folds generic-lens hmatrix 166793 + lens mwc-probability mwc-random numhask numhask-array primitive 166794 + profunctors tdigest text vector vector-algorithms 166795 + ]; 166796 + testHaskellDepends = [ base doctest numhask ]; 166797 + description = "See readme.md"; 166798 + license = stdenv.lib.licenses.bsd3; 166799 + hydraPlatforms = stdenv.lib.platforms.none; 166800 + broken = true; 166801 + }) {}; 166802 + 166803 "means" = callPackage 166804 ({ mkDerivation, base, semigroups }: 166805 mkDerivation { ··· 166906 ]; 166907 description = "A schema language for JSON"; 166908 license = stdenv.lib.licenses.mit; 166909 + }) {}; 166910 + 166911 + "medea_1_2_0" = callPackage 166912 + ({ mkDerivation, aeson, algebraic-graphs, base, bytestring 166913 + , containers, deepseq, directory, filepath, free, hashable, hspec 166914 + , hspec-core, megaparsec, microlens-ghc, mtl, nonempty-containers 166915 + , parser-combinators, QuickCheck, quickcheck-instances, scientific 166916 + , smash, text, unordered-containers, vector, vector-instances 166917 + }: 166918 + mkDerivation { 166919 + pname = "medea"; 166920 + version = "1.2.0"; 166921 + sha256 = "019jfz29gz3d06b5yi7fygqa79lp6c6vbzxcb5ka7d8w0zv7w60v"; 166922 + libraryHaskellDepends = [ 166923 + aeson algebraic-graphs base bytestring containers deepseq free 166924 + hashable megaparsec microlens-ghc mtl nonempty-containers 166925 + parser-combinators scientific smash text unordered-containers 166926 + vector vector-instances 166927 + ]; 166928 + testHaskellDepends = [ 166929 + aeson base bytestring directory filepath hspec hspec-core mtl 166930 + QuickCheck quickcheck-instances text unordered-containers vector 166931 + ]; 166932 + description = "A schema language for JSON"; 166933 + license = stdenv.lib.licenses.mit; 166934 + hydraPlatforms = stdenv.lib.platforms.none; 166935 }) {}; 166936 166937 "mediabus" = callPackage ··· 170084 license = stdenv.lib.licenses.bsd3; 170085 }) {}; 170086 170087 + "mixed-types-num_0_4_0_2" = callPackage 170088 + ({ mkDerivation, base, hspec, hspec-smallcheck, mtl, QuickCheck 170089 + , smallcheck, template-haskell 170090 + }: 170091 + mkDerivation { 170092 + pname = "mixed-types-num"; 170093 + version = "0.4.0.2"; 170094 + sha256 = "0kirxpnmwwnbxamwpzrxyx69n482xhifqpr5id73pfni7lrd126p"; 170095 + libraryHaskellDepends = [ 170096 + base hspec hspec-smallcheck mtl QuickCheck smallcheck 170097 + template-haskell 170098 + ]; 170099 + testHaskellDepends = [ base hspec hspec-smallcheck QuickCheck ]; 170100 + description = "Alternative Prelude with numeric and logic expressions typed bottom-up"; 170101 + license = stdenv.lib.licenses.bsd3; 170102 + hydraPlatforms = stdenv.lib.platforms.none; 170103 + }) {}; 170104 + 170105 "mixpanel-client" = callPackage 170106 ({ mkDerivation, aeson, base, base64-bytestring, bytestring, hspec 170107 , hspec-discover, http-client, http-client-tls, markdown-unlit ··· 170559 license = stdenv.lib.licenses.bsd3; 170560 hydraPlatforms = stdenv.lib.platforms.none; 170561 broken = true; 170562 + }) {}; 170563 + 170564 + "mock-httpd" = callPackage 170565 + ({ mkDerivation, aeson, async, base, bytestring, case-insensitive 170566 + , filepath, http-types, relude, text, wai, warp, yaml 170567 + }: 170568 + mkDerivation { 170569 + pname = "mock-httpd"; 170570 + version = "0.0.0.0"; 170571 + sha256 = "0mv669gvn61by4j7sd4w2hvzr3vpa0szrhgzdciv5g1a0gsh3kk7"; 170572 + isLibrary = false; 170573 + isExecutable = true; 170574 + executableHaskellDepends = [ 170575 + aeson async base bytestring case-insensitive filepath http-types 170576 + relude text wai warp yaml 170577 + ]; 170578 + description = "A HTTP server for testing HTTP clients"; 170579 + license = stdenv.lib.licenses.bsd2; 170580 }) {}; 170581 170582 "mockazo" = callPackage ··· 176433 }: 176434 mkDerivation { 176435 pname = "mwc-probability"; 176436 + version = "2.3.1"; 176437 + sha256 = "15gpvx1rhr24zvj6pfgyy9g2vnhgym5crmz4py3nly2jcmy9k39z"; 176438 libraryHaskellDepends = [ 176439 base containers mwc-random primitive transformers 176440 ]; ··· 179143 license = stdenv.lib.licenses.bsd3; 179144 }) {}; 179145 179146 + "network_3_1_2_0" = callPackage 179147 + ({ mkDerivation, base, bytestring, deepseq, directory, hspec 179148 + , hspec-discover, HUnit, QuickCheck, temporary 179149 + }: 179150 + mkDerivation { 179151 + pname = "network"; 179152 + version = "3.1.2.0"; 179153 + sha256 = "07zbaaa4f0rnc4xqg5kbzqivmr9lqz2g6bw01gmqkmh9k9svsap0"; 179154 + libraryHaskellDepends = [ base bytestring deepseq directory ]; 179155 + testHaskellDepends = [ 179156 + base bytestring directory hspec HUnit QuickCheck temporary 179157 + ]; 179158 + testToolDepends = [ hspec-discover ]; 179159 + description = "Low-level networking interface"; 179160 + license = stdenv.lib.licenses.bsd3; 179161 + hydraPlatforms = stdenv.lib.platforms.none; 179162 + }) {}; 179163 + 179164 "network-address" = callPackage 179165 ({ mkDerivation, base, Cabal, QuickCheck, test-framework 179166 , test-framework-quickcheck2 ··· 180792 }: 180793 mkDerivation { 180794 pname = "ngx-export-tools-extra"; 180795 + version = "0.5.5.0"; 180796 + sha256 = "1w7vm0sic1v4zy10m8rkzrgbkvn3wnb4320gkl2dclsfdk70d5b3"; 180797 libraryHaskellDepends = [ 180798 aeson ansi-wl-pprint array base base64 binary bytestring 180799 case-insensitive containers ede enclosed-exceptions http-client ··· 181957 license = stdenv.lib.licenses.bsd3; 181958 }) {}; 181959 181960 + "nonempty-containers_0_3_4_0" = callPackage 181961 + ({ mkDerivation, aeson, base, comonad, containers, deepseq 181962 + , hedgehog, hedgehog-fn, nonempty-vector, semigroupoids, tasty 181963 + , tasty-hedgehog, text, these, vector 181964 + }: 181965 + mkDerivation { 181966 + pname = "nonempty-containers"; 181967 + version = "0.3.4.0"; 181968 + sha256 = "1np8gypq49j90clavh17wzxp9y6z23lngal815jsg4p35qc0h01l"; 181969 + libraryHaskellDepends = [ 181970 + aeson base comonad containers deepseq nonempty-vector semigroupoids 181971 + these vector 181972 + ]; 181973 + testHaskellDepends = [ 181974 + base comonad containers hedgehog hedgehog-fn nonempty-vector 181975 + semigroupoids tasty tasty-hedgehog text these vector 181976 + ]; 181977 + description = "Non-empty variants of containers data types, with full API"; 181978 + license = stdenv.lib.licenses.bsd3; 181979 + hydraPlatforms = stdenv.lib.platforms.none; 181980 + }) {}; 181981 + 181982 "nonempty-lift" = callPackage 181983 ({ mkDerivation, base, comonad, hedgehog, hedgehog-classes 181984 , semigroupoids ··· 183086 183087 "numhask-space" = callPackage 183088 ({ mkDerivation, adjunctions, base, containers, distributive 183089 + , doctest, numhask, semigroupoids, tdigest, text, time 183090 }: 183091 mkDerivation { 183092 pname = "numhask-space"; 183093 + version = "0.6.0"; 183094 + sha256 = "0zm64spljv7pvl68b60y7hr46fa82i44j7yk8q6i33nhr78qv7wy"; 183095 libraryHaskellDepends = [ 183096 + adjunctions base containers distributive numhask semigroupoids 183097 + tdigest text time 183098 ]; 183099 + testHaskellDepends = [ base doctest numhask ]; 183100 description = "numerical spaces"; 183101 license = stdenv.lib.licenses.bsd3; 183102 hydraPlatforms = stdenv.lib.platforms.none; ··· 184695 license = stdenv.lib.licenses.bsd3; 184696 }) {}; 184697 184698 + "opaleye_0_6_7005_0" = callPackage 184699 + ({ mkDerivation, aeson, base, base16-bytestring, bytestring 184700 + , case-insensitive, containers, contravariant, dotenv, hspec 184701 + , hspec-discover, multiset, postgresql-simple, pretty 184702 + , product-profunctors, profunctors, QuickCheck, scientific 184703 + , semigroups, text, time, time-locale-compat, transformers, uuid 184704 + , void 184705 + }: 184706 + mkDerivation { 184707 + pname = "opaleye"; 184708 + version = "0.6.7005.0"; 184709 + sha256 = "0i5lwfvj7382ayxzdbip1nwjiiy7jn58g7qa33s44x3pnjv3wssy"; 184710 + revision = "1"; 184711 + editedCabalFile = "0bby89fvbx89b882b2qx07lg8npnfa325qg0gyabrd950510vzr2"; 184712 + libraryHaskellDepends = [ 184713 + aeson base base16-bytestring bytestring case-insensitive 184714 + contravariant postgresql-simple pretty product-profunctors 184715 + profunctors scientific semigroups text time time-locale-compat 184716 + transformers uuid void 184717 + ]; 184718 + testHaskellDepends = [ 184719 + aeson base bytestring containers contravariant dotenv hspec 184720 + hspec-discover multiset postgresql-simple product-profunctors 184721 + profunctors QuickCheck semigroups text time transformers uuid 184722 + ]; 184723 + testToolDepends = [ hspec-discover ]; 184724 + description = "An SQL-generating DSL targeting PostgreSQL"; 184725 + license = stdenv.lib.licenses.bsd3; 184726 + hydraPlatforms = stdenv.lib.platforms.none; 184727 + }) {}; 184728 + 184729 "opaleye-classy" = callPackage 184730 ({ mkDerivation, base, bytestring, lens, mtl, opaleye 184731 , postgresql-simple, product-profunctors, transformers ··· 186078 }: 186079 mkDerivation { 186080 pname = "opml-conduit"; 186081 + version = "0.9.0.0"; 186082 + sha256 = "012cnq24dhsiz6dfm23i1kac2pya50x2gj42cvcdhr8navz7czcb"; 186083 enableSeparateDataOutput = true; 186084 libraryHaskellDepends = [ 186085 base case-insensitive conduit conduit-combinators containers ··· 186190 license = stdenv.lib.licenses.bsd3; 186191 }) {}; 186192 186193 + "optics-core_0_3_0_1" = callPackage 186194 ({ mkDerivation, array, base, containers, indexed-profunctors 186195 , transformers 186196 }: 186197 mkDerivation { 186198 pname = "optics-core"; 186199 + version = "0.3.0.1"; 186200 + sha256 = "01z1rjrmj3jqh3fygqa1asr4azhdnqpix27sdw3ygi5dnbcmn49h"; 186201 libraryHaskellDepends = [ 186202 array base containers indexed-profunctors transformers 186203 ]; ··· 186258 license = stdenv.lib.licenses.bsd3; 186259 }) {}; 186260 186261 + "optics-th_0_3_0_1" = callPackage 186262 ({ mkDerivation, base, containers, mtl, optics-core, tagged 186263 , template-haskell, th-abstraction, transformers 186264 }: 186265 mkDerivation { 186266 pname = "optics-th"; 186267 + version = "0.3.0.1"; 186268 + sha256 = "1bn9yhl1v4xkagasgiq4v572v4vvbk40wwlx9wjdw0gqcisy4b3j"; 186269 libraryHaskellDepends = [ 186270 base containers mtl optics-core template-haskell th-abstraction 186271 transformers ··· 186516 ({ mkDerivation, base, mtl }: 186517 mkDerivation { 186518 pname = "optparse-declarative"; 186519 + version = "0.3.1"; 186520 + sha256 = "1s3bkkn5a8bgkbqdsf5ir18r0j0r2r0agz04q2ccafd26d8xdx2s"; 186521 libraryHaskellDepends = [ base mtl ]; 186522 description = "Declarative command line option parser"; 186523 license = stdenv.lib.licenses.mit; ··· 188180 pname = "pandoc-citeproc"; 188181 version = "0.17.0.1"; 188182 sha256 = "0hi31h4jxamnyw0jsbwnbzy9gkp3a03mhsgwy9w73hi13lywxrgk"; 188183 + revision = "1"; 188184 + editedCabalFile = "0z1gnaagylsjx8f1i49bp4zhcx2hlkc3w9wkwzsvvjq0qcfgzis0"; 188185 isLibrary = true; 188186 isExecutable = true; 188187 enableSeparateDataOutput = true; ··· 188205 license = stdenv.lib.licenses.bsd3; 188206 }) {}; 188207 188208 + "pandoc-citeproc_0_17_0_2" = callPackage 188209 + ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring 188210 + , Cabal, containers, data-default, directory, filepath, hs-bibutils 188211 + , HsYAML, HsYAML-aeson, libyaml, mtl, network, old-locale, pandoc 188212 + , pandoc-types, parsec, process, rfc5051, safe, setenv, split, syb 188213 + , tagsoup, temporary, text, time, unordered-containers, vector 188214 + , xml-conduit, yaml 188215 + }: 188216 + mkDerivation { 188217 + pname = "pandoc-citeproc"; 188218 + version = "0.17.0.2"; 188219 + sha256 = "1wp16zz740klyn5jr8qxn21zf1waym3pzzv5l6k08w2l6z54d20b"; 188220 + isLibrary = true; 188221 + isExecutable = true; 188222 + enableSeparateDataOutput = true; 188223 + setupHaskellDepends = [ base Cabal ]; 188224 + libraryHaskellDepends = [ 188225 + aeson base bytestring containers data-default directory filepath 188226 + hs-bibutils HsYAML HsYAML-aeson mtl network old-locale pandoc 188227 + pandoc-types parsec rfc5051 setenv split syb tagsoup text time 188228 + unordered-containers vector xml-conduit yaml 188229 + ]; 188230 + executableHaskellDepends = [ 188231 + aeson aeson-pretty attoparsec base bytestring filepath libyaml 188232 + pandoc pandoc-types safe syb text yaml 188233 + ]; 188234 + testHaskellDepends = [ 188235 + aeson base bytestring containers directory filepath mtl pandoc 188236 + pandoc-types process temporary text yaml 188237 + ]; 188238 + doCheck = false; 188239 + description = "Supports using pandoc with citeproc"; 188240 + license = stdenv.lib.licenses.bsd3; 188241 + hydraPlatforms = stdenv.lib.platforms.none; 188242 + }) {}; 188243 + 188244 "pandoc-citeproc-preamble" = callPackage 188245 ({ mkDerivation, base, directory, filepath, pandoc-types, process 188246 , text-conversions ··· 188570 broken = true; 188571 }) {}; 188572 188573 + "pandoc-plot_0_9_0_0" = callPackage 188574 ({ mkDerivation, base, bytestring, containers, criterion 188575 , data-default, directory, filepath, githash, hashable, hspec 188576 , hspec-expectations, lifted-async, mtl, optparse-applicative ··· 188579 }: 188580 mkDerivation { 188581 pname = "pandoc-plot"; 188582 + version = "0.9.0.0"; 188583 + sha256 = "0wamycf3cbblcifs7sppnzg4vbglzgizmjb5idg0dgkhlrk78gcx"; 188584 isLibrary = true; 188585 isExecutable = true; 188586 libraryHaskellDepends = [ ··· 193903 broken = true; 193904 }) {}; 193905 193906 + "pgf2" = callPackage 193907 + ({ mkDerivation, base, containers, gu, pgf, pretty }: 193908 + mkDerivation { 193909 + pname = "pgf2"; 193910 + version = "1.2.0"; 193911 + sha256 = "1lw9wdsvlasd5x323dficcmzqf48yz49wd3v64gsyx60sw93vn0y"; 193912 + libraryHaskellDepends = [ base containers pretty ]; 193913 + librarySystemDepends = [ gu pgf ]; 193914 + description = "Bindings to the C version of the PGF runtime"; 193915 + license = stdenv.lib.licenses.lgpl3; 193916 + }) {gu = null; inherit (pkgs) pgf;}; 193917 + 193918 "pgm" = callPackage 193919 ({ mkDerivation, array, base, bytestring, parsec }: 193920 mkDerivation { ··· 194951 ]; 194952 description = "Compositional pipelines"; 194953 license = stdenv.lib.licenses.bsd3; 194954 + }) {}; 194955 + 194956 + "pipes_4_3_14" = callPackage 194957 + ({ mkDerivation, base, criterion, exceptions, mmorph, mtl 194958 + , optparse-applicative, QuickCheck, test-framework 194959 + , test-framework-quickcheck2, transformers, void 194960 + }: 194961 + mkDerivation { 194962 + pname = "pipes"; 194963 + version = "4.3.14"; 194964 + sha256 = "11r8cqy98w1y0avgn53x1fzqxpdfg7wvwwkfppnk9yip0lkcp3yv"; 194965 + libraryHaskellDepends = [ 194966 + base exceptions mmorph mtl transformers void 194967 + ]; 194968 + testHaskellDepends = [ 194969 + base mtl QuickCheck test-framework test-framework-quickcheck2 194970 + transformers 194971 + ]; 194972 + benchmarkHaskellDepends = [ 194973 + base criterion mtl optparse-applicative transformers 194974 + ]; 194975 + description = "Compositional pipelines"; 194976 + license = stdenv.lib.licenses.bsd3; 194977 + hydraPlatforms = stdenv.lib.platforms.none; 194978 }) {}; 194979 194980 "pipes-aeson" = callPackage ··· 199554 license = stdenv.lib.licenses.mit; 199555 }) {}; 199556 199557 + "postgresql-tx" = callPackage 199558 + ({ mkDerivation, base, transformers }: 199559 + mkDerivation { 199560 + pname = "postgresql-tx"; 199561 + version = "0.1.0.0"; 199562 + sha256 = "1jvrdyllmgd0v9w2wxqr1g70f6gza1wyb13j38ww2r2nvqzhp330"; 199563 + libraryHaskellDepends = [ base transformers ]; 199564 + description = "A safe transaction monad for use with various PostgreSQL Haskell libraries"; 199565 + license = stdenv.lib.licenses.bsd3; 199566 + }) {}; 199567 + 199568 + "postgresql-tx-monad-logger" = callPackage 199569 + ({ mkDerivation, base, monad-logger, postgresql-tx }: 199570 + mkDerivation { 199571 + pname = "postgresql-tx-monad-logger"; 199572 + version = "0.1.0.0"; 199573 + sha256 = "0y1x2d2r61ayhln0l2c5i3ivv97zpwyiaw1hymghpv4vwnlihv1y"; 199574 + libraryHaskellDepends = [ base monad-logger postgresql-tx ]; 199575 + description = "postgresql-tx interfacing for use with monad-logger"; 199576 + license = stdenv.lib.licenses.bsd3; 199577 + }) {}; 199578 + 199579 + "postgresql-tx-query" = callPackage 199580 + ({ mkDerivation, base, monad-logger, mtl, postgresql-query 199581 + , postgresql-simple, postgresql-tx, postgresql-tx-monad-logger 199582 + , transformers 199583 + }: 199584 + mkDerivation { 199585 + pname = "postgresql-tx-query"; 199586 + version = "0.1.0.0"; 199587 + sha256 = "0a7khw9ncc8k5cpi63kw598hvg3ycm1lchz46aw06pndcdzr54sv"; 199588 + libraryHaskellDepends = [ 199589 + base monad-logger mtl postgresql-query postgresql-simple 199590 + postgresql-tx postgresql-tx-monad-logger transformers 199591 + ]; 199592 + description = "postgresql-tx interfacing for use with postgresql-query"; 199593 + license = stdenv.lib.licenses.bsd3; 199594 + hydraPlatforms = stdenv.lib.platforms.none; 199595 + broken = true; 199596 + }) {}; 199597 + 199598 + "postgresql-tx-simple" = callPackage 199599 + ({ mkDerivation, base, postgresql-simple, postgresql-tx 199600 + , transformers 199601 + }: 199602 + mkDerivation { 199603 + pname = "postgresql-tx-simple"; 199604 + version = "0.1.0.0"; 199605 + sha256 = "1k03wqqzsvmmd7wh9gnlg9h12v2xnzd1vc9396sl1krg29l8373p"; 199606 + libraryHaskellDepends = [ 199607 + base postgresql-simple postgresql-tx transformers 199608 + ]; 199609 + description = "postgresql-tx interfacing for use with postgresql-simple"; 199610 + license = stdenv.lib.licenses.bsd3; 199611 + }) {}; 199612 + 199613 + "postgresql-tx-squeal" = callPackage 199614 + ({ mkDerivation, base, bytestring, generics-sop, postgresql-libpq 199615 + , postgresql-tx, records-sop, squeal-postgresql 199616 + }: 199617 + mkDerivation { 199618 + pname = "postgresql-tx-squeal"; 199619 + version = "0.1.0.0"; 199620 + sha256 = "08wfdy6hlpwkv3njh33igskv489kk8zbsd1nk24fvql1w215gsa4"; 199621 + libraryHaskellDepends = [ 199622 + base bytestring generics-sop postgresql-libpq postgresql-tx 199623 + records-sop squeal-postgresql 199624 + ]; 199625 + description = "postgresql-tx interfacing for use with squeal-postgresql"; 199626 + license = stdenv.lib.licenses.bsd3; 199627 + hydraPlatforms = stdenv.lib.platforms.none; 199628 + broken = true; 199629 + }) {}; 199630 + 199631 "postgresql-typed" = callPackage 199632 ({ mkDerivation, aeson, array, attoparsec, base, binary, bytestring 199633 , containers, convertible, criterion, cryptonite, data-default ··· 199637 }: 199638 mkDerivation { 199639 pname = "postgresql-typed"; 199640 + version = "0.6.1.2"; 199641 + sha256 = "0l2fkndiyb3yglgrj7mlmlsgg6qjgjzbh4przqk999c8cfr6bc66"; 199642 libraryHaskellDepends = [ 199643 aeson array attoparsec base binary bytestring containers cryptonite 199644 data-default haskell-src-meta HDBC memory network old-locale ··· 201313 }) {}; 201314 201315 "prettyprinter-ansi-terminal" = callPackage 201316 ({ mkDerivation, ansi-terminal, base, base-compat, containers 201317 , deepseq, doctest, gauge, prettyprinter, QuickCheck, text 201318 }: ··· 201328 ]; 201329 description = "ANSI terminal backend for the »prettyprinter« package"; 201330 license = stdenv.lib.licenses.bsd2; 201331 }) {}; 201332 201333 "prettyprinter-compat-annotated-wl-pprint" = callPackage ··· 201379 }: 201380 mkDerivation { 201381 pname = "prettyprinter-convert-ansi-wl-pprint"; 201382 version = "1.1.1"; 201383 sha256 = "0bgf2np1ymy6zsd1qacndgyipcf0bamw1wkkikaq57npbb7psc41"; 201384 libraryHaskellDepends = [ ··· 201388 testHaskellDepends = [ base doctest ]; 201389 description = "Converter from »ansi-wl-pprint« documents to »prettyprinter«-based ones"; 201390 license = stdenv.lib.licenses.bsd2; 201391 }) {}; 201392 201393 "prettyprinter-graphviz" = callPackage ··· 202500 license = stdenv.lib.licenses.bsd3; 202501 }) {}; 202502 202503 + "product-profunctors_0_11_0_0" = callPackage 202504 + ({ mkDerivation, base, bifunctors, contravariant, criterion 202505 + , deepseq, profunctors, tagged, template-haskell 202506 + }: 202507 + mkDerivation { 202508 + pname = "product-profunctors"; 202509 + version = "0.11.0.0"; 202510 + sha256 = "1jx427xixykq9h353r7izd5nx1hpzc7g0hz4pcx6hnd0ql2d644a"; 202511 + libraryHaskellDepends = [ 202512 + base bifunctors contravariant profunctors tagged template-haskell 202513 + ]; 202514 + testHaskellDepends = [ base profunctors ]; 202515 + benchmarkHaskellDepends = [ base criterion deepseq ]; 202516 + description = "product-profunctors"; 202517 + license = stdenv.lib.licenses.bsd3; 202518 + hydraPlatforms = stdenv.lib.platforms.none; 202519 + }) {}; 202520 + 202521 "prof-flamegraph" = callPackage 202522 ({ mkDerivation, base, optparse-applicative }: 202523 mkDerivation { ··· 203031 }: 203032 mkDerivation { 203033 pname = "prometheus"; 203034 + version = "2.2.2"; 203035 + sha256 = "11r3ckkv4fzgc5lgfvhgkngjvikzmapahh162grzdj6j47nm3hsf"; 203036 libraryHaskellDepends = [ 203037 atomic-primops base bytestring containers http-client 203038 http-client-tls http-types network-uri text transformers wai warp ··· 204020 }: 204021 mkDerivation { 204022 pname = "provenience"; 204023 + version = "0.1.0.2"; 204024 + sha256 = "0wzja3vv21wgwxlmwcfc6vbkdr80jjkhxbxa41zz1i78j8cc3bri"; 204025 isLibrary = true; 204026 isExecutable = true; 204027 libraryHaskellDepends = [ ··· 206498 license = stdenv.lib.licenses.bsd3; 206499 }) {}; 206500 206501 + "quickcheck-instances_0_3_24" = callPackage 206502 + ({ mkDerivation, array, base, bytestring, case-insensitive 206503 + , containers, data-fix, hashable, integer-logarithms, old-time 206504 + , QuickCheck, scientific, splitmix, strict, tagged, text, these 206505 + , time, time-compat, transformers, transformers-compat 206506 + , unordered-containers, uuid-types, vector 206507 + }: 206508 + mkDerivation { 206509 + pname = "quickcheck-instances"; 206510 + version = "0.3.24"; 206511 + sha256 = "0jvb3d43hc1sa8aal1gjpwmrh65mswi72yssb98bj5hca4z8grk5"; 206512 + libraryHaskellDepends = [ 206513 + array base bytestring case-insensitive containers data-fix hashable 206514 + integer-logarithms old-time QuickCheck scientific splitmix strict 206515 + tagged text these time time-compat transformers transformers-compat 206516 + unordered-containers uuid-types vector 206517 + ]; 206518 + testHaskellDepends = [ 206519 + base containers QuickCheck tagged uuid-types 206520 + ]; 206521 + benchmarkHaskellDepends = [ base bytestring QuickCheck ]; 206522 + description = "Common quickcheck instances"; 206523 + license = stdenv.lib.licenses.bsd3; 206524 + hydraPlatforms = stdenv.lib.platforms.none; 206525 + }) {}; 206526 + 206527 "quickcheck-io" = callPackage 206528 ({ mkDerivation, base, HUnit, QuickCheck }: 206529 mkDerivation { ··· 208204 }: 208205 mkDerivation { 208206 pname = "random-fu"; 208207 + version = "0.2.7.7"; 208208 + sha256 = "1jk5qv7iddbqcyciih9vfylrwhbcabmy348waw5c7gchabxvqrl4"; 208209 libraryHaskellDepends = [ 208210 base erf math-functions monad-loops mtl random random-shuffle 208211 random-source rvar syb template-haskell transformers vector ··· 208278 }: 208279 mkDerivation { 208280 pname = "random-source"; 208281 + version = "0.3.0.11"; 208282 + sha256 = "0lwqbd0h495srgi2p8fsmsfk5hv5m3f6cxm12j61xx94fdyn98sv"; 208283 libraryHaskellDepends = [ 208284 base flexible-defaults mersenne-random-pure64 mtl mwc-random 208285 primitive random stateref syb template-haskell th-extras ··· 209346 }: 209347 mkDerivation { 209348 pname = "rdf"; 209349 version = "0.1.0.4"; 209350 sha256 = "1ncvh2rkxmy3k3scrpf7zyambvr94s5hq6n2yb4h7f5yx6xzr0wk"; 209351 libraryHaskellDepends = [ ··· 209356 ]; 209357 description = "Representation and Incremental Processing of RDF Data"; 209358 license = stdenv.lib.licenses.mit; 209359 }) {}; 209360 209361 "rdf4h" = callPackage ··· 210211 license = stdenv.lib.licenses.bsd3; 210212 }) {}; 210213 210214 + "reanimate-svg_0_10_2_0" = callPackage 210215 ({ mkDerivation, attoparsec, base, bytestring, containers 210216 , double-conversion, hspec, JuicyPixels, lens, linear, mtl 210217 , scientific, svg-tree, text, transformers, vector, xml 210218 }: 210219 mkDerivation { 210220 pname = "reanimate-svg"; 210221 + version = "0.10.2.0"; 210222 + sha256 = "0czj7yii9h24823rl2jlf8pqc670azgbzhrkbizdr2bnrz6g981g"; 210223 libraryHaskellDepends = [ 210224 attoparsec base bytestring containers double-conversion JuicyPixels 210225 lens linear mtl scientific text transformers vector xml ··· 211153 }: 211154 mkDerivation { 211155 pname = "refined"; 211156 + version = "0.6.1"; 211157 + sha256 = "124sqpcii62jh2n2vfskg9jc8ic4hhlwmwim40f6a0dmhdnsh8lx"; 211158 libraryHaskellDepends = [ 211159 aeson base bytestring deepseq exceptions mtl QuickCheck 211160 template-haskell text these-skinny ··· 211350 pname = "reflex-basic-host"; 211351 version = "0.2.0.1"; 211352 sha256 = "1bax3rcrwi3447wd7apramw0f248ddksl8lrdjgrph26bbh8vc1i"; 211353 + revision = "2"; 211354 + editedCabalFile = "0nqr2nxrq1xplcapr6yy8fx4x85qiqz609f7rzz656zah7cfm8dl"; 211355 isLibrary = true; 211356 isExecutable = true; 211357 libraryHaskellDepends = [ ··· 215737 license = stdenv.lib.licenses.bsd3; 215738 }) {}; 215739 215740 + "rfc5051_0_2" = callPackage 215741 + ({ mkDerivation, base, containers, text }: 215742 + mkDerivation { 215743 + pname = "rfc5051"; 215744 + version = "0.2"; 215745 + sha256 = "0nri7js5ymywh2gi3li25wrkl1nf712qhbzw5hn46fib83qsq73k"; 215746 + libraryHaskellDepends = [ base containers text ]; 215747 + testHaskellDepends = [ base text ]; 215748 + description = "Simple unicode collation as per RFC5051"; 215749 + license = stdenv.lib.licenses.bsd3; 215750 + hydraPlatforms = stdenv.lib.platforms.none; 215751 + }) {}; 215752 + 215753 "rg" = callPackage 215754 ({ mkDerivation, array, base, fmt, possibly, tasty, tasty-hunit 215755 , text, unordered-containers, vector ··· 216269 license = stdenv.lib.licenses.mit; 216270 }) {}; 216271 216272 + "rio_0_1_18_0" = callPackage 216273 + ({ mkDerivation, base, bytestring, containers, deepseq, directory 216274 + , exceptions, filepath, hashable, hspec, microlens, microlens-mtl 216275 + , mtl, primitive, process, QuickCheck, text, time, typed-process 216276 + , unix, unliftio, unliftio-core, unordered-containers, vector 216277 + }: 216278 + mkDerivation { 216279 + pname = "rio"; 216280 + version = "0.1.18.0"; 216281 + sha256 = "11f1cxa9c90d7hgqn9bl08l499n2dzdj31f9pw9acb1nrlx5hik8"; 216282 + libraryHaskellDepends = [ 216283 + base bytestring containers deepseq directory exceptions filepath 216284 + hashable microlens microlens-mtl mtl primitive process text time 216285 + typed-process unix unliftio unliftio-core unordered-containers 216286 + vector 216287 + ]; 216288 + testHaskellDepends = [ 216289 + base bytestring containers deepseq directory exceptions filepath 216290 + hashable hspec microlens microlens-mtl mtl primitive process 216291 + QuickCheck text time typed-process unix unliftio unliftio-core 216292 + unordered-containers vector 216293 + ]; 216294 + description = "A standard library for Haskell"; 216295 + license = stdenv.lib.licenses.mit; 216296 + hydraPlatforms = stdenv.lib.platforms.none; 216297 + }) {}; 216298 + 216299 "rio-orphans" = callPackage 216300 ({ mkDerivation, base, exceptions, fast-logger, hspec 216301 , monad-control, monad-logger, resourcet, rio, transformers-base ··· 216334 license = stdenv.lib.licenses.bsd3; 216335 }) {}; 216336 216337 + "rio-prettyprint_0_1_1_0" = callPackage 216338 + ({ mkDerivation, aeson, annotated-wl-pprint, ansi-terminal, array 216339 + , base, Cabal, colour, mtl, path, rio, text 216340 + }: 216341 + mkDerivation { 216342 + pname = "rio-prettyprint"; 216343 + version = "0.1.1.0"; 216344 + sha256 = "1h092l46pfm6k3n0vb6c67gb64kahzc97qv45rhvp0cq2y5bqykf"; 216345 + libraryHaskellDepends = [ 216346 + aeson annotated-wl-pprint ansi-terminal array base Cabal colour mtl 216347 + path rio text 216348 + ]; 216349 + description = "Pretty-printing for RIO"; 216350 + license = stdenv.lib.licenses.bsd3; 216351 + hydraPlatforms = stdenv.lib.platforms.none; 216352 + }) {}; 216353 + 216354 "riot" = callPackage 216355 ({ mkDerivation, base, containers, directory, haskell98, mtl 216356 , ncurses, old-locale, packedstring, process, unix ··· 217857 license = stdenv.lib.licenses.bsd3; 217858 }) {}; 217859 217860 + "rpmbuild-order_0_4_2" = callPackage 217861 ({ mkDerivation, base, bytestring, Cabal, case-insensitive 217862 , containers, directory, extra, fgl, filepath, hspec 217863 + , optparse-applicative, process, simple-cmd-args, unix 217864 }: 217865 mkDerivation { 217866 pname = "rpmbuild-order"; 217867 + version = "0.4.2"; 217868 + sha256 = "18ay3wga9s3whky49c8v0x7drpv1sf536p4n3h1549zd5w3vjms7"; 217869 isLibrary = true; 217870 isExecutable = true; 217871 libraryHaskellDepends = [ ··· 217876 base bytestring directory extra fgl optparse-applicative 217877 simple-cmd-args 217878 ]; 217879 + testHaskellDepends = [ base extra hspec unix ]; 217880 description = "Order RPM packages by dependencies"; 217881 license = stdenv.lib.licenses.bsd3; 217882 hydraPlatforms = stdenv.lib.platforms.none; ··· 218391 ({ mkDerivation, base, bytestring, file-embed, process, yaml }: 218392 mkDerivation { 218393 pname = "runhs"; 218394 + version = "1.0.0.4"; 218395 + sha256 = "01czfphzp252y62vrx1pys74xga3m7b6q9pbd0f20y3m74q337xi"; 218396 isLibrary = false; 218397 isExecutable = true; 218398 executableHaskellDepends = [ ··· 219516 }: 219517 mkDerivation { 219518 pname = "sampling"; 219519 + version = "0.3.5"; 219520 + sha256 = "13xkq8p656xybbpvkxp42qkkgc1majp18w384ap7l4sbxrxif7kv"; 219521 libraryHaskellDepends = [ 219522 base containers foldl mwc-random primitive vector 219523 ]; ··· 220223 benchmarkHaskellDepends = [ base criterion tagsoup text ]; 220224 description = "A high level web scraping library for Haskell"; 220225 license = stdenv.lib.licenses.asl20; 220226 + }) {}; 220227 + 220228 + "scalpel-search" = callPackage 220229 + ({ mkDerivation, base, hspec, scalpel, scalpel-core, tagsoup, text 220230 + , uri 220231 + }: 220232 + mkDerivation { 220233 + pname = "scalpel-search"; 220234 + version = "0.1.0.0"; 220235 + sha256 = "0qq8q9z3s37wcc6iwygn2hfh72k5kak93vmsvl3wn0k04lrivg60"; 220236 + libraryHaskellDepends = [ base scalpel-core tagsoup text uri ]; 220237 + testHaskellDepends = [ 220238 + base hspec scalpel scalpel-core tagsoup text uri 220239 + ]; 220240 + description = "scalpel scrapers for search engines"; 220241 + license = stdenv.lib.licenses.gpl3; 220242 + hydraPlatforms = stdenv.lib.platforms.none; 220243 + broken = true; 220244 }) {}; 220245 220246 "scan" = callPackage ··· 226492 pname = "serversession"; 226493 version = "1.0.1"; 226494 sha256 = "08j8v6a2018bmvwsb7crdg0ajak74jggb073pdpx9s0pf3cfzyrz"; 226495 + revision = "1"; 226496 + editedCabalFile = "0sxr4c7nk16n51y53qwwjnvgqjdqjm1ybaqkf0r8y91fac8x47b5"; 226497 libraryHaskellDepends = [ 226498 aeson base base64-bytestring bytestring data-default hashable nonce 226499 path-pieces text time transformers unordered-containers ··· 227810 }) {}; 227811 227812 "shakebook" = callPackage 227813 + ({ mkDerivation, aeson, aeson-better-errors, aeson-with, base 227814 + , binary, binary-instances, comonad, comonad-extras 227815 + , composite-aeson, composite-base, doctemplates, feed, free 227816 + , hashable-time, http-conduit, ixset-typed, ixset-typed-conversions 227817 + , lens, lens-aeson, lucid, lucid-cdn, mtl, mustache, pandoc 227818 + , pandoc-types, path, path-extensions, rio, shake-plus 227819 + , shake-plus-extended, sitemap-gen, slick, split, tasty 227820 + , tasty-golden, text-time, vinyl, zipper-extra 227821 }: 227822 mkDerivation { 227823 pname = "shakebook"; 227824 + version = "0.11.0.0"; 227825 + sha256 = "0h6pq3y7ll5l83a682mwk60zipsm91w0srgrigdgi7l4wdhn7qzb"; 227826 libraryHaskellDepends = [ 227827 + aeson aeson-better-errors aeson-with base binary binary-instances 227828 + comonad comonad-extras composite-aeson composite-base doctemplates 227829 + feed free hashable-time http-conduit ixset-typed 227830 + ixset-typed-conversions lens lens-aeson lucid lucid-cdn mtl 227831 + mustache pandoc pandoc-types path path-extensions rio shake-plus 227832 + shake-plus-extended sitemap-gen slick split text-time vinyl 227833 + zipper-extra 227834 ]; 227835 testHaskellDepends = [ 227836 + aeson aeson-better-errors aeson-with base binary binary-instances 227837 + comonad comonad-extras composite-aeson composite-base doctemplates 227838 + feed free hashable-time http-conduit ixset-typed 227839 + ixset-typed-conversions lens lens-aeson lucid lucid-cdn mtl 227840 + mustache pandoc pandoc-types path path-extensions rio shake-plus 227841 + shake-plus-extended sitemap-gen slick split tasty tasty-golden 227842 + text-time vinyl zipper-extra 227843 ]; 227844 description = "Shake-based technical documentation generator; HTML & PDF"; 227845 license = stdenv.lib.licenses.mit; ··· 231795 }) {}; 231796 231797 "slynx" = callPackage 231798 + ({ mkDerivation, async, attoparsec, base, bytestring, containers 231799 + , elynx-markov, elynx-seq, elynx-tools, elynx-tree, hmatrix 231800 + , monad-logger, mwc-random, optparse-applicative, text 231801 , transformers, vector 231802 }: 231803 mkDerivation { 231804 pname = "slynx"; 231805 + version = "0.3.1"; 231806 + sha256 = "0af18y25lix0sy3vyl56d9a8yrvn9riw3vw2azwcq9pzia460qki"; 231807 isLibrary = true; 231808 isExecutable = true; 231809 libraryHaskellDepends = [ 231810 + async attoparsec base bytestring containers elynx-markov elynx-seq 231811 + elynx-tools elynx-tree hmatrix monad-logger mwc-random 231812 + optparse-applicative text transformers vector 231813 ]; 231814 + executableHaskellDepends = [ base ]; 231815 description = "Handle molecular sequences"; 231816 license = stdenv.lib.licenses.gpl3Plus; 231817 hydraPlatforms = stdenv.lib.platforms.none; ··· 236153 license = stdenv.lib.licenses.bsd3; 236154 }) {}; 236155 236156 + "splitmix_0_1_0_1" = callPackage 236157 ({ mkDerivation, async, base, base-compat, base-compat-batteries 236158 , bytestring, clock, containers, criterion, deepseq, HUnit 236159 , math-functions, process, random, test-framework ··· 236161 }: 236162 mkDerivation { 236163 pname = "splitmix"; 236164 + version = "0.1.0.1"; 236165 + sha256 = "0ahr3zxx0n9pjxpldrphqx5rhanar6alq3km7qvszipa8r46jjsd"; 236166 libraryHaskellDepends = [ base deepseq time ]; 236167 testHaskellDepends = [ 236168 async base base-compat base-compat-batteries bytestring containers ··· 237308 }: 237309 mkDerivation { 237310 pname = "stack"; 237311 + version = "2.3.3"; 237312 + sha256 = "1j2z8cgb9c56g39dh5ff2sri3r3vxddy6ymznkywn6d7c1z4j7qs"; 237313 configureFlags = [ 237314 "-fdisable-git-info" "-fhide-dependency-versions" 237315 "-fsupported-build" ··· 239840 ({ mkDerivation, array, async, base, base-orphans 239841 , base64-bytestring, bifunctors, bytestring, cereal, cereal-vector 239842 , clock, containers, contravariant, criterion, cryptohash, deepseq 239843 + , directory, filepath, free, ghc-prim, hashable, hspec 239844 , hspec-smallcheck, integer-gmp, lifted-base, monad-control 239845 + , mono-traversable, network, primitive, resourcet, safe, smallcheck 239846 + , store-core, syb, template-haskell, text, th-lift 239847 , th-lift-instances, th-orphans, th-reify-many, th-utilities, time 239848 , transformers, unordered-containers, vector 239849 , vector-binary-instances, void, weigh 239850 }: 239851 mkDerivation { 239852 pname = "store"; 239853 + version = "0.7.6"; 239854 + sha256 = "1gzax38chn57ybikvddk6g8msyv52y5s30yndpp64bdh3kqwlchq"; 239855 libraryHaskellDepends = [ 239856 array async base base-orphans base64-bytestring bifunctors 239857 bytestring containers contravariant cryptohash deepseq directory 239858 + filepath free ghc-prim hashable hspec hspec-smallcheck integer-gmp 239859 + lifted-base monad-control mono-traversable network primitive 239860 + resourcet safe smallcheck store-core syb template-haskell text 239861 + th-lift th-lift-instances th-orphans th-reify-many th-utilities 239862 + time transformers unordered-containers vector void 239863 ]; 239864 testHaskellDepends = [ 239865 array async base base-orphans base64-bytestring bifunctors 239866 bytestring clock containers contravariant cryptohash deepseq 239867 + directory filepath free ghc-prim hashable hspec hspec-smallcheck 239868 + integer-gmp lifted-base monad-control mono-traversable network 239869 + primitive resourcet safe smallcheck store-core syb template-haskell 239870 + text th-lift th-lift-instances th-orphans th-reify-many 239871 + th-utilities time transformers unordered-containers vector void 239872 ]; 239873 benchmarkHaskellDepends = [ 239874 array async base base-orphans base64-bytestring bifunctors 239875 bytestring cereal cereal-vector containers contravariant criterion 239876 + cryptohash deepseq directory filepath free ghc-prim hashable hspec 239877 + hspec-smallcheck integer-gmp lifted-base monad-control 239878 + mono-traversable network primitive resourcet safe smallcheck 239879 + store-core syb template-haskell text th-lift th-lift-instances 239880 + th-orphans th-reify-many th-utilities time transformers 239881 + unordered-containers vector vector-binary-instances void weigh 239882 ]; 239883 description = "Fast binary serialization"; 239884 license = stdenv.lib.licenses.mit; 239885 }) {}; 239886 239887 "store-core" = callPackage 239888 + ({ mkDerivation, base, bytestring, ghc-prim, primitive, text 239889 , transformers 239890 }: 239891 mkDerivation { 239892 pname = "store-core"; 239893 + version = "0.4.4.3"; 239894 + sha256 = "1b0fpv8wdp9lcvqplls548xrh336cb1m617fzd0ysbzqhhg5r3fv"; 239895 libraryHaskellDepends = [ 239896 + base bytestring ghc-prim primitive text transformers 239897 ]; 239898 description = "Fast and lightweight binary serialization"; 239899 license = stdenv.lib.licenses.mit; ··· 239906 }: 239907 mkDerivation { 239908 pname = "store-streaming"; 239909 + version = "0.2.0.2"; 239910 + sha256 = "1hnzpyw5l90nrm3vlrwbv8517iaaq0razfjj6m8a41jy2lkgf4gz"; 239911 libraryHaskellDepends = [ 239912 async base bytestring conduit free resourcet store store-core 239913 streaming-commons text transformers ··· 239981 license = stdenv.lib.licenses.mit; 239982 }) {}; 239983 239984 + "stratosphere_0_57_0" = callPackage 239985 ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers 239986 , hashable, hspec, hspec-discover, lens, template-haskell, text 239987 , unordered-containers 239988 }: 239989 mkDerivation { 239990 pname = "stratosphere"; 239991 + version = "0.57.0"; 239992 + sha256 = "1ksxy117bizi4bnj7skv5hq7rsw2gz0w5yg5b3xhc6ialkq9in4z"; 239993 isLibrary = true; 239994 isExecutable = true; 239995 libraryHaskellDepends = [ ··· 240987 license = stdenv.lib.licenses.bsd3; 240988 }) {}; 240989 240990 + "strict_0_4" = callPackage 240991 + ({ mkDerivation, assoc, base, binary, bytestring, deepseq, ghc-prim 240992 + , hashable, text, these, transformers 240993 + }: 240994 + mkDerivation { 240995 + pname = "strict"; 240996 + version = "0.4"; 240997 + sha256 = "0gs5fqsrwsc3y5w6fp91p9frgh7h42kd9smyg04cw284d5wfx7r7"; 240998 + libraryHaskellDepends = [ 240999 + assoc base binary bytestring deepseq ghc-prim hashable text these 241000 + transformers 241001 + ]; 241002 + description = "Strict data types and String IO"; 241003 + license = stdenv.lib.licenses.bsd3; 241004 + hydraPlatforms = stdenv.lib.platforms.none; 241005 + }) {}; 241006 + 241007 "strict-base" = callPackage 241008 ({ mkDerivation, base }: 241009 mkDerivation { ··· 241105 license = stdenv.lib.licenses.bsd3; 241106 }) {}; 241107 241108 + "strict-lens" = callPackage 241109 + ({ mkDerivation, base, lens, strict }: 241110 + mkDerivation { 241111 + pname = "strict-lens"; 241112 + version = "0.4"; 241113 + sha256 = "16sqk7kvg8322f0aflnsb7v76p1c1xfvn3h0hxgvmkb5ll1ak92y"; 241114 + libraryHaskellDepends = [ base lens strict ]; 241115 + description = "Lenses for types in strict package"; 241116 + license = stdenv.lib.licenses.bsd3; 241117 + }) {}; 241118 + 241119 "strict-list" = callPackage 241120 ({ mkDerivation, base, hashable, QuickCheck, quickcheck-instances 241121 , rerebase, semigroupoids, tasty, tasty-hunit, tasty-quickcheck ··· 241131 ]; 241132 description = "Strict linked list"; 241133 license = stdenv.lib.licenses.mit; 241134 + }) {}; 241135 + 241136 + "strict-optics" = callPackage 241137 + ({ mkDerivation, base, optics-core, strict }: 241138 + mkDerivation { 241139 + pname = "strict-optics"; 241140 + version = "0.4"; 241141 + sha256 = "1xy5yziq37h37irbg3win7risxc46s143iqqh95lqv08fybk5b09"; 241142 + libraryHaskellDepends = [ base optics-core strict ]; 241143 + description = "Optics for types in strict package"; 241144 + license = stdenv.lib.licenses.bsd3; 241145 }) {}; 241146 241147 "strict-tuple" = callPackage ··· 241358 pname = "string-interpolate"; 241359 version = "0.3.0.0"; 241360 sha256 = "0h7lqr5g11pr9ikzg7j26fgj9m8659j1vpcwggvndv6k71sh281a"; 241361 + revision = "1"; 241362 + editedCabalFile = "0id31zpxvmgs63acy3lx8myms5i8w70cfr1dx5yryzy5l66vaq0w"; 241363 libraryHaskellDepends = [ 241364 base bytestring haskell-src-exts haskell-src-meta split 241365 template-haskell text text-conversions utf8-string ··· 242237 license = stdenv.lib.licenses.bsd3; 242238 }) {}; 242239 242240 + "stylish-haskell_0_11_0_3" = callPackage 242241 + ({ mkDerivation, aeson, base, bytestring, Cabal, containers 242242 + , directory, file-embed, filepath, haskell-src-exts, HsYAML 242243 + , HsYAML-aeson, HUnit, mtl, optparse-applicative, random 242244 + , semigroups, strict, syb, test-framework, test-framework-hunit 242245 + , text 242246 + }: 242247 + mkDerivation { 242248 + pname = "stylish-haskell"; 242249 + version = "0.11.0.3"; 242250 + sha256 = "10svl5q95n9i76rqvlxibi784qzvdyg8qfl1xwk7c32y84nyfibn"; 242251 + isLibrary = true; 242252 + isExecutable = true; 242253 + libraryHaskellDepends = [ 242254 + aeson base bytestring Cabal containers directory file-embed 242255 + filepath haskell-src-exts HsYAML HsYAML-aeson mtl semigroups syb 242256 + text 242257 + ]; 242258 + executableHaskellDepends = [ 242259 + aeson base bytestring Cabal containers directory file-embed 242260 + filepath haskell-src-exts HsYAML HsYAML-aeson mtl 242261 + optparse-applicative strict syb 242262 + ]; 242263 + testHaskellDepends = [ 242264 + aeson base bytestring Cabal containers directory file-embed 242265 + filepath haskell-src-exts HsYAML HsYAML-aeson HUnit mtl random syb 242266 + test-framework test-framework-hunit text 242267 + ]; 242268 + description = "Haskell code prettifier"; 242269 + license = stdenv.lib.licenses.bsd3; 242270 + hydraPlatforms = stdenv.lib.platforms.none; 242271 + }) {}; 242272 + 242273 "stylist" = callPackage 242274 ({ mkDerivation, async, base, css-syntax, hashable, hspec 242275 , network-uri, QuickCheck, scientific, text, unordered-containers ··· 243606 }: 243607 mkDerivation { 243608 pname = "sweet-egison"; 243609 + version = "0.1.1.0"; 243610 + sha256 = "1zd1l2gbg7dp53d4jzki6k8jqxdvqgy5gl6jdy325hx1fycrixql"; 243611 libraryHaskellDepends = [ 243612 backtracking base egison-pattern-src egison-pattern-src-th-mode 243613 haskell-src-exts haskell-src-meta logict template-haskell ··· 246591 broken = true; 246592 }) {}; 246593 246594 + "tasty-bdd" = callPackage 246595 + ({ mkDerivation, aeson, aeson-qq, base, exceptions, free, HUnit 246596 + , microlens, microlens-th, mtl, pretty, pretty-show 246597 + , qm-interpolated-string, regex-posix, tagged, tasty 246598 + , tasty-expected-failure, tasty-fail-fast, tasty-hunit, temporary 246599 + , text, transformers, tree-diff 246600 + }: 246601 + mkDerivation { 246602 + pname = "tasty-bdd"; 246603 + version = "0.1.0.1"; 246604 + sha256 = "1da1983hampnkkm6kwxp8w1bkhzic27qbnkckkmsziaz8kbkhcpi"; 246605 + libraryHaskellDepends = [ 246606 + base exceptions free HUnit microlens microlens-th mtl pretty 246607 + pretty-show tagged tasty tasty-fail-fast tasty-hunit temporary text 246608 + transformers tree-diff 246609 + ]; 246610 + testHaskellDepends = [ 246611 + aeson aeson-qq base exceptions HUnit mtl qm-interpolated-string 246612 + regex-posix tasty tasty-expected-failure tasty-fail-fast 246613 + tasty-hunit temporary text transformers 246614 + ]; 246615 + description = "BDD tests language and tasty provider"; 246616 + license = stdenv.lib.licenses.bsd3; 246617 + hydraPlatforms = stdenv.lib.platforms.none; 246618 + broken = true; 246619 + }) {}; 246620 + 246621 "tasty-dejafu" = callPackage 246622 ({ mkDerivation, base, dejafu, random, tagged, tasty }: 246623 mkDerivation { ··· 246777 pname = "tasty-hedgehog"; 246778 version = "1.0.0.2"; 246779 sha256 = "1vsv3m6brhshpqm8qixz97m7h0nx67cj6ira4cngbk7mf5rqylv5"; 246780 + revision = "4"; 246781 + editedCabalFile = "0z47ssv9030px81sxivhw5jp7yfpr6r6anlf03slks31jkzvx4gl"; 246782 libraryHaskellDepends = [ base hedgehog tagged tasty ]; 246783 testHaskellDepends = [ 246784 base hedgehog tasty tasty-expected-failure ··· 249493 broken = true; 249494 }) {}; 249495 249496 + "testcontainers" = callPackage 249497 + ({ mkDerivation, aeson, aeson-optics, base, bytestring, exceptions 249498 + , hspec, hspec-discover, mtl, network, optics-core, process 249499 + , resourcet, tasty, tasty-discover, tasty-hspec, tasty-hunit, text 249500 + , unliftio-core 249501 + }: 249502 + mkDerivation { 249503 + pname = "testcontainers"; 249504 + version = "0.2.0.0"; 249505 + sha256 = "0drdi2qqgiw499lwvkdc5yn8x7mys6l4p47jcz0af62fczpa5dnh"; 249506 + libraryHaskellDepends = [ 249507 + aeson aeson-optics base bytestring exceptions mtl network 249508 + optics-core process resourcet tasty text unliftio-core 249509 + ]; 249510 + testHaskellDepends = [ 249511 + base hspec tasty tasty-discover tasty-hspec tasty-hunit text 249512 + ]; 249513 + testToolDepends = [ hspec-discover tasty-discover ]; 249514 + description = "Docker containers for your integration tests"; 249515 + license = stdenv.lib.licenses.mit; 249516 + }) {}; 249517 + 249518 "testing-feat" = callPackage 249519 ({ mkDerivation, base, QuickCheck, size-based 249520 , testing-type-modifiers ··· 251665 }) {}; 251666 251667 "thread-hierarchy" = callPackage 251668 ({ mkDerivation, base, containers, hspec, hspec-discover, stm }: 251669 mkDerivation { 251670 pname = "thread-hierarchy"; ··· 251675 testToolDepends = [ hspec-discover ]; 251676 description = "Simple Haskell thread management in hierarchical manner"; 251677 license = stdenv.lib.licenses.mit; 251678 }) {}; 251679 251680 "thread-local-storage" = callPackage ··· 251692 251693 "thread-supervisor" = callPackage 251694 ({ mkDerivation, base, clock, containers, data-default, hspec 251695 , hspec-discover, QuickCheck, unliftio 251696 }: 251697 mkDerivation { ··· 251707 testToolDepends = [ hspec-discover ]; 251708 description = "A simplified implementation of Erlang/OTP like supervisor over thread"; 251709 license = stdenv.lib.licenses.mit; 251710 }) {}; 251711 251712 "threadPool" = callPackage ··· 253734 broken = true; 253735 }) {}; 253736 253737 + "tldr_0_7_1" = callPackage 253738 ({ mkDerivation, ansi-terminal, base, bytestring, cmark, containers 253739 , directory, filepath, optparse-applicative, semigroups, tasty 253740 , tasty-golden, text, typed-process 253741 }: 253742 mkDerivation { 253743 pname = "tldr"; 253744 + version = "0.7.1"; 253745 + sha256 = "1vc9rxyxczs7kswrjq2c4lziwvnwri53ng8yq4724hpjvybiqs57"; 253746 isLibrary = true; 253747 isExecutable = true; 253748 libraryHaskellDepends = [ ··· 253842 }) {}; 253843 253844 "tlynx" = callPackage 253845 + ({ mkDerivation, aeson, attoparsec, base, bytestring, comonad 253846 , containers, elynx-tools, elynx-tree, gnuplot, lifted-async 253847 + , monad-logger, mwc-random, optparse-applicative, parallel 253848 + , statistics, text, transformers, vector 253849 }: 253850 mkDerivation { 253851 pname = "tlynx"; 253852 + version = "0.3.1"; 253853 + sha256 = "172mbc79r14sccyghnbvcsa95lypas2gvqn1rf80f9yi2rsz9amy"; 253854 isLibrary = true; 253855 isExecutable = true; 253856 libraryHaskellDepends = [ 253857 + aeson attoparsec base bytestring comonad containers elynx-tools 253858 + elynx-tree gnuplot lifted-async monad-logger mwc-random 253859 + optparse-applicative parallel statistics text transformers vector 253860 ]; 253861 + executableHaskellDepends = [ base ]; 253862 description = "Handle phylogenetic trees"; 253863 license = stdenv.lib.licenses.gpl3Plus; 253864 hydraPlatforms = stdenv.lib.platforms.none; ··· 262008 license = stdenv.lib.licenses.bsd3; 262009 }) {}; 262010 262011 + "unordered-containers_0_2_12_0" = callPackage 262012 ({ mkDerivation, base, bytestring, ChasingBottoms, containers 262013 + , deepseq, gauge, hashable, hashmap, HUnit, mtl, QuickCheck, random 262014 + , test-framework, test-framework-hunit, test-framework-quickcheck2 262015 }: 262016 mkDerivation { 262017 pname = "unordered-containers"; 262018 + version = "0.2.12.0"; 262019 + sha256 = "085x73b2cfab85nkbwmcvc5i6v8kbnpbiv35gnmgw44zlm7an7a8"; 262020 libraryHaskellDepends = [ base deepseq hashable ]; 262021 testHaskellDepends = [ 262022 base ChasingBottoms containers hashable HUnit QuickCheck random 262023 test-framework test-framework-hunit test-framework-quickcheck2 262024 ]; 262025 benchmarkHaskellDepends = [ 262026 + base bytestring containers deepseq gauge hashable hashmap mtl 262027 + random 262028 ]; 262029 description = "Efficient hashing-based container types"; 262030 license = stdenv.lib.licenses.bsd3; ··· 263715 }) {}; 263716 263717 "uuid-bytes" = callPackage 263718 + ({ mkDerivation, base, bytebuild, byteslice, bytesmith, HUnit 263719 + , natural-arithmetic, primitive, tasty, tasty-hunit, wide-word 263720 }: 263721 mkDerivation { 263722 pname = "uuid-bytes"; 263723 + version = "0.1.2.0"; 263724 + sha256 = "08sfxj0900pgpbvasi2n2x93qwglir2ijc43fpn5xf0gq7z2b25r"; 263725 libraryHaskellDepends = [ 263726 + base bytebuild byteslice bytesmith natural-arithmetic primitive 263727 + wide-word 263728 ]; 263729 testHaskellDepends = [ 263730 base byteslice HUnit natural-arithmetic primitive tasty tasty-hunit ··· 266817 ({ mkDerivation, base, bytestring, transformers, vector, vulkan }: 266818 mkDerivation { 266819 pname = "vulkan"; 266820 + version = "3.6.3"; 266821 + sha256 = "0w0887xrkai5xhky245gnjjfq7d8cw43l90rmfvhqxwdf7jkkxc8"; 266822 libraryHaskellDepends = [ base bytestring transformers vector ]; 266823 librarySystemDepends = [ vulkan ]; 266824 description = "Bindings to the Vulkan graphics API"; ··· 269483 269484 "web-rep" = callPackage 269485 ({ mkDerivation, attoparsec, base, box, box-socket, clay 269486 + , concurrency, doctest, generic-lens, interpolatedstring-perl6 269487 + , language-javascript, lens, lucid, mtl, numhask, optparse-generic 269488 + , scotty, tasty, tasty-hspec, text, transformers 269489 + , unordered-containers, wai-middleware-static, wai-websockets 269490 + , websockets 269491 }: 269492 mkDerivation { 269493 pname = "web-rep"; 269494 + version = "0.7.0"; 269495 + sha256 = "1045b19rjs1hgw92kq8z6wzm7jmx8k73ad9z4m2vzv1jwjhbgin4"; 269496 isLibrary = true; 269497 isExecutable = true; 269498 libraryHaskellDepends = [ 269499 + attoparsec base box box-socket clay concurrency generic-lens 269500 interpolatedstring-perl6 language-javascript lens lucid mtl numhask 269501 scotty text transformers unordered-containers wai-middleware-static 269502 wai-websockets websockets ··· 269995 269996 "webex-teams-api" = callPackage 269997 ({ mkDerivation, aeson, async, attoparsec, base, bitset-word8 269998 , bytestring, conduit, data-default, hspec, hspec-discover 269999 , http-conduit, http-types, network-uri, optparse-applicative, text 270000 , utf8-string, wai, warp ··· 270020 testToolDepends = [ hspec-discover ]; 270021 description = "A Haskell bindings for Webex Teams API"; 270022 license = stdenv.lib.licenses.mit; 270023 }) {}; 270024 270025 "webex-teams-conduit" = callPackage 270026 ({ mkDerivation, aeson, async, base, bytestring, conduit 270027 , data-default, hspec, hspec-discover, http-client, http-conduit 270028 , http-types, network-uri, optparse-applicative, text, utf8-string 270029 , wai, warp, webex-teams-api ··· 270046 testToolDepends = [ hspec-discover ]; 270047 description = "Conduit wrapper of Webex Teams List API"; 270048 license = stdenv.lib.licenses.mit; 270049 }) {}; 270050 270051 "webex-teams-pipes" = callPackage 270052 ({ mkDerivation, aeson, async, base, bytestring, data-default 270053 , hspec, hspec-discover, http-client, http-conduit, http-types 270054 , network-uri, optparse-applicative, pipes, text, utf8-string, wai 270055 , warp, webex-teams-api ··· 270072 testToolDepends = [ hspec-discover ]; 270073 description = "Pipes wrapper of Webex Teams List API"; 270074 license = stdenv.lib.licenses.mit; 270075 }) {}; 270076 270077 "webfinger-client" = callPackage ··· 273884 broken = true; 273885 }) {}; 273886 273887 + "xlsx_0_8_1" = callPackage 273888 + ({ mkDerivation, attoparsec, base, base64-bytestring, binary-search 273889 + , bytestring, conduit, containers, criterion, data-default, deepseq 273890 + , Diff, errors, extra, filepath, groom, lens, mtl, network-uri 273891 + , old-locale, raw-strings-qq, safe, smallcheck, tasty, tasty-hunit 273892 + , tasty-smallcheck, text, time, transformers, vector, xeno 273893 + , xml-conduit, zip-archive, zlib 273894 + }: 273895 + mkDerivation { 273896 + pname = "xlsx"; 273897 + version = "0.8.1"; 273898 + sha256 = "1prb6369af2w0rni2ha32yzd9r17yi0xnyn1dzwdzq03maxikgy9"; 273899 + libraryHaskellDepends = [ 273900 + attoparsec base base64-bytestring binary-search bytestring conduit 273901 + containers data-default deepseq errors extra filepath lens mtl 273902 + network-uri old-locale safe text time transformers vector xeno 273903 + xml-conduit zip-archive zlib 273904 + ]; 273905 + testHaskellDepends = [ 273906 + base bytestring containers Diff groom lens mtl raw-strings-qq 273907 + smallcheck tasty tasty-hunit tasty-smallcheck text time vector 273908 + xml-conduit 273909 + ]; 273910 + benchmarkHaskellDepends = [ base bytestring criterion ]; 273911 + description = "Simple and incomplete Excel file parser/writer"; 273912 + license = stdenv.lib.licenses.mit; 273913 + hydraPlatforms = stdenv.lib.platforms.none; 273914 + broken = true; 273915 + }) {}; 273916 + 273917 "xlsx-tabular" = callPackage 273918 ({ mkDerivation, aeson, base, bytestring, containers, data-default 273919 , lens, text, xlsx ··· 277369 license = stdenv.lib.licenses.mit; 277370 }) {}; 277371 277372 + "yesod-bin_1_6_0_6" = callPackage 277373 + ({ mkDerivation, base, bytestring, Cabal, conduit, conduit-extra 277374 + , containers, data-default-class, directory, file-embed, filepath 277375 + , fsnotify, http-client, http-client-tls, http-reverse-proxy 277376 + , http-types, network, optparse-applicative, process 277377 + , project-template, say, split, stm, streaming-commons, tar, text 277378 + , time, transformers, transformers-compat, unliftio 277379 + , unordered-containers, wai, wai-extra, warp, warp-tls, yaml, zlib 277380 + }: 277381 + mkDerivation { 277382 + pname = "yesod-bin"; 277383 + version = "1.6.0.6"; 277384 + sha256 = "044xk75pymw6limz08zicxp4lw8jqf6f2ilj8i2qw2h419w3ry9f"; 277385 + isLibrary = false; 277386 + isExecutable = true; 277387 + executableHaskellDepends = [ 277388 + base bytestring Cabal conduit conduit-extra containers 277389 + data-default-class directory file-embed filepath fsnotify 277390 + http-client http-client-tls http-reverse-proxy http-types network 277391 + optparse-applicative process project-template say split stm 277392 + streaming-commons tar text time transformers transformers-compat 277393 + unliftio unordered-containers wai wai-extra warp warp-tls yaml zlib 277394 + ]; 277395 + description = "The yesod helper executable"; 277396 + license = stdenv.lib.licenses.mit; 277397 + hydraPlatforms = stdenv.lib.platforms.none; 277398 + }) {}; 277399 + 277400 "yesod-bootstrap" = callPackage 277401 ({ mkDerivation, base, blaze-html, blaze-markup, bootstrap-types 277402 , shakespeare, text, transformers, yesod-core, yesod-elements ··· 280213 }: 280214 mkDerivation { 280215 pname = "zeolite-lang"; 280216 + version = "0.8.0.0"; 280217 + sha256 = "1ahr69w65hd70jc0jrc3dfz1gnjqxlg9w24djzm6826wskg31fa9"; 280218 isLibrary = false; 280219 isExecutable = true; 280220 enableSeparateDataOutput = true; ··· 280989 license = stdenv.lib.licenses.bsd3; 280990 }) {inherit (pkgs) zlib;}; 280991 280992 + "zlib_0_6_2_2" = callPackage 280993 + ({ mkDerivation, base, bytestring, QuickCheck, tasty, tasty-hunit 280994 + , tasty-quickcheck, zlib 280995 + }: 280996 + mkDerivation { 280997 + pname = "zlib"; 280998 + version = "0.6.2.2"; 280999 + sha256 = "1fii0qfc60lfp93vwb78p2fv3jjyklgdhw4ms262z6cysq6qkd84"; 281000 + libraryHaskellDepends = [ base bytestring ]; 281001 + librarySystemDepends = [ zlib ]; 281002 + testHaskellDepends = [ 281003 + base bytestring QuickCheck tasty tasty-hunit tasty-quickcheck 281004 + ]; 281005 + description = "Compression and decompression in the gzip and zlib formats"; 281006 + license = stdenv.lib.licenses.bsd3; 281007 + hydraPlatforms = stdenv.lib.platforms.none; 281008 + }) {inherit (pkgs) zlib;}; 281009 + 281010 "zlib-bindings" = callPackage 281011 ({ mkDerivation, base, bytestring, hspec, QuickCheck, zlib }: 281012 mkDerivation { ··· 281288 "zre" = callPackage 281289 ({ mkDerivation, async, attoparsec, base, binary, bytestring 281290 , cereal, containers, data-default, directory, filepath 281291 + , lifted-async, lifted-base, monad-control, mtl, network 281292 + , network-bsd, network-info, network-multicast 281293 + , optparse-applicative, process, QuickCheck, quickcheck-instances 281294 + , random, repline, sockaddr, stm, text, time, transformers-base 281295 + , uuid, zeromq4-haskell 281296 }: 281297 mkDerivation { 281298 pname = "zre"; 281299 + version = "0.1.4.0"; 281300 + sha256 = "1877q8qshp88sghnys6a52c6sjc9qxxg062j473fjyv0vc4cpy4d"; 281301 isLibrary = true; 281302 isExecutable = true; 281303 libraryHaskellDepends = [ 281304 async attoparsec base binary bytestring cereal containers 281305 + data-default directory filepath lifted-async lifted-base 281306 + monad-control mtl network network-bsd network-info 281307 + network-multicast optparse-applicative process random sockaddr stm 281308 + text time transformers-base uuid zeromq4-haskell 281309 ]; 281310 executableHaskellDepends = [ 281311 async base bytestring lifted-async monad-control mtl
+27
pkgs/top-level/haskell-packages.nix
··· 8 "ghcjs" 9 "ghcjs86" 10 "integer-simple" 11 ]; 12 13 haskellLib = import ../development/haskell-modules/lib.nix { ··· 97 in pkgs.recurseIntoAttrs (pkgs.lib.genAttrs 98 integerSimpleGhcNames 99 (name: compiler.${name}.override { enableIntegerSimple = true; })); 100 }; 101 102 # Default overrides that are applied to all package sets. ··· 170 }; 171 }); 172 173 }; 174 }
··· 8 "ghcjs" 9 "ghcjs86" 10 "integer-simple" 11 + "native-bignum" 12 + "ghcHEAD" 13 + ]; 14 + 15 + nativeBignumIncludes = [ 16 + "ghcHEAD" 17 ]; 18 19 haskellLib = import ../development/haskell-modules/lib.nix { ··· 103 in pkgs.recurseIntoAttrs (pkgs.lib.genAttrs 104 integerSimpleGhcNames 105 (name: compiler.${name}.override { enableIntegerSimple = true; })); 106 + 107 + # Starting from GHC 9, integer-{simple,gmp} is replaced by ghc-bignum 108 + # with "native" and "gmp" backends. 109 + native-bignum = let 110 + nativeBignumGhcNames = pkgs.lib.filter 111 + (name: builtins.elem name nativeBignumIncludes) 112 + (pkgs.lib.attrNames compiler); 113 + in pkgs.recurseIntoAttrs (pkgs.lib.genAttrs 114 + nativeBignumGhcNames 115 + (name: compiler.${name}.override { enableNativeBignum = true; })); 116 }; 117 118 # Default overrides that are applied to all package sets. ··· 186 }; 187 }); 188 189 + native-bignum = let 190 + nativeBignumGhcNames = pkgs.lib.filter 191 + (name: builtins.elem name nativeBignumIncludes) 192 + (pkgs.lib.attrNames compiler); 193 + in pkgs.lib.genAttrs nativeBignumGhcNames (name: packages.${name}.override { 194 + ghc = bh.compiler.native-bignum.${name}; 195 + buildHaskellPackages = bh.packages.native-bignum.${name}; 196 + overrides = _self : _super : { 197 + integer-gmp = null; 198 + }; 199 + }); 200 }; 201 }